0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/replsets/initiate.js
2020-03-20 13:36:53 +00:00

26 lines
736 B
JavaScript

/*
* Sanity check that initializing will fail with bad input. There are C++ unit tests for most bad
* configs, so this is just seeing if it fails when it's supposed to.
* @tags: [multiversion_incompatible]
*/
(function() {
"use strict";
var replTest = new ReplSetTest({name: 'testSet2', nodes: 1});
var nodes = replTest.startSet();
assert.soon(function() {
try {
var result = nodes[0].getDB("admin").runCommand(
{replSetInitiate: {_id: "testSet2", members: [{_id: 0}]}});
printjson(result);
return (
result.errmsg.match(/BSON field 'MemberConfig.host' is missing but a required field/));
} catch (e) {
print(e);
}
return false;
});
replTest.stopSet();
}());