mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
// Test that dropping the replset oplog, the local database, and the admin database are all
|
|
// prohibited in a replset.
|
|
|
|
(function() {
|
|
"use strict";
|
|
let rt = new ReplSetTest({name: "drop_oplog", nodes: 1, oplogSize: 30});
|
|
|
|
let nodes = rt.startSet();
|
|
rt.initiate();
|
|
let master = rt.getPrimary();
|
|
let localDB = master.getDB('local');
|
|
|
|
let threw = false;
|
|
|
|
let ret = assert.commandFailed(localDB.runCommand({drop: 'oplog.rs'}));
|
|
assert.eq('can\'t drop live oplog while replicating', ret.errmsg);
|
|
|
|
let dropOutput = localDB.dropDatabase();
|
|
assert.eq(dropOutput.ok, 0);
|
|
assert.eq(dropOutput.errmsg, "Cannot drop 'local' database while replication is active");
|
|
|
|
let adminDB = master.getDB('admin');
|
|
dropOutput = adminDB.dropDatabase();
|
|
assert.eq(dropOutput.ok, 0);
|
|
assert.eq(dropOutput.errmsg, "Dropping the 'admin' database is prohibited.");
|
|
|
|
let renameOutput = localDB.oplog.rs.renameCollection("poison");
|
|
assert.eq(renameOutput.ok, 0);
|
|
assert.eq(renameOutput.errmsg, "can't rename live oplog while replicating");
|
|
|
|
assert.commandWorked(localDB.foo.insert({a: 1}));
|
|
renameOutput = localDB.foo.renameCollection("oplog.rs");
|
|
assert.eq(renameOutput.ok, 0);
|
|
assert.eq(renameOutput.errmsg, "can't rename to live oplog while replicating");
|
|
rt.stopSet();
|
|
}());
|