summaryrefslogtreecommitdiff
path: root/jstests/auth/auth2.js
blob: 0c938f268723fa4b2eb34e099601a9b9692370fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// test read/write permissions

port = allocatePorts( 1 )[ 0 ];
baseName = "jstests_auth_auth2";

m = startMongod( "--auth", "--port", port, "--dbpath", "/data/db/" + baseName, "--nohttpinterface", "--bind_ip", "127.0.0.1" , "--nojournal" , "--smallfiles" );
db = m.getDB( "admin" );

t = db[ baseName ];
t.drop();

users = db.getCollection( "system.users" );
assert.eq( 0 , users.count() );

db.addUser( "eliot" , "eliot", jsTest.adminUserRoles );

assert.throws( function(){ db.users.count(); } )

assert.throws( function() { db.shutdownServer(); } )

db.auth( "eliot" , "eliot" )

db.shutdownServer();