aboutsummaryrefslogtreecommitdiff
path: root/hotline/flattened_file_object_test.go
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2022-06-20 20:14:32 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2022-06-20 20:14:32 -0700
commit7cd900d61edbd6d322db3cecb913adf574389320 (patch)
tree7da8ac3658fa4b6204330f1f9c980428b6a6fdc5 /hotline/flattened_file_object_test.go
parentbb1e98842e35b3affaf94971e78c86f8b9547928 (diff)
Add initial support for resource and info forks
Diffstat (limited to 'hotline/flattened_file_object_test.go')
-rw-r--r--hotline/flattened_file_object_test.go60
1 files changed, 0 insertions, 60 deletions
diff --git a/hotline/flattened_file_object_test.go b/hotline/flattened_file_object_test.go
index 4b3fdf6..596ca2c 100644
--- a/hotline/flattened_file_object_test.go
+++ b/hotline/flattened_file_object_test.go
@@ -3,69 +3,9 @@ package hotline
import (
"fmt"
"github.com/stretchr/testify/assert"
- "os"
"testing"
)
-func TestNewFlattenedFileObject(t *testing.T) {
- type args struct {
- fileRoot string
- filePath []byte
- fileName []byte
- }
- tests := []struct {
- name string
- args args
- want *flattenedFileObject
- wantErr assert.ErrorAssertionFunc
- }{
- {
- name: "with valid file",
- args: args{
- fileRoot: func() string { path, _ := os.Getwd(); return path + "/test/config/Files" }(),
- fileName: []byte("testfile.txt"),
- filePath: []byte{0, 0},
- },
- want: &flattenedFileObject{
- FlatFileHeader: NewFlatFileHeader(),
- FlatFileInformationForkHeader: FlatFileInformationForkHeader{},
- FlatFileInformationFork: NewFlatFileInformationFork("testfile.txt", make([]byte, 8), "", ""),
- FlatFileDataForkHeader: FlatFileDataForkHeader{
- ForkType: [4]byte{0x4d, 0x41, 0x43, 0x52}, // DATA
- CompressionType: [4]byte{0, 0, 0, 0},
- RSVD: [4]byte{0, 0, 0, 0},
- DataSize: [4]byte{0x00, 0x00, 0x00, 0x17},
- },
- FileData: nil,
- },
- wantErr: assert.NoError,
- },
- {
- name: "when file path is invalid",
- args: args{
- fileRoot: func() string { path, _ := os.Getwd(); return path + "/test/config/Files" }(),
- fileName: []byte("nope.txt"),
- },
- want: nil,
- wantErr: assert.Error,
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- got, err := NewFlattenedFileObject(tt.args.fileRoot, tt.args.filePath, tt.args.fileName, 0)
- if tt.wantErr(t, err, fmt.Sprintf("NewFlattenedFileObject(%v, %v, %v)", tt.args.fileRoot, tt.args.filePath, tt.args.fileName)) {
- return
- }
-
- // Clear the file timestamp fields to work around problems running the tests in multiple timezones
- // TODO: revisit how to test this by mocking the stat calls
- got.FlatFileInformationFork.CreateDate = make([]byte, 8)
- got.FlatFileInformationFork.ModifyDate = make([]byte, 8)
- assert.Equalf(t, tt.want, got, "NewFlattenedFileObject(%v, %v, %v)", tt.args.fileRoot, tt.args.filePath, tt.args.fileName)
- })
- }
-}
-
func TestFlatFileInformationFork_UnmarshalBinary(t *testing.T) {
type args struct {
b []byte