mirror of https://github.com/mongodb/mongo
44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
// Previously, the listCollections command would validate the views in all cases, potentially
|
|
// causing a secondary to crash in the initial sync of a replicate set in the case that invalid
|
|
// views were present. This test ensures that crashes no longer occur in those circumstances.
|
|
|
|
(function() {
|
|
'use strict';
|
|
|
|
const name = "initial_sync_invalid_views";
|
|
let replSet = new ReplSetTest({name: name, nodes: 1});
|
|
|
|
let oplogSizeOnPrimary = 1; // size in MB
|
|
replSet.startSet({oplogSize: oplogSizeOnPrimary});
|
|
replSet.initiate();
|
|
let primary = replSet.getPrimary();
|
|
|
|
let coll = primary.getDB('test').foo;
|
|
assert.commandWorked(coll.insert({a: 1}));
|
|
|
|
// Add a secondary node but make it hang before copying databases.
|
|
let secondary = replSet.add({rsConfig: {votes: 0, priority: 0}});
|
|
secondary.setSecondaryOk();
|
|
|
|
assert.commandWorked(secondary.getDB('admin').runCommand(
|
|
{configureFailPoint: 'initialSyncHangBeforeCopyingDatabases', mode: 'alwaysOn'}));
|
|
replSet.reInitiate();
|
|
|
|
assert.commandWorked(primary.getDB("test").createCollection("system.views"));
|
|
assert.commandWorked(primary.adminCommand({
|
|
applyOps: [
|
|
{op: "i", ns: "test.system.views", o: {_id: "invalid_view_def", invalid: NumberLong(1000)}}
|
|
]
|
|
}));
|
|
|
|
assert.commandWorked(secondary.getDB('admin').runCommand(
|
|
{configureFailPoint: 'initialSyncHangBeforeCopyingDatabases', mode: 'off'}));
|
|
|
|
replSet.awaitSecondaryNodes(200 * 1000);
|
|
|
|
// Skip collection validation during stopMongod if invalid views exists.
|
|
TestData.skipValidationOnInvalidViewDefinitions = true;
|
|
|
|
replSet.stopSet();
|
|
})();
|