summaryrefslogtreecommitdiff
path: root/jstests/disk/repair5.js
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2011-04-01 18:33:11 -0700
committerAaron <aaron@10gen.com>2011-04-01 18:34:10 -0700
commitcd19c1835fd18bf288b5a7651e195e2c72f2eaff (patch)
tree82caaf64dd83830c31fdfd1a515fc0689701b8b6 /jstests/disk/repair5.js
parentff63bf56849a9fea8ebfa46c45e21618ae1c2738 (diff)
downloadmongo-cd19c1835fd18bf288b5a7651e195e2c72f2eaff.tar.gz
SERVER-2351 allow killop to interrupt a repair database command
Diffstat (limited to 'jstests/disk/repair5.js')
-rw-r--r--jstests/disk/repair5.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/jstests/disk/repair5.js b/jstests/disk/repair5.js
new file mode 100644
index 00000000000..65da3305d91
--- /dev/null
+++ b/jstests/disk/repair5.js
@@ -0,0 +1,43 @@
+// SERVER-2351 Test killop with repair command.
+
+var baseName = "jstests_disk_repair5";
+
+port = allocatePorts( 1 )[ 0 ];
+dbpath = "/data/db/" + baseName + "/";
+repairpath = dbpath + "repairDir/"
+
+resetDbpath( dbpath );
+resetDbpath( repairpath );
+
+m = startMongoProgram( "mongod", "--port", port, "--dbpath", dbpath, "--repairpath", repairpath, "--nohttpinterface", "--bind_ip", "127.0.0.1" );
+db = m.getDB( baseName );
+
+big = new Array( 5000 ).toString();
+for( i = 0; i < 20000; ++i ) {
+ db[ baseName ].save( {i:i,b:big} );
+}
+
+function killRepair() {
+ while( 1 ) {
+ p = db.currentOp().inprog;
+ for( var i in p ) {
+ var o = p[ i ];
+ printjson( o );
+ // Find the active 'repairDatabase' op and kill it.
+ if ( o.active && o.query.repairDatabase ) {
+ db.killOp( o.opid );
+ return;
+ }
+ }
+ }
+}
+
+s = startParallelShell( killRepair.toString() + "; killRepair();" );
+
+// Repair should fail due to killOp.
+assert.commandFailed( db.runCommand( {repairDatabase:1, backupOriginalFiles:true} ) );
+
+s();
+
+assert.eq( 20000, db[ baseName ].find().itcount() );
+assert( db[ baseName ].validate().valid );