-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextract_test.go
724 lines (634 loc) · 15.3 KB
/
extract_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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
package structextract
import (
"reflect"
"strings"
"testing"
)
type testStruct struct {
Field1 string `json:"field_1" db:"field1"`
Field2 string `json:"field_2" db:"field2"`
Field3 bool `json:"field_3"`
Field4 interface{} `json:"field_4"`
}
func fakeData() *Extractor {
ts := testStruct{
Field1: "hello",
Field2: "world",
Field3: true,
Field4: "2016-10-10",
}
return New(&ts)
}
func fakeIgnoredData() *Extractor {
ts := testStruct{
Field1: "hello",
Field2: "world",
Field3: true,
Field4: "2016-10-10",
}
ext := New(&ts).
IgnoreField("Field2", "Field4")
return ext
}
func TestExtractor_Names(t *testing.T) {
ext := fakeData()
exp := []string{
"Field1",
"Field2",
"Field3",
"Field4",
}
res, _ := ext.Names()
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_Names_Invalid_Struct(t *testing.T) {
test := "test"
ext := New(&test)
_, err := ext.Names()
if err == nil {
t.Fatal("Passed value is not a valid struct")
}
}
func TestExtractor_NamesFromTag(t *testing.T) {
ext := fakeData()
exp := []string{
"field_1",
"field_2",
"field_3",
"field_4",
}
res, _ := ext.NamesFromTag("json")
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_NamesFromTag_Invalid_Struct(t *testing.T) {
test := []string{"fail", "fail2"}
ext := New(&test)
_, err := ext.NamesFromTag("json")
if err == nil {
t.Fatal("Passed value is not a valid struct")
}
}
func TestExtractor_NamesFromTagWithPrefix(t *testing.T) {
ext := fakeData()
prefix := "default_"
res, err := ext.NamesFromTagWithPrefix("json", prefix)
if err != nil {
t.Fatalf("unexpected error")
}
if !strings.Contains(res[1], prefix) {
t.Fatalf("prefix was not applied")
}
}
func TestExtractor_NamesFromTagWithPrefix_Empty_Tag(t *testing.T) {
ext := fakeData()
prefix := "default_"
out, err := ext.NamesFromTagWithPrefix("", prefix)
if err != nil {
t.Fatalf("error should be null")
}
if len(out) != 0 {
t.Fatalf("no objects was expected")
}
}
func TestExtractor_NamesFromTagWithPrefix_No_Prefix(t *testing.T) {
ext := fakeData()
resWith, err := ext.NamesFromTagWithPrefix("json", "")
if err != nil {
t.Fatalf("unexpected error")
}
resWithOut, err := ext.NamesFromTag("json")
if err != nil {
t.Fatalf("unexpected error")
}
if !reflect.DeepEqual(resWith, resWithOut) {
t.Fatalf("slices micmatch")
}
}
func TestExtractor_NamesFromTagWithPrefix_InvalidStruct(t *testing.T) {
test := []string{"fail", "fail2"}
ext := New(&test)
_, err := ext.NamesFromTagWithPrefix("json", "default-")
if err == nil {
t.Fatal("Passed value is not a valid struct")
}
}
func TestExtractor_Values(t *testing.T) {
ext := fakeData()
exp := []interface{}{
"hello",
"world",
true,
"2016-10-10",
}
res, _ := ext.Values()
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_Values_Invalid_Struct(t *testing.T) {
test := []string{"fail", "fail2"}
ext := New(&test)
_, err := ext.Values()
if err == nil {
t.Fatal("Passed value is not a valid struct")
}
}
func TestExtractor_ValuesFromTag(t *testing.T) {
ext := fakeData().IgnoreField("Field4")
exp := []interface{}{
"hello",
"world",
}
res, _ := ext.ValuesFromTag("db")
expectedLength := len(exp)
if len(res) != expectedLength {
t.Fatalf("Number of values do not match: expected:%d, got:%d", expectedLength, len(res))
}
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_ValuesFromTag_Invalid_Struct(t *testing.T) {
test := []string{"fail", "fail2"}
ext := New(&test)
_, err := ext.ValuesFromTag("json")
if err == nil {
t.Fatal("Passed value is not a valid struct")
}
}
func TestExtractor_FieldValueMap(t *testing.T) {
ext := fakeData()
exp := map[string]interface{}{
"Field1": "hello",
"Field2": "world",
"Field3": true,
"Field4": "2016-10-10",
}
res, _ := ext.FieldValueMap()
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_FieldValueMap_Invalid_Struct(t *testing.T) {
test := []string{"fail", "fail2"}
ext := New(&test)
_, err := ext.FieldValueMap()
if err == nil {
t.Fatal("Passed value is not a valid struct")
}
}
func TestExtractor_FieldValueFromTagMap(t *testing.T) {
ext := fakeData()
exp := map[string]interface{}{
"field_1": "hello",
"field_2": "world",
"field_3": true,
"field_4": "2016-10-10",
}
res, _ := ext.FieldValueFromTagMap("json")
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_FieldValueFromTagMap_Invalid_Struct(t *testing.T) {
test := []string{"fail", "fail2"}
ext := New(&test)
_, err := ext.FieldValueFromTagMap("json")
if err == nil {
t.Fatal("Passed value is not a valid struct")
}
}
func TestExtractor_GetFieldNamesIgnore(t *testing.T) {
ext := fakeIgnoredData()
exp := []string{
"Field1",
"Field3",
}
res, _ := ext.Names()
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_GetFieldValueFromTagMapIgnore(t *testing.T) {
ext := fakeIgnoredData()
exp := map[string]interface{}{
"field_1": "hello",
"field_3": true,
}
res, _ := ext.FieldValueFromTagMap("json")
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_GetFieldValueMapIgnore(t *testing.T) {
ext := fakeIgnoredData()
exp := map[string]interface{}{
"Field1": "hello",
"Field3": true,
}
res, _ := ext.FieldValueMap()
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_GetFieldNamesFromTagIgnore(t *testing.T) {
ext := fakeIgnoredData()
exp := []string{
"field_1",
"field_3",
}
res, _ := ext.NamesFromTag("json")
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_GetFieldNamesFromTagWithPrefixIgnore(t *testing.T) {
ext := fakeIgnoredData()
exp := []string{
"default_field_1",
"default_field_3",
}
res, _ := ext.NamesFromTagWithPrefix("json", "default_")
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_ValuesIgnore(t *testing.T) {
ext := fakeIgnoredData()
exp := []interface{}{
"hello",
true,
}
res, _ := ext.Values()
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_FieldValueFromTagMapWrongTag(t *testing.T) {
ext := fakeData()
exp := map[string]interface{}{}
res, _ := ext.FieldValueFromTagMap("json2")
if !reflect.DeepEqual(res, exp) {
t.FailNow()
}
}
func TestExtractor_IgnoreField_NotValidStruct(t *testing.T) {
notAStruct := []string{"test", "test2"}
ext := New(notAStruct).IgnoreField("test")
if ext.ignoredFields != nil {
t.Fatalf("not valid struct error was expected")
}
}
func TestExtractor_IgnoreField_NotValidField(t *testing.T) {
fk := fakeData()
fk.IgnoreField("NotAValidField")
exp := []interface{}{
"hello",
"world",
true,
"2016-10-10",
}
res, _ := fk.Values()
if !reflect.DeepEqual(res, exp) {
t.Fatalf("unexpected struct")
}
}
func TestTagMapping(t *testing.T) {
type test struct {
FieldA string `json:"fieldA" sql:"field_a"`
FieldB string `json:"fieldB" sql:"field_b"`
FieldC string `sql:"field_c"`
FieldD string `json:"fieldD"`
}
ext := New(&test{})
expected := map[string]string{
"fieldA": "field_a",
"fieldB": "field_b",
}
mapping, err := ext.TagMapping("json", "sql")
if err != nil {
t.Fatalf("encountered error (%s) whilst mapping tagged fields", err)
}
for k, v := range expected {
value, ok := mapping[k]
if !ok {
t.Errorf("mapping for key %s not found", k)
continue
}
if value != v {
t.Errorf("expected mapping mapping to be %s -> %s, got %s -> %s", k, v, k, value)
}
}
}
func TestTagMapping_ignoredFields(t *testing.T) {
type test struct {
FieldA string `json:"fieldA" sql:"field_a"`
FieldB string `json:"fieldB" sql:"field_b"`
FieldC string `sql:"field_c"`
FieldD string `json:"fieldD"`
}
ext := New(&test{}).IgnoreField("FieldA")
expected := map[string]string{
"fieldB": "field_b",
}
mapping, err := ext.TagMapping("json", "sql")
if err != nil {
t.Fatalf("encountered error (%s) whilst mapping tagged fields", err)
}
for k, v := range expected {
value, ok := mapping[k]
if !ok {
t.Errorf("mapping for key %s not found", k)
continue
}
if value != v {
t.Errorf("expected mapping mapping to be %s -> %s, got %s -> %s", k, v, k, value)
}
}
}
func TestTagMapping_invalidStruct(t *testing.T) {
type test struct {
Field string
}
ext := New(test{})
_, err := ext.TagMapping("json", "sql")
if err == nil {
t.Fatal("Passed value is not a valid struct")
}
}
func TestEmbeddedStructs_togglingBehaviour(t *testing.T) {
type Embed struct {
AnotherField string
}
type Outer struct {
Embed
Field string
}
ts := Outer{Embed{"another"}, "some"}
ext := New(&ts)
v, err := ext.Values()
if err != nil {
t.Fatal("failed to get values when not using embedded structs")
}
if len(v) != 1 {
t.Fatalf("expected a single value, got %d", len(v))
}
if !reflect.DeepEqual(v[0], "some") {
t.Fatalf("expected the single value to be 'some', got %v", v[0])
}
v, err = ext.UseEmbeddedStructs(true).Values()
if err != nil {
t.Fatalf("failed to get values when using embedded structs: %s", err)
}
if len(v) != 2 {
t.Fatalf("expected to get 2 values when using embedded struct")
}
}
type basicTypes struct {
BoolType bool `custom:"boolType" custom_two:"boolTypeTwo,omitempty"`
StringType string `custom:"stringType,omitempty"`
IntType int `custom:"intType,omitempty"`
ByteType []byte `custom:"byteType,omitempty"`
Float64Type float64 `custom:"float64Type,omitempty"`
BoolTypePtr *bool `custom:"boolTypePtr,omitempty"`
StringTypePtr *string `custom:"stringTypePtr,omitempty"`
IntTypePtr *int `custom:"intTypePtr,omitempty"`
Float64TypePtr *float64 `custom:"float64TypePtr,omitempty"`
FieldWithNoOmitTag string `custom:"fieldWithNoOmitTag"`
}
func TestExtractor_FieldValueFromTagMapOmitempty(t *testing.T) {
testBool := false
testStr := "test"
testInt := 6
testFloat64 := 1.2
tests := []struct {
name string
structIn basicTypes
expected map[string]interface{}
}{
{
name: "all fields empty, expect not omitted fields: boolType and fieldWithNoOmitTag",
structIn: basicTypes{},
expected: map[string]interface{}{
"boolType": false,
"fieldWithNoOmitTag": "",
},
},
{
name: "all fields initialised, expect all fields back",
structIn: basicTypes{
BoolType: true,
StringType: testStr,
IntType: 1,
ByteType: []byte("test"),
Float64Type: 1.2,
BoolTypePtr: &testBool,
StringTypePtr: &testStr,
IntTypePtr: &testInt,
Float64TypePtr: &testFloat64,
FieldWithNoOmitTag: testStr,
},
expected: map[string]interface{}{
"boolType": true,
"stringType": testStr,
"intType": 1,
"byteType": []byte("test"),
"float64Type": 1.2,
"boolTypePtr": &testBool,
"stringTypePtr": &testStr,
"intTypePtr": &testInt,
"float64TypePtr": &testFloat64,
"fieldWithNoOmitTag": testStr,
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
result, err := New(&test.structIn).FieldValueFromTagMap("custom")
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(test.expected, result) {
t.Fatalf("want %v, got %v", test.expected, result)
}
})
}
}
func TestExtractor_NamesFromTagOmitempty(t *testing.T) {
testBool := false
testStr := "test"
testInt := 6
testFloat64 := 1.2
tests := []struct {
name string
structIn basicTypes
expected []string
}{
{
name: "all fields empty, expect not omitted fields: boolType and fieldWithNoOmitTag",
structIn: basicTypes{},
expected: []string{
"boolType",
"fieldWithNoOmitTag",
},
},
{
name: "all fields initialised, expect all fields back",
structIn: basicTypes{
BoolType: true,
StringType: testStr,
IntType: 1,
ByteType: []byte("test"),
Float64Type: 1.2,
BoolTypePtr: &testBool,
StringTypePtr: &testStr,
IntTypePtr: &testInt,
Float64TypePtr: &testFloat64,
FieldWithNoOmitTag: testStr,
},
expected: []string{
"boolType",
"stringType",
"intType",
"byteType",
"float64Type",
"boolTypePtr",
"stringTypePtr",
"intTypePtr",
"float64TypePtr",
"fieldWithNoOmitTag",
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
result, err := New(&test.structIn).NamesFromTag("custom")
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(test.expected, result) {
t.Fatalf("want %v, got %v", test.expected, result)
}
})
}
}
func TestExtractor_NamesFromTagWithPrefixOmitempty(t *testing.T) {
testBool := false
testStr := "test"
testInt := 6
testFloat64 := 1.2
tests := []struct {
name string
structIn basicTypes
expected []string
}{
{
name: "all fields empty, expect not omitted fields: boolType and fieldWithNoOmitTag",
structIn: basicTypes{},
expected: []string{
"test_boolType",
"test_fieldWithNoOmitTag",
},
},
{
name: "all fields initialised, expect all fields back",
structIn: basicTypes{
BoolType: true,
StringType: testStr,
IntType: 1,
ByteType: []byte("test"),
Float64Type: 1.2,
BoolTypePtr: &testBool,
StringTypePtr: &testStr,
IntTypePtr: &testInt,
Float64TypePtr: &testFloat64,
FieldWithNoOmitTag: testStr,
},
expected: []string{
"test_boolType",
"test_stringType",
"test_intType",
"test_byteType",
"test_float64Type",
"test_boolTypePtr",
"test_stringTypePtr",
"test_intTypePtr",
"test_float64TypePtr",
"test_fieldWithNoOmitTag",
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
result, err := New(&test.structIn).NamesFromTagWithPrefix("custom", "test_")
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(test.expected, result) {
t.Fatalf("want %v, got %v", test.expected, result)
}
})
}
}
func TestExtractor_ValuesFromTagOmitempty(t *testing.T) {
testBool := false
testStr := "test"
testInt := 6
testFloat64 := 1.2
tests := []struct {
name string
structIn basicTypes
expected []interface{}
}{
{
name: "all fields empty, expect not omitted fields: boolType and fieldWithNoOmitTag",
structIn: basicTypes{},
expected: []interface{}{
false,
"",
},
},
{
name: "all fields initialised, expect all fields back",
structIn: basicTypes{
BoolType: true,
StringType: testStr,
IntType: 1,
ByteType: []byte("test"),
Float64Type: 1.2,
BoolTypePtr: &testBool,
StringTypePtr: &testStr,
IntTypePtr: &testInt,
Float64TypePtr: &testFloat64,
FieldWithNoOmitTag: testStr,
},
expected: []interface{}{
true,
testStr,
1,
[]byte("test"),
1.2,
&testBool,
&testStr,
&testInt,
&testFloat64,
testStr,
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
result, err := New(&test.structIn).ValuesFromTag("custom")
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(test.expected, result) {
t.Fatalf("want %v, got %v", test.expected, result)
}
})
}
}