-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconfig_test.go
365 lines (340 loc) · 7.73 KB
/
config_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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
package baker
import (
"io"
"strings"
"testing"
)
func TestFillCreateRecordDefault(t *testing.T) {
tests := []struct {
name string
field string
want byte
wantErr bool
}{
{
name: "default",
field: "",
want: DefaultLogLineFieldSeparator,
},
{
name: "explicit comma",
field: ",",
want: DefaultLogLineFieldSeparator,
},
{
name: "record separator",
field: "\u001e",
want: 0x1e,
},
{
name: "dot",
field: ".",
want: '.',
},
{
name: "not ascii",
field: "à",
wantErr: true,
},
{
name: "2 chars",
field: ",,",
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cfg := Config{
CSV: ConfigCSV{
FieldSeparator: tt.field,
},
}
err := cfg.fillCreateRecordDefault()
if tt.wantErr {
if err == nil {
t.Fatalf("Config.fillCreateRecordDefault() err: %v, wantErr: %v", err, tt.wantErr)
}
return
}
if sep := cfg.createRecord().(*LogLine).FieldSeparator; sep != tt.want {
t.Errorf(`got separator "%c" (%v), want "%c" (%v)`, sep, sep, tt.want, tt.want)
}
})
}
}
func TestEnvVarBaseReplace(t *testing.T) {
src := `
[general]
dont_validate_fields = ${DNT_VAL_FIELDS}
alt_form = "$ALT_FORM"
unexisting_var = "${THIS_DOESNT_EXIST}"
`
want := `
[general]
dont_validate_fields = true
alt_form = "ok"
unexisting_var = ""
`
mapper := func(v string) string {
switch v {
case "DNT_VAL_FIELDS":
return "true"
case "ALT_FORM":
return "ok"
}
return ""
}
s, err := replaceEnvVars(strings.NewReader(src), mapper)
if err != nil {
t.Fatalf("replaceEnvVars err: %v", err)
}
buf, _ := io.ReadAll(s)
if want != string(buf) {
t.Fatalf("wrong toml: %s", string(buf))
}
}
func Test_assignFieldMapping(t *testing.T) {
fieldNames := []string{"name0", "name1"}
fieldByName := func(n string) (FieldIndex, bool) {
for idx, name := range fieldNames {
if n == name {
return FieldIndex(idx), true
}
}
return 0, false
}
cfgFields := ConfigFields{
Names: []string{"name0", "name1"},
}
tests := []struct {
name string
cfg *Config
comp Components
wantErr bool
}{
{
name: "only in Config",
cfg: &Config{
Fields: cfgFields,
},
},
{
name: "only in Components",
cfg: &Config{},
comp: Components{
FieldByName: fieldByName,
FieldNames: fieldNames,
},
},
// error cases
{
name: "nothing set",
cfg: &Config{}, comp: Components{},
wantErr: true,
},
{
name: "FieldByName but not FieldName",
cfg: &Config{},
comp: Components{
FieldByName: fieldByName,
},
wantErr: true,
},
{
name: "FieldName but not FieldByName",
cfg: &Config{},
comp: Components{
FieldNames: fieldNames,
},
wantErr: true,
},
{
name: "mapping set both in Config and Components",
cfg: &Config{
Fields: cfgFields,
},
comp: Components{
FieldByName: fieldByName,
FieldNames: fieldNames,
},
wantErr: true,
},
{
name: "duplicated field name",
cfg: &Config{
Fields: ConfigFields{
Names: []string{"foo", "bar", "baz", "baz"},
},
},
comp: Components{},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := assignFieldMapping(tt.cfg, tt.comp); (err != nil) != tt.wantErr {
t.Errorf("assignFieldMapping() error = %v, wantErr %v", err, tt.wantErr)
}
if tt.wantErr {
return
}
// Now we check that fieldByName has been set correctly.
if field, ok := tt.cfg.fieldByName("name0"); field != 0 || !ok {
t.Errorf(`cfg.fieldByName("name0") = %v,%v, want %v,%v`, field, ok, 0, true)
}
if field, ok := tt.cfg.fieldByName("name1"); field != 1 || !ok {
t.Errorf(`cfg.fieldByName("name1") = %v,%v, want %v,%v`, field, ok, 1, true)
}
if field, ok := tt.cfg.fieldByName("do-no-exist"); ok {
t.Errorf(`cfg.fieldByName("do-no-exist") = %v,%v, want %v,%v`, field, ok, 0, false)
}
// Now we check that fieldName has been set correctly.
if name := tt.cfg.fieldNames[0]; name != "name0" {
t.Errorf(`cfg.fieldNames[0] = %q, want %q`, name, "name0")
}
if name := tt.cfg.fieldNames[1]; name != "name1" {
t.Errorf(`cfg.fieldNames[1] = %q, want %q`, name, "name1")
}
})
}
}
type dummyRecord map[FieldIndex]string
func (r dummyRecord) Parse([]byte, Metadata) error {
return nil
}
func (r dummyRecord) ToText(buf []byte) []byte {
return []byte("")
}
func (r dummyRecord) Copy() Record {
return nil
}
func (r dummyRecord) Clear() {
panic("unimplemented")
}
func (r dummyRecord) Get(i FieldIndex) []byte {
v, ok := r[i]
if !ok {
return make([]byte, 0)
}
return []byte(v)
}
func (r dummyRecord) Set(i FieldIndex, b []byte) {
r[i] = string(b)
}
func (r dummyRecord) Meta(key string) (v interface{}, ok bool) {
return r, true
}
func (r dummyRecord) Cache() *Cache {
return &Cache{}
}
func Test_assignValidationMapping(t *testing.T) {
fieldNames := []string{"name0", "name1"}
fieldByName := func(n string) (FieldIndex, bool) {
for idx, name := range fieldNames {
if n == name {
return FieldIndex(idx), true
}
}
return 0, false
}
cfgValidation := ConfigValidation{"name0": "^val$", "name1": "^val$"}
validate := func(r Record) (bool, FieldIndex) {
if string(r.Get(0)) != "val" {
return false, 0
}
if string(r.Get(1)) != "val" {
return false, 1
}
return true, 0
}
tests := []struct {
name string
cfg *Config
comp Components
wantErr bool
skipCheck bool
}{
{
name: "only in Config",
cfg: &Config{
Validation: cfgValidation,
fieldByName: fieldByName, // needed by func assignValidationMapping
},
comp: Components{},
},
{
name: "only in Components",
cfg: &Config{
fieldByName: fieldByName, // needed by func assignValidationMapping
},
comp: Components{
Validate: validate,
},
},
{
name: "nothing set",
cfg: &Config{},
comp: Components{},
skipCheck: true, // check only that cfg.validate is not nil
},
// error cases
{
name: "validation set both in Config and Components",
cfg: &Config{
Validation: cfgValidation,
fieldByName: fieldByName, // needed by func assignValidationMapping
},
comp: Components{
Validate: validate,
},
wantErr: true,
},
{
name: "not existing field name",
cfg: &Config{
Validation: ConfigValidation{"badname": "^val$"},
fieldByName: fieldByName, // needed by func assignValidationMapping
},
comp: Components{},
wantErr: true,
},
{
name: "validation regex not compile",
cfg: &Config{
Validation: ConfigValidation{"name0": "*"},
fieldByName: fieldByName, // needed by func assignValidationMapping
},
comp: Components{},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := assignValidationMapping(tt.cfg, tt.comp); (err != nil) != tt.wantErr {
t.Errorf("assignValidationMapping() error = %v, wantErr %v", err, tt.wantErr)
}
if tt.wantErr {
return
}
if tt.cfg.validate == nil {
t.Errorf("cfg.validate should always be set")
}
if tt.skipCheck {
return
}
// Now we check that validate has been set correctly.
rec := dummyRecord{0: "val", 1: "val"}
if ok, field := tt.cfg.validate(rec); !ok || field != 0 {
t.Errorf(`cfg.validate("%v") = %v,%v, want %v,%v`, rec, ok, field, true, 0)
}
rec = dummyRecord{0: "badval", 1: "val"}
if ok, field := tt.cfg.validate(rec); ok && field != 0 {
t.Errorf(`cfg.validate("%v") = %v,%v, want %v,%v`, rec, ok, field, false, 0)
}
rec = dummyRecord{0: "val", 1: "badval"}
if ok, field := tt.cfg.validate(rec); ok && field != 1 {
t.Errorf(`cfg.validate("%v") = %v,%v, want %v,%v`, rec, ok, field, false, 1)
}
})
}
}