-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmongo_test.go
710 lines (627 loc) · 22 KB
/
mongo_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
package mongo_test
import (
"context"
"math/rand"
"reflect"
"testing"
"time"
mongo "github.com/rs/rest-layer-mongo"
"github.com/rs/rest-layer/resource"
"github.com/rs/rest-layer/schema/query"
mgo "gopkg.in/mgo.v2"
)
// Mongo doesn't support nanoseconds
var now = time.Now().Round(time.Millisecond)
func init() {
rand.Seed(now.UnixNano())
}
var letterRunes = []rune("abcdefghijklmnopqrstuvwxyz")
func randomName(n int) string {
b := make([]rune, n)
for i := range b {
b[i] = letterRunes[rand.Intn(len(letterRunes))]
}
return string(b)
}
func setupDBTest(t *testing.T) (*mgo.Session, func()) {
dbName := randomName(16)
if testing.Short() {
t.Skip("skipping DB test in short mode.")
}
s, err := mgo.Dial("mongodb:///" + dbName)
if err != nil {
t.Fatal("Unexpected error for mgo.Dial:", err)
}
return s, cleanup(s, dbName)
}
// cleanup deletes a database immediately and on defer when call as:
//
// defer cleanup(c, "database")()
func cleanup(s *mgo.Session, db string) func() {
s.DB(db).DropDatabase()
return func() {
s.DB(db).DropDatabase()
}
}
// asserts that the items in a collection matches the provided list of IDs.
func assertCollectionIDs(t testing.TB, c *mgo.Collection, expect []string) {
t.Helper()
var result []string
if err := c.Find(nil).Distinct("_id", &result); err != nil {
t.Errorf("Unexpected error for Collection.Find: %v", err)
}
if !reflect.DeepEqual(result, expect) {
t.Errorf("Unexpected IDs inserted; got: %v want: %v", result, expect)
}
}
func TestInsert(t *testing.T) {
s, cleanup := setupDBTest(t)
defer cleanup()
h := mongo.NewHandler(s, "", "test")
items := []*resource.Item{
{
ID: "1234",
ETag: "etag",
Updated: now,
Payload: map[string]interface{}{
"id": "1234",
"foo": "bar",
},
},
}
if err := h.Insert(context.Background(), items); err != nil {
t.Fatal(err)
}
result := map[string]interface{}{}
if err := s.DB("").C("test").FindId("1234").One(&result); err != nil {
t.Fatal(err)
}
expect := map[string]interface{}{"foo": "bar", "_id": "1234", "_etag": "etag", "_updated": now}
if !reflect.DeepEqual(expect, result) {
t.Errorf("got: %v want: %v", result, expect)
}
// Inserting same item twice should return a conflict error
err := h.Insert(context.Background(), items)
if result, expect := err, resource.ErrConflict; result != expect {
t.Errorf("got: %v want: %v", result, expect)
}
}
func TestUpdate(t *testing.T) {
now := time.Now().Truncate(time.Millisecond)
newItem := &resource.Item{
ID: "1234",
ETag: "etag2",
Updated: now,
Payload: map[string]interface{}{
"id": "1234",
"foo": "baz",
},
}
newItemDoc := map[string]interface{}{
"_id": "1234",
"_etag": "etag2",
"_updated": now,
"foo": "baz",
}
t.Run("when updating a non-existing item", func(t *testing.T) {
oldItem := &resource.Item{
ID: "1234",
ETag: "etag1",
Updated: now,
Payload: map[string]interface{}{
"id": "1234",
"foo": "bar",
},
}
s, cleanup := setupDBTest(t)
defer cleanup()
h := mongo.NewHandler(s, "", "test")
err := h.Update(context.Background(), newItem, oldItem)
t.Run("should error", func(t *testing.T) {
if result, expect := err, resource.ErrNotFound; result != expect {
t.Errorf("got: %v want: %v", result, expect)
}
})
})
t.Run("when updating an existing item", func(t *testing.T) {
oldItem := &resource.Item{
ID: "1234",
ETag: "etag1",
Updated: now,
Payload: map[string]interface{}{
"id": "1234",
"foo": "bar",
},
}
s, cleanup := setupDBTest(t)
defer cleanup()
h := mongo.NewHandler(s, "", "test")
if err := h.Insert(context.Background(), []*resource.Item{oldItem}); err != nil {
t.Fatal(err)
}
if err := h.Update(context.Background(), newItem, oldItem); err != nil {
t.Fatal(err)
}
t.Run("then should have updated the item", func(t *testing.T) {
result := map[string]interface{}{}
if err := s.DB("").C("test").FindId("1234").One(&result); err != nil {
t.Fatal(err)
}
if expect := newItemDoc; !reflect.DeepEqual(result, expect) {
t.Errorf("\ngot: %v\nwant: %v", result, expect)
}
})
t.Run("when attempting the same update again", func(t *testing.T) {
err := h.Update(context.Background(), newItem, oldItem)
t.Run("then should return a conflict due to mismatching E-tags", func(t *testing.T) {
if result, expect := err, resource.ErrConflict; result != expect {
t.Errorf("got %v want %v", result, expect)
}
})
})
})
t.Run("when updating an item that doesn't have an E-Tag set in the DB", func(t *testing.T) {
oldItem := &resource.Item{
ID: "1234",
ETag: "p-1234", // Provisional E-tag contains the ID prefixed by "p-"
Updated: now,
Payload: map[string]interface{}{
"id": "1234",
"foo": "baz",
},
}
s, cleanup := setupDBTest(t)
defer cleanup()
h := mongo.NewHandler(s, "", "test")
// Inserting directly to the database without setting the _etag field.
if err := s.DB("").C("test").Insert(map[string]interface{}{"foo": "bar", "_id": "1234", "_updated": now}); err != nil {
t.Fatal(err)
}
if err := h.Update(context.Background(), newItem, oldItem); err != nil {
t.Fatal(err)
}
t.Run("then should have updated the item", func(t *testing.T) {
result := map[string]interface{}{}
if err := s.DB("").C("test").FindId("1234").One(&result); err != nil {
t.Fatal(err)
}
if expect := newItemDoc; !reflect.DeepEqual(result, expect) {
t.Errorf("\ngot: %v\nwant: %v", result, expect)
}
})
t.Run("when attempting the same update again", func(t *testing.T) {
err := h.Update(context.Background(), newItem, oldItem)
t.Run("then should return a conflict due to mismatching E-tags", func(t *testing.T) {
if result, expect := err, resource.ErrConflict; result != expect {
t.Errorf("got %v want %v", result, expect)
}
})
})
})
}
func TestDelete(t *testing.T) {
s, cleanup := setupDBTest(t)
defer cleanup()
h := mongo.NewHandler(s, "", "test")
item := &resource.Item{
ID: "1234",
ETag: "etag1",
Updated: now,
Payload: map[string]interface{}{
"id": "1234",
"foo": "bar",
},
}
// Can't delete a non existing item
err := h.Delete(context.Background(), item)
if got, expect := err, resource.ErrNotFound; got != expect {
t.Errorf("got: %v\nwant: %v\n", got, expect)
}
err = h.Insert(context.Background(), []*resource.Item{item})
if err != nil {
t.Fatal(err)
}
err = h.Delete(context.Background(), item)
if err != nil {
t.Fatal(err)
}
// Update refused if original item's etag doesn't match stored one
err = h.Insert(context.Background(), []*resource.Item{item})
if err != nil {
t.Fatal(err)
}
item.ETag = "etag2"
err = h.Delete(context.Background(), item)
if got, expect := err, resource.ErrConflict; got != expect {
t.Errorf("got %v want: %v", got, expect)
}
c := s.DB("").C("testEtag")
// Add an item without _etag field
c.Insert(map[string]interface{}{"foo": "bar", "_id": "1234", "_updated": now})
c.Insert(map[string]interface{}{"foo": "bar", "_id": "12345", "_etag": "etag", "_updated": now})
h2 := mongo.NewHandler(s, "", "testEtag")
// A item without _etag field, is extracted with ETag in "p-[id]" format
originalItem := &resource.Item{
ID: "1234",
ETag: "p-1234",
Updated: now,
Payload: map[string]interface{}{
"id": "1234",
"foo": "baz",
},
}
// Delete an original item with Etag over item in DB without _etag
err = h2.Delete(context.Background(), originalItem)
if err != nil {
t.Fatal(err)
}
originalItem.ID = "12345"
// Delete an original item with Etag over item in DB with _etag
// fails because _etag is present
err = h2.Delete(context.Background(), originalItem)
if got, expect := err, resource.ErrConflict; got != expect {
t.Errorf("got: %v want: %v", got, expect)
}
}
func TestClear(t *testing.T) {
const (
cName = "test"
)
s, cleanup := setupDBTest(t)
defer cleanup()
h := mongo.NewHandler(s, "", cName)
items := []*resource.Item{
{ID: "1", Payload: map[string]interface{}{"id": "1", "name": "a"}},
{ID: "2", Payload: map[string]interface{}{"id": "2", "name": "b"}},
{ID: "3", Payload: map[string]interface{}{"id": "3", "name": "c"}},
{ID: "4", Payload: map[string]interface{}{"id": "4", "name": "d"}},
}
if err := h.Insert(context.Background(), items); err != nil {
t.Fatalf("Unexpected error: %s", err)
}
q, err := query.New("", `{name:{$in:["c","d"]}}`, "", nil)
if err != nil {
t.Fatal(err)
}
deleted, err := h.Clear(context.Background(), q)
if err != nil {
t.Fatal(err)
}
if expect := 2; deleted != expect {
t.Errorf("Unexpected result:\nexpect: %#v\ngot: %#v", expect, deleted)
}
assertCollectionIDs(t, s.DB("").C(cName), []string{"1", "2"})
q, err = query.New("", `{id:"2"}`, "", nil)
if err != nil {
t.Fatal(err)
}
deleted, err = h.Clear(context.Background(), q)
if err != nil {
t.Fatal(err)
}
if expect := 1; deleted != expect {
t.Errorf("Unexpected result:\nexpect: %#v\ngot: %#v", expect, deleted)
}
assertCollectionIDs(t, s.DB("").C(cName), []string{"1"})
}
func TestClearLimit(t *testing.T) {
const (
dbName = "testclearlimit"
cName = "test"
)
s, cleanup := setupDBTest(t)
defer cleanup()
h := mongo.NewHandler(s, "", cName)
items := []*resource.Item{
{ID: "1", Payload: map[string]interface{}{"id": "1", "name": "a"}},
{ID: "2", Payload: map[string]interface{}{"id": "2", "name": "b"}},
{ID: "3", Payload: map[string]interface{}{"id": "3", "name": "d"}}, // should be sorted after 4
{ID: "4", Payload: map[string]interface{}{"id": "4", "name": "c"}}, // should be removed
}
if err := h.Insert(context.Background(), items); err != nil {
t.Fatalf("Unexpected error: %s", err)
}
q, err := query.New("", `{name:{$in:["c","d"]}}`, "name", &query.Window{Limit: 1})
if err != nil {
t.Fatal(err)
}
deleted, err := h.Clear(context.Background(), q)
if err != nil {
t.Fatal(err)
}
if expect := 1; deleted != expect {
t.Errorf("Unexpected result:\nexpect: %#v\ngot: %#v", expect, deleted)
}
assertCollectionIDs(t, s.DB("").C(cName), []string{"1", "2", "3"})
}
func TestClearOffset(t *testing.T) {
const (
cName = "test"
)
s, cleanup := setupDBTest(t)
defer cleanup()
h := mongo.NewHandler(s, "", cName)
items := []*resource.Item{
{ID: "1", Payload: map[string]interface{}{"id": "1", "name": "a"}},
{ID: "2", Payload: map[string]interface{}{"id": "2", "name": "b"}},
{ID: "3", Payload: map[string]interface{}{"id": "3", "name": "d"}}, // should be sorted after 4, should be removed
{ID: "4", Payload: map[string]interface{}{"id": "4", "name": "c"}}, // should be skipped
}
if err := h.Insert(context.Background(), items); err != nil {
t.Fatalf("Unexpected error: %s", err)
}
q, err := query.New("", `{name:{$in:["c","d"]}}`, "name", &query.Window{Offset: 1})
if err != nil {
t.Fatal(err)
}
deleted, err := h.Clear(context.Background(), q)
if err != nil {
t.Fatal(err)
}
if expect := 1; deleted != expect {
t.Errorf("Unexpected result:\nexpect: %#v\ngot: %#v", expect, deleted)
}
assertCollectionIDs(t, s.DB("").C(cName), []string{"1", "2", "4"})
}
func TestFind(t *testing.T) {
allItems := []*resource.Item{
{ID: "1", Payload: map[string]interface{}{"id": "1", "name": "a", "age": 1}},
{ID: "2", Payload: map[string]interface{}{"id": "2", "name": "b", "age": 1}},
{ID: "3", Payload: map[string]interface{}{"id": "3", "name": "c", "age": 2}},
{ID: "4", Payload: map[string]interface{}{"id": "4", "name": "d", "age": 2}},
{ID: "5", Payload: map[string]interface{}{"id": "5", "name": "rest-layer-regexp"}},
{ID: "6", Payload: map[string]interface{}{"id": "6", "name": "f",
"arr": []interface{}{
map[string]interface{}{"a": "foo", "b": "bar"},
map[string]interface{}{"a": "foo", "b": "baz"},
},
}},
}
doPositiveFindTest := func(t *testing.T, h mongo.Handler, q *query.Query) *resource.ItemList {
l, err := h.Find(context.Background(), q)
if err != nil {
t.Fatal(err)
}
if l == nil {
t.Fatal("Unexpected nil result for Handler.Find")
}
return l
}
totalCheckFunc := func(expect int, list *resource.ItemList) func(t *testing.T) {
return func(t *testing.T) {
t.Helper()
if result := list.Total; result != expect {
t.Errorf("got: %d want: %d", result, expect)
}
}
}
itemsCheckLenFunc := func(expect int, list *resource.ItemList) func(t *testing.T) {
return func(t *testing.T) {
t.Helper()
if result := len(list.Items); result != expect {
t.Errorf("got: %d want: %d", result, expect)
}
}
}
itemsCheckFunc := func(expect []*resource.Item, list *resource.ItemList) func(t *testing.T) {
return func(t *testing.T) {
t.Helper()
if result := list.Items; !reflect.DeepEqual(result, expect) {
t.Errorf("\ngot: %v\nwant: %v\n", result, expect)
}
}
}
s, cleanup := setupDBTest(t)
defer cleanup()
h := mongo.NewHandler(s, "", "test")
if err := h.Insert(context.Background(), allItems); err != nil {
t.Fatalf("Unexpected error: %s", err)
}
t.Run("when using an empty query", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{})
t.Run("then ItemList.Total should count all items", totalCheckFunc(len(allItems), l))
t.Run("then ItemList.Items should include all items", itemsCheckLenFunc(len(allItems), l))
// Do not check items content as ordering could vary.
})
t.Run("when setting limit to 0", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Window: &query.Window{Limit: 0}},
)
t.Run("then ItemList.Total should count all items", totalCheckFunc(len(allItems), l))
expectItems := []*resource.Item{}
t.Run("then ItemList.Items should be an empty list", itemsCheckFunc(expectItems, l))
})
t.Run("when setting limit -1 and offset to 2", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Window: &query.Window{Limit: -1, Offset: 2},
})
t.Run("then ItemList.Total should count all items", totalCheckFunc(len(allItems), l))
t.Run("then ItemList.Items should include all items except the first two", itemsCheckLenFunc(len(allItems)-2, l))
// Do not check result's content as its order is unpredictable.
})
t.Run("when setting limit -1 and offset matching the length of all items", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Window: &query.Window{Limit: -1, Offset: len(allItems)},
})
// Not able to get total count in one query.
t.Run("then ItemList.Total should not be deduced", totalCheckFunc(-1, l))
// Check that we get an empty Item list and not nil.
expectItems := []*resource.Item{}
t.Run("then ItemList.Items should be an empty list", itemsCheckFunc(expectItems, l))
})
t.Run("when setting limit -1 and offset matching the length of all items +1", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Window: &query.Window{Limit: -1, Offset: len(allItems)},
})
// Not able to get total count in one query.
t.Run("then ItemList.Total should not be deduced", totalCheckFunc(-1, l))
// Check that we get an empty Item list and not nil.
expectItems := []*resource.Item{}
t.Run("then ItemList.Items should be an empty list", itemsCheckFunc(expectItems, l))
})
t.Run("when querying for a specific field value with limit 1", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: query.MustParsePredicate(`{name:"c"}`),
Window: &query.Window{Limit: 1, Offset: 0},
})
// Not able to get total count in one query.
t.Run("then ItemList.Total should not be deduced", totalCheckFunc(-1, l))
expectItems := []*resource.Item{
{ID: "3", ETag: "p-3", Payload: map[string]interface{}{"id": "3", "name": "c", "age": 2}},
}
t.Run("then ItemList.Items should contain the matching item", itemsCheckFunc(expectItems, l))
})
t.Run("when querying for a field using the $in operator and limit 100 and a projection", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: query.MustParsePredicate(`{name:{$in:["c","d"]}}`),
Window: &query.Window{Limit: 100, Offset: 0},
Projection: query.MustParseProjection("name"),
})
t.Run("then ItemList.Total should be deduced correctly", totalCheckFunc(2, l))
expectItems := []*resource.Item{
{ID: "3", ETag: "p-3", Payload: map[string]interface{}{"id": "3", "name": "c", "age": 2}},
{ID: "4", ETag: "p-4", Payload: map[string]interface{}{"id": "4", "name": "d", "age": 2}},
}
t.Run("then ItemList.Items should include all matching items and ignore projection", itemsCheckFunc(expectItems, l))
})
t.Run("when querying for an existing ID", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: query.MustParsePredicate(`{id:"3"}`)},
)
t.Run("then ItemList.Total should be deduced correctly", totalCheckFunc(1, l))
expectItems := []*resource.Item{
{ID: "3", ETag: "p-3", Payload: map[string]interface{}{"id": "3", "name": "c", "age": 2}},
}
t.Run("then ItemList.Items should include the matching item", itemsCheckFunc(expectItems, l))
})
t.Run("when querying using regex", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: query.MustParsePredicate(`{name:{$regex:"^re[s]{1}t-.+yer.+exp$"}}`),
})
t.Run("then ItemList.Total should be deduced correctly", totalCheckFunc(1, l))
expectItems := []*resource.Item{
{ID: "5", ETag: "p-5", Payload: map[string]interface{}{"id": "5", "name": "rest-layer-regexp"}},
}
t.Run("then ItemList.Items should include the matching item", itemsCheckFunc(expectItems, l))
})
t.Run("when querying using $not regex", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: query.MustParsePredicate(`{name:{$not:"^re[s]{1}t-.+yer.+exp$"}}`),
})
t.Run("then ItemList.Total should be deduced correctly", totalCheckFunc(5, l))
expectItems := []*resource.Item{
{ID: "1", ETag: "p-1", Payload: map[string]interface{}{"id": "1", "name": "a", "age": 1}},
{ID: "2", ETag: "p-2", Payload: map[string]interface{}{"id": "2", "name": "b", "age": 1}},
{ID: "3", ETag: "p-3", Payload: map[string]interface{}{"id": "3", "name": "c", "age": 2}},
{ID: "4", ETag: "p-4", Payload: map[string]interface{}{"id": "4", "name": "d", "age": 2}},
{ID: "6", ETag: "p-6", Payload: map[string]interface{}{"id": "6", "name": "f",
"arr": []interface{}{
map[string]interface{}{"a": "foo", "b": "bar"},
map[string]interface{}{"a": "foo", "b": "baz"},
},
}},
}
t.Run("then ItemList.Items should include the matching item", itemsCheckFunc(expectItems, l))
})
t.Run("when querying for a non-existant ID with limit 1", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: query.MustParsePredicate(`{id:"10"}`),
Window: &query.Window{Limit: 1, Offset: 0},
})
t.Run("then ItemList.Total should be deduced to 0", totalCheckFunc(0, l))
t.Run("then ItemList.Items should be an empty list", itemsCheckFunc([]*resource.Item{}, l))
})
t.Run("when querying for both existing and non-existant IDs with limit 1", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: query.MustParsePredicate(`{id:{$in:["3","4","10"]}}`),
Window: &query.Window{Limit: 1, Offset: 0},
})
// Not able to get total count in one query.
t.Run("then ItemList.Total should not be deduced", totalCheckFunc(-1, l))
expectItems := []*resource.Item{
{ID: "3", ETag: "p-3", Payload: map[string]interface{}{"id": "3", "name": "c", "age": 2}},
}
t.Run("then ItemList.Items should include the first matching item", itemsCheckFunc(expectItems, l))
})
t.Run("when querying for both existing and non-existant IDs", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: query.MustParsePredicate(`{id:{$in:["3","4","10"]}}`),
})
t.Run("then ItemList.Total should be deduced correctly", totalCheckFunc(2, l))
expectItems := []*resource.Item{
{ID: "3", ETag: "p-3", Payload: map[string]interface{}{"id": "3", "name": "c", "age": 2}},
{ID: "4", ETag: "p-4", Payload: map[string]interface{}{"id": "4", "name": "d", "age": 2}},
}
t.Run("then ItemList.Items should include all matching items", itemsCheckFunc(expectItems, l))
})
t.Run("when quering for array of objects match", func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: query.MustParsePredicate(`{arr:{$elemMatch:{a:"foo"}}}`),
})
t.Run("then ItemList.Total should be deduced correctly", totalCheckFunc(1, l))
expectItems := []*resource.Item{
{ID: "6", ETag: "p-6", Payload: map[string]interface{}{"id": "6", "name": "f",
"arr": []interface{}{
map[string]interface{}{"a": "foo", "b": "bar"},
map[string]interface{}{"a": "foo", "b": "baz"},
},
}},
}
t.Run("then ItemList.Items should include the first matching item", itemsCheckFunc(expectItems, l))
})
t.Run("when quering with equivalent $and queries", func(t *testing.T) {
equivalents := []struct {
name string
predicate query.Predicate
}{
{
name: "implicit and predicate",
predicate: query.Predicate{
&query.Equal{Field: "age", Value: 1},
&query.Equal{Field: "name", Value: "b"},
},
},
{
name: "explicit $and",
predicate: query.Predicate{
&query.And{
&query.Equal{Field: "age", Value: 1},
&query.Equal{Field: "name", Value: "b"},
},
},
},
{
name: "explicit &or of implicit and predicate",
predicate: query.Predicate{
&query.Or{
query.Predicate{
&query.Equal{Field: "age", Value: 1},
&query.Equal{Field: "name", Value: "b"},
},
},
},
},
{
name: "explicit $and of predicates",
predicate: query.Predicate{
&query.And{
query.Predicate{&query.Equal{Field: "age", Value: 1}},
query.Predicate{&query.Equal{Field: "name", Value: "b"}},
},
},
},
}
for _, tc := range equivalents {
t.Run(tc.name, func(t *testing.T) {
l := doPositiveFindTest(t, h, &query.Query{
Predicate: tc.predicate,
})
t.Run("then ItemList.Total should be deduced correctly", totalCheckFunc(1, l))
expectItems := []*resource.Item{
{ID: "2", ETag: "p-2", Payload: map[string]interface{}{"id": "2", "name": "b", "age": 1}},
}
t.Run("then ItemList.Items should include the matching item", itemsCheckFunc(expectItems, l))
})
}
})
}