0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 09:06:21 +01:00
mongodb/jstests/replsets/get_status.js
Charlie Swanson 8d27279d6f SERVER-16405 Expand replication command tests.
Closes #881

Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
2014-12-12 17:05:20 -05:00

29 lines
1.0 KiB
JavaScript

/*
* Sanity check that get_status works as expected. There are C++ unit tests for most of the
* functionality, so we'll just check that it succeeds and fails when it's supposed to.
*/
(function () {
"use strict";
var name = "getstatus";
var numNodes = 4;
var replTest = new ReplSetTest({name: name, nodes: numNodes});
var nodes = replTest.startSet();
var config = replTest.getReplSetConfig();
config.members[numNodes - 1].arbiterOnly = true;
//An invalid time to get status
var statusBeforeInitCode = 94;
assert.commandFailedWithCode(nodes[0].getDB("admin").runCommand({replSetGetStatus: 1}),
statusBeforeInitCode,
"replSetGetStatus should fail before initializing." );
replTest.initiate(config);
replTest.awaitSecondaryNodes();
//A valid status
var primary = replTest.getPrimary();
assert.commandWorked(primary.getDB("admin").runCommand({replSetGetStatus: 1}));
replTest.stopSet();
}());