summaryrefslogtreecommitdiff
path: root/jstests/tool/stat1.js
blob: efdbcb0f376c3c2c20ddc24966cafd2aceb286f3 (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
// stat1.js
// test mongostat with authentication SERVER-3875
baseName = "tool_stat1";

var m = MongoRunner.runMongod({auth: "", bind_ip: "127.0.0.1"});
db = m.getDB("admin");

db.createUser({user: "eliot", pwd: "eliot", roles: jsTest.adminUserRoles});
assert(db.auth("eliot", "eliot"), "auth failed");

x = runMongoProgram("mongostat",
                    "--host",
                    "127.0.0.1:" + m.port,
                    "--username",
                    "eliot",
                    "--password",
                    "eliot",
                    "--rowcount",
                    "1",
                    "--authenticationDatabase",
                    "admin");
assert.eq(x, 0, "mongostat should exit successfully with eliot:eliot");

x = runMongoProgram("mongostat",
                    "--host",
                    "127.0.0.1:" + m.port,
                    "--username",
                    "eliot",
                    "--password",
                    "wrong",
                    "--rowcount",
                    "1",
                    "--authenticationDatabase",
                    "admin");
assert.neq(x, 0, "mongostat should exit with -1 with eliot:wrong");