Files
mongo/jstests/core/js9.js
Max Hirschhorn 35b5b72146 SERVER-32522 Clean up {read,write}Concern and readPreference overrides.
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.
2018-01-30 19:45:42 -05:00

25 lines
507 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,
// ]
c = db.jstests_js9;
c.drop();
c.save({a: 1});
c.save({a: 2});
assert.eq(2, c.find().length());
assert.eq(2, c.find().count());
assert.eq(2, db.eval(function() {
num = 0;
db.jstests_js9.find().forEach(function(z) {
num++;
});
return num;
}));