0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/replsets/election_handoff_flip.js

25 lines
773 B
JavaScript

/**
* This test uses a two-node replica set and exercises election handoff from one node to the other,
* then back to the first one.
*/
(function() {
"use strict";
load("jstests/replsets/libs/election_handoff.js");
const testName = "election_handoff_flip";
const numNodes = 2;
const rst = ReplSetTest({name: testName, nodes: numNodes});
const nodes = rst.nodeList();
rst.startSet();
// Make sure there are no election timeouts firing for the duration of the test. This helps
// ensure that the test will only pass if the election handoff succeeds.
rst.initiateWithHighElectionTimeout();
ElectionHandoffTest.testElectionHandoff(rst, 0, 1);
sleep(ElectionHandoffTest.stepDownPeriodSecs * 1000);
ElectionHandoffTest.testElectionHandoff(rst, 1, 0);
rst.stopSet();
})();