-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathgeo_array1.js
64 lines (53 loc) · 1.61 KB
/
geo_array1.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
// Make sure many locations in one doc works, in the form of an array
// @tags: [
// does_not_support_stepdowns,
// requires_replication,
// resource_intensive,
// ]
import {ReplSetTest} from "jstests/libs/replsettest.js";
const numLocations = 300;
let locObj = [];
// Add locations everywhere
for (let i = 0; i < 10; i++) {
for (let j = 0; j < 10; j++) {
if (j % 2 == 0)
locObj.push([i, j]);
else
locObj.push({x: i, y: j});
}
}
// Add docs with all these locations
let docs = [];
for (let i = 0; i < numLocations; i++) {
docs.push({_id: i, loc: locObj});
}
const collNamePrefix = 'geo_array1_';
let collCount = 0;
function test(conn, index) {
const testDB = conn.getDB('test');
let t = testDB.getCollection(collNamePrefix + collCount++);
t.drop();
if (index) {
assert.commandWorked(t.createIndex({loc: "2d"}));
}
assert.commandWorked(t.insert(docs));
// Pull them back
for (let i = 0; i < 10; i++) {
for (let j = 0; j < 10; j++) {
const locations = t.find({
loc: {$within: {$box: [[i - 0.5, j - 0.5], [i + 0.5, j + 0.5]]}}
}).toArray();
assert.eq(numLocations,
locations.length,
'index: ' + index + '; i: ' + i + '; j: ' + j +
'; locations: ' + tojson(locations));
}
}
}
const rst = new ReplSetTest({nodes: 1});
rst.startSet();
rst.initiate();
const primary = rst.getPrimary();
test(primary, /*index=*/ true);
test(primary, /*index=*/ false);
rst.stopSet();