Files
mongo/jstests/replsets/oplog_wallclock.js
Matt Broadstone 771dabd098 SERVER-81339 Convert ReplSetTest and ShardingTest to modules (#26332)
GitOrigin-RevId: 744aa110a53786b23c62ff53f87a1418b5991e8d
2024-08-20 22:00:49 +00:00

28 lines
939 B
JavaScript

// oplog should contain the field "wt" with wallClock timestamps.
import {ReplSetTest} from "jstests/libs/replsettest.js";
import {getLatestOp} from "jstests/replsets/rslib.js";
var assertLastOplogHasWT = function(primary, msg) {
const opLogEntry = getLatestOp(primary);
assert(opLogEntry.hasOwnProperty('wall'),
'oplog entry must contain wt field: ' + tojson(opLogEntry));
};
var name = 'wt_test_coll';
var replSet = new ReplSetTest({nodes: 1, oplogSize: 2});
replSet.startSet();
replSet.initiate();
var primary = replSet.getPrimary();
var collection = primary.getDB('test').getCollection(name);
assert.commandWorked(collection.insert({_id: 1, val: 'x'}));
assertLastOplogHasWT(primary, 'insert');
assert.commandWorked(collection.update({_id: 1}, {val: 'y'}));
assertLastOplogHasWT(primary, 'update');
assert.commandWorked(collection.remove({_id: 1}));
assertLastOplogHasWT(primary, 'remove');
replSet.stopSet();