0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-21 20:49:10 +01:00
mongodb/jstests/replsets/replset3.js
Moustafa Maher 2fd5f78d5a SERVER-95421 make initiateWithHighElectionTimeout the default in ReplSetTest (#28174)
GitOrigin-RevId: df168ee363c3f0e86526270437d3688ac4bb326d
2024-10-22 02:53:25 +00:00

77 lines
2.1 KiB
JavaScript

import {ReplSetTest} from "jstests/libs/replsettest.js";
var doTest = function(signal) {
// Test replica set step down
// Replica set testing API
// Create a new replica set test. Specify set name and the number of nodes you want.
var replTest = new ReplSetTest({name: 'testSet', nodes: 3});
// call startSet() to start each mongod in the replica set
// this returns a list of nodes
var nodes = replTest.startSet();
// Call initiate() to send the replSetInitiate command
// This will wait for initiation
replTest.initiate(null, null, {initiateWithDefaultElectionTimeout: true});
// Get primary node
var primary = replTest.getPrimary();
// Write some data to primary
// NOTE: this test fails unless we write some data.
primary.getDB("foo").foo.insert({a: 1}, {writeConcern: {w: 3, wtimeout: 20000}});
var phase = 1;
print(phase++);
// Step down primary.
assert.commandWorked(primary.getDB("admin").runCommand({replSetStepDown: 0, force: 1}));
print(phase++);
try {
var newPrimary = replTest.getPrimary();
} catch (err) {
throw ("Could not elect new primary before timeout.");
}
print(phase++);
assert(primary != newPrimary, "Old primary shouldn't be equal to new primary.");
print(phase++);
// Make sure that secondaries are still up
var result = newPrimary.getDB("admin").runCommand({replSetGetStatus: 1});
assert(result['ok'] == 1, "Could not verify that secondaries were still up:" + result);
print(phase++);
var secondaries = replTest.getSecondaries();
assert.soon(function() {
try {
var res = secondaries[0].getDB("admin").runCommand({replSetGetStatus: 1});
} catch (err) {
}
return res.myState == 2;
}, "Secondary 0 state not ready.");
print(phase++);
assert.soon(function() {
try {
var res = secondaries[1].getDB("admin").runCommand({replSetGetStatus: 1});
} catch (err) {
}
return res.myState == 2;
}, "Secondary 1 state not ready.");
print("replset3.js SUCCESS");
replTest.stopSet(15);
};
doTest(15);