summaryrefslogtreecommitdiff
path: root/jstests/geo_s2sparse.js
blob: 4399c87b3123e8f2292d0c27b08e69a111d92cd9 (plain)
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
// the collection we will be using
var coll = db.geo_s2sparse;

// 2d geo object used in inserted documents
var point = { type: "Point", coordinates: [5, 5] }

// the index we'll use
var index = { geo: "2dsphere", nonGeo: 1 };
var indexName = "geo_2dsphere_nonGeo_1";

/// First run: make sure a sparse 2dsphere index behaves correctly

// clean up
coll.drop();

// ensure a sparse index
coll.ensureIndex(index, { sparse: 1 });

// note the initial size of the index
var initialIndexSize = coll.stats().indexSizes[indexName];
assert.gt(initialIndexSize, 0);

// insert matching docs
for (var i = 0; i < 1000; i++) {
    coll.insert({ geo: point, nonGeo: "point_"+i });
}

// the new size of the index
var indexSizeAfterFirstInsert = coll.stats().indexSizes[indexName];
assert.gt(indexSizeAfterFirstInsert, initialIndexSize);

// insert docs missing the nonGeo field
for (var i = 0; i < 1000; i++) {
    coll.insert({ geo: point, wrongNonGeo: "point_"+i });
}

// the new size, should be unchanged
var indexSizeAfterSecondInsert = coll.stats().indexSizes[indexName];
assert.eq(indexSizeAfterFirstInsert, indexSizeAfterSecondInsert);

// insert docs missing the geo field, to make sure they're filtered out
for (var i = 0; i < 1000; i++) {
    coll.insert({ wrongGeo: point, nonGeo: "point_"+i });
}

// the new size, should be unchanged
var indexSizeAfterThirdInsert = coll.stats().indexSizes[indexName];
assert.eq(indexSizeAfterSecondInsert, indexSizeAfterThirdInsert);

/// Second run: make sure a non-sparse 2dsphere index behaves correctly

// clean up
coll.drop();

// ensure a normal (non-sparse) index
coll.ensureIndex(index);

// note the initial size of the index
initialIndexSize = coll.stats().indexSizes[indexName];
assert.gt(initialIndexSize, 0);

// insert matching docs
for (var i = 0; i < 1000; i++) {
    coll.insert({ geo: point, nonGeo: "point_"+i });
}

// the new size of the index
indexSizeAfterFirstInsert = coll.stats().indexSizes[indexName];
assert.gt(indexSizeAfterFirstInsert, initialIndexSize);

// insert docs missing the nonGeo field, which should still be indexed
for (var i = 0; i < 1000; i++) {
    coll.insert({ geo: point, wrongNonGeo: "point_"+i });
}

// the new size, which should be larger with the new index entries
indexSizeAfterSecondInsert = coll.stats().indexSizes[indexName];
assert.gt(indexSizeAfterSecondInsert, indexSizeAfterFirstInsert);

// insert docs missing the geo field, which should still be indexed
for (var i = 0; i < 1000; i++) {
    coll.insert({ wrongGeo: point, nonGeo: "point_"+i });
}

// the new size
indexSizeAfterThirdInsert = coll.stats().indexSizes[indexName];
assert.gt(indexSizeAfterThirdInsert, indexSizeAfterSecondInsert);

// insert docs missing both fields, which should still be indexed
for (var i = 0; i < 1000; i++) {
    coll.insert({ wrongGeo: point, wrongNonGeo: "point_"+i });
}

// the new size
var indexSizeAfterFourthInsert = coll.stats().indexSizes[indexName];
assert.gt(indexSizeAfterFourthInsert, indexSizeAfterThirdInsert);