summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/drop_database.js
blob: 8a13461bb092690a9c8f3f7facf8bc59c944acdb (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
'use strict';

/**
 * drop_database.js
 *
 * Repeatedly creates and drops a database.
 */
var $config = (function() {
    var states = {
        init: function init(db, collName) {
            this.uniqueDBName = db.getName() + 'drop_database' + this.tid;
        },

        createAndDrop: function createAndDrop(db, collName) {
            // TODO: should we ever do something different?
            //       e.g. create multiple collections on the database and then drop?
            var myDB = db.getSiblingDB(this.uniqueDBName);
            assertAlways.commandWorked(myDB.createCollection(collName));

            var res = myDB.dropDatabase();
            assertAlways.commandWorked(res);
            assertAlways.eq(this.uniqueDBName, res.dropped);
        }
    };

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

    return {threadCount: 10, iterations: 20, states: states, transitions: transitions};
})();