summaryrefslogtreecommitdiff
path: root/jstests/replsets/replset5.js
blob: 5488d8a9cd05e5edcf76e02b1ffbef8b43f47e70 (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
76
77
78
79
80
81
82
83
84
85
86
// rs test getlasterrordefaults
load("jstests/replsets/rslib.js");

(function() {
"use strict";
// Test write concern defaults
var replTest = new ReplSetTest({name: 'testSet', nodes: 3});

var nodes = replTest.startSet();
replTest.initiate();

// Set default for write concern
var config = replTest.getReplSetConfigFromNode();
config.version++;
config.settings = {};
config.settings.getLastErrorDefaults = {
    'w': 3,
    'wtimeout': ReplSetTest.kDefaultTimeoutMS
};
config.settings.heartbeatTimeoutSecs = 15;
// Prevent node 2 from becoming primary, as we will attempt to set it to hidden later.
config.members[2].priority = 0;
reconfig(replTest, config);

//
var primary = replTest.getPrimary();
replTest.awaitSecondaryNodes();
var testDB = "foo";

// Initial replication
primary.getDB("barDB").bar.save({a: 1});
replTest.awaitReplication();

// These writes should be replicated immediately
var docNum = 5000;
var bulk = primary.getDB(testDB).foo.initializeUnorderedBulkOp();
for (var n = 0; n < docNum; n++) {
    bulk.insert({n: n});
}

// should use the configured last error defaults from above, that's what we're testing.
//
// If you want to test failure, just add values for w and wtimeout (e.g. w=1)
// to the following command. This will override the default set above and
// prevent replication from happening in time for the count tests below.
//
var result = bulk.execute();
var wcError = result.getWriteConcernError();

if (wcError != null) {
    print("\WARNING getLastError timed out and should not have: " + result.toString());
    print("This machine seems extremely slow. Stopping test without failing it\n");
    replTest.stopSet();
    return;
}

var secondaries = replTest.getSecondaries();
secondaries[0].setSlaveOk();
secondaries[1].setSlaveOk();

var secondary0Count = secondaries[0].getDB(testDB).foo.find().itcount();
assert(secondary0Count == docNum,
       "Slave 0 has " + secondary0Count + " of " + docNum + " documents!");

var secondary1Count = secondaries[1].getDB(testDB).foo.find().itcount();
assert(secondary1Count == docNum,
       "Slave 1 has " + secondary1Count + " of " + docNum + " documents!");

var primary1Count = primary.getDB(testDB).foo.find().itcount();
assert(primary1Count == docNum, "Master has " + primary1Count + " of " + docNum + " documents!");

print("replset5.js reconfigure with hidden=1");
config = primary.getDB("local").system.replset.findOne();

assert.eq(15, config.settings.heartbeatTimeoutSecs);

config.version++;
config.members[2].hidden = 1;

primary = reconfig(replTest, config);

config = primary.getSiblingDB("local").system.replset.findOne();
assert.eq(config.members[2].hidden, true);

replTest.stopSet();
}());