summaryrefslogtreecommitdiff
path: root/jstests/sharding/verify_refine_collection_shard_key_opmessage.js
blob: 0da36485918234585b8e77af1b6f47b8cd473bf9 (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
/**
 * Test that a special {op: 'n'} oplog event is created during refineCollectionShardKey command.
 *
 * @tags: [requires_fcv_61]
 */

// Cannot run the filtering metadata check on tests that run refineCollectionShardKey.
TestData.skipCheckShardFilteringMetadata = true;

(function() {
"use strict";

const st = new ShardingTest({mongos: 1, shards: 2, rs: {nodes: 2}});

const mongos = st.s0;
const primaryShard = st.shard0.shardName;
const kDbName = 'refineShardKey';
const kCollName = 'coll';
const kNsName = kDbName + '.' + kCollName;

assert.commandWorked(mongos.adminCommand({enableSharding: kDbName}));
st.ensurePrimaryShard(kDbName, primaryShard);
assert.commandWorked(mongos.adminCommand({shardCollection: kNsName, key: {_id: 1}}));
assert.commandWorked(mongos.getCollection(kNsName).createIndex({_id: 1, akey: 1}));
assert.commandWorked(
    mongos.adminCommand({refineCollectionShardKey: kNsName, key: {_id: 1, akey: 1}}));

const o2expected = {
    refineCollectionShardKey: "refineShardKey.coll",
    shardKey: {_id: 1, akey: 1},
    oldShardKey: {_id: 1}
};

const oplog = st.rs0.getPrimary().getCollection("local.oplog.rs");
const logEntry = oplog.findOne({ns: kNsName, op: 'n', "o2.refineCollectionShardKey": kNsName});
assert(logEntry != null);
assert.eq(bsonWoCompare(logEntry.o2, o2expected), 0, logEntry);

st.stop();
})();