0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/jstests/noPassthrough/apply_ops_mode.js

95 lines
3.2 KiB
JavaScript

/**
* Tests that applyOps correctly respects the 'oplogApplicationMode' and 'alwaysUpsert' flags.
* 'alwaysUpsert' defaults to true and 'oplogApplicationMode' defaults to 'ApplyOps'. We test
* that these default values do not lead to command failure.
*/
(function() {
'use strict';
var standalone = MongoRunner.runMongod();
var db = standalone.getDB("test");
var coll = db.getCollection("apply_ops_mode1");
// ------------ Testing normal updates ---------------
var id = ObjectId();
for (let updateOp of [
// An update with a modifier.
{op: 'u', ns: coll.getFullName(), o: {$set: {x: 1}}, o2: {_id: id}},
// A full-document replace.
{op: 'u', ns: coll.getFullName(), o: {_id: id, x: 1}, o2: {_id: id}},
]) {
coll.drop();
assert.writeOK(coll.insert({_id: 1}));
jsTestLog(`Test applyOps with the following op:\n${tojson(updateOp)}`);
assert.commandFailed(db.adminCommand({applyOps: [updateOp], alwaysUpsert: false}));
assert.eq(coll.count({x: 1}), 0);
// Test that 'InitialSync' does not override 'alwaysUpsert: false'.
assert.commandFailed(db.adminCommand(
{applyOps: [updateOp], alwaysUpsert: false, oplogApplicationMode: "InitialSync"}));
assert.eq(coll.count({x: 1}), 0);
// Test parsing failure.
assert.commandFailedWithCode(
db.adminCommand({applyOps: [updateOp], oplogApplicationMode: "BadMode"}),
ErrorCodes.FailedToParse);
assert.commandFailedWithCode(db.adminCommand({applyOps: [updateOp], oplogApplicationMode: 5}),
ErrorCodes.TypeMismatch);
// Test default succeeds.
assert.commandWorked(db.adminCommand({applyOps: [updateOp]}));
assert.eq(coll.count({x: 1}), 1);
coll.drop();
assert.commandWorked(coll.insert({_id: 1}));
// Test default succeeds in 'InitialSync' mode.
assert.commandWorked(
db.adminCommand({applyOps: [updateOp], oplogApplicationMode: "InitialSync"}));
assert.eq(coll.count({x: 1}), 1);
}
// ------------ Testing fCV updates ---------------
var adminDB = db.getSiblingDB("admin");
const systemVersionColl = adminDB.getCollection("system.version");
var updateOp = {
op: 'u',
ns: systemVersionColl.getFullName(),
o: {_id: "featureCompatibilityVersion", version: lastStableFCV},
o2: {_id: "featureCompatibilityVersion"}
};
assert.commandFailed(db.adminCommand({applyOps: [updateOp], oplogApplicationMode: "InitialSync"}));
assert.commandWorked(db.adminCommand({applyOps: [updateOp], oplogApplicationMode: "ApplyOps"}));
// Test default succeeds.
updateOp.o.targetVersion = latestFCV;
assert.commandWorked(db.adminCommand({
applyOps: [updateOp],
}));
// ------------ Testing commands on the fCV collection ---------------
var collModOp = {
op: 'c',
ns: systemVersionColl.getDB() + ".$cmd",
o: {collMod: systemVersionColl.getName(), validationLevel: "off"},
};
assert.commandFailed(db.adminCommand({applyOps: [collModOp], oplogApplicationMode: "InitialSync"}));
assert.commandWorked(db.adminCommand({applyOps: [collModOp], oplogApplicationMode: "ApplyOps"}));
// Test default succeeds.
assert.commandWorked(db.adminCommand({
applyOps: [collModOp],
}));
MongoRunner.stopMongod(standalone);
})();