0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 00:17:37 +01:00
mongodb/jstests/sharding/cleanup_orphaned_basic.js
Matt Broadstone 771dabd098 SERVER-81339 Convert ReplSetTest and ShardingTest to modules (#26332)
GitOrigin-RevId: 744aa110a53786b23c62ff53f87a1418b5991e8d
2024-08-20 22:00:49 +00:00

99 lines
3.9 KiB
JavaScript

// Basic tests of cleanupOrphaned. Validates that non allowed uses of the cleanupOrphaned
// command fail.
//
// requires_persistence because it restarts a shard.
// @tags: [requires_persistence]
import {ShardingTest} from "jstests/libs/shardingtest.js";
// This test restarts a shard.
TestData.skipCheckingUUIDsConsistentAcrossCluster = true;
if (!jsTestOptions().useAutoBootstrapProcedure) { // TODO: SERVER-80318 Remove block
/*****************************************************************************
* Unsharded mongod.
****************************************************************************/
// cleanupOrphaned fails against unsharded mongod.
var mongod = MongoRunner.runMongod();
assert.commandFailed(mongod.getDB('admin').runCommand({cleanupOrphaned: 'foo.bar'}));
MongoRunner.stopMongod(mongod);
}
/*****************************************************************************
* Bad invocations of cleanupOrphaned command.
****************************************************************************/
var st = new ShardingTest({other: {rs: true, rsOptions: {nodes: 2}}});
var mongos = st.s0;
var mongosAdmin = mongos.getDB('admin');
var dbName = 'foo';
var collectionName = 'bar';
var ns = dbName + '.' + collectionName;
assert.commandWorked(
mongosAdmin.runCommand({enableSharding: dbName, primaryShard: st.shard0.shardName}));
var coll = mongos.getCollection(ns);
// cleanupOrphaned fails against mongos ('no such command'): it must be run
// on mongod.
assert.commandFailed(mongosAdmin.runCommand({cleanupOrphaned: ns}));
// cleanupOrphaned must be run on admin DB.
var shardFooDB = st.shard0.getDB(dbName);
assert.commandFailed(shardFooDB.runCommand({cleanupOrphaned: ns}));
// Must be run on primary.
var secondaryAdmin = st.rs0.getSecondary().getDB('admin');
var response = secondaryAdmin.runCommand({cleanupOrphaned: ns});
print('cleanupOrphaned on secondary:');
printjson(response);
assert.commandFailed(response);
var shardAdmin = st.shard0.getDB('admin');
var badNS = ' \\/."*<>:|?';
assert.commandFailed(shardAdmin.runCommand({cleanupOrphaned: badNS}));
// cleanupOrphaned works on sharded collection.
assert.commandWorked(mongosAdmin.runCommand({shardCollection: ns, key: {_id: 1}}));
assert.commandWorked(shardAdmin.runCommand({cleanupOrphaned: ns}));
/*****************************************************************************
* Bad startingFromKeys.
****************************************************************************/
function testBadStartingFromKeys(shardAdmin) {
// startingFromKey of MaxKey.
response = shardAdmin.runCommand({cleanupOrphaned: ns, startingFromKey: {_id: MaxKey}});
assert.commandWorked(response);
assert.eq(null, response.stoppedAtKey);
// startingFromKey doesn't match number of fields in shard key.
assert.commandFailed(shardAdmin.runCommand(
{cleanupOrphaned: ns, startingFromKey: {someKey: 'someValue', someOtherKey: 1}}));
// startingFromKey matches number of fields in shard key but not field names.
assert.commandFailed(
shardAdmin.runCommand({cleanupOrphaned: ns, startingFromKey: {someKey: 'someValue'}}));
var coll2 = mongos.getCollection('foo.baz');
assert.commandWorked(
mongosAdmin.runCommand({shardCollection: coll2.getFullName(), key: {a: 1, b: 1}}));
// startingFromKey doesn't match number of fields in shard key.
assert.commandFailed(shardAdmin.runCommand(
{cleanupOrphaned: coll2.getFullName(), startingFromKey: {someKey: 'someValue'}}));
// startingFromKey matches number of fields in shard key but not field names.
assert.commandFailed(shardAdmin.runCommand(
{cleanupOrphaned: coll2.getFullName(), startingFromKey: {a: 'someValue', c: 1}}));
}
// Note the 'startingFromKey' parameter is validated FCV is 4.4+, but is not otherwise used (in
// FCV 4.4+, cleanupOrphaned waits for there to be no orphans in the entire key space).
testBadStartingFromKeys(shardAdmin);
st.stop();