summaryrefslogtreecommitdiff
path: root/jstests/sharding/ismaster.js
blob: a582f677241ccec15dd04b6c3056de4e5eb158b3 (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
52
53
54
55
56
57
58
59
60
61
62
/**
 * This test ensures that the hello command and its aliases, ismaster and isMaster, are all
 * accepted by mongos.
 */
"use strict";
var st = new ShardingTest({shards: 1, mongos: 1});

function checkResponseFields(commandString) {
    jsTestLog("Running the " + commandString + " command");
    var res = st.s0.getDB("admin").runCommand(commandString);

    // check that the fields that should be there are there and have proper values
    assert(res.maxBsonObjectSize && isNumber(res.maxBsonObjectSize) && res.maxBsonObjectSize > 0,
           "maxBsonObjectSize possibly missing:" + tojson(res));
    assert(
        res.maxMessageSizeBytes && isNumber(res.maxMessageSizeBytes) && res.maxBsonObjectSize > 0,
        "maxMessageSizeBytes possibly missing:" + tojson(res));

    // TODO SERVER-49988: Check for res.isWritablePrimary instead of res.ismaster if a hello command
    // was executed.
    assert.eq("boolean", typeof res.ismaster, "ismaster field is not a boolean" + tojson(res));
    assert(res.ismaster === true, "ismaster field is false" + tojson(res));

    assert(res.localTime, "localTime possibly missing:" + tojson(res));
    assert(res.msg && res.msg == "isdbgrid", "msg possibly missing or wrong:" + tojson(res));

    var unwantedFields = [
        "setName",
        "setVersion",
        "secondary",
        "hosts",
        "passives",
        "arbiters",
        "primary",
        "aribterOnly",
        "passive",
        "slaveDelay",
        "hidden",
        "tags",
        "buildIndexes",
        "me"
    ];
    // check that the fields that shouldn't be there are not there
    var badFields = [];
    var field;
    for (field in res) {
        if (!res.hasOwnProperty(field)) {
            continue;
        }
        if (Array.contains(unwantedFields, field)) {
            badFields.push(field);
        }
    }
    assert(badFields.length === 0,
           "\nthe result:\n" + tojson(res) + "\ncontained fields it shouldn't have: " + badFields);
}

checkResponseFields("hello");
checkResponseFields("ismaster");
checkResponseFields("isMaster");

st.stop();