summaryrefslogtreecommitdiff
path: root/jstests/tool/stat1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/tool/stat1.js')
-rw-r--r--jstests/tool/stat1.js30
1 files changed, 25 insertions, 5 deletions
diff --git a/jstests/tool/stat1.js b/jstests/tool/stat1.js
index 0b5bf7f02b0..efdbcb0f376 100644
--- a/jstests/tool/stat1.js
+++ b/jstests/tool/stat1.js
@@ -3,13 +3,33 @@
baseName = "tool_stat1";
var m = MongoRunner.runMongod({auth: "", bind_ip: "127.0.0.1"});
-db = m.getDB( "admin" );
+db = m.getDB("admin");
-db.createUser({user: "eliot" , pwd: "eliot", roles: jsTest.adminUserRoles});
-assert( db.auth( "eliot" , "eliot" ) , "auth failed" );
+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" );
+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" );
+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");