Includes workloads for:
explain
compact
reindex
collMod
count
distinct
touch
$where
Added to blacklists in FSM runners
Fixed the way we check for storage engines
Added two options for arbitrary function execution against cluster:
- Specified via ClusterOptions as setupFunctions to be run on the
cluster before workloads are run
- As part of setup and teardown with the cluster provided as a third
argument to these workload functions
80 lines
2.1 KiB
JavaScript
80 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* auth_create_role.js
|
|
*
|
|
* Repeatedly creates new roles on a database.
|
|
*/
|
|
load('jstests/concurrency/fsm_workload_helpers/drop_utils.js'); // for dropRoles
|
|
|
|
var $config = (function() {
|
|
|
|
var data = {
|
|
// Use the workload name as a prefix for the role name,
|
|
// since the workload name is assumed to be unique.
|
|
prefix: 'auth_create_role'
|
|
};
|
|
|
|
var states = (function() {
|
|
|
|
function uniqueRoleName(prefix, tid, num) {
|
|
return prefix + tid + '_' + num;
|
|
}
|
|
|
|
function init(db, collName) {
|
|
this.num = 0;
|
|
}
|
|
|
|
function createRole(db, collName) {
|
|
var roleName = uniqueRoleName(this.prefix, this.tid, this.num++);
|
|
db.createRole({
|
|
role: roleName,
|
|
privileges: [
|
|
{
|
|
resource: { db: db.getName(), collection: collName },
|
|
actions: ['update']
|
|
}
|
|
],
|
|
roles: [
|
|
{ role: 'read', db: db.getName() }
|
|
]
|
|
});
|
|
|
|
// Verify the newly created role exists, as well as all previously created roles
|
|
for (var i = 0; i < this.num; ++i) {
|
|
var name = uniqueRoleName(this.prefix, this.tid, i);
|
|
var res = db.getRole(name);
|
|
assertAlways(res !== null, "role '" + name + "' should exist");
|
|
assertAlways.eq(name, res.role);
|
|
assertAlways(!res.isBuiltin, 'role should be user-defined');
|
|
}
|
|
}
|
|
|
|
return {
|
|
init: init,
|
|
createRole: createRole
|
|
};
|
|
|
|
})();
|
|
|
|
var transitions = {
|
|
init: { createRole: 1 },
|
|
createRole: { createRole: 1 }
|
|
};
|
|
|
|
function teardown(db, collName, cluster) {
|
|
var pattern = new RegExp('^' + this.prefix + '\\d+_\\d+$');
|
|
dropRoles(db, pattern);
|
|
}
|
|
|
|
return {
|
|
threadCount: 10,
|
|
iterations: 20,
|
|
data: data,
|
|
states: states,
|
|
transitions: transitions,
|
|
teardown: teardown
|
|
};
|
|
|
|
})();
|