summaryrefslogtreecommitdiff
path: root/jstests/core/geo_oob_sphere.js
blob: 7403cc996109fd97c587d4d33cbf2e6ee8a8ead5 (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
//
// Ensures spherical queries report invalid latitude values in points and center positions
//

t = db.geooobsphere;
t.drop();

t.insert({ loc : { x : 30, y : 89 } });
t.insert({ loc : { x : 30, y : 89 } });
t.insert({ loc : { x : 30, y : 89 } });
t.insert({ loc : { x : 30, y : 89 } });
t.insert({ loc : { x : 30, y : 89 } });
t.insert({ loc : { x : 30, y : 89 } });
t.insert({ loc : { x : 30, y : 91 } });

assert.commandWorked(t.ensureIndex({ loc : "2d" }));

assert.throws( function() { t.find({ loc : { $nearSphere : [ 30, 91 ], $maxDistance : 0.25 } }).count(); } );

// TODO: SERVER-9986 - it's not clear that throwing is correct behavior here
// assert.throws( function() { t.find({ loc : { $nearSphere : [ 30, 89 ], $maxDistance : 0.25 } }).count() } );

assert.throws( function() { t.find({ loc : { $within : { $centerSphere : [[ -180, -91 ], 0.25] } } }).count(); } );

var res;
res = db.runCommand({ geoNear : "geooobsphere", near : [179, -91], maxDistance : 0.25, spherical : true });
assert.commandFailed( res );
printjson( res );

// TODO: SERVER-9986 - it's not clear that throwing is correct behavior here
// res = db.runCommand({ geoNear : "geooobsphere", near : [30, 89], maxDistance : 0.25, spherical : true })
// assert.commandFailed( res )
// printjson( res )