summaryrefslogtreecommitdiff
path: root/jstests/replsets/force_sync_source_candidate.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/force_sync_source_candidate.js')
-rw-r--r--jstests/replsets/force_sync_source_candidate.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/jstests/replsets/force_sync_source_candidate.js b/jstests/replsets/force_sync_source_candidate.js
new file mode 100644
index 00000000000..4be7b3bb668
--- /dev/null
+++ b/jstests/replsets/force_sync_source_candidate.js
@@ -0,0 +1,40 @@
+/*
+ * Tests that the 'forceSyncSourceCandidate' failpoint correctly forces a sync source.
+ *
+ * @tags: [requires_replication]
+ */
+
+(function() {
+ "use strict";
+
+ const failpointName = "forceSyncSourceCandidate";
+
+ const rst = new ReplSetTest({
+ nodes:
+ [{}, {rsConfig: {priority: 0}}, {rsConfig: {priority: 0}}, {rsConfig: {priority: 0}}],
+ // Allow many initial sync attempts. Initial sync may fail if the sync source does not have
+ // an oplog yet because it has not conducted its own initial sync yet.
+ // We turn on the noop writer to encourage successful sync source selection.
+ nodeOptions: {setParameter: {numInitialSyncAttempts: 100, writePeriodicNoops: true}}
+ });
+ const nodes = rst.startSet();
+
+ function setFailPoint(node, syncSource) {
+ const dataObj = {hostAndPort: syncSource.host};
+ assert.commandWorked(node.adminCommand(
+ {configureFailPoint: failpointName, mode: "alwaysOn", data: dataObj}));
+ }
+
+ setFailPoint(nodes[1], nodes[0]);
+ setFailPoint(nodes[2], nodes[1]);
+ setFailPoint(nodes[3], nodes[2]);
+
+ rst.initiate();
+ const primary = rst.getPrimary();
+
+ rst.awaitSyncSource(nodes[1], nodes[0]);
+ rst.awaitSyncSource(nodes[2], nodes[1]);
+ rst.awaitSyncSource(nodes[3], nodes[2]);
+
+ rst.stopSet();
+})();