summaryrefslogtreecommitdiff
path: root/jstests/auth/usersInfo.js
blob: fdd4a1b0a5f296b43a2f434049e4d83141438f8f (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
// 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();
}());