-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathspec_test.go
104 lines (97 loc) · 2.04 KB
/
spec_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package filetypes
import (
"testing"
"github.com/cloudquery/filetypes/v4/csv"
"github.com/cloudquery/filetypes/v4/json"
"github.com/stretchr/testify/assert"
)
func TestSpecMethods(t *testing.T) {
testCases := []struct {
FileSpec *FileSpec
preDefaultsCSV *csv.CSVSpec
preDefaultsJSON *json.JSONSpec
postDefaultsCSV *csv.CSVSpec
postDefaultsJSON *json.JSONSpec
expectError bool
}{
{
FileSpec: &FileSpec{
Format: FormatTypeCSV,
FormatSpec: map[string]any{},
},
preDefaultsCSV: &csv.CSVSpec{},
postDefaultsCSV: &csv.CSVSpec{
SkipHeader: false,
Delimiter: ",",
},
},
{
FileSpec: &FileSpec{
Format: FormatTypeCSV,
FormatSpec: map[string]any{
"delimiter": ",",
"skip_header": true,
},
},
preDefaultsCSV: &csv.CSVSpec{
SkipHeader: true,
Delimiter: ",",
},
postDefaultsCSV: &csv.CSVSpec{
SkipHeader: true,
Delimiter: ",",
},
},
{
FileSpec: &FileSpec{
Format: FormatTypeCSV,
FormatSpec: map[string]any{},
},
preDefaultsCSV: &csv.CSVSpec{
SkipHeader: false,
Delimiter: "",
},
postDefaultsCSV: &csv.CSVSpec{
SkipHeader: false,
Delimiter: ",",
},
},
{
FileSpec: &FileSpec{
Format: FormatTypeJSON,
},
preDefaultsJSON: &json.JSONSpec{},
postDefaultsJSON: &json.JSONSpec{},
},
{
FileSpec: &FileSpec{
Format: FormatTypeJSON,
FormatSpec: map[string]any{
"delimiter": ",",
},
},
expectError: true,
},
{
FileSpec: &FileSpec{
Format: FormatTypeCSV,
FormatSpec: map[string]any{
"delimiter22": ",",
},
},
expectError: true,
},
}
for _, tc := range testCases {
err := tc.FileSpec.UnmarshalSpec()
if tc.expectError {
assert.NotNil(t, err)
continue
}
assert.Equal(t, tc.preDefaultsCSV, tc.FileSpec.csvSpec)
assert.Equal(t, tc.preDefaultsJSON, tc.FileSpec.jsonSpec)
tc.FileSpec.SetDefaults()
assert.Equal(t, tc.postDefaultsCSV, tc.FileSpec.csvSpec)
assert.Equal(t, tc.postDefaultsJSON, tc.FileSpec.jsonSpec)
}
}