blob: 6dd458c5374e365be8e5ad78e2e8390f63b385fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
load("jstests/readonly/lib/read_only_test.js");
runReadOnlyTest(function() {
'use strict';
return {
name: 'find',
load: function(writableCollection) {
for (var i = 0; i < 10; ++i) {
assert.writeOK(writableCollection.insert({x: i, y: 2 * i}));
}
},
exec: function(readableCollection) {
var res = readableCollection.findOne({x: 3});
assert.neq(res, null);
assert.eq(res.y, 6);
assert.eq(readableCollection.find({x: {$gt: 3, $lte: 6}}).count(), 3);
assert.eq(readableCollection.find({y: {$lte: -1}}).count(), 0);
assert.eq(readableCollection.find({$or: [{x: {$lte: 2}}, {y: {$gte: 16}}]}).count(), 5);
}
};
}());
|