summaryrefslogtreecommitdiff
path: root/jstests/core/geo_circle2a.js
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2014-01-14 14:09:42 -0500
committerRandolph Tan <randolph@10gen.com>2014-02-28 16:26:33 -0500
commit5595b945603b0712c537787e31e6da661c424fee (patch)
tree90945ee3fe4931032f3af2d397bb755fbf5d30ef /jstests/core/geo_circle2a.js
parentcd62080dcb036e83f8fca6d68d9bcab67bf7a21c (diff)
downloadmongo-5595b945603b0712c537787e31e6da661c424fee.tar.gz
SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
Diffstat (limited to 'jstests/core/geo_circle2a.js')
-rw-r--r--jstests/core/geo_circle2a.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/jstests/core/geo_circle2a.js b/jstests/core/geo_circle2a.js
new file mode 100644
index 00000000000..67a6ba17243
--- /dev/null
+++ b/jstests/core/geo_circle2a.js
@@ -0,0 +1,37 @@
+// From SERVER-2381
+// Tests to make sure that nested multi-key indexing works for geo indexes and is not used for direct position
+// lookups
+
+var coll = db.geo_circle2a;
+coll.drop();
+coll.insert({ p : [1112,3473], t : [{ k : 'a', v : 'b' }, { k : 'c', v : 'd' }] })
+coll.ensureIndex({ p : '2d', 't.k' : 1 }, { min : 0, max : 10000 })
+
+// Succeeds, since on direct lookup should not use the index
+assert(1 == coll.find({p:[1112,3473],'t.k':'a'}).count(), "A")
+// Succeeds and uses the geo index
+assert(1 == coll.find({p:{$within:{$box:[[1111,3472],[1113,3475]]}}, 't.k' : 'a' }).count(), "B")
+
+
+coll.drop()
+coll.insert({ point:[ 1, 10 ], tags : [ { k : 'key', v : 'value' }, { k : 'key2', v : 123 } ] })
+coll.insert({ point:[ 1, 10 ], tags : [ { k : 'key', v : 'value' } ] })
+
+coll.ensureIndex({ point : "2d" , "tags.k" : 1, "tags.v" : 1 })
+
+// Succeeds, since should now lookup multi-keys correctly
+assert(2 == coll.find({ point : { $within : { $box : [[0,0],[12,12]] } } }).count(), "C")
+// Succeeds, and should not use geoindex
+assert(2 == coll.find({ point : [1, 10] }).count(), "D")
+assert(2 == coll.find({ point : [1, 10], "tags.v" : "value" }).count(), "E")
+assert(1 == coll.find({ point : [1, 10], "tags.v" : 123 }).count(), "F")
+
+
+coll.drop()
+coll.insert({ point:[ 1, 10 ], tags : [ { k : { 'hello' : 'world'}, v : 'value' }, { k : 'key2', v : 123 } ] })
+coll.insert({ point:[ 1, 10 ], tags : [ { k : 'key', v : 'value' } ] })
+
+coll.ensureIndex({ point : "2d" , "tags.k" : 1, "tags.v" : 1 })
+
+// Succeeds, should be able to look up the complex element
+assert(1 == coll.find({ point : { $within : { $box : [[0,0],[12,12]] } }, 'tags.k' : { 'hello' : 'world' } }).count(), "G") \ No newline at end of file