diff options
author | Randolph Tan <randolph@10gen.com> | 2014-01-14 14:09:42 -0500 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2014-02-28 16:26:33 -0500 |
commit | 5595b945603b0712c537787e31e6da661c424fee (patch) | |
tree | 90945ee3fe4931032f3af2d397bb755fbf5d30ef /jstests/core/all3.js | |
parent | cd62080dcb036e83f8fca6d68d9bcab67bf7a21c (diff) | |
download | mongo-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/all3.js')
-rw-r--r-- | jstests/core/all3.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/jstests/core/all3.js b/jstests/core/all3.js new file mode 100644 index 00000000000..b7a05321bbf --- /dev/null +++ b/jstests/core/all3.js @@ -0,0 +1,28 @@ +// Check that $all matching null is consistent with $in - SERVER-3820 + +t = db.jstests_all3; +t.drop(); + +t.save({}); + +assert.eq( 1, t.count( {foo:{$in:[null]}} ) ); +assert.eq( 1, t.count( {foo:{$all:[null]}} ) ); +assert.eq( 0, t.count( {foo:{$not:{$all:[null]}}} ) ); +assert.eq( 0, t.count( {foo:{$not:{$in:[null]}}} ) ); + +t.remove({}); +t.save({foo:1}); +assert.eq( 0, t.count( {foo:{$in:[null]}} ) ); +assert.eq( 0, t.count( {foo:{$all:[null]}} ) ); +assert.eq( 1, t.count( {foo:{$not:{$in:[null]}}} ) ); +assert.eq( 1, t.count( {foo:{$not:{$all:[null]}}} ) ); + +t.remove({}); +t.save( {foo:[0,1]} ); +assert.eq( 1, t.count( {foo:{$in:[[0,1]]}} ) ); +assert.eq( 1, t.count( {foo:{$all:[[0,1]]}} ) ); + +t.remove({}); +t.save( {foo:[]} ); +assert.eq( 1, t.count( {foo:{$in:[[]]}} ) ); +assert.eq( 1, t.count( {foo:{$all:[[]]}} ) ); |