Files
mongo/jstests/core/objid5.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

20 lines
481 B
JavaScript

t = db.objid5;
t.drop();
t.save( { _id : 5.5 } );
assert.eq( 18 , Object.bsonsize( t.findOne() ) , "A" );
x = db.runCommand( { features : 1 } )
y = db.runCommand( { features : 1 , oidReset : 1 } )
if( !x.ok )
print("x: " + tojson(x));
assert( x.oidMachine , "B1" )
assert.neq( x.oidMachine , y.oidMachine , "B2" )
assert.eq( x.oidMachine , y.oidMachineOld , "B3" )
assert.eq( 18 , Object.bsonsize( { _id : 7.7 } ) , "C1" )
assert.eq( 0 , Object.bsonsize( null ) , "C2" )