1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
var st = new ShardingTest({
keyFile: 'jstests/libs/key1',
shards: 2,
chunkSize: 1,
verbose: 2,
other: {nopreallocj: 1, verbose: 2, useHostname: true, configOptions: {verbose: 2}}
});
var mongos = st.s;
var adminDB = mongos.getDB('admin');
var db = mongos.getDB('test');
adminDB.createUser({user: 'admin', pwd: 'password', roles: jsTest.adminUserRoles});
jsTestLog("Add user was successful");
// Test for SERVER-6549, make sure that repeatedly logging in always passes.
for (var i = 0; i < 100; i++) {
adminDB = new Mongo(mongos.host).getDB('admin');
assert(adminDB.auth('admin', 'password'), "Auth failed on attempt #: " + i);
}
st.stop();
|