summaryrefslogtreecommitdiff
path: root/jstests/sharding/add_invalid_shard.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/add_invalid_shard.js')
-rw-r--r--jstests/sharding/add_invalid_shard.js58
1 files changed, 29 insertions, 29 deletions
diff --git a/jstests/sharding/add_invalid_shard.js b/jstests/sharding/add_invalid_shard.js
index 7dfa6d0f819..357cf252356 100644
--- a/jstests/sharding/add_invalid_shard.js
+++ b/jstests/sharding/add_invalid_shard.js
@@ -3,47 +3,47 @@
*/
(function() {
-"use strict";
+ "use strict";
-var st = new ShardingTest({ shards: 1 });
+ var st = new ShardingTest({shards: 1});
-var configDB = st.s.getDB('config');
-var shardDoc = configDB.shards.findOne();
+ var configDB = st.s.getDB('config');
+ var shardDoc = configDB.shards.findOne();
-// Can't add mongos as shard.
-assert.commandFailed(st.admin.runCommand({ addshard: st.s.host }));
+ // Can't add mongos as shard.
+ assert.commandFailed(st.admin.runCommand({addshard: st.s.host}));
-// Can't add config servers as shard.
-assert.commandFailed(st.admin.runCommand({ addshard: st._configDB }));
+ // Can't add config servers as shard.
+ assert.commandFailed(st.admin.runCommand({addshard: st._configDB}));
-var replTest = new ReplSetTest({ nodes: 2 });
-replTest.startSet({ oplogSize: 10 });
-replTest.initiate();
+ var replTest = new ReplSetTest({nodes: 2});
+ replTest.startSet({oplogSize: 10});
+ replTest.initiate();
-var rsConnStr = replTest.getURL();
-// Can't add replSet as shard if the name doesn't match the replSet config.
-assert.commandFailed(st.admin.runCommand({ addshard: "prefix_" + rsConnStr }));
+ var rsConnStr = replTest.getURL();
+ // Can't add replSet as shard if the name doesn't match the replSet config.
+ assert.commandFailed(st.admin.runCommand({addshard: "prefix_" + rsConnStr}));
-assert.commandWorked(st.admin.runCommand({ addshard: rsConnStr, name: 'dummyRS' }));
+ assert.commandWorked(st.admin.runCommand({addshard: rsConnStr, name: 'dummyRS'}));
-// Cannot add the same replSet shard host twice.
-assert.commandFailed(st.admin.runCommand({ addshard: rsConnStr }));
+ // Cannot add the same replSet shard host twice.
+ assert.commandFailed(st.admin.runCommand({addshard: rsConnStr}));
-// Cannot add the same replSet shard host twice even when using a unique shard name.
-assert.commandFailed(st.admin.runCommand({ addshard: rsConnStr, name: 'dupRS' }));
+ // Cannot add the same replSet shard host twice even when using a unique shard name.
+ assert.commandFailed(st.admin.runCommand({addshard: rsConnStr, name: 'dupRS'}));
-// Cannot add the same replSet shard host twice even when using an valid variant of the replSet
-// connection string.
-var truncatedRSConnStr = rsConnStr.substring(0, rsConnStr.indexOf(','));
-assert.commandFailed(st.admin.runCommand({ addshard: truncatedRSConnStr, name: 'dupRS' }));
+ // Cannot add the same replSet shard host twice even when using an valid variant of the replSet
+ // connection string.
+ var truncatedRSConnStr = rsConnStr.substring(0, rsConnStr.indexOf(','));
+ assert.commandFailed(st.admin.runCommand({addshard: truncatedRSConnStr, name: 'dupRS'}));
-// Cannot add the same stand alone shard host twice.
-assert.commandFailed(st.admin.runCommand({ addshard: shardDoc.host }));
+ // Cannot add the same stand alone shard host twice.
+ assert.commandFailed(st.admin.runCommand({addshard: shardDoc.host}));
-// Cannot add the same stand alone shard host twice even with a unique shard name.
-assert.commandFailed(st.admin.runCommand({ addshard: shardDoc.host, name: 'dupShard' }));
+ // Cannot add the same stand alone shard host twice even with a unique shard name.
+ assert.commandFailed(st.admin.runCommand({addshard: shardDoc.host, name: 'dupShard'}));
-replTest.stopSet();
-st.stop();
+ replTest.stopSet();
+ st.stop();
})();