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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/**
* Tests that tenant migration fails with NamespaceExists if the recipient already has tenant's
* data.
*
* @tags: [
* incompatible_with_eft,
* incompatible_with_macos,
* incompatible_with_windows_tls,
* requires_majority_read_concern,
* requires_persistence,
* serverless,
* ]
*/
(function() {
"use strict";
load("jstests/libs/fail_point_util.js");
load("jstests/libs/uuid_util.js");
load("jstests/replsets/libs/tenant_migration_test.js");
const kGarbageCollectionParams = {
// Set the delay before a donor state doc is garbage collected to be short to speed up
// the test.
tenantMigrationGarbageCollectionDelayMS: 3 * 1000,
// Set the TTL monitor to run at a smaller interval to speed up the test.
ttlMonitorSleepSecs: 1,
};
const donorRst = new ReplSetTest({
nodes: 1,
name: "donor",
nodeOptions: Object.assign(TenantMigrationUtil.makeX509OptionsForTest().donor,
{setParameter: kGarbageCollectionParams})
});
donorRst.startSet();
donorRst.initiate();
const tenantMigrationTest = new TenantMigrationTest(
{name: jsTestName(), donorRst, sharedOptions: {setParameter: kGarbageCollectionParams}});
const kTenantId = "testTenantId";
const kNs = kTenantId + "_testDb.testColl";
assert.commandWorked(tenantMigrationTest.getDonorPrimary().getCollection(kNs).insert({_id: 0}));
jsTest.log("Start a tenant migration and verify that it commits successfully");
(() => {
const migrationId = UUID();
const migrationOpts = {
migrationIdString: extractUUIDFromObject(migrationId),
tenantId: kTenantId,
};
TenantMigrationTest.assertCommitted(tenantMigrationTest.runMigration(migrationOpts));
assert.commandWorked(tenantMigrationTest.forgetMigration(migrationOpts.migrationIdString));
tenantMigrationTest.waitForMigrationGarbageCollection(migrationId, kTenantId);
})();
jsTest.log(
"Retry the migration without dropping tenant database on the recipient and verify that " +
"the migration aborted with NamespaceExists as the abort reason");
(() => {
const migrationId = UUID();
const migrationOpts = {
migrationIdString: extractUUIDFromObject(migrationId),
tenantId: kTenantId,
};
TenantMigrationTest.assertAborted(tenantMigrationTest.runMigration(migrationOpts),
ErrorCodes.NamespaceExists);
})();
donorRst.stopSet();
tenantMigrationTest.stop();
})();
|