-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathnested_structs_test.go
674 lines (580 loc) · 13.5 KB
/
nested_structs_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
// Copyright 2016 Tim Shannon. All rights reserved.
// Use of this source code is governed by the MIT license
// that can be found in the LICENSE file.
package bolthold_test
import (
"reflect"
"regexp"
"testing"
"time"
"github.com/timshannon/bolthold"
bh "github.com/timshannon/bolthold"
bolt "go.etcd.io/bbolt"
)
type Nested struct {
Key int
Embed
L1 Nest
L2 Level2
Pointer *Nest
}
type Embed struct {
Color string
}
type Nest struct {
Name string
}
type Level2 struct {
Name string
L3 Nest
}
var nestedData = []Nested{
{
Key: 0,
Embed: Embed{
Color: "red",
},
L1: Nest{
Name: "Joe",
},
L2: Level2{
Name: "Joe",
L3: Nest{
Name: "Joe",
},
},
Pointer: &Nest{
Name: "Joe",
},
},
{
Key: 1,
Embed: Embed{
Color: "red",
},
L1: Nest{
Name: "Jill",
},
L2: Level2{
Name: "Jill",
L3: Nest{
Name: "Jill",
},
},
Pointer: &Nest{
Name: "Jill",
},
},
{
Key: 2,
Embed: Embed{
Color: "orange",
},
L1: Nest{
Name: "Jill",
},
L2: Level2{
Name: "Jill",
L3: Nest{
Name: "Jill",
},
},
Pointer: &Nest{
Name: "Jill",
},
},
{
Key: 3,
Embed: Embed{
Color: "orange",
},
L1: Nest{
Name: "Jill",
},
L2: Level2{
Name: "Jill",
L3: Nest{
Name: "Joe",
},
}, Pointer: &Nest{
Name: "Jill",
},
},
{
Key: 4,
Embed: Embed{
Color: "blue",
},
L1: Nest{
Name: "Abner",
},
L2: Level2{
Name: "Abner",
L3: Nest{
Name: "Abner",
},
}, Pointer: &Nest{
Name: "Abner",
},
},
}
var nestedTests = []test{
{
name: "Nested",
query: bolthold.Where("L1.Name").Eq("Joe"),
result: []int{0},
},
{
name: "Embedded",
query: bolthold.Where("Color").Eq("red"),
result: []int{0, 1},
},
{
name: "Embedded Explicit",
query: bolthold.Where("Embed.Color").Eq("red"),
result: []int{0, 1},
},
{
name: "Nested Multiple Levels",
query: bolthold.Where("L2.L3.Name").Eq("Joe"),
result: []int{0, 3},
},
{
name: "Pointer",
query: bolthold.Where("Pointer.Name").Eq("Jill"),
result: []int{1, 2, 3},
},
{
name: "Sort",
query: bolthold.Where("Key").Ge(0).SortBy("L2.L3.Name"),
result: []int{4, 1, 2, 0, 3},
},
{
name: "Sort On Pointer",
query: bolthold.Where("Key").Ge(0).SortBy("Pointer.Name"),
result: []int{4, 1, 2, 0, 3},
},
}
func TestNested(t *testing.T) {
testWrap(t, func(store *bolthold.Store, t *testing.T) {
for i := range nestedData {
err := store.Insert(nestedData[i].Key, nestedData[i])
if err != nil {
t.Fatalf("Error inserting nested test data for nested find test: %s", err)
}
}
for _, tst := range nestedTests {
t.Run(tst.name, func(t *testing.T) {
var result []Nested
ok(t, store.Find(&result, tst.query))
if len(result) != len(tst.result) {
if testing.Verbose() {
t.Fatalf("Find result count is %d wanted %d. Results: %v", len(result),
len(tst.result), result)
}
t.Fatalf("Find result count is %d wanted %d.", len(result), len(tst.result))
}
for i := range result {
found := false
for k := range tst.result {
if reflect.DeepEqual(result[i], nestedData[tst.result[k]]) {
found = true
break
}
}
if !found {
if testing.Verbose() {
t.Fatalf("%v should not be in the result set! Full results: %v",
result[i], result)
}
t.Fatalf("%v should not be in the result set!", result[i])
}
}
})
}
})
}
func Test90AnonIndex(t *testing.T) {
type (
Profile struct {
Username string `boltholdIndex:"Username" json:"username"`
Password string `json:"password"`
}
User struct {
Profile
ID string
Name string
}
)
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
Profile: Profile{
Username: "test",
Password: "test",
},
ID: "1234",
Name: "Tester",
}))
b := store.Bolt()
ok(t, b.View(func(tx *bolt.Tx) error {
bucket := tx.Bucket(indexName("User", "Username"))
assert(t, bucket != nil, "No index bucket found")
indexCount := 0
bucket.ForEach(func(k, v []byte) error {
indexCount++
return nil
})
equals(t, indexCount, 1)
return nil
}))
})
}
func Test90AnonIndexPointer(t *testing.T) {
type (
Profile struct {
Username string `boltholdIndex:"Username" json:"username"`
Password string `json:"password"`
}
User struct {
*Profile
ID string
Name string
}
)
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
Profile: &Profile{
Username: "test",
Password: "test",
},
ID: "1234",
Name: "Tester",
}))
b := store.Bolt()
ok(t, b.View(func(tx *bolt.Tx) error {
bucket := tx.Bucket(indexName("User", "Username"))
assert(t, bucket != nil, "No index bucket found")
indexCount := 0
bucket.ForEach(func(k, v []byte) error {
indexCount++
return nil
})
equals(t, indexCount, 1)
return nil
}))
})
}
func Test94NilAnonIndexPointer(t *testing.T) {
type (
Profile struct {
Username string `boltholdIndex:"Username" json:"username"`
Password string `json:"password"`
}
User struct {
*Profile
ID string
Name string
}
)
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
}))
b := store.Bolt()
ok(t, b.View(func(tx *bolt.Tx) error {
bucket := tx.Bucket(indexName("User", "Username"))
assert(t, bucket == nil, "Found index where none should've been added")
return nil
}))
})
}
func Test98MultipleAnonIndex(t *testing.T) {
type (
Profile struct {
Username string `boltholdIndex:"Username"`
Password string
}
Account struct {
GuardianName string `boltholdIndex:"GuardianName"`
Create time.Time
}
User struct {
*Profile
*Account
ID string
Name string
}
)
t.Run("one nil", func(t *testing.T) {
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
Account: &Account{
GuardianName: "Test",
Create: time.Now(),
},
}))
b := store.Bolt()
ok(t, b.View(func(tx *bolt.Tx) error {
bucket := tx.Bucket(indexName("User", "Username"))
assert(t, bucket == nil, "Found index where none should've been added")
bucket = tx.Bucket(indexName("User", "GuardianName"))
assert(t, bucket != nil, "No index found for GuardianName")
return nil
}))
})
})
t.Run("neither nil", func(t *testing.T) {
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
Profile: &Profile{
Username: "test",
Password: "test",
},
Account: &Account{
GuardianName: "Test",
Create: time.Now(),
},
}))
b := store.Bolt()
ok(t, b.View(func(tx *bolt.Tx) error {
bucket := tx.Bucket(indexName("User", "Username"))
assert(t, bucket != nil, "No index found for Username")
bucket = tx.Bucket(indexName("User", "GuardianName"))
assert(t, bucket != nil, "No index found for GuardianName")
return nil
}))
})
})
t.Run("both nil", func(t *testing.T) {
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
}))
b := store.Bolt()
ok(t, b.View(func(tx *bolt.Tx) error {
bucket := tx.Bucket(indexName("User", "Username"))
assert(t, bucket == nil, "Index found for Username")
bucket = tx.Bucket(indexName("User", "GuardianName"))
assert(t, bucket == nil, "Index found for GuardianName")
return nil
}))
})
})
}
func TestNestedAnonIndex(t *testing.T) {
type (
Credential struct {
Username string `boltholdIndex:"Username"`
Password string
}
Profile struct {
*Credential
Address string
}
Account struct {
GuardianName string `boltholdIndex:"Guardian"`
Create time.Time
}
User struct {
*Profile
*Account
ID string
Name string
}
)
t.Run("nil", func(t *testing.T) {
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
Account: &Account{
GuardianName: "Test",
Create: time.Now(),
},
}))
b := store.Bolt()
ok(t, b.View(func(tx *bolt.Tx) error {
bucket := tx.Bucket(indexName("User", "Username"))
assert(t, bucket == nil, "Found index where none should've been added")
bucket = tx.Bucket(indexName("User", "Guardian"))
assert(t, bucket != nil, "No index found for Guardian")
return nil
}))
})
})
t.Run("not nil", func(t *testing.T) {
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
Profile: &Profile{
Credential: &Credential{
Username: "test",
Password: "test",
},
Address: "test",
},
Account: &Account{
GuardianName: "Test",
Create: time.Now(),
},
}))
b := store.Bolt()
ok(t, b.View(func(tx *bolt.Tx) error {
bucket := tx.Bucket(indexName("User", "Username"))
assert(t, bucket != nil, "No index found for Username")
bucket = tx.Bucket(indexName("User", "Guardian"))
assert(t, bucket != nil, "No index found for Guardian")
return nil
}))
})
})
t.Run("nested nil", func(t *testing.T) {
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
Profile: &Profile{
Address: "test",
},
}))
b := store.Bolt()
ok(t, b.View(func(tx *bolt.Tx) error {
bucket := tx.Bucket(indexName("User", "Username"))
assert(t, bucket == nil, "Index found for Username")
bucket = tx.Bucket(indexName("User", "Guardian"))
assert(t, bucket == nil, "Index found for Guardian")
return nil
}))
})
})
t.Run("Select Nested Anon", func(t *testing.T) {
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
Profile: &Profile{
Address: "test",
},
}))
res := &User{}
ok(t, store.FindOne(res, bh.Where("Profile.Address").Eq("test")))
equals(t, res.Profile.Address, "test")
ok(t, store.FindOne(res, bh.Where("Address").Eq("test")))
equals(t, res.Profile.Address, "test")
})
})
t.Run("Select Nested Anon with index", func(t *testing.T) {
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
Profile: &Profile{
Credential: &Credential{
Username: "test",
Password: "test",
},
Address: "test",
},
Account: &Account{
GuardianName: "Test",
Create: time.Now(),
},
}))
res := &User{}
ok(t, store.FindOne(res, bh.Where("Profile.Username").Eq("test")))
equals(t, res.Profile.Username, "test")
ok(t, store.FindOne(res, bh.Where("Username").Eq("test")))
equals(t, res.Profile.Username, "test")
ok(t, store.FindOne(res, bh.Where("Profile.Username").Eq("test").Index("Username")))
equals(t, res.Profile.Username, "test")
ok(t, store.FindOne(res, bh.Where("Username").Eq("test").Index("Username")))
equals(t, res.Profile.Username, "test")
ok(t, store.FindOne(res, bh.Where("Profile.Credential.Username").Eq("test")))
equals(t, res.Profile.Username, "test")
ok(t, store.FindOne(res, bh.Where("Profile.Credential.Username").Eq("test").Index("Username")))
equals(t, res.Profile.Username, "test")
})
})
t.Run("Select Nested Anon with non field name index", func(t *testing.T) {
testWrap(t, func(store *bh.Store, t *testing.T) {
ok(t, store.Insert(1, &User{
ID: "1234",
Name: "Tester",
Profile: &Profile{
Credential: &Credential{
Username: "test",
Password: "test",
},
Address: "test",
},
Account: &Account{
GuardianName: "Test",
Create: time.Now(),
},
}))
res := &User{}
ok(t, store.FindOne(res, bh.Where("Account.GuardianName").Eq("Test")))
equals(t, res.GuardianName, "Test")
ok(t, store.FindOne(res, bh.Where("GuardianName").Eq("Test")))
equals(t, res.GuardianName, "Test")
ok(t, store.FindOne(res, bh.Where("Account.GuardianName").Eq("Test").Index("Guardian")))
equals(t, res.GuardianName, "Test")
ok(t, store.FindOne(res, bh.Where("GuardianName").Eq("Test").Index("Guardian")))
equals(t, res.GuardianName, "Test")
})
})
}
func TestIssue100(t *testing.T) {
type (
Profile struct {
Username string `boltholdIndex:"Username"`
Name string `boltholdIndex:"Name"`
Phone string `boltholdIndex:"Phone"`
Address1 string `json:"address1"`
Address2 string `json:"address2"`
City string `json:"city"`
State string `json:"state"`
PostalCode string `json:"postal_code"`
}
Parent struct {
ID string `json:"id"`
}
User struct {
*Parent
*Profile
ID string `boltholdKey:"ID" json:"id"`
District string `json:"district"`
}
)
testWrap(t, func(store *bh.Store, t *testing.T) {
store.Insert("userID", &User{
ID: "userID",
District: "West",
})
store.Insert("newID", &User{
ID: "newID",
District: "East",
Profile: &Profile{
Username: "bolt",
Name: "Bolt DB",
Phone: "123-123-1234",
Address1: "123 Test Street",
Address2: "Suite 100",
City: "Test City",
State: "CA",
PostalCode: "11111",
},
})
users := []*User{}
query := bolthold.Where("Name").RegExp(regexp.MustCompile("(?i:.*?bolt.*?)"))
ok(t, store.Find(&users, query))
equals(t, len(users), 1)
})
}