Introduces OverrideHelpers object with convenience methods for inspecting certain aggregation and map-reduce commands, as well as overriding startParallelShell(), Mongo.prototype.runCommand(), and Mongo.prototype.runCommandWithMetadata(). Also removes a number of tests that were incorrectly blacklisted from the read_concern_majority_passthrough.yml and read_concern_linearizable_passthrough.yml test suites.
23 lines
540 B
JavaScript
23 lines
540 B
JavaScript
// @tags: [
|
|
// # Cannot implicitly shard accessed collections because unsupported use of sharded collection
|
|
// # from db.eval.
|
|
// assumes_unsharded_collection,
|
|
// requires_eval_command,
|
|
// requires_non_retryable_commands,
|
|
// ]
|
|
|
|
t = db.eval1;
|
|
t.drop();
|
|
|
|
t.save({_id: 1, name: "eliot"});
|
|
t.save({_id: 2, name: "sara"});
|
|
|
|
f = function(id) {
|
|
return db["eval1"].findOne({_id: id}).name;
|
|
};
|
|
|
|
assert.eq("eliot", f(1), "A");
|
|
assert.eq("sara", f(2), "B");
|
|
assert.eq("eliot", db.eval(f, 1), "C");
|
|
assert.eq("sara", db.eval(f, 2), "D");
|