-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathstruct-to-map_test.go
709 lines (628 loc) · 20 KB
/
struct-to-map_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
package mapper
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
"reflect"
"time"
)
var _ = Describe("Utility method", func() {
It("NewBSONMapperStruct should return a new wrapped struct", func() {
testStruct := struct {
TestField1 string
TestField2 bool
}{
TestField1: "Test String",
TestField2: true,
}
result := NewBSONMapperStruct(testStruct)
Expect(result.value.Interface()).To(Equal(reflect.ValueOf(testStruct).Interface()))
Expect(result.raw).To(Equal(testStruct))
Expect(result.TagName).To(Equal("bson"))
Expect(reflect.ValueOf(result).Kind()).To(Equal(reflect.Ptr))
Expect(reflect.ValueOf(result).Elem().Kind()).To(Equal(reflect.Struct))
})
It("SetTagName should set a new TagName", func() {
testStruct := NewBSONMapperStruct(
struct {
TestField1 string
TestField2 bool
}{
TestField1: "Test String",
TestField2: true,
},
)
testStruct.SetTagName("TestTag")
Expect(testStruct.TagName).To(Equal("TestTag"))
})
DescribeTable("CovertStructToBSONMap should return nil if", func(c interface{}) {
result := ConvertStructToBSONMap(c, nil)
Expect(result).To(BeNil())
},
Entry("a string is passed", "Test String"),
Entry("an int is passed", 123),
Entry("a bool is passed", true),
Entry("a slice is passed", []int{1, 2, 3}),
Entry("a map is passed", map[string]struct{}{"Test 1": struct{}{}, "Test 2": struct{}{}}),
Entry("a function is passed", func() {}),
Entry("a pointer to a string is passed", new(string)),
Entry("a pointer to an int is passed", new(int)),
Entry("a pointer to a bool is passed", new(bool)),
Entry("a pointer to a slice is passed", new([]int)),
Entry("a pointer to a map is passed", new(map[string]struct{})),
Entry("a pointer to a function is passed", new(func())),
)
})
var _ = Describe("The Mapping functions", func() {
// Testing the functionality of the Mapping Options
Context("should correctly utilise the Mapping Options struct", func() {
type structWithID struct {
ID string `bson:"_id,omitempty"`
TestField1 int `bson:"testField1"`
TestField2 struct {
ID string `bson:"_id,omitempty"`
TestField3 bool `bson:"testField3"`
} `bson:"testField2"`
}
var testStruct structWithID
BeforeEach(func() {
testStruct = structWithID{
ID: "TEST ID 1",
TestField1: 900,
TestField2: struct {
ID string `bson:"_id,omitempty"`
TestField3 bool `bson:"testField3"`
}{
ID: "TEST ID 2",
TestField3: true,
},
}
})
It("when UseID is set to true", func() {
result := ConvertStructToBSONMap(testStruct, &MappingOpts{UseIDifAvailable: true})
Expect(result).To(Equal(bson.M{"_id": "TEST ID 1"}))
})
It("when UseID is set to true but no ID is provided", func() {
testStruct.ID = ""
testStruct.TestField2.ID = ""
expected := bson.M{
"testField1": 900,
"testField2": bson.M{
"testField3": true,
},
}
result := ConvertStructToBSONMap(testStruct, &MappingOpts{UseIDifAvailable: true})
Expect(result).To(Equal(expected))
})
It("when UseID is set to true but no ID is provided on the top level struct", func() {
testStruct.ID = ""
expected := bson.M{
"testField1": 900,
"testField2": bson.M{
"_id": "TEST ID 2",
},
}
result := ConvertStructToBSONMap(testStruct, &MappingOpts{UseIDifAvailable: true})
Expect(result).To(Equal(expected))
})
It("when RemoveID is set to true", func() {
result := ConvertStructToBSONMap(testStruct, &MappingOpts{RemoveID: true})
expected := bson.M{
"testField1": 900,
"testField2": bson.M{
"testField3": true,
},
}
Expect(result).To(Equal(expected))
})
It("when UseID & RemoveID are set to true", func() {
result := ConvertStructToBSONMap(testStruct, &MappingOpts{UseIDifAvailable: true, RemoveID: true})
Expect(result).To(Equal(bson.M{"_id": "TEST ID 1"}))
})
})
// Testing the functionality of the mapping a flat struct (no nested structs)
Context("should", func() {
type valueStruct struct {
Str string
Num int
Bool bool
Float float64
Time time.Time
SliceInt []int
SliceString []string
Map map[string]int
}
type flatStruct struct {
// Values
Str string `bson:"str"`
Num int `bson:"num"`
Bool bool `bson:"bool"`
Float float64 `bson:"float"`
Time time.Time `bson:"time"`
SliceInt []int `bson:"sliceInt"`
SliceString []string `bson:"sliceString"`
Map map[string]int `bson:"map"`
// Pointers
StrPtr *string `bson:"strPtr"`
NumPtr *int `bson:"numPtr"`
BoolPtr *bool `bson:"boolPtr"`
FloatPtr *float64 `bson:"floatPtr"`
TimePtr *time.Time `bson:"timePtr"`
SliceIntPtr *[]int `bson:"sliceIntPtr"`
SliceStringPtr *[]string `bson:"sliceStringPtr"`
}
var validValues valueStruct
BeforeEach(func() {
validValues = valueStruct{
Str: "Test String",
Num: 10,
Bool: true,
Float: 10.1,
Time: time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC),
SliceInt: []int{1, 2, 3},
SliceString: []string{"Test1", "Test 2"},
Map: map[string]int{"Test 1": 0, "Test 2!": 100, "Test 3": -100},
}
})
Context("map a flat struct", func() {
var testStruct flatStruct
var expected bson.M
BeforeEach(func() {
testStruct = flatStruct{
Str: validValues.Str,
Num: validValues.Num,
Bool: validValues.Bool,
Float: validValues.Float,
Time: validValues.Time,
SliceInt: validValues.SliceInt,
SliceString: validValues.SliceString,
Map: validValues.Map,
StrPtr: &validValues.Str,
NumPtr: &validValues.Num,
BoolPtr: &validValues.Bool,
FloatPtr: &validValues.Float,
TimePtr: &validValues.Time,
SliceIntPtr: &validValues.SliceInt,
SliceStringPtr: &validValues.SliceString,
}
expected = bson.M{
"str": validValues.Str,
"num": validValues.Num,
"bool": validValues.Bool,
"float": validValues.Float,
"time": validValues.Time,
"sliceInt": validValues.SliceInt,
"sliceString": validValues.SliceString,
"map": validValues.Map,
"strPtr": &validValues.Str,
"numPtr": &validValues.Num,
"boolPtr": &validValues.Bool,
"floatPtr": &validValues.Float,
"timePtr": &validValues.Time,
"sliceIntPtr": validValues.SliceInt,
"sliceStringPtr": validValues.SliceString,
}
})
It("should map a flat struct with nil options", func() {
result := ConvertStructToBSONMap(testStruct, nil)
Expect(len(result)).To(Equal(len(expected)))
for k, _ := range result {
Expect(result[k]).To(Equal(expected[k]))
}
})
It("should map a flat struct with UseID set to true - with no _id provided", func() {
result := ConvertStructToBSONMap(testStruct, &MappingOpts{UseIDifAvailable: true})
Expect(len(result)).To(Equal(len(expected)))
for k, _ := range result {
Expect(result[k]).To(Equal(expected[k]))
}
})
It("should map a flat struct with RemoveID set to true - no _id provided", func() {
result := ConvertStructToBSONMap(testStruct, &MappingOpts{RemoveID: true})
Expect(len(result)).To(Equal(len(expected)))
for k, _ := range result {
Expect(result[k]).To(Equal(expected[k]))
}
})
It("should map a flat struct with both options set to true - no _id provided", func() {
result := ConvertStructToBSONMap(testStruct, &MappingOpts{UseIDifAvailable: true, RemoveID: true})
Expect(len(result)).To(Equal(len(expected)))
for k, _ := range result {
Expect(result[k]).To(Equal(expected[k]))
}
})
})
})
// Testing the functionality of the mapping zero values
Context("should ignore zero values when flagged with omitempty", func() {
DescribeTable("the type is", func(c interface{}) {
result := ConvertStructToBSONMap(c, nil)
Expect(result).To(BeNil())
},
Entry("a string", struct {
Input string `bson:"Input,omitempty"`
}{
Input: "",
}),
Entry("an int", struct {
Input int `bson:"Input,omitempty"`
}{
Input: 0,
}),
Entry("a bool", struct {
Input bool `bson:"Input,omitempty"`
}{
Input: false,
}),
Entry("a slice", struct {
Input []uint8 `bson:"Input,omitempty"`
}{
Input: []uint8{},
}),
Entry("a map", struct {
Input map[string]struct{} `bson:"Input,omitempty"`
}{
Input: map[string]struct{}{},
}),
Entry("a struct", struct {
Input struct{} `bson:"Input,omitempty"`
}{
Input: struct{}{},
}),
Entry("a nil value", struct {
Input *struct{} `bson:"Input,omitempty"`
}{
Input: nil,
}),
)
})
// Testing the functionality of the "string" tag
Context("should convert", func() {
It("a struct that implements Stringer interface to a string", func() {
// Using time.Time as it implements the Stringer interface
result := ConvertStructToBSONMap(
struct {
TestField1 time.Time `bson:"testField1,string"`
}{
TestField1: time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC),
}, nil,
)
Expect(result).To(Equal(bson.M{"testField1": "2000-01-01 00:00:00 +0000 UTC"}))
})
})
// Testing the functionality of nested structs
Context("should correctly parse", func() {
type valueStruct struct {
String string `bson:"str"`
Slice []string `bson:"slice"`
Map map[string]int `bson:"map"`
Time time.Time `bson:"time"`
}
var valuesStruct valueStruct
BeforeEach(func() {
valuesStruct = valueStruct{
String: "Test String",
Slice: []string{"Test 1", "!@£$%^&*()", ""},
Map: map[string]int{"Test 1": 100, "Test 2!": 0, "Test 3": -100},
Time: time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC),
}
})
It("a nested struct", func() {
result := ConvertStructToBSONMap(
struct {
TestField1 string `bson:"testField1"`
TestField2 valueStruct `bson:"nestedStruct"`
}{
TestField1: valuesStruct.String,
TestField2: valueStruct{
String: valuesStruct.String,
Slice: valuesStruct.Slice,
Map: valuesStruct.Map,
Time: valuesStruct.Time,
},
}, nil,
)
expected := bson.M{
"str": valuesStruct.String,
"slice": valuesStruct.Slice,
"map": valuesStruct.Map,
"time": valuesStruct.Time,
}
Expect(result["testField1"]).To(Equal(valuesStruct.String))
for k, _ := range result["nestedStruct"].(bson.M) {
Expect(result["nestedStruct"].(bson.M)[k]).To(Equal(expected[k]))
}
})
It("a pointer to a nested struct", func() {
result := ConvertStructToBSONMap(
&struct {
TestField1 string `bson:"testField1"`
TestField2 valueStruct `bson:"nestedStruct"`
}{
TestField1: valuesStruct.String,
TestField2: valueStruct{
String: valuesStruct.String,
Slice: valuesStruct.Slice,
Map: valuesStruct.Map,
Time: valuesStruct.Time,
},
}, nil,
)
expected := bson.M{
"str": valuesStruct.String,
"slice": valuesStruct.Slice,
"map": valuesStruct.Map,
"time": valuesStruct.Time,
}
Expect(result["testField1"]).To(Equal(valuesStruct.String))
for k, _ := range result["nestedStruct"].(bson.M) {
Expect(result["nestedStruct"].(bson.M)[k]).To(Equal(expected[k]))
}
})
It("a nested struct with the omitnested tag", func() {
result := ConvertStructToBSONMap(
struct {
TestField1 string `bson:"testField1"`
TestField2 valueStruct `bson:"nestedStruct,omitnested"`
}{
TestField1: valuesStruct.String,
TestField2: valueStruct{
String: valuesStruct.String,
Slice: valuesStruct.Slice,
Map: valuesStruct.Map,
Time: valuesStruct.Time,
},
}, nil,
)
expected := bson.M{
"testField1": valuesStruct.String,
"nestedStruct": valueStruct{
String: valuesStruct.String,
Slice: valuesStruct.Slice,
Map: valuesStruct.Map,
Time: valuesStruct.Time,
},
}
Expect(result).To(Equal(expected))
})
It("a nested struct with the flatten tag", func() {
result := ConvertStructToBSONMap(
struct {
TestField1 string `bson:"testField1"`
TestField2 valueStruct `bson:"nestedStruct,flatten"`
}{
TestField1: valuesStruct.String,
TestField2: valueStruct{
String: valuesStruct.String,
Slice: valuesStruct.Slice,
Map: valuesStruct.Map,
Time: valuesStruct.Time,
},
}, nil,
)
expected := bson.M{
"testField1": valuesStruct.String,
"str": valuesStruct.String,
"slice": valuesStruct.Slice,
"map": valuesStruct.Map,
"time": valuesStruct.Time,
}
Expect(result).To(Equal(expected))
})
It("a nested struct with a slice of interfaces", func() {
type interfaceStruct struct {
TestField3 []interface{} `bson:"interfaces"`
}
t := []int{1, 2, 3, 4}
interfaceSlice := make([]interface{}, len(t))
for i, v := range t {
interfaceSlice[i] = v
}
result := ConvertStructToBSONMap(
struct {
TestField1 string `bson:"testField1"`
TestField2 interfaceStruct `bson:"nestedStruct"`
}{
TestField1: valuesStruct.String,
TestField2: interfaceStruct{
TestField3: interfaceSlice,
},
}, nil,
)
expected := bson.M{
"testField1": valuesStruct.String,
"nestedStruct": bson.M{
"interfaces": interfaceSlice,
},
}
Expect(result).To(Equal(expected))
})
})
// Testing the functionality of a slice of structs
Context("should correctly parse", func() {
type valueStruct struct {
String string `bson:"str"`
Slice []string `bson:"slice"`
Map map[string]int `bson:"map"`
Time time.Time `bson:"time"`
}
var valuesStruct valueStruct
var expectedStruct bson.M
BeforeEach(func() {
valuesStruct = valueStruct{
String: "Test String",
Slice: []string{"Test 1", "!@£$%^&*()", ""},
Map: map[string]int{"Test 1": 100, "Test 2!": 0, "Test 3": -100},
Time: time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC),
}
expectedStruct = bson.M{
"str": valuesStruct.String,
"slice": valuesStruct.Slice,
"map": valuesStruct.Map,
"time": valuesStruct.Time,
}
})
It("a slice of structs", func() {
result := ConvertStructToBSONMap(
struct {
TestField1 []valueStruct `bson:"sliceStruct"`
}{
TestField1: []valueStruct{valuesStruct, valuesStruct},
}, nil,
)
Expect(len(result["sliceStruct"].([]interface{}))).To(Equal(2))
Expect(result["sliceStruct"].([]interface{})[0]).To(Equal(expectedStruct))
Expect(result["sliceStruct"].([]interface{})[1]).To(Equal(expectedStruct))
})
It("a slice of pointers to structs", func() {
result := ConvertStructToBSONMap(
struct {
TestField1 []*valueStruct `bson:"sliceStruct"`
}{
TestField1: []*valueStruct{&valuesStruct, &valuesStruct},
}, nil,
)
Expect(len(result["sliceStruct"].([]interface{}))).To(Equal(2))
Expect(result["sliceStruct"].([]interface{})[0]).To(Equal(expectedStruct))
Expect(result["sliceStruct"].([]interface{})[1]).To(Equal(expectedStruct))
})
})
// Testing the functionality of a map of structs
Context("should correctly parse", func() {
type valueStruct struct {
String string `bson:"str"`
Slice []string `bson:"slice"`
Map map[string]int `bson:"map"`
Time time.Time `bson:"time"`
}
var valuesStruct valueStruct
var expectedStruct bson.M
BeforeEach(func() {
valuesStruct = valueStruct{
String: "Test String",
Slice: []string{"Test 1", "!@£$%^&*()", ""},
Map: map[string]int{"Test 1": 100, "Test 2!": 0, "Test 3": -100},
Time: time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC),
}
expectedStruct = bson.M{
"str": valuesStruct.String,
"slice": valuesStruct.Slice,
"map": valuesStruct.Map,
"time": valuesStruct.Time,
}
})
It("a map of structs", func() {
result := ConvertStructToBSONMap(
struct {
TestField1 map[string]valueStruct `bson:"mapStruct"`
}{
TestField1: map[string]valueStruct{"Test 1": valuesStruct, "Test 2": valuesStruct},
}, nil,
)
Expect(len(result["mapStruct"].(bson.M))).To(Equal(2))
Expect(result["mapStruct"].(bson.M)["Test 1"]).To(Equal(expectedStruct))
Expect(result["mapStruct"].(bson.M)["Test 2"]).To(Equal(expectedStruct))
})
It("a map of pointers to structs", func() {
result := ConvertStructToBSONMap(
struct {
TestField1 map[string]*valueStruct `bson:"mapStruct"`
}{
TestField1: map[string]*valueStruct{"Test 1": &valuesStruct, "Test 2": &valuesStruct},
}, nil,
)
Expect(len(result["mapStruct"].(bson.M))).To(Equal(2))
Expect(result["mapStruct"].(bson.M)["Test 1"]).To(Equal(expectedStruct))
Expect(result["mapStruct"].(bson.M)["Test 2"]).To(Equal(expectedStruct))
})
})
})
var _ = Describe("The package should be able to map", func() {
type Metadata struct {
LastActive time.Time `bson:"lastActive"`
}
type Characteristics struct {
LeftHanded bool `bson:"leftHanded"`
Tall bool `bson:"tall"`
}
type User struct {
ID primitive.ObjectID `bson:"_id"`
FirstName string `bson:"firstName"`
LastName string `bson:"lastName,omitempty"`
DoB time.Time `bson:"dob,string"`
Characteristics *Characteristics `bson:"characteristics,flatten"`
Metadata Metadata `bson:"metadata,omitnested"`
Secret string `bson:"-"`
favouriteColor string
}
var user User
objID, _ := primitive.ObjectIDFromHex("54759eb3c090d83494e2d804")
BeforeEach(func() {
user = User{
ID: objID,
FirstName: "Jane",
LastName: "",
DoB: time.Date(1985, 6, 15, 0, 0, 0, 0, time.UTC),
Characteristics: &Characteristics{
LeftHanded: true,
Tall: false,
},
Metadata: Metadata{LastActive: time.Date(2019, 7, 23, 14, 0, 0, 0, time.UTC)},
Secret: "secret",
favouriteColor: "blue",
}
})
It("an example user profile, with no options", func() {
result := ConvertStructToBSONMap(user, nil)
expected := bson.M{
"_id": objID,
"firstName": "Jane",
"dob": "1985-06-15 00:00:00 +0000 UTC",
"leftHanded": true,
"tall": false,
"metadata": Metadata{LastActive: time.Date(2019, 7, 23, 14, 0, 0, 0, time.UTC)},
}
Expect(result).To(Equal(expected))
})
It("an example user profile, with UseIDifAvailable", func() {
result := ConvertStructToBSONMap(user, &MappingOpts{UseIDifAvailable: true})
expected := bson.M{
"_id": objID,
}
Expect(result).To(Equal(expected))
})
It("an example user profile, with RemoveID ", func() {
result := ConvertStructToBSONMap(user, &MappingOpts{RemoveID: true})
expected := bson.M{
"firstName": "Jane",
"dob": "1985-06-15 00:00:00 +0000 UTC",
"leftHanded": true,
"tall": false,
"metadata": Metadata{LastActive: time.Date(2019, 7, 23, 14, 0, 0, 0, time.UTC)},
}
Expect(result).To(Equal(expected))
})
It("an example user profile, with GenerateFilterOrPatch ", func() {
user.Metadata = Metadata{}
user.ID = primitive.ObjectID{}
user.DoB = time.Date(1, 1, 1, 0, 0, 0, 0, time.UTC)
result := ConvertStructToBSONMap(user, &MappingOpts{GenerateFilterOrPatch: true})
expected := bson.M{
"firstName": "Jane",
"leftHanded": true,
}
Expect(result).To(Equal(expected))
})
It("an example user profile, with RemoveID & GenerateFilterOrPatch ", func() {
user.Metadata = Metadata{}
user.DoB = time.Date(1, 1, 1, 0, 0, 0, 0, time.UTC)
result := ConvertStructToBSONMap(user, &MappingOpts{RemoveID: true, GenerateFilterOrPatch: true})
expected := bson.M{
"firstName": "Jane",
"leftHanded": true,
}
Expect(result).To(Equal(expected))
})
})