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.
43 lines
929 B
JavaScript
43 lines
929 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.eval3;
|
|
t.drop();
|
|
|
|
t.save({_id: 1, name: "eliot"});
|
|
assert.eq(1, t.count(), "A");
|
|
|
|
function z(a, b) {
|
|
db.eval3.save({_id: a, name: b});
|
|
return b;
|
|
}
|
|
|
|
z(2, "sara");
|
|
assert.eq(2, t.count(), "B");
|
|
|
|
assert.eq("eliot,sara",
|
|
t.find()
|
|
.toArray()
|
|
.map(function(z) {
|
|
return z.name;
|
|
})
|
|
.sort()
|
|
.toString());
|
|
|
|
assert.eq("joe", db.eval(z, 3, "joe"), "C");
|
|
assert.eq(3, t.count(), "D");
|
|
|
|
assert.eq("eliot,joe,sara",
|
|
t.find()
|
|
.toArray()
|
|
.map(function(z) {
|
|
return z.name;
|
|
})
|
|
.sort()
|
|
.toString());
|