summaryrefslogtreecommitdiff
path: root/jstests/andor.js
diff options
context:
space:
mode:
authorAntonin Kral <a.kral@bobek.cz>2011-09-14 17:08:06 +0200
committerAntonin Kral <a.kral@bobek.cz>2011-09-14 17:08:06 +0200
commit5d342a758c6095b4d30aba0750b54f13b8916f51 (patch)
tree762e9aa84781f5e3b96db2c02d356c29cf0217c0 /jstests/andor.js
parentcbe2d992e9cd1ea66af9fa91df006106775d3073 (diff)
downloadmongodb-5d342a758c6095b4d30aba0750b54f13b8916f51.tar.gz
Imported Upstream version 2.0.0
Diffstat (limited to 'jstests/andor.js')
-rw-r--r--jstests/andor.js105
1 files changed, 105 insertions, 0 deletions
diff --git a/jstests/andor.js b/jstests/andor.js
new file mode 100644
index 0000000..fae6ee4
--- /dev/null
+++ b/jstests/andor.js
@@ -0,0 +1,105 @@
+// SERVER-1089 Test and/or nesting
+
+t = db.jstests_andor;
+t.drop();
+
+// not ok
+function ok( q ) {
+ assert.eq( 1, t.find( q ).itcount() );
+}
+
+t.save( {a:1} );
+
+test = function() {
+
+ ok( {a:1} );
+
+ ok( {$and:[{a:1}]} );
+ ok( {$or:[{a:1}]} );
+
+ ok( {$and:[{$and:[{a:1}]}]} );
+ ok( {$or:[{$or:[{a:1}]}]} );
+
+ ok( {$and:[{$or:[{a:1}]}]} );
+ ok( {$or:[{$and:[{a:1}]}]} );
+
+ ok( {$and:[{$and:[{$or:[{a:1}]}]}]} );
+ ok( {$and:[{$or:[{$and:[{a:1}]}]}]} );
+ ok( {$or:[{$and:[{$and:[{a:1}]}]}]} );
+
+ ok( {$or:[{$and:[{$or:[{a:1}]}]}]} );
+
+ // now test $nor
+
+ ok( {$and:[{a:1}]} );
+ ok( {$nor:[{a:2}]} );
+
+ ok( {$and:[{$and:[{a:1}]}]} );
+ ok( {$nor:[{$nor:[{a:1}]}]} );
+
+ ok( {$and:[{$nor:[{a:2}]}]} );
+ ok( {$nor:[{$and:[{a:2}]}]} );
+
+ ok( {$and:[{$and:[{$nor:[{a:2}]}]}]} );
+ ok( {$and:[{$nor:[{$and:[{a:2}]}]}]} );
+ ok( {$nor:[{$and:[{$and:[{a:2}]}]}]} );
+
+ ok( {$nor:[{$and:[{$nor:[{a:1}]}]}]} );
+
+}
+
+test();
+t.ensureIndex( {a:1} );
+test();
+
+// Test an inequality base match.
+
+test = function() {
+
+ ok( {a:{$ne:2}} );
+
+ ok( {$and:[{a:{$ne:2}}]} );
+ ok( {$or:[{a:{$ne:2}}]} );
+
+ ok( {$and:[{$and:[{a:{$ne:2}}]}]} );
+ ok( {$or:[{$or:[{a:{$ne:2}}]}]} );
+
+ ok( {$and:[{$or:[{a:{$ne:2}}]}]} );
+ ok( {$or:[{$and:[{a:{$ne:2}}]}]} );
+
+ ok( {$and:[{$and:[{$or:[{a:{$ne:2}}]}]}]} );
+ ok( {$and:[{$or:[{$and:[{a:{$ne:2}}]}]}]} );
+ ok( {$or:[{$and:[{$and:[{a:{$ne:2}}]}]}]} );
+
+ ok( {$or:[{$and:[{$or:[{a:{$ne:2}}]}]}]} );
+
+ // now test $nor
+
+ ok( {$and:[{a:{$ne:2}}]} );
+ ok( {$nor:[{a:{$ne:1}}]} );
+
+ ok( {$and:[{$and:[{a:{$ne:2}}]}]} );
+ ok( {$nor:[{$nor:[{a:{$ne:2}}]}]} );
+
+ ok( {$and:[{$nor:[{a:{$ne:1}}]}]} );
+ ok( {$nor:[{$and:[{a:{$ne:1}}]}]} );
+
+ ok( {$and:[{$and:[{$nor:[{a:{$ne:1}}]}]}]} );
+ ok( {$and:[{$nor:[{$and:[{a:{$ne:1}}]}]}]} );
+ ok( {$nor:[{$and:[{$and:[{a:{$ne:1}}]}]}]} );
+
+ ok( {$nor:[{$and:[{$nor:[{a:{$ne:2}}]}]}]} );
+
+}
+
+t.drop();
+t.save( {a:1} );
+test();
+t.ensureIndex( {a:1} );
+test();
+
+t.drop();
+t.ensureIndex( {a:1} );
+var e = t.find( {$and:[{a:1}]} ).explain();
+// nested $or clauses currently ignored for indexing
+assert.eq( e.indexBounds, t.find( {$and:[{a:1,$or:[{a:2}]}]} ).explain().indexBounds );