24 lines
912 B
JavaScript
24 lines
912 B
JavaScript
doIt = false;
|
|
files = listFiles( "/data/db" );
|
|
for ( i in files ) {
|
|
if ( files[ i ].name == "/data/db/diskfulltest" ) {
|
|
doIt = true;
|
|
}
|
|
}
|
|
|
|
if ( !doIt ) {
|
|
print( "path /data/db/diskfulltest/ missing, skipping diskfull test" );
|
|
doIt = false;
|
|
}
|
|
|
|
if ( doIt ) {
|
|
port = allocatePorts( 1 )[ 0 ];
|
|
m = startMongoProgram( "mongod", "--port", port, "--dbpath", "/data/db/diskfulltest", "--nohttpinterface", "--bind_ip", "127.0.0.1" );
|
|
m.getDB( "diskfulltest" ).getCollection( "diskfulltest" ).save( { a: 6 } );
|
|
assert.soon( function() { return rawMongoProgramOutput().match( /file allocation failure/ ); }, "didn't see 'file allocation failure'" );
|
|
assert.soon( function() { return rawMongoProgramOutput().match( /Caught Assertion in insert , continuing/ ); }, "didn't see 'Caught Assertion...'" );
|
|
sleep( 3000 );
|
|
m2 = new Mongo( m.host );
|
|
printjson( m2.getDBs() );
|
|
}
|