-
Notifications
You must be signed in to change notification settings - Fork 70
/
defaults_test.go
771 lines (703 loc) · 21.3 KB
/
defaults_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
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
package defaults
import (
"encoding/json"
"errors"
"net"
"reflect"
"strconv"
"testing"
"time"
"github.com/creasty/defaults/internal/fixture"
)
type (
MyInt int
MyInt8 int8
MyInt16 int16
MyInt32 int32
MyInt64 int64
MyUint uint
MyUint8 uint8
MyUint16 uint16
MyUint32 uint32
MyUint64 uint64
MyUintptr uintptr
MyFloat32 float32
MyFloat64 float64
MyBool bool
MyString string
MyMap map[string]int
MySlice []int
)
type Sample struct {
Int int `default:"1"`
Int8 int8 `default:"8"`
Int16 int16 `default:"16"`
Int32 int32 `default:"32"`
Int64 int64 `default:"64"`
Uint uint `default:"1"`
Uint8 uint8 `default:"8"`
Uint16 uint16 `default:"16"`
Uint32 uint32 `default:"32"`
Uint64 uint64 `default:"64"`
Uintptr uintptr `default:"1"`
Float32 float32 `default:"1.32"`
Float64 float64 `default:"1.64"`
BoolTrue bool `default:"true"`
BoolFalse bool `default:"false"`
String string `default:"hello"`
Duration time.Duration `default:"10s"`
IntOct int `default:"0o1"`
Int8Oct int8 `default:"0o10"`
Int16Oct int16 `default:"0o20"`
Int32Oct int32 `default:"0o40"`
Int64Oct int64 `default:"0o100"`
UintOct uint `default:"0o1"`
Uint8Oct uint8 `default:"0o10"`
Uint16Oct uint16 `default:"0o20"`
Uint32Oct uint32 `default:"0o40"`
Uint64Oct uint64 `default:"0o100"`
IntHex int `default:"0x1"`
Int8Hex int8 `default:"0x8"`
Int16Hex int16 `default:"0x10"`
Int32Hex int32 `default:"0x20"`
Int64Hex int64 `default:"0x40"`
UintHex uint `default:"0x1"`
Uint8Hex uint8 `default:"0x8"`
Uint16Hex uint16 `default:"0x10"`
Uint32Hex uint32 `default:"0x20"`
Uint64Hex uint64 `default:"0x40"`
IntBin int `default:"0b1"`
Int8Bin int8 `default:"0b1000"`
Int16Bin int16 `default:"0b10000"`
Int32Bin int32 `default:"0b100000"`
Int64Bin int64 `default:"0b1000000"`
UintBin uint `default:"0b1"`
Uint8Bin uint8 `default:"0b1000"`
Uint16Bin uint16 `default:"0b10000"`
Uint32Bin uint32 `default:"0b100000"`
Uint64Bin uint64 `default:"0b1000000"`
Struct Struct `default:"{}"`
Map map[string]int `default:"{}"`
Slice []string `default:"[]"`
IntPtr *int `default:"1"`
UintPtr *uint `default:"1"`
Float32Ptr *float32 `default:"1"`
BoolPtr *bool `default:"true"`
StringPtr *string `default:"hello"`
StructPtr *Struct `default:"{}"`
MapPtr *map[string]int `default:"{}"`
SlicePtr *[]string `default:"[]"`
MyInt MyInt `default:"1"`
MyInt8 MyInt8 `default:"8"`
MyInt16 MyInt16 `default:"16"`
MyInt32 MyInt32 `default:"32"`
MyInt64 MyInt64 `default:"64"`
MyUint MyUint `default:"1"`
MyUint8 MyUint8 `default:"8"`
MyUint16 MyUint16 `default:"16"`
MyUint32 MyUint32 `default:"32"`
MyUint64 MyUint64 `default:"64"`
MyUintptr MyUintptr `default:"1"`
MyFloat32 MyFloat32 `default:"1.32"`
MyFloat64 MyFloat64 `default:"1.64"`
MyBoolTrue MyBool `default:"true"`
MyBoolFalse MyBool `default:"false"`
MyString MyString `default:"hello"`
MyMap MyMap `default:"{}"`
MySlice MySlice `default:"[]"`
StructWithText net.IP `default:"10.0.0.1"`
StructPtrWithText *net.IP `default:"10.0.0.1"`
StructWithJSON Struct `default:"{\"Foo\": 123}"`
StructPtrWithJSON *Struct `default:"{\"Foo\": 123}"`
MapWithJSON map[string]int `default:"{\"foo\": 123}"`
TypeWithUnmarshalJSON JSONOnlyType `default:"\"one\""`
MapOfPtrStruct map[string]*Struct
MapOfStruct map[string]Struct
MapOfStructWithTag map[string]Struct `default:"{\"Struct3\": {\"Foo\":123}}"`
SliceWithJSON []string `default:"[\"foo\"]"`
Empty string `default:""`
NoDefault *string `default:"-"`
NoDefaultStruct Struct `default:"-"`
MapWithNoTag map[string]int
SliceWithNoTag []string
StructPtrWithNoTag *Struct
StructWithNoTag Struct
DeepSliceOfStructWithNoTag [][][]Struct
NonInitialString string `default:"foo"`
NonInitialSlice []int `default:"[123]"`
NonInitialStruct Struct `default:"{}"`
NonInitialStructPtr *Struct `default:"{}"`
StructSliceWithEmptyDefaultElem []Struct `default:"[{}]"`
StructSliceWithFilledDefaultElem []Struct `default:"[{\"WithDefault\":\"changed\"}]"`
}
type Struct struct {
Embedded `default:"{}"`
Foo int
Bar int
WithDefault string `default:"foo"`
}
func (s *Struct) SetDefaults() {
s.Bar = 456
}
type Embedded struct {
Int int `default:"1"`
}
type JSONOnlyType int
func (j *JSONOnlyType) UnmarshalJSON(b []byte) error {
var tmp string
if err := json.Unmarshal(b, &tmp); err != nil {
return err
}
if i, err := strconv.Atoi(tmp); err == nil {
*j = JSONOnlyType(i)
return nil
}
if tmp == "one" {
*j = 1
return nil
}
return errors.New("cannot unmarshal")
}
func TestMustSet(t *testing.T) {
t.Run("right way", func(t *testing.T) {
defer func() {
if err := recover(); err != nil {
t.Fatalf("it should not panic error: %v", err)
}
}()
sample := &Sample{
NonInitialString: "string",
NonInitialSlice: []int{1, 2, 3},
NonInitialStruct: Struct{Foo: 123},
NonInitialStructPtr: &Struct{Foo: 123},
DeepSliceOfStructWithNoTag: [][][]Struct{{{{Foo: 123}}}},
}
MustSet(sample)
})
t.Run("not struct", func(t *testing.T) {
defer func() {
if err := recover(); err != nil {
t.Logf("panic error: %v", err)
}
}()
var a int
MustSet(&a)
})
t.Run("not pointer", func(t *testing.T) {
defer func() {
if err := recover(); err != nil {
t.Logf("panic error: %v", err)
}
}()
sample := Sample{
NonInitialString: "string",
NonInitialSlice: []int{1, 2, 3},
NonInitialStruct: Struct{Foo: 123},
NonInitialStructPtr: &Struct{Foo: 123},
DeepSliceOfStructWithNoTag: [][][]Struct{{{{Foo: 123}}}},
}
MustSet(sample)
})
}
func TestInit(t *testing.T) {
sample := &Sample{
NonInitialString: "string",
NonInitialSlice: []int{1, 2, 3},
NonInitialStruct: Struct{Foo: 123},
NonInitialStructPtr: &Struct{Foo: 123},
DeepSliceOfStructWithNoTag: [][][]Struct{{{{Foo: 123}}}},
MapOfStruct: map[string]Struct{
"Struct1": {Foo: 1},
},
MapOfPtrStruct: map[string]*Struct{
"Struct1": {Foo: 1},
"Struct2": {Bar: 5},
},
}
if err := Set(sample); err != nil {
t.Fatalf("it should not return an error: %v", err)
}
nonPtrVal := 1
if err := Set(nonPtrVal); err == nil {
t.Fatalf("it should return an error when used for a non-pointer type")
}
if err := Set(&nonPtrVal); err == nil {
t.Fatalf("it should return an error when used for a non-pointer type")
}
Set(&fixture.Sample{}) // should not panic
t.Run("primitive types", func(t *testing.T) {
if sample.Int != 1 {
t.Errorf("it should initialize int")
}
if sample.Int8 != 8 {
t.Errorf("it should initialize int8")
}
if sample.Int16 != 16 {
t.Errorf("it should initialize int16")
}
if sample.Int32 != 32 {
t.Errorf("it should initialize int32")
}
if sample.Int64 != 64 {
t.Errorf("it should initialize int64")
}
if sample.Uint != 1 {
t.Errorf("it should initialize uint")
}
if sample.Uint8 != 8 {
t.Errorf("it should initialize uint8")
}
if sample.Uint16 != 16 {
t.Errorf("it should initialize uint16")
}
if sample.Uint32 != 32 {
t.Errorf("it should initialize uint32")
}
if sample.Uint64 != 64 {
t.Errorf("it should initialize uint64")
}
if sample.Uintptr != 1 {
t.Errorf("it should initialize uintptr")
}
if sample.Float32 != 1.32 {
t.Errorf("it should initialize float32")
}
if sample.Float64 != 1.64 {
t.Errorf("it should initialize float64")
}
if sample.BoolTrue != true {
t.Errorf("it should initialize bool (true)")
}
if sample.BoolFalse != false {
t.Errorf("it should initialize bool (false)")
}
if *sample.BoolPtr != true {
t.Errorf("it should initialize bool (true)")
}
if sample.String != "hello" {
t.Errorf("it should initialize string")
}
if sample.IntOct != 0o1 {
t.Errorf("it should initialize int with octal literal")
}
if sample.Int8Oct != 0o10 {
t.Errorf("it should initialize int8 with octal literal")
}
if sample.Int16Oct != 0o20 {
t.Errorf("it should initialize int16 with octal literal")
}
if sample.Int32Oct != 0o40 {
t.Errorf("it should initialize int32 with octal literal")
}
if sample.Int64Oct != 0o100 {
t.Errorf("it should initialize int64 with octal literal")
}
if sample.UintOct != 0o1 {
t.Errorf("it should initialize uint with octal literal")
}
if sample.Uint8Oct != 0o10 {
t.Errorf("it should initialize uint8 with octal literal")
}
if sample.Uint16Oct != 0o20 {
t.Errorf("it should initialize uint16 with octal literal")
}
if sample.Uint32Oct != 0o40 {
t.Errorf("it should initialize uint32 with octal literal")
}
if sample.Uint64Oct != 0o100 {
t.Errorf("it should initialize uint64 with octal literal")
}
if sample.IntHex != 0x1 {
t.Errorf("it should initialize int with hexadecimal literal")
}
if sample.Int8Hex != 0x8 {
t.Errorf("it should initialize int8 with hexadecimal literal")
}
if sample.Int16Hex != 0x10 {
t.Errorf("it should initialize int16 with hexadecimal literal")
}
if sample.Int32Hex != 0x20 {
t.Errorf("it should initialize int32 with hexadecimal literal")
}
if sample.Int64Hex != 0x40 {
t.Errorf("it should initialize int64 with hexadecimal literal")
}
if sample.UintHex != 0x1 {
t.Errorf("it should initialize uint with hexadecimal literal")
}
if sample.Uint8Hex != 0x8 {
t.Errorf("it should initialize uint8 with hexadecimal literal")
}
if sample.Uint16Hex != 0x10 {
t.Errorf("it should initialize uint16 with hexadecimal literal")
}
if sample.Uint32Hex != 0x20 {
t.Errorf("it should initialize uint32 with hexadecimal literal")
}
if sample.Uint64Hex != 0x40 {
t.Errorf("it should initialize uint64 with hexadecimal literal")
}
if sample.IntBin != 0b1 {
t.Errorf("it should initialize int with binary literal")
}
if sample.Int8Bin != 0b1000 {
t.Errorf("it should initialize int8 with binary literal")
}
if sample.Int16Bin != 0b10000 {
t.Errorf("it should initialize int16 with binary literal")
}
if sample.Int32Bin != 0b100000 {
t.Errorf("it should initialize int32 with binary literal")
}
if sample.Int64Bin != 0b1000000 {
t.Errorf("it should initialize int64 with binary literal")
}
if sample.UintBin != 0b1 {
t.Errorf("it should initialize uint with binary literal")
}
if sample.Uint8Bin != 0b1000 {
t.Errorf("it should initialize uint8 with binary literal")
}
if sample.Uint16Bin != 0b10000 {
t.Errorf("it should initialize uint16 with binary literal")
}
if sample.Uint32Bin != 0b100000 {
t.Errorf("it should initialize uint32 with binary literal")
}
if sample.Uint64Bin != 0b1000000 {
t.Errorf("it should initialize uint64 with binary literal")
}
})
t.Run("complex types", func(t *testing.T) {
if sample.StructPtr == nil {
t.Errorf("it should initialize struct pointer")
}
if sample.Map == nil {
t.Errorf("it should initialize map")
}
if sample.Slice == nil {
t.Errorf("it should initialize slice")
}
})
t.Run("pointer types", func(t *testing.T) {
if sample.IntPtr == nil || *sample.IntPtr != 1 {
t.Errorf("it should initialize int pointer")
}
if sample.UintPtr == nil || *sample.UintPtr != 1 {
t.Errorf("it should initialize uint pointer")
}
if sample.Float32Ptr == nil || *sample.Float32Ptr != 1 {
t.Errorf("it should initialize float32 pointer")
}
if sample.BoolPtr == nil || *sample.BoolPtr != true {
t.Errorf("it should initialize bool pointer")
}
if sample.StringPtr == nil || *sample.StringPtr != "hello" {
t.Errorf("it should initialize string pointer")
}
if sample.MapPtr == nil {
t.Errorf("it should initialize map ptr")
}
if sample.SlicePtr == nil {
t.Errorf("it should initialize slice ptr")
}
})
t.Run("aliased types", func(t *testing.T) {
if sample.MyInt != 1 {
t.Errorf("it should initialize int")
}
if sample.MyInt8 != 8 {
t.Errorf("it should initialize int8")
}
if sample.MyInt16 != 16 {
t.Errorf("it should initialize int16")
}
if sample.MyInt32 != 32 {
t.Errorf("it should initialize int32")
}
if sample.MyInt64 != 64 {
t.Errorf("it should initialize int64")
}
if sample.MyUint != 1 {
t.Errorf("it should initialize uint")
}
if sample.MyUint8 != 8 {
t.Errorf("it should initialize uint8")
}
if sample.MyUint16 != 16 {
t.Errorf("it should initialize uint16")
}
if sample.MyUint32 != 32 {
t.Errorf("it should initialize uint32")
}
if sample.MyUint64 != 64 {
t.Errorf("it should initialize uint64")
}
if sample.MyUintptr != 1 {
t.Errorf("it should initialize uintptr")
}
if sample.MyFloat32 != 1.32 {
t.Errorf("it should initialize float32")
}
if sample.MyFloat64 != 1.64 {
t.Errorf("it should initialize float64")
}
if sample.MyBoolTrue != true {
t.Errorf("it should initialize bool (true)")
}
if sample.MyBoolFalse != false {
t.Errorf("it should initialize bool (false)")
}
if sample.MyString != "hello" {
t.Errorf("it should initialize string")
}
if sample.MyMap == nil {
t.Errorf("it should initialize map")
}
if sample.MySlice == nil {
t.Errorf("it should initialize slice")
}
})
t.Run("nested", func(t *testing.T) {
if sample.Struct.WithDefault != "foo" {
t.Errorf("it should set default on inner field in struct")
}
if sample.StructPtr == nil || sample.StructPtr.WithDefault != "foo" {
t.Errorf("it should set default on inner field in struct pointer")
}
if sample.Struct.Embedded.Int != 1 {
t.Errorf("it should set default on an Embedded struct")
}
})
t.Run("complex types with text unmarshal", func(t *testing.T) {
if !sample.StructWithText.Equal(net.ParseIP("10.0.0.1")) {
t.Errorf("it should initialize struct with text")
}
if !sample.StructPtrWithText.Equal(net.ParseIP("10.0.0.1")) {
t.Errorf("it should initialize struct with text")
}
})
t.Run("complex types with json", func(t *testing.T) {
if sample.StructWithJSON.Foo != 123 {
t.Errorf("it should initialize struct with json")
}
if sample.StructPtrWithJSON == nil || sample.StructPtrWithJSON.Foo != 123 {
t.Errorf("it should initialize struct pointer with json")
}
if sample.MapWithJSON["foo"] != 123 {
t.Errorf("it should initialize map with json")
}
if len(sample.SliceWithJSON) == 0 || sample.SliceWithJSON[0] != "foo" {
t.Errorf("it should initialize slice with json")
}
if int(sample.TypeWithUnmarshalJSON) != 1 {
t.Errorf("it should initialize json unmarshaled value")
}
t.Run("invalid json", func(t *testing.T) {
if err := Set(&struct {
I []int `default:"[!]"`
}{}); err == nil {
t.Errorf("it should return error")
}
if err := Set(&struct {
I map[string]int `default:"{1}"`
}{}); err == nil {
t.Errorf("it should return error")
}
if err := Set(&struct {
S struct {
I []int
} `default:"{!}"`
}{}); err == nil {
t.Errorf("it should return error")
}
if err := Set(&struct {
S struct {
I []int `default:"[!]"`
}
}{}); err == nil {
t.Errorf("it should return error")
}
})
})
t.Run("Setter interface", func(t *testing.T) {
if sample.Struct.Bar != 456 {
t.Errorf("it should initialize struct")
}
if sample.StructPtr == nil || sample.StructPtr.Bar != 456 {
t.Errorf("it should initialize struct pointer")
}
})
t.Run("non-initial value", func(t *testing.T) {
if sample.NonInitialString != "string" {
t.Errorf("it should not override non-initial value")
}
if !reflect.DeepEqual(sample.NonInitialSlice, []int{1, 2, 3}) {
t.Errorf("it should not override non-initial value")
}
if !reflect.DeepEqual(sample.NonInitialStruct, Struct{Embedded: Embedded{Int: 1}, Foo: 123, Bar: 456, WithDefault: "foo"}) {
t.Errorf("it should not override non-initial value but set defaults for fields")
}
if !reflect.DeepEqual(sample.NonInitialStructPtr, &Struct{Embedded: Embedded{Int: 1}, Foo: 123, Bar: 456, WithDefault: "foo"}) {
t.Errorf("it should not override non-initial value but set defaults for fields")
}
})
t.Run("no tag", func(t *testing.T) {
if sample.MapWithNoTag != nil {
t.Errorf("it should not initialize pointer type (map)")
}
if sample.SliceWithNoTag != nil {
t.Errorf("it should not initialize pointer type (slice)")
}
if sample.StructPtrWithNoTag != nil {
t.Errorf("it should not initialize pointer type (struct)")
}
if sample.StructWithNoTag.WithDefault != "foo" {
t.Errorf("it should automatically recurse into a struct even without a tag")
}
if !reflect.DeepEqual(sample.DeepSliceOfStructWithNoTag, [][][]Struct{{{{Embedded: Embedded{Int: 1}, Foo: 123, Bar: 456, WithDefault: "foo"}}}}) {
t.Errorf("it should automatically recurse into a slice of structs even without a tag")
}
})
t.Run("map of struct", func(t *testing.T) {
if sample.MapOfStruct == nil {
t.Errorf("it should not unset an initiated map")
}
if len(sample.MapOfStruct) != 1 {
t.Errorf("it should not override an initiated map")
}
if sample.MapOfStruct["Struct1"].Foo != 1 {
t.Errorf("it should not override Foo field in Struct1 item")
}
if sample.MapOfStruct["Struct1"].Bar != 456 {
t.Errorf("it should set default for Bar field in Struct1 item")
}
if sample.MapOfStruct["Struct1"].WithDefault != "foo" {
t.Errorf("it should set default for WithDefault field in Struct1 item")
}
})
t.Run("map of ptr struct", func(t *testing.T) {
if sample.MapOfPtrStruct == nil {
t.Errorf("it should not unset an initiated map")
}
if len(sample.MapOfPtrStruct) != 2 {
t.Errorf("it should not override an initiated map")
}
if sample.MapOfPtrStruct["Struct1"].Foo != 1 {
t.Errorf("it should not override Foo field in Struct1 item")
}
if sample.MapOfPtrStruct["Struct1"].Bar != 456 {
t.Errorf("it should set default for Bar field in Struct1 item")
}
if sample.MapOfPtrStruct["Struct1"].WithDefault != "foo" {
t.Errorf("it should set default for WithDefault field in Struct1 item")
}
if sample.MapOfPtrStruct["Struct2"].Foo != 0 {
t.Errorf("it should not override Foo field in Struct2 item")
}
if sample.MapOfPtrStruct["Struct2"].Bar != 456 {
t.Errorf("it should using setter to set default for Bar field in a Struct2 item")
}
if sample.MapOfPtrStruct["Struct2"].WithDefault != "foo" {
t.Errorf("it should set default for WithDefault field in Struct2 item")
}
})
t.Run("map of struct with tag", func(t *testing.T) {
if sample.MapOfStructWithTag == nil {
t.Errorf("it should set default")
}
if len(sample.MapOfStructWithTag) != 1 {
t.Errorf("it should set default with correct value")
}
if sample.MapOfStructWithTag["Struct3"].Foo != 123 {
t.Errorf("it should set default with correct value (Foo)")
}
if sample.MapOfStructWithTag["Struct1"].Bar != 0 {
t.Errorf("it should set default with correct value (Bar)")
}
if sample.MapOfStructWithTag["Struct1"].WithDefault != "" {
t.Errorf("it should set default with correct value (WithDefault)")
}
})
t.Run("opt-out", func(t *testing.T) {
if sample.NoDefault != nil {
t.Errorf("it should not be set")
}
if sample.NoDefaultStruct.WithDefault != "" {
t.Errorf("it should not initialize a struct with default values")
}
})
t.Run("slice of structs", func(t *testing.T) {
if !reflect.DeepEqual(sample.StructSliceWithEmptyDefaultElem, []Struct{{Embedded: Embedded{Int: 1}, Foo: 0, Bar: 456, WithDefault: "foo"}}) {
t.Errorf("it should automatically fill a slice of structs with elements from default")
}
if !reflect.DeepEqual(sample.StructSliceWithFilledDefaultElem, []Struct{{Embedded: Embedded{Int: 1}, Foo: 0, Bar: 456, WithDefault: "changed"}}) {
t.Errorf("it should overwrite child's default with parent's")
}
})
}
func TestCanUpdate(t *testing.T) {
type st struct{ Int int }
var myStructPtr *st
pairs := map[interface{}]bool{
0: true,
123: false,
float64(0): true,
float64(123): false,
"": true,
"string": false,
false: true,
true: false,
st{}: true,
st{Int: 123}: false,
myStructPtr: true,
&st{}: false,
}
for input, expect := range pairs {
output := CanUpdate(input)
if output != expect {
t.Errorf("CanUpdate(%v) returns %v, expected %v", input, output, expect)
}
}
}
type Child struct {
Name string `default:"Tom"`
Age int `default:"20"`
}
type Parent struct {
Child *Child
}
func TestPointerStructMember(t *testing.T) {
m := Parent{Child: &Child{Name: "Jim"}}
Set(&m)
if m.Child.Age != 20 {
t.Errorf("20 is expected")
}
}
type Main struct {
MainInt int `default:"-"`
*Other `default:"{}"`
}
type Other struct {
OtherInt int `default:"-"`
}
func (s *Main) SetDefaults() {
if CanUpdate(s.MainInt) {
s.MainInt = 1
}
}
func (s *Other) SetDefaults() {
if CanUpdate(s.OtherInt) {
s.OtherInt = 1
}
}
func TestDefaultsSetter(t *testing.T) {
main := &Main{}
Set(main)
if main.OtherInt != 1 {
t.Errorf("expected 1 for OtherInt, got %d", main.OtherInt)
}
if main.MainInt != 1 {
t.Errorf("expected 1 for MainInt, got %d", main.MainInt)
}
}