summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/index_no_retry.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/index_no_retry.js')
-rw-r--r--jstests/noPassthrough/index_no_retry.js66
1 files changed, 66 insertions, 0 deletions
diff --git a/jstests/noPassthrough/index_no_retry.js b/jstests/noPassthrough/index_no_retry.js
new file mode 100644
index 00000000000..e3c00182a17
--- /dev/null
+++ b/jstests/noPassthrough/index_no_retry.js
@@ -0,0 +1,66 @@
+// Check index rebuild is disabled with --noIndexBuildRetry when MongoDB is killed.
+//
+// This test requires persistence beacuase it assumes data/indices will survive a restart.
+// This test requires journaling because the information that an index build was started
+// must be made durable when the process aborts.
+// @tags: [requires_persistence, requires_journaling]
+(function() {
+ 'use strict';
+ var baseName = 'index_no_retry';
+ var dbpath = MongoRunner.dataPath + baseName;
+
+ var conn = MongoRunner.runMongod({dbpath: dbpath});
+ assert.neq(null, conn, 'failed to start mongod');
+
+ var test = conn.getDB("test");
+ var pid = test.serverStatus().pid;
+
+ var name = 'jstests_slownightly_' + baseName;
+ var t = test.getCollection(name);
+ t.drop();
+
+ var bulk = t.initializeUnorderedBulkOp();
+ for (var i = 0; i < 100; ++i) {
+ bulk.insert({a: i});
+ }
+
+ // Make sure the documents are journaled
+ assert.writeOK(bulk.execute({j: true}));
+
+ assert.eq(100, t.count(), 'unexpected number of documents after bulk insert.');
+
+ function abortDuringIndexBuild(options) {
+ var createIdx = startParallelShell(function() {
+ var coll = db.getSiblingDB('test').getCollection('jstests_slownightly_index_no_retry');
+
+ // Fail point will handle journal flushing and killing the mongod
+ assert.commandWorked(db.adminCommand(
+ {configureFailPoint: 'crashAfterStartingIndexBuild', mode: 'alwaysOn'}));
+ coll.createIndex({a: 1}, {background: true});
+ }, conn.port);
+
+ var exitCode = createIdx({checkExitSuccess: false});
+ assert.neq(0, exitCode, "expected shell to exit abnormally due to mongod being terminated");
+ }
+
+ abortDuringIndexBuild();
+
+ var EXIT_TEST = 101;
+ assert.eq(waitProgram(pid),
+ EXIT_TEST,
+ "mongod should have crashed due to the 'crashAfterStartingIndexBuild' " +
+ "failpoint being set.");
+
+ conn = MongoRunner.runMongod({dbpath: dbpath, noIndexBuildRetry: '', restart: true});
+ test = conn.getDB("test");
+ t = test.getCollection(name);
+
+ assert.throws(function() {
+ t.find({}, {_id: 0, a: 1}).hint({a: 1}).next();
+ }, null, 'index {a: 1} was rebuilt in spite of --noIndexBuildRetry');
+
+ var indexes = t.getIndexes();
+ assert.eq(1, indexes.length, 'unfinished indexes in listIndexes result: ' + tojson(indexes));
+
+ MongoRunner.stopMongod(conn.port);
+}());