File: limitskip.js

package info (click to toggle)
mongodb 1%3A2.4.10-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 82,464 kB
  • sloc: cpp: 740,225; ansic: 152,098; sh: 13,820; python: 11,864; makefile: 1,012; perl: 922; pascal: 617; java: 452; lisp: 222; asm: 174
file content (95 lines) | stat: -rw-r--r-- 2,388 bytes parent folder | download | duplicates (3)
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

var coll = "numbers";

db[coll].drop();
for (i=0; i<100; i++) {
    db[coll].save({_id : i, mod : [i%2, i%3, i%5]});
}

print("-----LIMIT-----");

print("normal limit");
var doc = db.runCommand({ aggregate : coll, pipeline : [{ $limit : 2}]});
assert.eq(doc.result.length, 2, tojson(doc));

print("limit larger than result size");
doc = db.runCommand({ aggregate : coll, pipeline : [{ $limit : 200}]});
assert.eq(doc.result.length, 100, tojson(doc));


print("limit on sort");
doc = db.runCommand({ aggregate : coll, pipeline : [{$sort : {_id : -1}}, {$limit : 3}]});
r = doc.result;
assert.eq(doc.result.length, 3);
for (var i=0; i<r; i++) {
    assert.eq(100 - r[i]._id, i, tojson(doc));
}

print("TODO: invalid limit"); // once assert has been replaced with uassert


print("-----SKIP------");

print("normal skip");
doc = db.runCommand({ aggregate : coll, pipeline : [{ $skip : 95}]});
assert.eq(doc.result.length, 5, tojson(doc));

print("skip larger than result size");
doc = db.runCommand({ aggregate : coll, pipeline : [{ $skip : 102}]});
assert.eq(doc.result.length, 0, tojson(doc));


print("check skip results");
doc = db.runCommand({ aggregate : coll, pipeline : [{ $sort : {_id : 1}}, {$skip : 6}, {$limit : 3}]});
assert.eq(doc.result.length, 3, tojson(doc));
for (var i=0; i<3; i++) {
    assert.eq(i+6, doc.result[i]._id, tojson(doc));
}

print("TODO: invalid skip"); // once assert has been replaced with uassert


print("on virtual collection");
doc = db.runCommand({ aggregate : coll, pipeline : [
    {
	$unwind : "$mod"
    },
    {
        $project : { m : "$mod" }
    },
    {
        $sort : {
            m : 1,
            _id : -1
        }
    },
    {
        $skip : 150
    },
    {
        $limit : 5
    }
]});

assert.eq(doc.result.length, 5);
for (var i=0; i<5; i++) {
    assert.eq(1, doc.result[i].m, tojson(doc));
}
assert.eq(doc.result[0]._id, 55, tojson(doc));
assert.eq(doc.result[1]._id, 53, tojson(doc));
assert.eq(doc.result[2]._id, 52, tojson(doc));
assert.eq(doc.result[3]._id, 51, tojson(doc));
assert.eq(doc.result[4]._id, 51, tojson(doc));


print("size 0 collection");
db[coll].drop();

doc = db.runCommand({ aggregate : coll, pipeline : [{$skip : 6}]});
assert.eq(doc.ok, 1);
assert.eq(doc.result.length, 0);

doc = db.runCommand({ aggregate : coll, pipeline : [{$limit : 3}]});
assert.eq(doc.ok, 1);
assert.eq(doc.result.length, 0);