summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/add_invalid_shard.js
blob: caaeb23b839c8a65bdadf196090b5a45643ccc52 (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
/**
 * Test that adding invalid or duplicate shards will fail.
 */
(function() {

    "use strict";

    var st = new ShardingTest({shards: 1});

    var configDB = st.s.getDB('config');
    var shardDoc = configDB.shards.findOne();

    // Can't add mongos as shard.
    assert.commandFailedWithCode(st.admin.runCommand({addshard: st.s.host}),
                                 ErrorCodes.IllegalOperation);

    // Can't add a mongod with a lower binary version than our featureCompatibilityVersion.
    var lastStableMongod = MongoRunner.runMongod({binVersion: "last-stable", shardsvr: ""});
    assert.commandFailedWithCode(st.admin.runCommand({addshard: lastStableMongod.host}),
                                 ErrorCodes.IncompatibleServerVersion);
    MongoRunner.stopMongod(lastStableMongod);

    // Can't add config servers as shard.
    assert.commandFailed(st.admin.runCommand({addshard: st._configDB}));

    var replTest = new ReplSetTest({nodes: 2, nodeOptions: {shardsvr: ""}});
    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}));

    assert.commandWorked(st.admin.runCommand({addshard: rsConnStr, name: 'dummyRS'}));

    // Cannot add the same replSet shard host twice when using a unique shard name.
    assert.commandFailed(st.admin.runCommand({addshard: rsConnStr, name: 'dupRS'}));

    // Cannot add the same stand alone shard host twice with a unique shard name.
    assert.commandFailed(st.admin.runCommand({addshard: shardDoc.host, name: 'dupShard'}));

    // Cannot add a replica set connection string containing a member that isn't actually part of
    // the replica set.
    var truncatedRSConnStr = rsConnStr.substring(0, rsConnStr.indexOf(','));
    assert.commandFailed(
        st.admin.runCommand({addshard: truncatedRSConnStr + 'fakehost', name: 'dummyRS'}));

    replTest.stopSet();
    st.stop();

})();