summaryrefslogtreecommitdiff
path: root/jstests/auth/usersInfo.js
blob: 81b9b4ee87006b4c7fcf75e12b2904c4beaad39b (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
// Test behavior and edge cases in usersInfo
(function() {
'use strict';

function runTest(conn) {
    let db = conn.getDB("test");
    let emptyDB = conn.getDB("test2");
    let otherDB = conn.getDB("other");

    const userCount = 200;
    for (let i = 0; i < userCount; ++i) {
        assert.commandWorked(db.runCommand({createUser: "user" + i, pwd: "pwd", roles: []}));
    }
    assert.commandWorked(otherDB.runCommand({createUser: "otherUser", pwd: "pwd", roles: []}));

    // Check info for all users on the "test" database.
    const allTestInfo = assert.commandWorked(db.runCommand({usersInfo: 1}));
    assert.eq(userCount, allTestInfo.users.length);

    // Check we can find a particular user on the "test" database.
    assert.eq(1, assert.commandWorked(db.runCommand({usersInfo: "user12"})).users.length);
    assert.eq(1,
              assert.commandWorked(db.runCommand({usersInfo: {user: "user12", db: "test"}}))
                  .users.length);
    assert.eq(0,
              assert.commandWorked(db.runCommand({usersInfo: {user: "user12", db: "test2"}}))
                  .users.length);
    assert.eq(0, assert.commandWorked(emptyDB.runCommand({usersInfo: "user12"})).users.length);

    // No users are found on a database without users.
    assert.eq(0, assert.commandWorked(emptyDB.runCommand({usersInfo: 1})).users.length);

    // Check that we can find records for all users on all databases.
    const allInfo = assert.commandWorked(db.runCommand({usersInfo: {forAllDBs: true}}));
    assert.eq(userCount + 1, allInfo.users.length);
}

const m = MongoRunner.runMongod();
runTest(m);
MongoRunner.stopMongod(m);

// TODO: Remove 'shardAsReplicaSet: false' when SERVER-32672 is fixed.
const st = new ShardingTest({shards: 1, mongos: 1, config: 1, other: {shardAsReplicaSet: false}});
runTest(st.s0);
st.stop();
}());