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.
27 lines
408 B
JavaScript
27 lines
408 B
JavaScript
// Test that client gets stack trace on failed invoke
|
|
// @tags: [
|
|
// requires_eval_command,
|
|
// requires_non_retryable_commands,
|
|
// ]
|
|
|
|
f = db.jstests_error2;
|
|
|
|
f.drop();
|
|
|
|
f.save({a: 1});
|
|
|
|
assert.throws(function() {
|
|
c = f.find({
|
|
$where: function() {
|
|
return a();
|
|
}
|
|
});
|
|
c.next();
|
|
});
|
|
|
|
assert.throws(function() {
|
|
db.eval(function() {
|
|
return a();
|
|
});
|
|
});
|