blob: f24f1b76bb229cb987c880462b58a503687b5dfa (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
var doTest = function(signal) {
"use strict";
// 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();
// 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);
|