summaryrefslogtreecommitdiff
path: root/jstests/serverless/shard_split_tenant_access_blocking.js
blob: 18226d984b2b6ed181e6aeba6050f28d098a3ea7 (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
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
/*
 * Test that tenant access blockers are installed and prevent writes during shard split
 *
 * @tags: [requires_fcv_52, featureFlagShardSplit, serverless]
 */

load("jstests/libs/fail_point_util.js");
load('jstests/libs/parallel_shell_helpers.js');
load("jstests/serverless/libs/basic_serverless_test.js");

(function() {
"use strict";

jsTestLog("Starting runBlocking");

// Skip db hash check because secondary is left with a different config.
TestData.skipCheckDBHashes = true;

const test =
    new BasicServerlessTest({recipientTagName: "recipientNode", recipientSetName: "recipient"});
test.addRecipientNodes();

const donorPrimary = test.donor.getPrimary();
const migrationId = UUID();
const tenantIds = ["tenant1", "tenant2"];
const maxTimeMS = 1 * 2000;  // 2 seconds

jsTestLog("Asserting no state document exist before command");
assert.isnull(findMigration(donorPrimary, migrationId));

jsTestLog("Asserting we can write before the migration");
tenantIds.forEach(id => {
    const tenantDB = donorPrimary.getDB(id + "_data");
    let insertedObj = {name: id + "1", payload: "testing_data"};
    assert.commandWorked(
        tenantDB.runCommand({insert: "testing_collection", documents: [insertedObj], maxTimeMS}));
});

// configure failpoints
const adminDb = donorPrimary.getDB("admin");
const blockingFailPoint = configureFailPoint(adminDb, "pauseShardSplitAfterBlocking");

// TODO(SERVER-64168): remove this when split is ready
configureFailPoint(adminDb, "skipShardSplitWaitForSplitAcceptance");

jsTestLog("Running commitShardSplit command");
const awaitCommand = startParallelShell(
    funWithArgs(function(migrationId, recipientTagName, recipientSetName, tenantIds) {
        assert.commandWorked(db.adminCommand(
            {commitShardSplit: 1, migrationId, recipientTagName, recipientSetName, tenantIds}));
    }, migrationId, test.recipientTagName, test.recipientSetName, tenantIds), donorPrimary.port);

blockingFailPoint.wait();

jsTestLog("Asserting state document is in blocking state");
assertMigrationState(donorPrimary, migrationId, "blocking");

jsTestLog("Asserting we cannot write in blocking state");
tenantIds.forEach(id => {
    const tenantDB = donorPrimary.getDB(id + "_data");
    let insertedObj = {name: id + "2", payload: "testing_data2"};
    let res =
        tenantDB.runCommand({insert: "testing_collection", documents: [insertedObj], maxTimeMS});
    assert.commandFailedWithCode(res, ErrorCodes.MaxTimeMSExpired);
});

jsTestLog("Disabling failpoints and waiting for command to complete");
blockingFailPoint.off();
awaitCommand();

jsTestLog("Asserting state document exist after command");
assertMigrationState(donorPrimary, migrationId, "committed");

jsTestLog("Running forgetShardSplit command");
assert.commandWorked(adminDb.runCommand({forgetShardSplit: 1, migrationId}));

test.stop();
})();