mirror of https://github.com/mongodb/mongo
22 lines
818 B
JavaScript
22 lines
818 B
JavaScript
/**
|
|
* Tests that sharding state is properly initialized on shard members that undergo startup recovery.
|
|
*
|
|
* We control our own failovers, and we also need the RSM to react reasonably quickly to those.
|
|
* @tags: [requires_persistence, does_not_support_stepdowns, requires_streamable_rsm]
|
|
*/
|
|
|
|
import {ShardingTest} from "jstests/libs/shardingtest.js";
|
|
import {ShardingStateTest} from "jstests/sharding/libs/sharding_state_test.js";
|
|
|
|
const st = new ShardingTest({config: 1, shards: {rs0: {nodes: 1}}});
|
|
const rs = st.rs0;
|
|
let primary = rs.getPrimary();
|
|
|
|
primary = ShardingStateTest.putNodeInStartupRecovery({replSet: rs, node: primary});
|
|
|
|
jsTestLog("Ensuring node is up as a primary and checking sharding state");
|
|
ShardingStateTest.failoverToMember(rs, primary);
|
|
ShardingStateTest.checkShardingState(st);
|
|
|
|
st.stop();
|