summaryrefslogtreecommitdiff
path: root/jstests/geo_s2validindex.js
blob: fee00d8d2088f384f19aff437b6355cedf712ab8 (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
//
// Tests valid cases for creation of 2dsphere index
//

var coll = db.getCollection("twodspherevalid");

// Valid index
coll.drop();
assert.eq(undefined, coll.ensureIndex({geo : "2dsphere", other : 1}));

// Valid index
coll.drop();
assert.eq(undefined, coll.ensureIndex({geo : "2dsphere", other : 1, geo2 : "2dsphere"}));

// Invalid index, using hash with 2dsphere
coll.drop();
assert.neq(undefined, coll.ensureIndex({geo : "2dsphere", other : "hash"}).err);

// Invalid index, using 2d with 2dsphere
coll.drop();
assert.neq(undefined, coll.ensureIndex({geo : "2dsphere", other : "2d"}).err);

jsTest.log("Success!");

// Ensure the empty collection is gone, so that small_oplog passes.
coll.drop();