summaryrefslogtreecommitdiff
path: root/jstests/core/cannot_create_system_dot_indexes.js
blob: 50928d5a27df6a82fedc1049b8e97983e653451a (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
// Tests that a user cannot create the 'system.indexes' collection.
// @tags: [requires_non_retryable_commands]
(function() {
    "use strict";

    // Cannot create system.indexes using the 'create' command.
    assert.commandFailedWithCode(db.createCollection("system.indexes"),
                                 ErrorCodes.InvalidNamespace);
    assert.eq(
        0, db.getCollectionInfos({name: "system.indexes"}).length, tojson(db.getCollectionInfos()));

    // Cannot create system.indexes using the 'renameCollection' command.
    db.coll.drop();
    assert.commandWorked(db.coll.insert({}));
    assert.commandFailed(db.coll.renameCollection("system.indexes"));
    assert.eq(
        0, db.getCollectionInfos({name: "system.indexes"}).length, tojson(db.getCollectionInfos()));

    // Cannot create system.indexes using the 'createIndexes' command.
    assert.commandFailedWithCode(db.system.indexes.createIndex({a: 1}),
                                 ErrorCodes.InvalidNamespace);
    assert.eq(
        0, db.getCollectionInfos({name: "system.indexes"}).length, tojson(db.getCollectionInfos()));

    // Cannot create system.indexes using the 'insert' command.
    assert.commandWorked(
        db.system.indexes.insert({ns: "test.coll", v: 2, key: {a: 1}, name: "a_1"}));
    assert.eq(
        0, db.getCollectionInfos({name: "system.indexes"}).length, tojson(db.getCollectionInfos()));

    // Cannot create system.indexes using the 'update' command with upsert=true.
    assert.commandFailedWithCode(
        db.system.indexes.update({ns: "test.coll", v: 2, key: {a: 1}, name: "a_1"},
                                 {$set: {name: "a_1"}},
                                 {upsert: true}),
        ErrorCodes.InvalidNamespace);
    assert.eq(
        0, db.getCollectionInfos({name: "system.indexes"}).length, tojson(db.getCollectionInfos()));

    // Cannot create system.indexes using the 'findAndModify' command with upsert=true.
    let error = assert.throws(() => {
        db.system.indexes.findAndModify({
            query: {ns: "test.coll", v: 2, key: {a: 1}, name: "a_1"},
            update: {$set: {name: "a_1"}},
            upsert: true
        });
    });
    assert.eq(error.code, ErrorCodes.InvalidNamespace);
    assert.eq(
        0, db.getCollectionInfos({name: "system.indexes"}).length, tojson(db.getCollectionInfos()));
}());