Skip to content

Commit

Permalink
update test for sm
Browse files Browse the repository at this point in the history
  • Loading branch information
erh committed May 14, 2009
1 parent 39e627a commit f565f7b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions jstests/drop.js
Expand Up @@ -2,20 +2,20 @@ f = db.jstests_drop;

f.drop();

assert.eq( 0, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() );
assert.eq( 0, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() , "A" );
f.save( {} );
assert.eq( 1, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() );
assert.eq( 1, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() , "B" );
f.ensureIndex( {a:1} );
assert.eq( 2, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() );
assert.eq( 2, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() , "C" );
assert.commandWorked( db.runCommand( {drop:"jstests_drop"} ) );
assert.eq( 0, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() );
assert.eq( 0, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() , "D" );

f = db.jstests_drop;
f.resetIndexCache();
f.ensureIndex( {a:1} );
assert.eq( 2, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() );
assert.eq( 2, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() , "E" );
assert.commandWorked( db.runCommand( {deleteIndexes:"jstests_drop",index:"*"} ) );
assert.eq( 1, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() );
assert.eq( 1, db.system.indexes.find( {ns:"test.jstests_drop"} ).count() , "G" );

// make sure we can still use it
f.save( {} );
assert.eq( 1, f.find().hint( {_id:ObjectId( "000000000000000000000000" )} ).toArray().length );
assert.eq( 1, f.find().hint( {_id:new ObjectId( "000000000000000000000000" )} ).toArray().length , "H" );

0 comments on commit f565f7b

Please sign in to comment.