-
Notifications
You must be signed in to change notification settings - Fork 902
/
Copy pathcollection_test.go
2132 lines (1945 loc) · 89.8 KB
/
collection_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
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (C) MongoDB, Inc. 2017-present.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
package integration
import (
"context"
"errors"
"strings"
"testing"
"go.mongodb.org/mongo-driver/v2/bson"
"go.mongodb.org/mongo-driver/v2/event"
"go.mongodb.org/mongo-driver/v2/internal/assert"
"go.mongodb.org/mongo-driver/v2/internal/integration/mtest"
"go.mongodb.org/mongo-driver/v2/mongo"
"go.mongodb.org/mongo-driver/v2/mongo/options"
"go.mongodb.org/mongo-driver/v2/mongo/writeconcern"
"go.mongodb.org/mongo-driver/v2/x/bsonx/bsoncore"
"go.mongodb.org/mongo-driver/v2/x/mongo/driver/drivertest"
)
const (
errorDuplicateKey = 11000
errorCappedCollDeleteLegacy = 10101
errorCappedCollDelete = 20
errorModifiedIDLegacy = 16837
errorModifiedID = 66
)
var (
// impossibleWc is a write concern that can't be satisfied and is used to test write concern errors
// for various operations. It includes a timeout because legacy servers will wait for all W nodes to respond,
// causing tests to hang.
impossibleWc = &writeconcern.WriteConcern{
W: 30,
}
)
func TestCollection(t *testing.T) {
mt := mtest.New(t, mtest.NewOptions().CreateClient(false))
mt.RunOpts("insert one", noClientOpts, func(mt *mtest.T) {
mt.Run("success", func(mt *mtest.T) {
id := bson.NewObjectID()
doc := bson.D{{"_id", id}, {"x", 1}}
res, err := mt.Coll.InsertOne(context.Background(), doc)
assert.Nil(mt, err, "InsertOne error: %v", err)
assert.Equal(mt, id, res.InsertedID, "expected inserted ID %v, got %v", id, res.InsertedID)
})
mt.Run("write error", func(mt *mtest.T) {
doc := bson.D{{"_id", 1}}
_, err := mt.Coll.InsertOne(context.Background(), doc)
assert.Nil(mt, err, "InsertOne error: %v", err)
_, err = mt.Coll.InsertOne(context.Background(), doc)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %T, got %T", mongo.WriteException{}, err)
assert.Equal(mt, 1, len(we.WriteErrors), "expected 1 write error, got %v", len(we.WriteErrors))
writeErr := we.WriteErrors[0]
assert.Equal(mt, errorDuplicateKey, writeErr.Code, "expected code %v, got %v", errorDuplicateKey, writeErr.Code)
})
wcCollOpts := options.Collection().SetWriteConcern(impossibleWc)
wcTestOpts := mtest.NewOptions().CollectionOptions(wcCollOpts).Topologies(mtest.ReplicaSet)
mt.RunOpts("write concern error", wcTestOpts, func(mt *mtest.T) {
doc := bson.D{{"_id", 1}}
_, err := mt.Coll.InsertOne(context.Background(), doc)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
assert.NotNil(mt, we.WriteConcernError, "expected write concern error, got %+v", we)
})
// Require 3.2 servers for bypassDocumentValidation support.
convertedOptsOpts := mtest.NewOptions().MinServerVersion("3.2")
mt.RunOpts("options are converted", convertedOptsOpts, func(mt *mtest.T) {
nilOptsTestCases := []struct {
name string
opts []options.Lister[options.InsertOneOptions]
expectOptionSet bool
}{
{
"only nil is passed",
[]options.Lister[options.InsertOneOptions]{nil},
false,
},
{
"non-nil options is passed before nil",
[]options.Lister[options.InsertOneOptions]{options.InsertOne().SetBypassDocumentValidation(true), nil},
true,
},
{
"non-nil options is passed after nil",
[]options.Lister[options.InsertOneOptions]{nil, options.InsertOne().SetBypassDocumentValidation(true)},
true,
},
}
for _, testCase := range nilOptsTestCases {
mt.Run(testCase.name, func(mt *mtest.T) {
doc := bson.D{{"x", 1}}
_, err := mt.Coll.InsertOne(context.Background(), doc, testCase.opts...)
assert.Nil(mt, err, "InsertOne error: %v", err)
optName := "bypassDocumentValidation"
evt := mt.GetStartedEvent()
val, err := evt.Command.LookupErr(optName)
if testCase.expectOptionSet {
assert.Nil(mt, err, "expected %v to be set but got: %v", optName, err)
assert.True(mt, val.Boolean(), "expected %v to be true but got: %v", optName, val.Boolean())
return
}
assert.NotNil(mt, err, "expected %v to be unset but got nil", optName)
})
}
})
})
mt.RunOpts("insert many", noClientOpts, func(mt *mtest.T) {
mt.Parallel()
mt.Run("success", func(mt *mtest.T) {
mt.Parallel()
want1 := int32(11)
want2 := int32(12)
docs := []interface{}{
bson.D{{"_id", want1}},
bson.D{{"x", 6}},
bson.D{{"_id", want2}},
}
res, err := mt.Coll.InsertMany(context.Background(), docs)
assert.Nil(mt, err, "InsertMany error: %v", err)
assert.Equal(mt, 3, len(res.InsertedIDs), "expected 3 inserted IDs, got %v", len(res.InsertedIDs))
assert.Equal(mt, want1, res.InsertedIDs[0], "expected inserted ID %v, got %v", want1, res.InsertedIDs[0])
assert.NotNil(mt, res.InsertedIDs[1], "expected ID but got nil")
assert.Equal(mt, want2, res.InsertedIDs[2], "expected inserted ID %v, got %v", want2, res.InsertedIDs[2])
})
mt.Run("batches", func(mt *mtest.T) {
mt.Parallel()
const (
megabyte = 10 * 10 * 10 * 10 * 10 * 10
numDocs = 700000
)
var docs []interface{}
total := uint32(0)
expectedDocSize := uint32(26)
for i := 0; i < numDocs; i++ {
d := bson.D{
{"a", int32(i)},
{"b", int32(i * 2)},
{"c", int32(i * 3)},
}
b, _ := bson.Marshal(d)
assert.Equal(mt, int(expectedDocSize), len(b), "expected doc len %v, got %v", expectedDocSize, len(b))
docs = append(docs, d)
total += uint32(len(b))
}
assert.True(mt, total > 16*megabyte, "expected total greater than 16mb but got %v", total)
res, err := mt.Coll.InsertMany(context.Background(), docs)
assert.Nil(mt, err, "InsertMany error: %v", err)
assert.Equal(mt, numDocs, len(res.InsertedIDs), "expected %v inserted IDs, got %v", numDocs, len(res.InsertedIDs))
})
mt.Run("large document batches", func(mt *mtest.T) {
mt.Parallel()
docs := []interface{}{create16MBDocument(mt), create16MBDocument(mt), create16MBDocument(mt)}
_, err := mt.Coll.InsertMany(context.Background(), docs)
assert.Nil(mt, err, "InsertMany error: %v", err)
evt := mt.GetStartedEvent()
assert.Equal(mt, "insert", evt.CommandName, "expected 'insert' event, got '%v'", evt.CommandName)
evt = mt.GetStartedEvent()
assert.Equal(mt, "insert", evt.CommandName, "expected 'insert' event, got '%v'", evt.CommandName)
})
mt.RunOpts("write error", noClientOpts, func(mt *mtest.T) {
mt.Parallel()
docs := []interface{}{
bson.D{{"_id", bson.NewObjectID()}},
bson.D{{"_id", bson.NewObjectID()}},
bson.D{{"_id", bson.NewObjectID()}},
}
testCases := []struct {
name string
ordered bool
numErrors int
}{
{"unordered", false, 3},
{"ordered", true, 1},
}
for _, tc := range testCases {
mt.Run(tc.name, func(mt *mtest.T) {
_, err := mt.Coll.InsertMany(context.Background(), docs)
assert.Nil(mt, err, "InsertMany error: %v", err)
_, err = mt.Coll.InsertMany(context.Background(), docs, options.InsertMany().SetOrdered(tc.ordered))
we, ok := err.(mongo.BulkWriteException)
assert.True(mt, ok, "expected error type %T, got %T", mongo.BulkWriteException{}, err)
numErrors := len(we.WriteErrors)
assert.Equal(mt, tc.numErrors, numErrors, "expected %v write errors, got %v", tc.numErrors, numErrors)
gotCode := we.WriteErrors[0].Code
assert.Equal(mt, errorDuplicateKey, gotCode, "expected error code %v, got %v", errorDuplicateKey, gotCode)
})
}
})
mt.Run("return only inserted ids", func(mt *mtest.T) {
mt.Parallel()
id := int32(15)
docs := []interface{}{
bson.D{{"_id", id}},
bson.D{{"_id", id}},
bson.D{{"x", 6}},
bson.D{{"_id", id}},
}
testCases := []struct {
name string
ordered bool
numInserted int
numErrors int
}{
{"unordered", false, 2, 2},
{"ordered", true, 1, 1},
}
for _, tc := range testCases {
mt.Run(tc.name, func(mt *mtest.T) {
res, err := mt.Coll.InsertMany(context.Background(), docs, options.InsertMany().SetOrdered(tc.ordered))
assert.Equal(mt, tc.numInserted, len(res.InsertedIDs), "expected %v inserted IDs, got %v", tc.numInserted, len(res.InsertedIDs))
assert.Equal(mt, id, res.InsertedIDs[0], "expected inserted ID %v, got %v", id, res.InsertedIDs[0])
if tc.numInserted > 1 {
assert.NotNil(mt, res.InsertedIDs[1], "expected ID but got nil")
}
we, ok := err.(mongo.BulkWriteException)
assert.True(mt, ok, "expected error type %T, got %T", mongo.BulkWriteException{}, err)
numErrors := len(we.WriteErrors)
assert.Equal(mt, tc.numErrors, numErrors, "expected %v write errors, got %v", tc.numErrors, numErrors)
gotCode := we.WriteErrors[0].Code
assert.Equal(mt, errorDuplicateKey, gotCode, "expected error code %v, got %v", errorDuplicateKey, gotCode)
})
}
})
mt.Run("writeError index", func(mt *mtest.T) {
mt.Parallel()
// force multiple batches
numDocs := 700000
var docs []interface{}
for i := 0; i < numDocs; i++ {
d := bson.D{
{"a", int32(i)},
{"b", int32(i * 2)},
{"c", int32(i * 3)},
}
docs = append(docs, d)
}
repeated := bson.D{{"_id", int32(11)}}
docs = append(docs, repeated, repeated)
_, err := mt.Coll.InsertMany(context.Background(), docs)
assert.NotNil(mt, err, "expected InsertMany error, got nil")
we, ok := err.(mongo.BulkWriteException)
assert.True(mt, ok, "expected error type %T, got %T", mongo.BulkWriteException{}, err)
numErrors := len(we.WriteErrors)
assert.Equal(mt, 1, numErrors, "expected 1 write error, got %v", numErrors)
gotIndex := we.WriteErrors[0].Index
assert.Equal(mt, numDocs+1, gotIndex, "expected index %v, got %v", numDocs+1, gotIndex)
})
wcCollOpts := options.Collection().SetWriteConcern(impossibleWc)
wcTestOpts := mtest.NewOptions().CollectionOptions(wcCollOpts).Topologies(mtest.ReplicaSet)
mt.RunOpts("write concern error", wcTestOpts, func(mt *mtest.T) {
_, err := mt.Coll.InsertMany(context.Background(), []interface{}{bson.D{{"_id", 1}}})
we, ok := err.(mongo.BulkWriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.BulkWriteException{}, err)
assert.NotNil(mt, we.WriteConcernError, "expected write concern error, got %+v", err)
})
})
mt.RunOpts("delete one", noClientOpts, func(mt *mtest.T) {
mt.Run("found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
res, err := mt.Coll.DeleteOne(context.Background(), bson.D{{"x", 1}})
assert.Nil(mt, err, "DeleteOne error: %v", err)
assert.Equal(mt, int64(1), res.DeletedCount, "expected DeletedCount 1, got %v", res.DeletedCount)
})
mt.Run("not found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
res, err := mt.Coll.DeleteOne(context.Background(), bson.D{{"x", 0}})
assert.Nil(mt, err, "DeleteOne error: %v", err)
assert.Equal(mt, int64(0), res.DeletedCount, "expected DeletedCount 0, got %v", res.DeletedCount)
})
mt.RunOpts("not found with options", mtest.NewOptions().MinServerVersion("3.4"), func(mt *mtest.T) {
initCollection(mt, mt.Coll)
opts := options.DeleteOne().SetCollation(&options.Collation{Locale: "en_US"})
res, err := mt.Coll.DeleteOne(context.Background(), bson.D{{"x", 0}}, opts)
assert.Nil(mt, err, "DeleteOne error: %v", err)
assert.Equal(mt, int64(0), res.DeletedCount, "expected DeletedCount 0, got %v", res.DeletedCount)
})
mt.RunOpts("write error", mtest.NewOptions().MaxServerVersion("5.0.7"), func(mt *mtest.T) {
// Deletes are not allowed on capped collections on MongoDB 5.0.6-. We use this
// behavior to test the processing of write errors.
cappedOpts := options.CreateCollection().SetCapped(true).SetSizeInBytes(64 * 1024)
capped := mt.CreateCollection(mtest.Collection{
Name: "deleteOne_capped",
CreateOpts: cappedOpts,
}, true)
_, err := capped.DeleteOne(context.Background(), bson.D{{"x", 1}})
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %T, got %T", mongo.WriteException{}, err)
numWriteErrors := len(we.WriteErrors)
assert.Equal(mt, 1, numWriteErrors, "expected 1 write error, got %v", numWriteErrors)
gotCode := we.WriteErrors[0].Code
assert.True(mt, gotCode == errorCappedCollDeleteLegacy || gotCode == errorCappedCollDelete,
"expected error code %v or %v, got %v", errorCappedCollDeleteLegacy, errorCappedCollDelete, gotCode)
})
mt.RunOpts("write concern error", mtest.NewOptions().Topologies(mtest.ReplicaSet), func(mt *mtest.T) {
// 2.6 returns right away if the document doesn't exist
filter := bson.D{{"x", 1}}
_, err := mt.Coll.InsertOne(context.Background(), filter)
assert.Nil(mt, err, "InsertOne error: %v", err)
mt.CloneCollection(options.Collection().SetWriteConcern(impossibleWc))
_, err = mt.Coll.DeleteOne(context.Background(), filter)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %T, got %T", mongo.WriteException{}, err)
assert.NotNil(mt, we.WriteConcernError, "expected write concern error, got nil")
})
mt.RunOpts("single key map index", mtest.NewOptions().MinServerVersion("4.4"), func(mt *mtest.T) {
initCollection(mt, mt.Coll)
indexView := mt.Coll.Indexes()
_, err := indexView.CreateOne(context.Background(), mongo.IndexModel{
Keys: bson.D{{"x", 1}},
})
assert.Nil(mt, err, "CreateOne error: %v", err)
opts := options.DeleteOne().SetHint(bson.M{"x": 1})
res, err := mt.Coll.DeleteOne(context.Background(), bson.D{{"x", 1}}, opts)
assert.Nil(mt, err, "DeleteOne error: %v", err)
assert.Equal(mt, int64(1), res.DeletedCount, "expected DeletedCount 1, got %v", res.DeletedCount)
})
mt.RunOpts("multikey map index", mtest.NewOptions().MinServerVersion("4.4"), func(mt *mtest.T) {
opts := options.DeleteOne().SetHint(bson.M{"x": 1, "y": 1})
_, err := mt.Coll.DeleteOne(context.Background(), bson.D{{"x", 0}}, opts)
assert.Equal(mt, mongo.ErrMapForOrderedArgument{"hint"}, err, "expected error %v, got %v", mongo.ErrMapForOrderedArgument{"hint"}, err)
})
})
mt.RunOpts("delete many", noClientOpts, func(mt *mtest.T) {
mt.Run("found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
res, err := mt.Coll.DeleteMany(context.Background(), bson.D{{"x", bson.D{{"$gte", 3}}}})
assert.Nil(mt, err, "DeleteMany error: %v", err)
assert.Equal(mt, int64(3), res.DeletedCount, "expected DeletedCount 3, got %v", res.DeletedCount)
})
mt.Run("not found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
res, err := mt.Coll.DeleteMany(context.Background(), bson.D{{"x", bson.D{{"$lt", 1}}}})
assert.Nil(mt, err, "DeleteMany error: %v", err)
assert.Equal(mt, int64(0), res.DeletedCount, "expected DeletedCount 0, got %v", res.DeletedCount)
})
mt.RunOpts("not found with options", mtest.NewOptions().MinServerVersion("3.4"), func(mt *mtest.T) {
initCollection(mt, mt.Coll)
opts := options.DeleteMany().SetCollation(&options.Collation{Locale: "en_US"})
res, err := mt.Coll.DeleteMany(context.Background(), bson.D{{"x", bson.D{{"$lt", 1}}}}, opts)
assert.Nil(mt, err, "DeleteMany error: %v", err)
assert.Equal(mt, int64(0), res.DeletedCount, "expected DeletedCount 0, got %v", res.DeletedCount)
})
mt.RunOpts("write error", mtest.NewOptions().MaxServerVersion("5.0.7"), func(mt *mtest.T) {
// Deletes are not allowed on capped collections on MongoDB 5.0.6-. We use this
// behavior to test the processing of write errors.
cappedOpts := options.CreateCollection().SetCapped(true).SetSizeInBytes(64 * 1024)
capped := mt.CreateCollection(mtest.Collection{
Name: "deleteMany_capped",
CreateOpts: cappedOpts,
}, true)
_, err := capped.DeleteMany(context.Background(), bson.D{{"x", 1}})
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
numWriteErrors := len(we.WriteErrors)
assert.Equal(mt, 1, len(we.WriteErrors), "expected 1 write error, got %v", numWriteErrors)
gotCode := we.WriteErrors[0].Code
assert.True(mt, gotCode == errorCappedCollDeleteLegacy || gotCode == errorCappedCollDelete,
"expected error code %v or %v, got %v", errorCappedCollDeleteLegacy, errorCappedCollDelete, gotCode)
})
mt.RunOpts("write concern error", mtest.NewOptions().Topologies(mtest.ReplicaSet), func(mt *mtest.T) {
// 2.6 server returns right away if the document doesn't exist
filter := bson.D{{"x", 1}}
_, err := mt.Coll.InsertOne(context.Background(), filter)
assert.Nil(mt, err, "InsertOne error: %v", err)
mt.CloneCollection(options.Collection().SetWriteConcern(impossibleWc))
_, err = mt.Coll.DeleteMany(context.Background(), filter)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
assert.NotNil(mt, we.WriteConcernError, "expected write concern error, got %+v", err)
})
mt.RunOpts("single key map index", mtest.NewOptions().MinServerVersion("4.4"), func(mt *mtest.T) {
initCollection(mt, mt.Coll)
indexView := mt.Coll.Indexes()
_, err := indexView.CreateOne(context.Background(), mongo.IndexModel{
Keys: bson.D{{"x", 1}},
})
assert.Nil(mt, err, "index CreateOne error: %v", err)
opts := options.DeleteOne().SetHint(bson.M{"x": 1})
res, err := mt.Coll.DeleteOne(context.Background(), bson.D{{"x", 1}}, opts)
assert.Nil(mt, err, "DeleteOne error: %v", err)
assert.Equal(mt, int64(1), res.DeletedCount, "expected DeletedCount 1, got %v", res.DeletedCount)
})
mt.RunOpts("multikey map index", mtest.NewOptions().MinServerVersion("4.4"), func(mt *mtest.T) {
opts := options.DeleteMany().SetHint(bson.M{"x": 1, "y": 1})
_, err := mt.Coll.DeleteMany(context.Background(), bson.D{{"x", 0}}, opts)
assert.Equal(mt, mongo.ErrMapForOrderedArgument{"hint"}, err, "expected error %v, got %v", mongo.ErrMapForOrderedArgument{"hint"}, err)
})
})
mt.RunOpts("update one", noClientOpts, func(mt *mtest.T) {
mt.Run("empty update", func(mt *mtest.T) {
_, err := mt.Coll.UpdateOne(context.Background(), bson.D{}, bson.D{})
assert.NotNil(mt, err, "expected error, got nil")
})
mt.Run("found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
filter := bson.D{{"x", 1}}
update := bson.D{{"$inc", bson.D{{"x", 1}}}}
res, err := mt.Coll.UpdateOne(context.Background(), filter, update)
assert.Nil(mt, err, "UpdateOne error: %v", err)
assert.Equal(mt, int64(1), res.MatchedCount, "expected matched count 1, got %v", res.MatchedCount)
assert.Equal(mt, int64(1), res.ModifiedCount, "expected matched count 1, got %v", res.ModifiedCount)
assert.Nil(mt, res.UpsertedID, "expected upserted ID nil, got %v", res.UpsertedID)
})
mt.Run("not found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
filter := bson.D{{"x", 0}}
update := bson.D{{"$inc", bson.D{{"x", 1}}}}
res, err := mt.Coll.UpdateOne(context.Background(), filter, update)
assert.Nil(mt, err, "UpdateOne error: %v", err)
assert.Equal(mt, int64(0), res.MatchedCount, "expected matched count 0, got %v", res.MatchedCount)
assert.Equal(mt, int64(0), res.ModifiedCount, "expected matched count 0, got %v", res.ModifiedCount)
assert.Nil(mt, res.UpsertedID, "expected upserted ID nil, got %v", res.UpsertedID)
})
mt.Run("upsert", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
filter := bson.D{{"x", 0}}
update := bson.D{{"$inc", bson.D{{"x", 1}}}}
res, err := mt.Coll.UpdateOne(context.Background(), filter, update, options.UpdateOne().SetUpsert(true))
assert.Nil(mt, err, "UpdateOne error: %v", err)
assert.Equal(mt, int64(0), res.MatchedCount, "expected matched count 0, got %v", res.MatchedCount)
assert.Equal(mt, int64(0), res.ModifiedCount, "expected matched count 0, got %v", res.ModifiedCount)
assert.NotNil(mt, res.UpsertedID, "expected upserted ID, got nil")
})
mt.Run("write error", func(mt *mtest.T) {
filter := bson.D{{"_id", "foo"}}
update := bson.D{{"$set", bson.D{{"_id", 3.14159}}}}
_, err := mt.Coll.InsertOne(context.Background(), filter)
assert.Nil(mt, err, "InsertOne error: %v", err)
_, err = mt.Coll.UpdateOne(context.Background(), filter, update)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
numWriteErrors := len(we.WriteErrors)
assert.Equal(mt, 1, numWriteErrors, "expected 1 write error, got %v", numWriteErrors)
gotCode := we.WriteErrors[0].Code
assert.Equal(mt, errorModifiedID, gotCode, "expected error code %v, got %v", errorModifiedID, gotCode)
})
mt.RunOpts("write concern error", mtest.NewOptions().Topologies(mtest.ReplicaSet), func(mt *mtest.T) {
// 2.6 returns right away if the document doesn't exist
filter := bson.D{{"_id", "foo"}}
update := bson.D{{"$set", bson.D{{"pi", 3.14159}}}}
_, err := mt.Coll.InsertOne(context.Background(), filter)
assert.Nil(mt, err, "InsertOne error: %v", err)
mt.CloneCollection(options.Collection().SetWriteConcern(impossibleWc))
_, err = mt.Coll.UpdateOne(context.Background(), filter, update)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
assert.NotNil(mt, we.WriteConcernError, "expected write concern error, got %+v", err)
})
mt.RunOpts("special slice types", noClientOpts, func(mt *mtest.T) {
// test special types that should be converted to a document for updates even though the underlying type is
// a slice/array
doc := bson.D{{"$set", bson.D{{"x", 2}}}}
docBytes, err := bson.Marshal(doc)
assert.Nil(mt, err, "Marshal error: %v", err)
testCases := []struct {
name string
update interface{}
}{
{"bson Document", bsoncore.Document(docBytes)},
{"bson Raw", bson.Raw(docBytes)},
{"bson D", doc},
{"byte slice", docBytes},
}
for _, tc := range testCases {
mt.Run(tc.name, func(mt *mtest.T) {
filter := bson.D{{"x", 1}}
_, err := mt.Coll.InsertOne(context.Background(), filter)
assert.Nil(mt, err, "InsertOne error: %v", err)
res, err := mt.Coll.UpdateOne(context.Background(), filter, tc.update)
assert.Nil(mt, err, "UpdateOne error: %v", err)
assert.Equal(mt, int64(1), res.MatchedCount, "expected matched count 1, got %v", res.MatchedCount)
assert.Equal(mt, int64(1), res.ModifiedCount, "expected modified count 1, got %v", res.ModifiedCount)
})
}
})
})
mt.RunOpts("update by id", noClientOpts, func(mt *mtest.T) {
mt.Run("empty update", func(mt *mtest.T) {
_, err := mt.Coll.UpdateByID(context.Background(), "foo", bson.D{})
assert.NotNil(mt, err, "expected error, got nil")
})
mt.Run("nil id", func(mt *mtest.T) {
_, err := mt.Coll.UpdateByID(context.Background(), nil, bson.D{{"$inc", bson.D{{"x", 1}}}})
assert.True(mt, errors.Is(err, mongo.ErrNilValue), "expected %v, got %v", mongo.ErrNilValue, err)
})
mt.RunOpts("found", noClientOpts, func(mt *mtest.T) {
testCases := []struct {
name string
id interface{}
}{
{"objectID", bson.NewObjectID()},
{"string", "foo"},
{"int", 11},
}
for _, tc := range testCases {
mt.Run(tc.name, func(mt *mtest.T) {
doc := bson.D{{"_id", tc.id}, {"x", 1}}
_, err := mt.Coll.InsertOne(context.Background(), doc)
assert.Nil(mt, err, "InsertOne error: %v", err)
update := bson.D{{"$inc", bson.D{{"x", 1}}}}
res, err := mt.Coll.UpdateByID(context.Background(), tc.id, update)
assert.Nil(mt, err, "UpdateByID error: %v", err)
assert.Equal(mt, int64(1), res.MatchedCount, "expected matched count 1, got %v", res.MatchedCount)
assert.Equal(mt, int64(1), res.ModifiedCount, "expected modified count 1, got %v", res.ModifiedCount)
assert.Nil(mt, res.UpsertedID, "expected upserted ID nil, got %v", res.UpsertedID)
})
}
})
mt.Run("not found", func(mt *mtest.T) {
id := bson.NewObjectID()
doc := bson.D{{"_id", id}, {"x", 1}}
_, err := mt.Coll.InsertOne(context.Background(), doc)
assert.Nil(mt, err, "InsertOne error: %v", err)
update := bson.D{{"$inc", bson.D{{"x", 1}}}}
res, err := mt.Coll.UpdateByID(context.Background(), 0, update)
assert.Nil(mt, err, "UpdateByID error: %v", err)
assert.Equal(mt, int64(0), res.MatchedCount, "expected matched count 0, got %v", res.MatchedCount)
assert.Equal(mt, int64(0), res.ModifiedCount, "expected modified count 0, got %v", res.ModifiedCount)
assert.Nil(mt, res.UpsertedID, "expected upserted ID nil, got %v", res.UpsertedID)
})
mt.Run("upsert", func(mt *mtest.T) {
doc := bson.D{{"_id", bson.NewObjectID()}, {"x", 1}}
_, err := mt.Coll.InsertOne(context.Background(), doc)
assert.Nil(mt, err, "InsertOne error: %v", err)
update := bson.D{{"$inc", bson.D{{"x", 1}}}}
id := "blah"
res, err := mt.Coll.UpdateByID(context.Background(), id, update, options.UpdateOne().SetUpsert(true))
assert.Nil(mt, err, "UpdateByID error: %v", err)
assert.Equal(mt, int64(0), res.MatchedCount, "expected matched count 0, got %v", res.MatchedCount)
assert.Equal(mt, int64(0), res.ModifiedCount, "expected modified count 0, got %v", res.ModifiedCount)
assert.Equal(mt, res.UpsertedID, id, "expected upserted ID %v, got %v", id, res.UpsertedID)
})
mt.Run("write error", func(mt *mtest.T) {
id := "foo"
update := bson.D{{"$set", bson.D{{"_id", 3.14159}}}}
_, err := mt.Coll.InsertOne(context.Background(), bson.D{{"_id", id}})
assert.Nil(mt, err, "InsertOne error: %v", err)
_, err = mt.Coll.UpdateByID(context.Background(), id, update)
se, ok := err.(mongo.ServerError)
assert.True(mt, ok, "expected ServerError, got %v", err)
assert.True(mt, se.HasErrorCode(errorModifiedID), "expected error code %v, got %v", errorModifiedID, err)
})
mt.RunOpts("write concern error", mtest.NewOptions().Topologies(mtest.ReplicaSet), func(mt *mtest.T) {
// 2.6 returns right away if the document doesn't exist
id := "foo"
update := bson.D{{"$set", bson.D{{"pi", 3.14159}}}}
_, err := mt.Coll.InsertOne(context.Background(), bson.D{{"_id", id}})
assert.Nil(mt, err, "InsertOne error: %v", err)
mt.CloneCollection(options.Collection().SetWriteConcern(impossibleWc))
_, err = mt.Coll.UpdateByID(context.Background(), id, update)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
assert.NotNil(mt, we.WriteConcernError, "expected write concern error, got %+v", we)
})
})
mt.RunOpts("update many", noClientOpts, func(mt *mtest.T) {
mt.Run("empty update", func(mt *mtest.T) {
_, err := mt.Coll.UpdateMany(context.Background(), bson.D{}, bson.D{})
assert.NotNil(mt, err, "expected error, got nil")
})
mt.Run("found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
filter := bson.D{{"x", bson.D{{"$gte", 3}}}}
update := bson.D{{"$inc", bson.D{{"x", 1}}}}
res, err := mt.Coll.UpdateMany(context.Background(), filter, update)
assert.Nil(mt, err, "UpdateMany error: %v", err)
assert.Equal(mt, int64(3), res.MatchedCount, "expected matched count 3, got %v", res.MatchedCount)
assert.Equal(mt, int64(3), res.ModifiedCount, "expected modified count 3, got %v", res.ModifiedCount)
assert.Nil(mt, res.UpsertedID, "expected upserted ID nil, got %v", res.UpsertedID)
})
mt.Run("not found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
filter := bson.D{{"x", bson.D{{"$lt", 1}}}}
update := bson.D{{"$inc", bson.D{{"x", 1}}}}
res, err := mt.Coll.UpdateMany(context.Background(), filter, update)
assert.Nil(mt, err, "UpdateMany error: %v", err)
assert.Equal(mt, int64(0), res.MatchedCount, "expected matched count 0, got %v", res.MatchedCount)
assert.Equal(mt, int64(0), res.ModifiedCount, "expected modified count 0, got %v", res.ModifiedCount)
assert.Nil(mt, res.UpsertedID, "expected upserted ID nil, got %v", res.UpsertedID)
})
mt.Run("upsert", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
filter := bson.D{{"x", bson.D{{"$lt", 1}}}}
update := bson.D{{"$inc", bson.D{{"x", 1}}}}
res, err := mt.Coll.UpdateMany(context.Background(), filter, update, options.UpdateMany().SetUpsert(true))
assert.Nil(mt, err, "UpdateMany error: %v", err)
assert.Equal(mt, int64(0), res.MatchedCount, "expected matched count 0, got %v", res.MatchedCount)
assert.Equal(mt, int64(0), res.ModifiedCount, "expected modified count 0, got %v", res.ModifiedCount)
assert.NotNil(mt, res.UpsertedID, "expected upserted ID, got nil")
})
mt.Run("write error", func(mt *mtest.T) {
filter := bson.D{{"_id", "foo"}}
update := bson.D{{"$set", bson.D{{"_id", 3.14159}}}}
_, err := mt.Coll.InsertOne(context.Background(), filter)
assert.Nil(mt, err, "InsertOne error: %v", err)
_, err = mt.Coll.UpdateMany(context.Background(), filter, update)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
numWriteErrors := len(we.WriteErrors)
assert.Equal(mt, 1, numWriteErrors, "expected 1 write error, got %v", numWriteErrors)
gotCode := we.WriteErrors[0].Code
assert.Equal(mt, errorModifiedID, gotCode, "expected error code %v, got %v", errorModifiedID, gotCode)
})
mt.RunOpts("write concern error", mtest.NewOptions().Topologies(mtest.ReplicaSet), func(mt *mtest.T) {
// 2.6 returns right away if the document doesn't exist
filter := bson.D{{"_id", "foo"}}
update := bson.D{{"$set", bson.D{{"pi", 3.14159}}}}
_, err := mt.Coll.InsertOne(context.Background(), filter)
assert.Nil(mt, err, "InsertOne error: %v", err)
mt.CloneCollection(options.Collection().SetWriteConcern(impossibleWc))
_, err = mt.Coll.UpdateMany(context.Background(), filter, update)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
assert.NotNil(mt, we.WriteConcernError, "expected write concern error, got %+v", we)
})
})
mt.RunOpts("replace one", noClientOpts, func(mt *mtest.T) {
mt.Run("found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
filter := bson.D{{"x", 1}}
replacement := bson.D{{"y", 1}}
res, err := mt.Coll.ReplaceOne(context.Background(), filter, replacement)
assert.Nil(mt, err, "ReplaceOne error: %v", err)
assert.Equal(mt, int64(1), res.MatchedCount, "expected matched count 1, got %v", res.MatchedCount)
assert.Equal(mt, int64(1), res.ModifiedCount, "expected modified count 1, got %v", res.ModifiedCount)
assert.Nil(mt, res.UpsertedID, "expected upserted ID nil, got %v", res.UpsertedID)
})
mt.Run("not found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
filter := bson.D{{"x", 0}}
replacement := bson.D{{"y", 1}}
res, err := mt.Coll.ReplaceOne(context.Background(), filter, replacement)
assert.Nil(mt, err, "ReplaceOne error: %v", err)
assert.Equal(mt, int64(0), res.MatchedCount, "expected matched count 0, got %v", res.MatchedCount)
assert.Equal(mt, int64(0), res.ModifiedCount, "expected modified count 0, got %v", res.ModifiedCount)
assert.Nil(mt, res.UpsertedID, "expected upserted ID nil, got %v", res.UpsertedID)
})
mt.Run("upsert", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
filter := bson.D{{"x", 0}}
replacement := bson.D{{"y", 1}}
res, err := mt.Coll.ReplaceOne(context.Background(), filter, replacement, options.Replace().SetUpsert(true))
assert.Nil(mt, err, "ReplaceOne error: %v", err)
assert.Equal(mt, int64(0), res.MatchedCount, "expected matched count 0, got %v", res.MatchedCount)
assert.Equal(mt, int64(0), res.ModifiedCount, "expected modified count 0, got %v", res.ModifiedCount)
assert.NotNil(mt, res.UpsertedID, "expected upserted ID, got nil")
})
mt.Run("write error", func(mt *mtest.T) {
filter := bson.D{{"_id", "foo"}}
replacement := bson.D{{"_id", 3.14159}}
_, err := mt.Coll.InsertOne(context.Background(), filter)
assert.Nil(mt, err, "InsertOne error: %v", err)
_, err = mt.Coll.ReplaceOne(context.Background(), filter, replacement)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
numWriteErrors := len(we.WriteErrors)
assert.Equal(mt, 1, numWriteErrors, "expected 1 write error, got %v", numWriteErrors)
gotCode := we.WriteErrors[0].Code
assert.True(mt, gotCode == errorModifiedID || gotCode == errorModifiedIDLegacy,
"expected error code %v or %v, got %v", errorModifiedID, errorModifiedIDLegacy, gotCode)
})
mt.RunOpts("write concern error", mtest.NewOptions().Topologies(mtest.ReplicaSet), func(mt *mtest.T) {
// 2.6 returns right away if document doesn't exist
filter := bson.D{{"_id", "foo"}}
replacement := bson.D{{"pi", 3.14159}}
_, err := mt.Coll.InsertOne(context.Background(), filter)
assert.Nil(mt, err, "InsertOne error: %v", err)
mt.CloneCollection(options.Collection().SetWriteConcern(impossibleWc))
_, err = mt.Coll.ReplaceOne(context.Background(), filter, replacement)
we, ok := err.(mongo.WriteException)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteException{}, err)
assert.NotNil(mt, we.WriteConcernError, "expected write concern error, got nil")
})
})
mt.RunOpts("aggregate", noClientOpts, func(mt *mtest.T) {
mt.Run("success", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
pipeline := bson.A{
bson.D{{"$match", bson.D{{"x", bson.D{{"$gte", 2}}}}}},
bson.D{{"$project", bson.D{
{"_id", 0},
{"x", 1},
}}},
bson.D{{"$sort", bson.D{{"x", 1}}}},
}
cursor, err := mt.Coll.Aggregate(context.Background(), pipeline)
assert.Nil(mt, err, "Aggregate error: %v", err)
for i := 2; i < 5; i++ {
assert.True(mt, cursor.Next(context.Background()), "expected Next true, got false (i=%v)", i)
elems, _ := cursor.Current.Elements()
assert.Equal(mt, 1, len(elems), "expected doc with 1 element, got %v", cursor.Current)
num, err := cursor.Current.LookupErr("x")
assert.Nil(mt, err, "x not found in document %v", cursor.Current)
assert.Equal(mt, bson.TypeInt32, num.Type, "expected 'x' type %v, got %v", bson.TypeInt32, num.Type)
assert.Equal(mt, int32(i), num.Int32(), "expected x value %v, got %v", i, num.Int32())
}
})
mt.RunOpts("index hint", mtest.NewOptions().MinServerVersion("3.6"), func(mt *mtest.T) {
hint := bson.D{{"x", 1}}
testAggregateWithOptions(mt, true, options.Aggregate().SetHint(hint))
})
mt.Run("options", func(mt *mtest.T) {
testAggregateWithOptions(mt, false, options.Aggregate().SetAllowDiskUse(true))
})
mt.RunOpts("single key map hint", mtest.NewOptions().MinServerVersion("3.6"), func(mt *mtest.T) {
hint := bson.M{"x": 1}
testAggregateWithOptions(mt, true, options.Aggregate().SetHint(hint))
})
mt.RunOpts("multikey map hint", mtest.NewOptions().MinServerVersion("3.6"), func(mt *mtest.T) {
pipeline := mongo.Pipeline{bson.D{{"$out", mt.Coll.Name()}}}
cursor, err := mt.Coll.Aggregate(context.Background(), pipeline, options.Aggregate().SetHint(bson.M{"x": 1, "y": 1}))
assert.Nil(mt, cursor, "expected cursor nil, got %v", cursor)
assert.Equal(mt, mongo.ErrMapForOrderedArgument{"hint"}, err, "expected error %v, got %v", mongo.ErrMapForOrderedArgument{"hint"}, err)
})
wcCollOpts := options.Collection().SetWriteConcern(impossibleWc)
wcTestOpts := mtest.NewOptions().Topologies(mtest.ReplicaSet).MinServerVersion("3.6").CollectionOptions(wcCollOpts)
mt.RunOpts("write concern error", wcTestOpts, func(mt *mtest.T) {
pipeline := mongo.Pipeline{{{"$out", mt.Coll.Name()}}}
cursor, err := mt.Coll.Aggregate(context.Background(), pipeline)
assert.Nil(mt, cursor, "expected cursor nil, got %v", cursor)
_, ok := err.(mongo.WriteConcernError)
assert.True(mt, ok, "expected error type %v, got %v", mongo.WriteConcernError{}, err)
})
mt.Run("getMore commands are monitored", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
assertGetMoreCommandsAreMonitored(mt, "aggregate", func() (*mongo.Cursor, error) {
return mt.Coll.Aggregate(context.Background(), mongo.Pipeline{}, options.Aggregate().SetBatchSize(3))
})
})
mt.Run("killCursors commands are monitored", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
assertKillCursorsCommandsAreMonitored(mt, "aggregate", func() (*mongo.Cursor, error) {
return mt.Coll.Aggregate(context.Background(), mongo.Pipeline{}, options.Aggregate().SetBatchSize(3))
})
})
mt.Run("Custom", func(mt *mtest.T) {
// Custom options should be a BSON map of option names to Marshalable option values.
// We use "allowDiskUse" as an example.
customOpts := bson.M{"allowDiskUse": true}
opts := options.Aggregate().SetCustom(customOpts)
// Run aggregate with custom options set.
mt.ClearEvents()
_, err := mt.Coll.Aggregate(context.Background(), mongo.Pipeline{}, opts)
assert.Nil(mt, err, "Aggregate error: %v", err)
// Assert that custom option is passed to the aggregate expression.
evt := mt.GetStartedEvent()
assert.Equal(mt, "aggregate", evt.CommandName, "expected command 'aggregate' got, %q", evt.CommandName)
aduVal, err := evt.Command.LookupErr("allowDiskUse")
assert.Nil(mt, err, "expected field 'allowDiskUse' in started command not found")
adu, ok := aduVal.BooleanOK()
assert.True(mt, ok, "expected field 'allowDiskUse' to be boolean, got %v", aduVal.Type.String())
assert.True(mt, adu, "expected field 'allowDiskUse' to be true, got false")
})
})
mt.RunOpts("count documents", noClientOpts, func(mt *mtest.T) {
mt.Run("success", func(mt *mtest.T) {
testCases := []struct {
name string
filter bson.D
opts *options.CountOptionsBuilder
count int64
testOpts *mtest.Options
}{
{"no filter", bson.D{}, nil, 5, mtest.NewOptions()},
{"filter", bson.D{{"x", bson.D{{"$gt", 2}}}}, nil, 3, mtest.NewOptions()},
{"limit", bson.D{}, options.Count().SetLimit(3), 3, mtest.NewOptions()},
{"skip", bson.D{}, options.Count().SetSkip(3), 2, mtest.NewOptions()},
{"single key map hint", bson.D{}, options.Count().SetHint(bson.M{"x": 1}), 5,
mtest.NewOptions().MinServerVersion("3.6")},
}
for _, tc := range testCases {
mt.RunOpts(tc.name, tc.testOpts, func(mt *mtest.T) {
initCollection(mt, mt.Coll)
indexView := mt.Coll.Indexes()
_, err := indexView.CreateOne(context.Background(), mongo.IndexModel{
Keys: bson.D{{"x", 1}},
})
assert.Nil(mt, err, "CreateOne error: %v", err)
count, err := mt.Coll.CountDocuments(context.Background(), tc.filter, tc.opts)
assert.Nil(mt, err, "CountDocuments error: %v", err)
assert.Equal(mt, tc.count, count, "expected count %v, got %v", tc.count, count)
})
}
})
mt.Run("multikey map hint", func(mt *mtest.T) {
opts := options.Count().SetHint(bson.M{"x": 1, "y": 1})
_, err := mt.Coll.CountDocuments(context.Background(), bson.D{}, opts)
assert.Equal(mt, mongo.ErrMapForOrderedArgument{"hint"}, err, "expected error %v, got %v", mongo.ErrMapForOrderedArgument{"hint"}, err)
})
})
mt.RunOpts("estimated document count", noClientOpts, func(mt *mtest.T) {
testCases := []struct {
name string
opts *options.EstimatedDocumentCountOptionsBuilder
count int64
}{
{"no options", nil, 5},
{"options", options.EstimatedDocumentCount().SetComment("1"), 5},
}
for _, tc := range testCases {
mt.Run(tc.name, func(mt *mtest.T) {
initCollection(mt, mt.Coll)
count, err := mt.Coll.EstimatedDocumentCount(context.Background(), tc.opts)
assert.Nil(mt, err, "EstimatedDocumentCount error: %v", err)
assert.Equal(mt, tc.count, count, "expected count %v, got %v", tc.count, count)
})
}
})
mt.RunOpts("distinct", noClientOpts, func(mt *mtest.T) {
all := []int32{1, 2, 3, 4, 5}
testCases := []struct {
name string
filter bson.D
opts *options.DistinctOptionsBuilder
want []int32
}{
{"no options", bson.D{}, nil, all},
{"filter", bson.D{{"x", bson.D{{"$gt", 2}}}}, nil, all[2:]},
{"options", bson.D{}, options.Distinct().SetComment("1"), all},
}
for _, tc := range testCases {
mt.Run(tc.name, func(mt *mtest.T) {
initCollection(mt, mt.Coll)
res := mt.Coll.Distinct(context.Background(), "x", tc.filter, tc.opts)
assert.Nil(mt, res.Err(), "Distinct error: %v", res.Err())
var got []int32
err := res.Decode(&got)
assert.NoError(t, err)
assert.EqualValues(mt, tc.want, got, "expected result %v, got %v", tc.want, got)
})
}
collOpts := options.Collection().SetBSONOptions(&options.BSONOptions{AllowTruncatingDoubles: true})
opts := mtest.NewOptions().CollectionOptions(collOpts)
mt.RunOpts("distinct with bson options", opts, func(mt *mtest.T) {
_, err := mt.Coll.InsertOne(context.Background(), bson.D{{"y", 1.7}})
assert.NoError(mt, err, "failed to insert double")
filter := bson.D{{"y", bson.D{{"$gt", 1}}}}
res := mt.Coll.Distinct(context.Background(), "y", filter)
assert.Nil(mt, res.Err(), "Distinct error: %v", res.Err())
var got []int32
assert.NoError(t, res.Decode(&got))
assert.EqualValues(mt, []int32{1}, got)
})
})
mt.RunOpts("find", noClientOpts, func(mt *mtest.T) {
mt.Run("found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
cursor, err := mt.Coll.Find(context.Background(), bson.D{}, options.Find().SetSort(bson.D{{"x", 1}}))
assert.Nil(mt, err, "Find error: %v", err)
results := make([]int, 0, 5)
for cursor.Next(context.Background()) {
x, err := cursor.Current.LookupErr("x")
assert.Nil(mt, err, "x not found in document %v", cursor.Current)
assert.Equal(mt, bson.TypeInt32, x.Type, "expected x type %v, got %v", bson.TypeInt32, x.Type)
results = append(results, int(x.Int32()))
}
assert.Equal(mt, 5, len(results), "expected 5 results, got %v", len(results))
expected := []int{1, 2, 3, 4, 5}
assert.Equal(mt, expected, results, "expected results %v, got %v", expected, results)
})
mt.Run("limit and batch size", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
for _, batchSize := range []int32{2, 3, 4} {
cursor, err := mt.Coll.Find(context.Background(), bson.D{}, options.Find().SetLimit(3).SetBatchSize(batchSize))
assert.Nil(mt, err, "Find error: %v", err)
numReceived := 0
for cursor.Next(context.Background()) {
numReceived++
}
err = cursor.Err()
assert.Nil(mt, err, "cursor error: %v", err)
assert.Equal(mt, 3, numReceived, "expected 3 results, got %v", numReceived)
}
})
mt.Run("not found", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
cursor, err := mt.Coll.Find(context.Background(), bson.D{{"x", 6}})
assert.Nil(mt, err, "Find error: %v", err)
assert.False(mt, cursor.Next(context.Background()), "expected no documents, found %v", cursor.Current)
})
mt.Run("invalid identifier error", func(mt *mtest.T) {
cursor, err := mt.Coll.Find(context.Background(), bson.D{{"$foo", 1}})
assert.NotNil(mt, err, "expected error for invalid identifier, got nil")
assert.Nil(mt, cursor, "expected nil cursor, got %v", cursor)
})
mt.Run("negative limit", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
c, err := mt.Coll.Find(context.Background(), bson.D{}, options.Find().SetLimit(-2))
assert.Nil(mt, err, "Find error: %v", err)
// single batch returned so cursor should have ID 0
assert.Equal(mt, int64(0), c.ID(), "expected cursor ID 0, got %v", c.ID())
var numDocs int
for c.Next(context.Background()) {
numDocs++
}
assert.Equal(mt, 2, numDocs, "expected 2 documents, got %v", numDocs)
})
mt.Run("exhaust cursor", func(mt *mtest.T) {
initCollection(mt, mt.Coll)
c, err := mt.Coll.Find(context.Background(), bson.D{})
assert.Nil(mt, err, "Find error: %v", err)
var numDocs int
for c.Next(context.Background()) {
numDocs++
}
assert.Equal(mt, 5, numDocs, "expected 5 documents, got %v", numDocs)
err = c.Close(context.Background())
assert.Nil(mt, err, "Close error: %v", err)
})
mt.Run("hint", func(mt *mtest.T) {
_, err := mt.Coll.Find(context.Background(), bson.D{}, options.Find().SetHint("_id_"))
assert.Nil(mt, err, "Find error with string hint: %v", err)
_, err = mt.Coll.Find(context.Background(), bson.D{}, options.Find().SetHint(bson.D{{"_id", 1}}))
assert.Nil(mt, err, "Find error with document hint: %v", err)
_, err = mt.Coll.Find(context.Background(), bson.D{}, options.Find().SetHint("foobar"))
_, ok := err.(mongo.CommandError)
assert.True(mt, ok, "expected error type %v, got %v", mongo.CommandError{}, err)
_, err = mt.Coll.Find(context.Background(), bson.D{}, options.Find().SetHint(bson.M{"_id": 1}))