summaryrefslogtreecommitdiff
path: root/jstests/replsets/invalid_index_spec.js
blob: 7bca237351e3fa43dc47d6c582b345621c8eda1f (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
/**
 * Confirm that replication of an invalid index specification causes server abort (where index
 * version is >= 2).
 */

(function() {
    "use strict";

    load("jstests/replsets/rslib.js");

    const testName = "invalid_index_spec";
    const replTest = new ReplSetTest({nodes: 2});
    replTest.startSet();
    replTest.initiate();

    let primaryDB = replTest.getPrimary().getDB(testName);
    let secondary = replTest.getSecondary();
    let secondaryAdminDB = secondary.getDB("admin");

    // Set a fail point that allows for index creation with invalid spec fields.
    primaryDB.adminCommand(
        {configureFailPoint: "skipIndexCreateFieldNameValidation", mode: "alwaysOn"});

    clearRawMongoProgramOutput();

    // Create a V1 index with invalid spec field. Expected to replicate without error or server
    // abort.
    assert.commandWorked(primaryDB.runCommand(
        {createIndexes: "test", indexes: [{v: 1, name: "w_1", key: {w: 1}, invalidOption1: 1}]}));

    // Create a V2 index with invalid spec field. Expected to cause server abort on replication.
    assert.commandWorked(primaryDB.runCommand(
        {createIndexes: "test", indexes: [{v: 2, name: "x_1", key: {x: 1}, invalidOption2: 1}]}));

    assert.soon(function() {
        try {
            secondaryAdminDB.runCommand({ping: 1});
        } catch (e) {
            return true;
        }
        return false;
    }, "Node did not terminate due to invalid index spec", 60 * 1000);

    // fassert() calls std::abort(), which returns a different exit code for Windows vs. other
    // platforms.
    const exitCode = MongoRunner.EXIT_ABRUPT;
    replTest.stop(secondary, undefined, {allowedExitCode: exitCode});

    // During the transition from the old code path in IndexBuilder to IndexBuildsCoordinator, we
    // will accept the fatal assertion code from either component.
    const msgIndexBuilder = "Fatal Assertion 50769";
    const msgIndexBuildsCoordinator = "Fatal assertion 34437";
    const msgIndexError = "InvalidIndexSpecificationOption: The field 'invalidOption2'";

    assert((rawMongoProgramOutput().match(msgIndexBuilder) ||
            rawMongoProgramOutput().match(msgIndexBuildsCoordinator)) &&
               rawMongoProgramOutput().match(msgIndexError),
           "Replication should have aborted on invalid index specification");

    replTest.stopSet();
})();