mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
/**
|
|
* Test to make sure that commands that should only work when testing commands are enabled
|
|
* via the --enableTestCommands flag fail when that flag isn't provided.
|
|
*/
|
|
|
|
var testOnlyCommands = [
|
|
'configureFailPoint',
|
|
'_hashBSONElement',
|
|
'replSetTest',
|
|
'godinsert',
|
|
'sleep',
|
|
'cpuload',
|
|
'captrunc',
|
|
'emptycapped'
|
|
];
|
|
|
|
var assertCmdNotFound = function(db, cmdName) {
|
|
var res = db.runCommand(cmdName);
|
|
assert.eq(0, res.ok);
|
|
assert.eq(59, res.code, 'expected CommandNotFound(59) error code for test command ' + cmdName);
|
|
};
|
|
|
|
var assertCmdFound = function(db, cmdName) {
|
|
var res = db.runCommand(cmdName);
|
|
if (!res.ok) {
|
|
assert.neq(59,
|
|
res.code,
|
|
'test command ' + cmdName + ' should either have succeeded or ' +
|
|
'failed with an error code other than CommandNotFound(59)');
|
|
}
|
|
};
|
|
|
|
jsTest.setOption('enableTestCommands', false);
|
|
|
|
var conn = MongoRunner.runMongod({});
|
|
for (i in testOnlyCommands) {
|
|
assertCmdNotFound(conn.getDB('test'), testOnlyCommands[i]);
|
|
}
|
|
MongoRunner.stopMongod(conn);
|
|
|
|
// Now enable the commands
|
|
jsTest.setOption('enableTestCommands', true);
|
|
|
|
var conn = MongoRunner.runMongod({});
|
|
for (i in testOnlyCommands) {
|
|
assertCmdFound(conn.getDB('test'), testOnlyCommands[i]);
|
|
}
|
|
MongoRunner.stopMongod(conn);
|