summaryrefslogtreecommitdiff
path: root/jstests/auth/auth1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/auth/auth1.js')
-rw-r--r--jstests/auth/auth1.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/jstests/auth/auth1.js b/jstests/auth/auth1.js
index f5e9a877ad4..4098c6bfbef 100644
--- a/jstests/auth/auth1.js
+++ b/jstests/auth/auth1.js
@@ -8,15 +8,19 @@ baseName = "jstests_auth_auth1";
m = startMongod( "--auth", "--port", port, "--dbpath", MongoRunner.dataPath + baseName, "--nohttpinterface", "--bind_ip", "127.0.0.1" );
db = m.getDB( "test" );
-t = db[ baseName ];
-t.drop();
-
// these are used by read-only user
mro = new Mongo(m.host);
dbRO = mro.getDB( "test" );
tRO = dbRO[ baseName ];
+db.getSisterDB("admin").createUser({user: "root", pwd: "root", roles: ["root"]});
+db.getSisterDB("admin").auth("root", "root");
+
+t = db[ baseName ];
+t.drop();
+
db.dropAllUsers();
+db.logout();
db.getSisterDB( "admin" ).createUser({user: "super", pwd: "super", roles: ["__system"] });
db.getSisterDB("admin").auth("super", "super");