Includes both the initial patch to remove all throws and patches for all failing tests Signed-off-by: Benety Goh <benety@mongodb.com>
88 lines
2.3 KiB
JavaScript
88 lines
2.3 KiB
JavaScript
|
|
|
|
var replTest = new ReplSetTest( {name: 'unicomplex', nodes: 2} );
|
|
var conns = replTest.startSet({ verbose: 1 });
|
|
replTest.initiate();
|
|
|
|
// Make sure we have a master
|
|
var master = replTest.getMaster();
|
|
|
|
for (i = 0; i < 20; i++) {
|
|
master.getDB("bar").foo.insert({x:1,y:i,abc:123,str:"foo bar baz"});
|
|
}
|
|
for (i = 0; i < 20; i++) {
|
|
master.getDB("bar").foo.update({ y: i }, { $push: { foo: "barrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr"}});
|
|
}
|
|
|
|
replTest.awaitReplication();
|
|
|
|
assert.soon(function() { return conns[1].getDB("admin").isMaster().secondary; });
|
|
|
|
join = startParallelShell( "db.getSisterDB('bar').runCommand({compact : 'foo'});", replTest.ports[1] );
|
|
|
|
print("joining");
|
|
join();
|
|
|
|
print("check secondary becomes a secondary again");
|
|
var secondarySoon = function() {
|
|
var x = 0;
|
|
assert.soon(function() {
|
|
var im = conns[1].getDB("admin").isMaster();
|
|
if (x++ % 5 == 0) printjson(im);
|
|
return im.secondary;
|
|
});
|
|
};
|
|
|
|
secondarySoon();
|
|
|
|
print("make sure compact works on a secondary (SERVER-3923)");
|
|
master.getDB("foo").bar.drop();
|
|
replTest.awaitReplication();
|
|
var result = conns[1].getDB("foo").runCommand({compact : "bar"});
|
|
assert.eq(result.ok, 0, tojson(result));
|
|
|
|
secondarySoon();
|
|
|
|
print("use replSetMaintenance command to go in/out of maintence mode");
|
|
|
|
print("primary cannot go into maintence mode");
|
|
result = master.getDB("admin").runCommand({replSetMaintenance : 1});
|
|
assert.eq(result.ok, 0, tojson(result));
|
|
|
|
print("check getMore works on a secondary, not on a recovering node");
|
|
var cursor = conns[1].getDB("bar").foo.find().batchSize(2);
|
|
for (var i = 0; i < 5; i++) {
|
|
cursor.next();
|
|
}
|
|
|
|
print("secondary can");
|
|
result = conns[1].getDB("admin").runCommand({replSetMaintenance : 1});
|
|
assert.eq(result.ok, 1, tojson(result));
|
|
|
|
print("make sure secondary goes into recovering");
|
|
var x = 0;
|
|
assert.soon(function() {
|
|
var im = conns[1].getDB("admin").isMaster();
|
|
if (x++ % 5 == 0) printjson(im);
|
|
return !im.secondary && !im.ismaster;
|
|
});
|
|
|
|
print("now getmore shouldn't work");
|
|
var ex = assert.throws(
|
|
function(){
|
|
lastDoc = null;
|
|
while (cursor.hasNext()) {
|
|
lastDoc = cursor.next();
|
|
}
|
|
},
|
|
[] /*no params*/,
|
|
"getmore didn't fail")
|
|
|
|
assert(ex.message.match("13436"), "wrong error code -- " + ex );
|
|
|
|
result = conns[1].getDB("admin").runCommand({replSetMaintenance : 0});
|
|
assert.eq(result.ok, 1, tojson(result));
|
|
|
|
secondarySoon();
|
|
|