Files
mongo/jstests/core/remove.js
Siyuan Zhou 3660343e0b SERVER-12127 migrate js tests to jscore suite when not related to writes
Migrate js tests starting from j-z.
Include SERVER-12920 Update use_power_of_2.js

Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
2014-03-03 22:54:10 -05:00

28 lines
597 B
JavaScript

// remove.js
// unit test for db remove
t = db.removetest;
function f(n,dir) {
t.ensureIndex({x:dir||1});
for( i = 0; i < n; i++ ) t.save( { x:3, z:"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" } );
assert.eq( n , t.find().count() );
t.remove({x:3});
assert.eq( 0 , t.find().count() );
assert( t.findOne() == null , "A:" + tojson( t.findOne() ) );
assert( t.validate().valid , "B" );
}
t.drop();
f(300, 1);
f(500, -1);
assert(t.validate().valid , "C" );
// no query for remove() throws starting in 2.6
assert.throws(function() { db.t.remove() });