summaryrefslogtreecommitdiff
path: root/jstests/sharding/logical_time_metadata.js
blob: a4a2cc0dfa9af4cc26a6d0a52e9fa6ac35793d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
 * Basic test that checks that mongos includes the cluster time metatadata in it's response.
 * This does not test cluster time propagation via the shell as there are many back channels
 * where the cluster time metadata can propagated, making it inherently racy.
 */
(function() {
"use strict";

function assertHasClusterTimeAndOperationTime(res) {
    assert.hasFields(res, ['$clusterTime']);
    assert.hasFields(res.$clusterTime, ['clusterTime', 'signature']);
}

var st = new ShardingTest({shards: {rs0: {nodes: 3}}});
st.s.adminCommand({enableSharding: 'test'});

var db = st.s.getDB('test');

var res = db.runCommand({insert: 'user', documents: [{x: 10}]});
assert.commandWorked(res);
assertHasClusterTimeAndOperationTime(res);

res = db.runCommand({blah: 'blah'});
assert.commandFailed(res);
assertHasClusterTimeAndOperationTime(res);

res = db.runCommand({insert: "user", documents: [{x: 10}], writeConcern: {blah: "blah"}});
assert.commandFailed(res);
assertHasClusterTimeAndOperationTime(res);

res = st.rs0.getPrimary().adminCommand({replSetGetStatus: 1});

// Cluster time may advance after replSetGetStatus finishes executing and before its logical
// time metadata is computed, in which case the response's $clusterTime will be greater than the
// appliedOpTime timestamp in its body. Assert the timestamp is <= $clusterTime to account for
// this.
var appliedTime = res.optimes.appliedOpTime.ts;
var logicalTimeMetadata = res.$clusterTime;
assert.lte(timestampCmp(appliedTime, logicalTimeMetadata.clusterTime),
           0,
           'appliedTime: ' + tojson(appliedTime) + ' not less than or equal to clusterTime: ' +
               tojson(logicalTimeMetadata.clusterTime));

assert.commandWorked(db.runCommand({ping: 1, '$clusterTime': logicalTimeMetadata}));

db = st.rs0.getPrimary().getDB('testRS');
res = db.runCommand({insert: 'user', documents: [{x: 10}]});
assert.commandWorked(res);
assertHasClusterTimeAndOperationTime(res);

res = db.runCommand({blah: 'blah'});
assert.commandFailed(res);
assertHasClusterTimeAndOperationTime(res);

res = db.runCommand({insert: "user", documents: [{x: 10}], writeConcern: {blah: "blah"}});
assert.commandFailed(res);
assertHasClusterTimeAndOperationTime(res);

st.stop();
})();