summaryrefslogtreecommitdiff
path: root/jstests/tool/stat1.js
blob: 0b5bf7f02b0313c7c0506c8f5666d0b3dc8e145f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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");