blob: 4b3c8e427835f12e976813c89902b1a4d8eb0198 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
let doTest = function(signal) {
// Test orphaned primary steps down
var replTest = new ReplSetTest({name: 'testSet', nodes: 3});
replTest.startSet();
replTest.initiate();
var primary = replTest.getPrimary();
// Kill both secondaries, simulating a network partition
var secondaries = replTest.getSecondaries();
for (var i = 0; i < secondaries.length; i++) {
var secondary_id = replTest.getNodeId(secondaries[i]);
replTest.stop(secondary_id);
}
print("replset4.js 1");
assert.soon(function() {
try {
var result = primary.getDB("admin").runCommand({hello: 1});
return (result['ok'] == 1 && result['isWritablePrimary'] == false);
} catch (e) {
print("replset4.js caught " + e);
return false;
}
}, "Primary fails to step down when orphaned.");
print("replset4.js worked, stopping");
replTest.stopSet(signal);
};
print("replset4.js");
doTest(15);
print("replset4.js SUCCESS");
|