Files
mongo/jstests/replsets/election_handoff_basic.js
Moustafa Maher 2fd5f78d5a SERVER-95421 make initiateWithHighElectionTimeout the default in ReplSetTest (#28174)
GitOrigin-RevId: df168ee363c3f0e86526270437d3688ac4bb326d
2024-10-22 02:53:25 +00:00

21 lines
817 B
JavaScript

/**
* This is a basic test that checks that, with election handoff is enabled, a primary that steps
* down sends a ReplSetStepUp request to an eligible candidate. It uses a two-node replica set,
* so there is only one secondary that can take over.
*/
import {ReplSetTest} from "jstests/libs/replsettest.js";
import {ElectionHandoffTest} from "jstests/replsets/libs/election_handoff.js";
const testName = "election_handoff_vanilla";
const numNodes = 2;
const rst = new 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.initiate();
ElectionHandoffTest.testElectionHandoff(rst, 0, 1);
rst.stopSet();