forked from christkv/node-mongodb-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind_test.js
1653 lines (1444 loc) · 55.6 KB
/
find_test.js
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
var mongodb = process.env['TEST_NATIVE'] != null ? require('../lib/mongodb').native() : require('../lib/mongodb').pure();
var useSSL = process.env['USE_SSL'] != null ? true : false;
var testCase = require('nodeunit').testCase,
debug = require('util').debug,
inspect = require('util').inspect,
nodeunit = require('nodeunit'),
gleak = require('../dev/tools/gleak'),
ObjectID = mongodb.ObjectID,
Code = mongodb.Code,
Long = mongodb.Long,
Step = require('step'),
Db = mongodb.Db,
Cursor = mongodb.Cursor,
Collection = mongodb.Collection,
Server = mongodb.Server;
var MONGODB = 'integration_tests';
var POOL_SIZE = 4;
var native_parser = (process.env['TEST_NATIVE'] != null);
var client = null;
/**
* Retrieve the server information for the current
* instance of the db client
*
* @ignore
*/
exports.setUp = function(callback) {
var self = exports;
client = new Db(MONGODB, new Server("127.0.0.1", 27017, {auto_reconnect: true, poolSize: 4, ssl:useSSL}), {native_parser: (process.env['TEST_NATIVE'] != null)});
client.open(function(err, db_p) {
if(numberOfTestsRun == (Object.keys(self).length)) {
// If first test drop the db
client.dropDatabase(function(err, done) {
callback();
});
} else {
return callback();
}
});
}
/**
* Retrieve the server information for the current
* instance of the db client
*
* @ignore
*/
exports.tearDown = function(callback) {
var self = this;
numberOfTestsRun = numberOfTestsRun - 1;
// Close connection
client.close();
callback();
}
/**
* Test a simple find
* @ignore
*/
exports.shouldCorrectlyPerformSimpleFind = function(test) {
client.createCollection('test_find_simple', function(err, r) {
var collection = client.collection('test_find_simple', function(err, collection) {
var doc1 = null;
var doc2 = null;
// Insert some test documents
collection.insert([{a:2}, {b:3}], {safe:true}, function(err, docs) {
doc1 = docs[0];
doc2 = docs[1]
// Ensure correct insertion testing via the cursor and the count function
collection.find().toArray(function(err, documents) {
test.equal(2, documents.length);
collection.count(function(err, count) {
test.equal(2, count);
// Fetch values by selection
collection.find({'a': doc1.a}).toArray(function(err, documents) {
test.equal(1, documents.length);
test.equal(doc1.a, documents[0].a);
// Let's close the db
test.done();
});
});
});
});
});
});
}
/**
* Test a simple find chained
* @ignore
*/
exports.shouldCorrectlyPeformSimpleChainedFind = function(test) {
client.createCollection('test_find_simple_chained', function(err, r) {
var collection = client.collection('test_find_simple_chained', function(err, collection) {
var doc1 = null;
var doc2 = null;
// Insert some test documents
collection.insert([{a:2}, {b:3}], {safe:true}, function(err, docs) {
doc1 = docs[0];
doc2 = docs[1]
// Ensure correct insertion testing via the cursor and the count function
collection.find().toArray(function(err, documents) {
test.equal(2, documents.length);
collection.count(function(err, count) {
test.equal(2, count);
// Fetch values by selection
collection.find({'a': doc1.a}).toArray(function(err, documents) {
test.equal(1, documents.length);
test.equal(doc1.a, documents[0].a);
// Let's close the db
test.done();
});
});
});
});
});
});
}
/**
* Test advanced find
* @ignore
*/
exports.shouldCorrectlyPeformAdvancedFinds = function(test) {
client.createCollection('test_find_advanced', function(err, r) {
var collection = client.collection('test_find_advanced', function(err, collection) {
var doc1 = null, doc2 = null, doc3 = null;
// Insert some test documents
collection.insert([{a:1}, {a:2}, {b:3}], {safe:true}, function(err, docs) {
var doc1 = docs[0], doc2 = docs[1], doc3 = docs[2];
// Locate by less than
collection.find({'a':{'$lt':10}}).toArray(function(err, documents) {
test.equal(2, documents.length);
// Check that the correct documents are returned
var results = [];
// Check that we have all the results we want
documents.forEach(function(doc) {
if(doc.a == 1 || doc.a == 2) results.push(1);
});
test.equal(2, results.length);
});
// Locate by greater than
collection.find({'a':{'$gt':1}}).toArray(function(err, documents) {
test.equal(1, documents.length);
test.equal(2, documents[0].a);
});
// Locate by less than or equal to
collection.find({'a':{'$lte':1}}).toArray(function(err, documents) {
test.equal(1, documents.length);
test.equal(1, documents[0].a);
});
// Locate by greater than or equal to
collection.find({'a':{'$gte':1}}).toArray(function(err, documents) {
test.equal(2, documents.length);
// Check that the correct documents are returned
var results = [];
// Check that we have all the results we want
documents.forEach(function(doc) {
if(doc.a == 1 || doc.a == 2) results.push(1);
});
test.equal(2, results.length);
});
// Locate by between
collection.find({'a':{'$gt':1, '$lt':3}}).toArray(function(err, documents) {
test.equal(1, documents.length);
test.equal(2, documents[0].a);
});
// Locate in clause
collection.find({'a':{'$in':[1,2]}}).toArray(function(err, documents) {
test.equal(2, documents.length);
// Check that the correct documents are returned
var results = [];
// Check that we have all the results we want
documents.forEach(function(doc) {
if(doc.a == 1 || doc.a == 2) results.push(1);
});
test.equal(2, results.length);
});
// Locate in _id clause
collection.find({'_id':{'$in':[doc1['_id'], doc2['_id']]}}).toArray(function(err, documents) {
test.equal(2, documents.length);
// Check that the correct documents are returned
var results = [];
// Check that we have all the results we want
documents.forEach(function(doc) {
if(doc.a == 1 || doc.a == 2) results.push(1);
});
test.equal(2, results.length);
// Let's close the db
test.done();
});
});
});
});
}
/**
* Test sorting of results
* @ignore
*/
exports.shouldCorrectlyPerformFindWithSort = function(test) {
client.createCollection('test_find_sorting', function(err, r) {
client.collection('test_find_sorting', function(err, collection) {
var doc1 = null, doc2 = null, doc3 = null, doc4 = null;
// Insert some test documents
collection.insert([{a:1, b:2},
{a:2, b:1},
{a:3, b:2},
{a:4, b:1}
], {safe:true}, function(err, docs) {
doc1 = docs[0];
doc2 = docs[1];
doc3 = docs[2];
doc4 = docs[3]
// Test sorting (ascending)
collection.find({'a': {'$lt':10}}, {'sort': [['a', 1]]}).toArray(function(err, documents) {
test.equal(4, documents.length);
test.equal(1, documents[0].a);
test.equal(2, documents[1].a);
test.equal(3, documents[2].a);
test.equal(4, documents[3].a);
// Test sorting (descending)
collection.find({'a': {'$lt':10}}, {'sort': [['a', -1]]}).toArray(function(err, documents) {
test.equal(4, documents.length);
test.equal(4, documents[0].a);
test.equal(3, documents[1].a);
test.equal(2, documents[2].a);
test.equal(1, documents[3].a);
// Test sorting (descending), sort is hash
collection.find({'a': {'$lt':10}}, {sort: {a: -1}}).toArray(function(err, documents) {
test.equal(4, documents.length);
test.equal(4, documents[0].a);
test.equal(3, documents[1].a);
test.equal(2, documents[2].a);
test.equal(1, documents[3].a);
// Sorting using array of names, assumes ascending order
collection.find({'a': {'$lt':10}}, {'sort': ['a']}).toArray(function(err, documents) {
test.equal(4, documents.length);
test.equal(1, documents[0].a);
test.equal(2, documents[1].a);
test.equal(3, documents[2].a);
test.equal(4, documents[3].a);
// Sorting using single name, assumes ascending order
collection.find({'a': {'$lt':10}}, {'sort': 'a'}).toArray(function(err, documents) {
test.equal(4, documents.length);
test.equal(1, documents[0].a);
test.equal(2, documents[1].a);
test.equal(3, documents[2].a);
test.equal(4, documents[3].a);
// Sorting using single name, assumes ascending order, sort is hash
collection.find({'a': {'$lt':10}}, {sort: {'a':1}}).toArray(function(err, documents) {
test.equal(4, documents.length);
test.equal(1, documents[0].a);
test.equal(2, documents[1].a);
test.equal(3, documents[2].a);
test.equal(4, documents[3].a);
collection.find({'a': {'$lt':10}}, {'sort': ['b', 'a']}).toArray(function(err, documents) {
test.equal(4, documents.length);
test.equal(2, documents[0].a);
test.equal(4, documents[1].a);
test.equal(1, documents[2].a);
test.equal(3, documents[3].a);
// Sorting using empty array, no order guarantee should not blow up
collection.find({'a': {'$lt':10}}, {'sort': []}).toArray(function(err, documents) {
test.equal(4, documents.length);
/* NONACTUAL */
// Sorting using ordered hash
collection.find({'a': {'$lt':10}}, {'sort': {a:-1}}).toArray(function(err, documents) {
// Fail test if not an error
test.equal(4, documents.length);
// Let's close the db
test.done();
});
});
});
});
});
});
});
});
});
});
});
});
}
/**
* Test the limit function of the db
* @ignore
*/
exports.shouldCorrectlyPerformFindWithLimit = function(test) {
client.createCollection('test_find_limits', function(err, r) {
client.collection('test_find_limits', function(err, collection) {
var doc1 = null, doc2 = null, doc3 = null, doc4 = null;
// Insert some test documents
collection.insert([{a:1},
{b:2},
{c:3},
{d:4}
], {safe:true}, function(err, docs) {
doc1 = docs[0];
doc2 = docs[1];
doc3 = docs[2];
doc4 = docs[3]
// Test limits
collection.find({}, {'limit': 1}).toArray(function(err, documents) {
test.equal(1, documents.length);
});
collection.find({}, {'limit': 2}).toArray(function(err, documents) {
test.equal(2, documents.length);
});
collection.find({}, {'limit': 3}).toArray(function(err, documents) {
test.equal(3, documents.length);
});
collection.find({}, {'limit': 4}).toArray(function(err, documents) {
test.equal(4, documents.length);
});
collection.find({}, {}).toArray(function(err, documents) {
test.equal(4, documents.length);
});
collection.find({}, {'limit':99}).toArray(function(err, documents) {
test.equal(4, documents.length);
// Let's close the db
test.done();
});
});
});
});
}
/**
* Test find by non-quoted values (issue #128)
* @ignore
*/
exports.shouldCorrectlyFindWithNonQuotedValues = function(test) {
client.createCollection('test_find_non_quoted_values', function(err, r) {
client.collection('test_find_non_quoted_values', function(err, collection) {
// insert test document
collection.insert([{ a: 19, b: 'teststring', c: 59920303 },
{ a: "19", b: 'teststring', c: 3984929 }], {safe:true} , function(err, r) {
collection.find({ a: 19 }).toArray(function(err, documents) {
test.equal(1, documents.length);
test.done();
});
});
});
});
}
/**
* Test for querying embedded document using dot-notation (issue #126)
* @ignore
*/
exports.shouldCorrectlyFindEmbeddedDocument = function(test) {
client.createCollection('test_find_embedded_document', function(err, r) {
client.collection('test_find_embedded_document', function(err, collection) {
// insert test document
collection.insert([{ a: { id: 10, value: 'foo' }, b: 'bar', c: { id: 20, value: 'foobar' }},
{ a: { id: 11, value: 'foo' }, b: 'bar2', c: { id: 20, value: 'foobar' }}], {safe:true}, function(err, r) {
// test using integer value
collection.find({ 'a.id': 10 }).toArray(function(err, documents) {
test.equal(1, documents.length);
test.equal('bar', documents[0].b);
});
// test using string value
collection.find({ 'a.value': 'foo' }).toArray(function(err, documents) {
// should yield 2 documents
test.equal(2, documents.length);
test.equal('bar', documents[0].b);
test.equal('bar2', documents[1].b);
test.done();
});
});
});
});
}
/**
* Find no records
* @ignore
*/
exports.shouldCorrectlyFindNoRecords = function(test) {
client.createCollection('test_find_one_no_records', function(err, r) {
client.collection('test_find_one_no_records', function(err, collection) {
collection.find({'a':1}, {}).toArray(function(err, documents) {
test.equal(0, documents.length);
// Let's close the db
test.done();
});
});
});
}
/**
* @ignore
*/
exports.shouldCorrectlyPerformFindByWhere = function(test) {
client.createCollection('test_where', function(err, collection) {
test.ok(collection instanceof Collection);
collection.insert([{'a':1}, {'a':2}, {'a':3}], {safe:true}, function(err, ids) {
collection.count(function(err, count) {
test.equal(3, count);
// Let's test usage of the $where statement
collection.find({'$where':new Code('this.a > 2')}).count(function(err, count) {
test.equal(1, count);
});
collection.find({'$where':new Code('this.a > i', {i:1})}).count(function(err, count) {
test.equal(2, count);
// Let's close the db
test.done();
});
});
});
});
}
/**
* @ignore
*/
exports.shouldCorrectlyPerformFindsWithHintTurnedOn = function(test) {
client.createCollection('test_hint', function(err, collection) {
collection.insert({'a':1}, {safe:true}, function(err, ids) {
client.createIndex(collection.collectionName, "a", {safe:true}, function(err, indexName) {
collection.find({'a':1}, {'hint':'a'}).toArray(function(err, items) {
test.equal(1, items.length);
});
collection.find({'a':1}, {'hint':['a']}).toArray(function(err, items) {
test.equal(1, items.length);
});
collection.find({'a':1}, {'hint':{'a':1}}).toArray(function(err, items) {
test.equal(1, items.length);
});
// Modify hints
collection.hint = 'a';
test.equal(1, collection.hint['a']);
collection.find({'a':1}).toArray(function(err, items) {
test.equal(1, items.length);
});
collection.hint = ['a'];
test.equal(1, collection.hint['a']);
collection.find({'a':1}).toArray(function(err, items) {
test.equal(1, items.length);
});
collection.hint = {'a':1};
test.equal(1, collection.hint['a']);
collection.find({'a':1}).toArray(function(err, items) {
test.equal(1, items.length);
});
collection.hint = null;
test.ok(collection.hint == null);
collection.find({'a':1}).toArray(function(err, items) {
test.equal(1, items.length);
// Let's close the db
test.done();
});
});
});
});
}
/**
* @ignore
*/
exports.shouldCorrectlyPerformFindByObjectID = function(test) {
client.createCollection('test_find_by_oid', function(err, collection) {
collection.save({'hello':'mike'}, {safe:true}, function(err, docs) {
test.ok(docs._id instanceof ObjectID || Object.prototype.toString.call(docs._id) === '[object ObjectID]');
collection.findOne({'_id':docs._id}, function(err, doc) {
test.equal('mike', doc.hello);
var id = doc._id.toString();
collection.findOne({'_id':new ObjectID(id)}, function(err, doc) {
test.equal('mike', doc.hello);
// Let's close the db
test.done();
});
});
});
});
}
/**
* @ignore
*/
exports.shouldCorrectlyReturnDocumentWithOriginalStructure= function(test) {
client.createCollection('test_find_by_oid_with_subdocs', function(err, collection) {
var c1 = { _id: new ObjectID, comments: [], title: 'number 1' };
var c2 = { _id: new ObjectID, comments: [], title: 'number 2' };
var doc = {
numbers: []
, owners: []
, comments: [c1, c2]
, _id: new ObjectID
};
collection.insert(doc, {safe:true}, function(err, docs) {
collection.findOne({'_id':doc._id}, {safe:true,fields: undefined}, function(err, doc) {
if (err) console.error('error', err);
test.equal(2, doc.comments.length);
test.equal('number 1', doc.comments[0].title);
test.equal('number 2', doc.comments[1].title);
test.done();
});
});
});
}
/**
* @ignore
*/
exports.shouldCorrectlyRetrieveSingleRecord = function(test) {
var p_client = new Db(MONGODB, new Server("127.0.0.1", 27017, {auto_reconnect: true, ssl:useSSL}), {native_parser: (process.env['TEST_NATIVE'] != null)});
p_client.open(function(err, p_client) {
client.createCollection('test_should_correctly_retrieve_one_record', function(err, collection) {
collection.insert({'a':0}, {safe:true}, function(err, r) {
p_client.collection('test_should_correctly_retrieve_one_record', function(err, usercollection) {
usercollection.findOne({'a': 0}, function(err, result) {
p_client.close();
test.done();
});
});
});
});
});
}
/**
* @ignore
*/
exports.shouldCorrectlyHandleError = function(test) {
client.createCollection('test_find_one_error_handling', function(err, collection) {
// Try to fetch an object using a totally invalid and wrong hex string... what we're interested in here
// is the error handling of the findOne Method
try {
collection.findOne({"_id":ObjectID.createFromHexString('5e9bd59248305adf18ebc15703a1')}, function(err, result) {});
} catch (err) {
test.done();
}
});
}
/**
* Test field select with options
* @ignore
*/
exports.shouldCorrectlyPerformFindWithOptions = function(test) {
client.createCollection('test_field_select_with_options', function(err, r) {
var collection = client.collection('test_field_select_with_options', function(err, collection) {
var docCount = 25, docs = [];
// Insert some test documents
while(docCount--) docs.push({a:docCount, b:docCount});
collection.insert(docs, {safe:true}, function(err,retDocs) {
docs = retDocs;
collection.find({},{ 'a' : 1},{ limit : 3, sort : [['a',-1]] }).toArray(function(err,documents){
test.equal(3,documents.length);
documents.forEach(function(doc,idx){
test.equal(undefined,doc.b); // making sure field select works
test.equal((24-idx),doc.a); // checking limit sort object with field select
});
});
collection.find({},{},10,3).toArray(function(err,documents){
test.equal(3,documents.length);
documents.forEach(function(doc,idx){
test.equal(doc.a,doc.b); // making sure empty field select returns properly
test.equal((14-idx),doc.a); // checking skip and limit in args
});
test.done();
});
});
});
});
}
/**
* Test findAndModify a document
* @ignore
*/
exports.shouldCorrectlyFindAndModifyDocument = function(test) {
client.createCollection('test_find_and_modify_a_document', function(err, collection) {
// Test return new document on change
collection.insert({'a':1, 'b':2}, {safe:true}, function(err, doc) {
// Let's modify the document in place
collection.findAndModify({'a':1}, [['a', 1]], {'$set':{'b':3}}, {'new':true}, function(err, updated_doc) {
test.equal(1, updated_doc.a);
test.equal(3, updated_doc.b);
// Test return old document on change
collection.insert({'a':2, 'b':2}, {safe:true}, function(err, doc) {
// Let's modify the document in place
collection.findAndModify({'a':2}, [['a', 1]], {'$set':{'b':3}}, {safe:true}, function(err, result) {
test.equal(2, result.a);
test.equal(2, result.b);
// Test remove object on change
collection.insert({'a':3, 'b':2}, {safe:true}, function(err, doc) {
// Let's modify the document in place
collection.findAndModify({'a':3}, [], {'$set':{'b':3}}, {'new': true, remove: true}, function(err, updated_doc) {
test.equal(3, updated_doc.a);
test.equal(2, updated_doc.b);
// Let's upsert!
collection.findAndModify({'a':4}, [], {'$set':{'b':3}}, {'new': true, upsert: true}, function(err, updated_doc) {
test.equal(4, updated_doc.a);
test.equal(3, updated_doc.b);
// Test selecting a subset of fields
collection.insert({a: 100, b: 101}, {safe:true}, function (err, ids) {
collection.findAndModify({'a': 100}, [], {'$set': {'b': 5}}, {'new': true, fields: {b: 1}}, function (err, updated_doc) {
test.equal(2, Object.keys(updated_doc).length);
test.equal(ids[0]['_id'].toHexString(), updated_doc._id.toHexString());
test.equal(5, updated_doc.b);
test.equal("undefined", typeof updated_doc.a);
test.done();
});
});
});
})
});
})
});
})
});
});
}
/**
* @ignore
*/
exports.shouldCorrectlyExecuteFindOneWithAnInSearchTag = function(test) {
client.createCollection('shouldCorrectlyExecuteFindOneWithAnInSearchTag', function(err, collection) {
// Test return new document on change
collection.insert({'tags':[]}, {safe:true}, function(err, docs) {
// Fetch the id
var id = docs[0]._id
Step(
function findFirst() {
var self = this;
collection.findOne({_id:id}, function(err, doc) {
test.equal(null, err)
test.ok(doc != null);
// Perform atomic push operation
collection.update({_id:id}, {'$push':{comments:{title:'1'}}}, {safe:true}, self);
})
},
function findSecond(err, result) {
var self = this;
test.equal(1, result);
test.equal(null, err);
collection.findOne({_id:id}, function(err, doc) {
test.equal(null, err)
test.ok(doc != null);
test.deepEqual(1, doc.comments.length);
// Perform atomic push operation
collection.update({_id:id}, {'$push':{comments:{title:'2'}}}, {safe:true}, self);
})
},
function findThird(err, result) {
var self = this;
test.equal(1, result);
test.equal(null, err);
collection.findOne({_id:id}, function(err, doc) {
test.equal(null, err)
test.ok(doc != null);
test.deepEqual(2, doc.comments.length);
// Perform atomic push operation
collection.update({_id:id}, {'$push':{comments:{title:'3'}}}, {safe:true}, self);
})
},
function findFourth(err, result) {
var self = this;
test.equal(1, result);
test.equal(null, err);
collection.findOne({_id:id}, function(err, doc) {
test.equal(null, err)
test.ok(doc != null);
test.deepEqual(3, doc.comments.length);
// Perform atomic push operation
collection.update({_id:id}, {'$pushAll':{comments:[{title:'4'}, {title:'5'}]}}, {safe:true}, self);
})
},
function findFourth(err, result) {
var self = this;
test.equal(1, result);
test.equal(null, err);
collection.findOne({_id:id}, function(err, doc) {
test.equal(null, err)
test.ok(doc != null);
test.deepEqual(5, doc.comments.length);
test.done();
})
}
)
})
});
}
/**
* @ignore
*/
exports['ShouldCorrectlyLocatePostAndIncValues'] = function(test) {
client.createCollection('shouldCorrectlyExecuteFindOneWithAnInSearchTag', function(err, collection) {
// Test return new document on change
collection.insert({title:'Tobi',
author:'Brian',
newTitle:'Woot', meta:{visitors:0}}, {safe:true}, function(err, docs) {
// Fetch the id
var id = docs[0]._id
collection.update({_id:id}, {$inc:{ 'meta.visitors': 1 }}, {safe:true}, function(err, result) {
test.equal(1, result);
test.equal(null, err);
collection.findOne({_id:id}, function(err, item) {
test.equal(1, item.meta.visitors);
test.done()
})
});
});
});
}
/**
* Test findAndModify a document
* @ignore
*/
exports['Should Correctly Handle FindAndModify Duplicate Key Error'] = function(test) {
client.createCollection('FindAndModifyDuplicateKeyError', function(err, collection) {
collection.ensureIndex(['name', 1], {unique:true, safe:true}, function(err, index) {
// Test return new document on change
collection.insert([{name:'test1'}, {name:'test2'}], {safe:true}, function(err, doc) {
// Let's modify the document in place
collection.findAndModify({name: 'test1'}, [], {$set: {name: 'test2'}}, {}, function(err, updated_doc) {
test.equal(null, updated_doc);
test.ok(err != null);
test.done();
});
});
});
});
}
/**
* @ignore
*/
exports['Should correctly return null when attempting to modify a non-existing document'] = function(test) {
client.createCollection('AttemptToFindAndModifyNonExistingDocument', function(err, collection) {
// Let's modify the document in place
collection.findAndModify({name: 'test1'}, [], {$set: {name: 'test2'}}, {}, function(err, updated_doc) {
test.equal(null, updated_doc);
test.ok(err == null || err.errmsg.match("No matching object found"))
test.done();
});
});
}
/**
* @ignore
*/
exports['Should correctly handle chained skip and limit on find with toArray'] = function(test) {
client.createCollection('skipAndLimitOnFindWithToArray', function(err, collection) {
collection.insert([{a:1}, {b:2}, {c:3}], {safe:true}, function(err, result) {
collection.find().skip(1).limit(-1).toArray(function(err, items) {
test.equal(null, err);
test.equal(1, items.length);
test.equal(2, items[0].b)
test.done();
})
});
});
}
/**
* @ignore
*/
exports['Should correctly handle chained skip and negative limit on find with toArray'] = function(test) {
client.createCollection('skipAndNegativeLimitOnFindWithToArray', function(err, collection) {
collection.insert([{a:1}, {b:2}, {c:3}, {d:4}, {e:5}], {safe:true}, function(err, result) {
collection.find().skip(1).limit(-3).toArray(function(err, items) {
test.equal(null, err);
test.equal(3, items.length);
test.equal(2, items[0].b)
test.equal(3, items[1].c)
test.equal(4, items[2].d)
test.done();
})
});
});
}
/**
* @ignore
*/
exports['Should correctly pass timeout options to cursor'] = function(test) {
client.createCollection('timeoutFalse', function(err, collection) {
collection.find({},{timeout:false},function(err, cursor) {
test.equal(false, cursor.timeout);
});
collection.find({},{timeout:true},function(err, cursor) {
test.equal(true, cursor.timeout);
});
collection.find({},{},function(err, cursor) {
test.equal(true, cursor.timeout);
});
test.done();
});
}
/**
* Test findAndModify a document with strict mode enabled
* @ignore
*/
exports.shouldCorrectlyFindAndModifyDocumentWithDBStrict = function(test) {
var p_client = new Db(MONGODB, new Server("127.0.0.1", 27017, {auto_reconnect: true, ssl:useSSL}), {strict:true, native_parser: (process.env['TEST_NATIVE'] != null)});
p_client.open(function(err, p_client) {
p_client.createCollection('shouldCorrectlyFindAndModifyDocumentWithDBStrict', function(err, collection) {
// Test return old document on change
collection.insert({'a':2, 'b':2}, {safe:true}, function(err, doc) {
// Let's modify the document in place
collection.findAndModify({'a':2}, [['a', 1]], {'$set':{'b':3}}, {new:true}, function(err, result) {
test.equal(2, result.a)
test.equal(3, result.b)
p_client.close();
test.done();
})
});
});
});
}
/**
* Test findAndModify a document that fails in first step before safe
* @ignore
*/
exports.shouldCorrectlyFindAndModifyDocumentThatFailsInFirstStep = function(test) {
client.createCollection('shouldCorrectlyFindAndModifyDocumentThatFailsInFirstStep', function(err, collection) {
// Set up an index to force duplicate index erro
collection.ensureIndex([['failIndex', 1]], {unique:true, safe:true}, function(err, index) {
// Setup a new document
collection.insert({'a':2, 'b':2, 'failIndex':2}, function(err, doc) {
// Let's attempt to upsert with a duplicate key error
collection.findAndModify({'c':2}, [['a', 1]], {'a':10, 'b':10, 'failIndex':2}, {safe:true, upsert:true}, function(err, result) {
test.equal(null, result);
test.ok(err.errmsg.match("duplicate key error index"));
test.done();
})
});
});
});
}
/**
* Test findAndModify a document that fails in first step before safe
* @ignore
*/
exports.shouldCorrectlyFindAndModifyDocumentThatFailsInSecondStepWithNoMatchingDocuments = function(test) {
var p_client = new Db(MONGODB, new Server("127.0.0.1", 27017, {auto_reconnect: true, ssl:useSSL}), {strict:true, native_parser: (process.env['TEST_NATIVE'] != null)});
p_client.open(function(err, p_client) {
p_client.createCollection('shouldCorrectlyFindAndModifyDocumentThatFailsInSecondStepWithNoMatchingDocuments', function(err, collection) {
// Test return old document on change
collection.insert({'a':2, 'b':2}, function(err, doc) {
// Let's modify the document in place
collection.findAndModify({'a':2}, [['a', 1]], {'$set':{'b':3}}, {safe:{w:200, wtimeout:1000}}, function(err, result) {
test.equal(null, result);
test.ok(err != null);
p_client.close();
test.done();
})
});
});
});
}
/**
* @ignore
*/
exports['Should correctly return new modified document'] = function(test) {
client.createCollection('Should_correctly_return_new_modified_document', function(err, collection) {
var id = new ObjectID();
var doc = {_id:id, a:1, b:1, c:{a:1, b:1}};
collection.insert(doc, {safe:true}, function(err, result) {
test.ok(err == null);
// Find and modify returning the new object
collection.findAndModify({_id:id}, [], {$set : {'c.c': 100}}, {new:true}, function(err, item) {
test.equal(doc._id.toString(), item._id.toString());
test.equal(doc.a, item.a);
test.equal(doc.b, item.b);
test.equal(doc.c.a, item.c.a);
test.equal(doc.c.b, item.c.b);
test.equal(100, item.c.c);
test.done();
})
});
});
}
/**
* Should correctly execute findAndModify that is breaking in prod
* @ignore
*/
exports.shouldCorrectlyExecuteFindAndModify = function(test) {
client.createCollection('shouldCorrectlyExecuteFindAndModify', function(err, collection) {
var self = {_id : new ObjectID()}
var _uuid = 'sddffdss'
collection.findAndModify(
{_id: self._id, 'plays.uuid': _uuid},
[],
{$set : {'plays.$.active': true}},
{new: true, fields: {plays: 0, results: 0}, safe: true},
function(err, contest) {
test.done();
})
});
}
/**
* @ignore
*/
exports['Should correctly return record with 64-bit id'] = function(test) {
client.createCollection('should_correctly_return_record_with_64bit_id', function(err, collection) {
var _lowerId = new ObjectID();
var _higherId = new ObjectID();
var lowerId = new Long.fromString('133118461172916224', 10);
var higherId = new Long.fromString('133118461172916225', 10);
var lowerDoc = {_id:_lowerId, id: lowerId};
var higherDoc = {_id:_higherId, id: higherId};