mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 09:06:21 +01:00
72 lines
2.8 KiB
JavaScript
72 lines
2.8 KiB
JavaScript
/**
|
|
* Verifies mismatching logical time objects are rejected by a sharded cluster when auth is on. In
|
|
* noPassthrough because auth is manually set.
|
|
*/
|
|
(function() {
|
|
"use strict";
|
|
|
|
// Given a valid logical time object, returns one with the same signature, but a mismatching
|
|
// cluster time.
|
|
function mismatchingLogicalTime(lt) {
|
|
return Object.merge(lt, {clusterTime: Timestamp(lt.clusterTime.getTime() + 100, 0)});
|
|
}
|
|
|
|
function assertRejectsMismatchingLogicalTime(db) {
|
|
let validTime = db.runCommand({isMaster: 1}).$logicalTime;
|
|
let mismatchingTime = mismatchingLogicalTime(validTime);
|
|
|
|
assert.commandFailedWithCode(
|
|
db.runCommand({isMaster: 1, $logicalTime: mismatchingTime}),
|
|
ErrorCodes.TimeProofMismatch,
|
|
"expected command with mismatching logical time and signature to be rejected");
|
|
}
|
|
|
|
function assertAcceptsValidLogicalTime(db) {
|
|
let validTime = db.runCommand({isMaster: 1}).$logicalTime;
|
|
assert.commandWorked(
|
|
testDB.runCommand({isMaster: 1, $logicalTime: validTime}),
|
|
"expected command with valid logical time and signature to be accepted");
|
|
}
|
|
|
|
// Start the sharding test with auth on.
|
|
const st = new ShardingTest({
|
|
mongos: 1,
|
|
manualAddShard: true,
|
|
mongosWaitsForKeys: true,
|
|
other: {keyFile: "jstests/libs/key1"}
|
|
});
|
|
|
|
// Create admin user and authenticate as them.
|
|
st.s.getDB("admin").createUser({user: "foo", pwd: "bar", roles: jsTest.adminUserRoles});
|
|
st.s.getDB("admin").auth("foo", "bar");
|
|
|
|
// Add shard with auth enabled.
|
|
const rst = new ReplSetTest({nodes: 2});
|
|
rst.startSet({keyFile: "jstests/libs/key1", shardsvr: ""});
|
|
rst.initiate();
|
|
assert.commandWorked(st.s.adminCommand({addShard: rst.getURL()}));
|
|
|
|
const testDB = st.s.getDB("test");
|
|
|
|
// Unsharded collections reject mismatching logical times and accept valid ones.
|
|
assertRejectsMismatchingLogicalTime(testDB);
|
|
assertAcceptsValidLogicalTime(testDB);
|
|
|
|
// Initialize sharding.
|
|
assert.commandWorked(testDB.adminCommand({enableSharding: "test"}));
|
|
assert.commandWorked(
|
|
testDB.adminCommand({shardCollection: testDB.foo.getFullName(), key: {_id: 1}}));
|
|
|
|
// Sharded collections reject mismatching logical times and accept valid ones.
|
|
assertRejectsMismatchingLogicalTime(testDB);
|
|
assertAcceptsValidLogicalTime(testDB);
|
|
|
|
// Shards and config servers also reject mismatching times and accept valid ones.
|
|
assertRejectsMismatchingLogicalTime(rst.getPrimary().getDB("test"));
|
|
assertAcceptsValidLogicalTime(rst.getPrimary().getDB("test"));
|
|
assertRejectsMismatchingLogicalTime(st.configRS.getPrimary().getDB("admin"));
|
|
assertAcceptsValidLogicalTime(st.configRS.getPrimary().getDB("admin"));
|
|
|
|
st.stop();
|
|
})();
|