0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/noPassthrough/readConcern_atClusterTime.js

86 lines
3.3 KiB
JavaScript

// Test parsing of readConcern option 'atClusterTime'.
//
// Only run this test with the WiredTiger storage engine, since we expect other storage engines to
// return early because they do not support snapshot read concern.
// @tags: [requires_wiredtiger]
(function() {
"use strict";
const dbName = "test";
const collName = "coll";
const rst = new ReplSetTest({nodes: 1});
rst.startSet();
rst.initiate();
const testDB = rst.getPrimary().getDB(dbName);
if (!testDB.serverStatus().storageEngine.supportsSnapshotReadConcern) {
rst.stopSet();
return;
}
const pingRes = assert.commandWorked(rst.getPrimary().adminCommand({ping: 1}));
assert(pingRes.hasOwnProperty("$clusterTime"), tojson(pingRes));
assert(pingRes.$clusterTime.hasOwnProperty("clusterTime"), tojson(pingRes));
const clusterTime = pingRes.$clusterTime.clusterTime;
// 'atClusterTime' can be used with readConcern level 'snapshot'.
assert.commandWorked(testDB.runCommand(
{find: collName, readConcern: {level: "snapshot", atClusterTime: clusterTime}}));
// 'atClusterTime' must have type Timestamp.
assert.commandFailedWithCode(
testDB.runCommand({find: collName, readConcern: {level: "snapshot", atClusterTime: "bad"}}),
ErrorCodes.TypeMismatch);
// 'atClusterTime' cannot be used with readConcern level 'majority'.
assert.commandFailedWithCode(
testDB.runCommand(
{find: collName, readConcern: {level: "majority", atClusterTime: clusterTime}}),
ErrorCodes.InvalidOptions);
// 'atClusterTime' cannot be used with readConcern level 'local'.
assert.commandFailedWithCode(
testDB.runCommand(
{find: collName, readConcern: {level: "local", atClusterTime: clusterTime}}),
ErrorCodes.InvalidOptions);
// 'atClusterTime' cannot be used with readConcern level 'available'.
assert.commandFailedWithCode(
testDB.runCommand(
{find: collName, readConcern: {level: "available", atClusterTime: clusterTime}}),
ErrorCodes.InvalidOptions);
// 'atClusterTime' cannot be used with readConcern level 'linearizable'.
assert.commandFailedWithCode(
testDB.runCommand(
{find: collName, readConcern: {level: "linearizable", atClusterTime: clusterTime}}),
ErrorCodes.InvalidOptions);
// 'atClusterTime' cannot be used without readConcern level (level is 'local' by default).
assert.commandFailedWithCode(
testDB.runCommand({find: collName, readConcern: {atClusterTime: clusterTime}}),
ErrorCodes.InvalidOptions);
// 'atClusterTime' cannot be used with 'afterOpTime'.
assert.commandFailedWithCode(testDB.runCommand({
find: collName,
readConcern: {
level: "snapshot",
atClusterTime: clusterTime,
afterOpTime: {ts: Timestamp(1, 2), t: 1}
}
}),
ErrorCodes.InvalidOptions);
// 'atClusterTime' cannot be used with 'afterClusterTime'.
assert.commandFailedWithCode(testDB.runCommand({
find: collName,
readConcern:
{level: "snapshot", atClusterTime: clusterTime, afterClusterTime: clusterTime}
}),
ErrorCodes.InvalidOptions);
rst.stopSet();
}());