1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
db.dropAllUsers();
pass = "a" + Math.random();
//print( "password [" + pass + "]" );
db.addUser({user: "eliot" ,pwd: pass, roles: jsTest.basicUserRoles});
assert( db.auth( "eliot" , pass ) , "auth failed" );
assert( ! db.auth( "eliot" , pass + "a" ) , "auth should have failed" );
pass2 = "b" + Math.random();
db.changeUserPassword("eliot", pass2);
assert( ! db.auth( "eliot" , pass ) , "failed to change password failed" );
assert( db.auth( "eliot" , pass2 ) , "new password didn't take" );
assert( db.auth( "eliot" , pass2 ) , "what?" );
db.dropUser( "eliot" );
assert( ! db.auth( "eliot" , pass2 ) , "didn't drop user" );
var a = db.getMongo().getDB( "admin" );
a.dropAllUsers();
pass = "c" + Math.random();
a.addUser({user: "super", pwd: pass, roles: jsTest.adminUserRoles});
assert( a.auth( "super" , pass ) , "auth failed" );
assert( !a.auth( "super" , pass + "a" ) , "auth should have failed" );
db.dropAllUsers();
pass = "a" + Math.random();
db.addUser({user: "eliot" , pwd: pass, roles: jsTest.basicUserRoles});
assert.commandFailed( db.runCommand( { authenticate: 1, user: "eliot", nonce: "foo", key: "bar" } ) );
// check sanity check SERVER-3003
before = a.system.users.count()
assert.throws( function(){
db.addUser({ user: "" , pwd: "abc", roles: jsTest.basicUserRoles});
} , null , "C1" )
assert.throws( function(){
db.addUser({ user: "abc" , pwd: "", roles: jsTest.basicUserRoles});
} , null , "C2" )
after = a.system.users.count()
assert( before > 0 , "C3" )
assert.eq( before , after , "C4" )
// Clean up after ourselves so other tests using authentication don't get messed up.
db.dropAllUsers()
db.getSiblingDB('admin').dropAllUsers();
|