summaryrefslogtreecommitdiff
path: root/jstests/auth/logout_reconnect.js
blob: dc59d408544909d1c014de413b058c7bc2363df5 (plain)
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
/*
 * This file tests that credentials are flushed
 * from the Mongo shell authCache when logging out.
 * It is a regression test for SERVER-8798.
 */

var conn = MongoRunner.runMongod({
    auth : "",
    remember : true
});

// create user with rw permissions and login
var testDB = conn.getDB('test');
var adminDB = conn.getDB('admin');
adminDB.createUser({user:'admin', pwd:'admin', roles:['userAdminAnyDatabase']});
adminDB.auth('admin','admin');
testDB.createUser({user:'rwuser', pwd:'rwuser', roles:['readWrite']});
adminDB.logout();
testDB.auth('rwuser', 'rwuser');

// verify that the rwuser can read and write
testDB.foo.insert({a:1});
assert.eq(1, testDB.foo.find({a:1}).count(), "failed to read");

// assert that the user cannot read unauthenticated
testDB.logout();
assert.throws(function(){ testDB.foo.findOne(); },
              [],
              "user should not be able to read after logging out");

MongoRunner.stopMongod(conn);
conn = MongoRunner.runMongod({
    restart : conn,
    noCleanData : true
});

// expect to fail on first attempt since the socket is no longer valid
try{
    val = testDB.foo.findOne();
}
catch(err){}

// assert that credentials were not autosubmitted on reconnect
assert.throws(function(){ testDB.foo.findOne(); },
              [],
              "user should not be able to read after logging out");

MongoRunner.stopMongod(conn);

print("SUCCESS logout_reconnect.js");