summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/auth_create_user.js
blob: 7fe71f006fb5bd5f35913a0d0748abc099bc0311 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
'use strict';

/**
 * auth_create_user.js
 *
 * Repeatedly creates new users on a database.
 */
load('jstests/concurrency/fsm_workload_helpers/drop_utils.js'); // for dropUsers

var $config = (function() {

    var data = {
        // Use the workload name as a prefix for the username,
        // since the workload name is assumed to be unique.
        prefix: 'auth_create_user'
    };

    var states = (function() {

        function uniqueUsername(prefix, tid, num) {
            return prefix + tid + '_' + num;
        }

        function init(db, collName) {
            this.num = 0;
        }

        function createUser(db, collName) {
            var username = uniqueUsername(this.prefix, this.tid, this.num++);
            db.createUser({
                user: username,
                pwd: 'password',
                roles: ['readWrite', 'dbAdmin']
            });

            // Verify the newly created user exists, as well as all previously created users
            for (var i = 0; i < this.num; ++i) {
                var name = uniqueUsername(this.prefix, this.tid, i);
                var res = db.getUser(username);
                assertAlways(res !== null, "user '" + username + "' should exist");
                assertAlways.eq(username, res.user);
                assertAlways.eq(db.getName(), res.db);
            }
        }

        return {
            init: init,
            createUser: createUser
        };

    })();

    var transitions = {
        init: { createUser: 1 },
        createUser: { createUser: 1 }
    };

    function teardown(db, collName, cluster) {
        var pattern = new RegExp('^' + this.prefix + '\\d+_\\d+$');
        dropUsers(db, pattern);
    }

    return {
        threadCount: 10,
        iterations: 20,
        data: data,
        states: states,
        transitions: transitions,
        teardown: teardown
    };

})();