16 lines
793 B
JavaScript
16 lines
793 B
JavaScript
// 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");
|