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>
28 lines
597 B
JavaScript
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() });
|