summaryrefslogtreecommitdiff
path: root/jstests/core/apply_ops_index_collation.js
blob: 135cb37483fb9ff2f28b03aa5a927059dbf36d50 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// Tests creation of indexes using applyOps for collections with a non-simple default collation.
// Indexes created through applyOps should be built exactly according to their index spec, without
// inheriting the collection default collation, since this is how the oplog entries are replicated.

// @tags: [
//     # Cannot implicitly shard accessed collections because of collection existing when none
//     # expected.
//     assumes_no_implicit_collection_creation_after_drop,
//     requires_non_retryable_commands,
//
//     # applyOps uses the oplog that require replication support
//     requires_replication,
// ]

(function() {
    "use strict";

    load("jstests/libs/get_index_helpers.js");
    load('jstests/libs/uuid_util.js');

    const coll = db.apply_ops_index_collation;
    coll.drop();
    assert.commandWorked(db.createCollection(coll.getName(), {collation: {locale: "fr_CA"}}));
    const uuid = getUUIDFromListCollections(db, coll.getName());

    // An index created using a createIndexes-style oplog entry with a non-simple collation does not
    // inherit the collection default collation.
    let res = assert.commandWorked(db.adminCommand({
        applyOps: [{
            op: "c",
            ns: coll.getFullName(),
            ui: uuid,
            o: {
                createIndexes: coll.getFullName(),
                v: 2,
                key: {a: 1},
                name: "a_1_en",
                collation: {
                    locale: "en_US",
                    caseLevel: false,
                    caseFirst: "off",
                    strength: 3,
                    numericOrdering: false,
                    alternate: "non-ignorable",
                    maxVariable: "punct",
                    normalization: false,
                    backwards: false,
                    version: "57.1"
                }
            }
        }]
    }));
    let allIndexes = coll.getIndexes();
    let spec = GetIndexHelpers.findByName(allIndexes, "a_1_en");
    assert.neq(null, spec, "Index 'a_1_en' not found: " + tojson(allIndexes));
    assert.eq(2, spec.v, tojson(spec));
    assert.eq("en_US", spec.collation.locale, tojson(spec));

    // An index created using a createIndexes-style oplog entry with a simple collation does not
    // inherit the collection default collation.
    res = assert.commandWorked(db.adminCommand({
        applyOps: [{
            op: "c",
            ns: coll.getFullName(),
            ui: uuid,
            o: {createIndexes: coll.getFullName(), v: 2, key: {a: 1}, name: "a_1"}
        }]
    }));
    allIndexes = coll.getIndexes();
    spec = GetIndexHelpers.findByName(allIndexes, "a_1");
    assert.neq(null, spec, "Index 'a_1' not found: " + tojson(allIndexes));
    assert.eq(2, spec.v, tojson(spec));
    assert(!spec.hasOwnProperty("collation"), tojson(spec));

    // A v=1 index created using a createIndexes-style oplog entry does not inherit the collection
    // default collation.
    res = assert.commandWorked(db.adminCommand({
        applyOps: [{
            op: "c",
            ns: coll.getFullName(),
            ui: uuid,
            o: {createIndexes: coll.getFullName(), v: 1, key: {b: 1}, name: "b_1"}
        }]
    }));
    allIndexes = coll.getIndexes();
    spec = GetIndexHelpers.findByName(allIndexes, "b_1");
    assert.neq(null, spec, "Index 'b_1' not found: " + tojson(allIndexes));
    assert.eq(1, spec.v, tojson(spec));
    assert(!spec.hasOwnProperty("collation"), tojson(spec));

    // An index created using an insert-style oplog entry with a non-simple collation does not
    // inherit the collection default collation.
    res = assert.commandWorked(db.adminCommand({
        applyOps: [{
            op: "i",
            ns: db.system.indexes.getFullName(),
            o: {
                v: 2,
                key: {c: 1},
                name: "c_1_en",
                ns: coll.getFullName(),
                collation: {
                    locale: "en_US",
                    caseLevel: false,
                    caseFirst: "off",
                    strength: 3,
                    numericOrdering: false,
                    alternate: "non-ignorable",
                    maxVariable: "punct",
                    normalization: false,
                    backwards: false,
                    version: "57.1"
                }
            }
        }]
    }));
    allIndexes = coll.getIndexes();
    spec = GetIndexHelpers.findByName(allIndexes, "c_1_en");
    assert.neq(null, spec, "Index 'c_1_en' not found: " + tojson(allIndexes));
    assert.eq(2, spec.v, tojson(spec));
    assert.eq("en_US", spec.collation.locale, tojson(spec));

    // An index created using an insert-style oplog entry with a simple collation does not inherit
    // the collection default collation.
    res = assert.commandWorked(db.adminCommand({
        applyOps: [{
            op: "i",
            ns: db.system.indexes.getFullName(),
            o: {v: 2, key: {c: 1}, name: "c_1", ns: coll.getFullName()}
        }]
    }));
    allIndexes = coll.getIndexes();
    spec = GetIndexHelpers.findByName(allIndexes, "c_1");
    assert.neq(null, spec, "Index 'c_1' not found: " + tojson(allIndexes));
    assert.eq(2, spec.v, tojson(spec));
    assert(!spec.hasOwnProperty("collation"), tojson(spec));

    // A v=1 index created using an insert-style oplog entry does not inherit the collection default
    // collation.
    res = assert.commandWorked(db.adminCommand({
        applyOps: [{
            op: "i",
            ns: db.system.indexes.getFullName(),
            o: {v: 1, key: {d: 1}, name: "d_1", ns: coll.getFullName()}
        }]
    }));
    allIndexes = coll.getIndexes();
    spec = GetIndexHelpers.findByName(allIndexes, "d_1");
    assert.neq(null, spec, "Index 'd_1' not found: " + tojson(allIndexes));
    assert.eq(1, spec.v, tojson(spec));
    assert(!spec.hasOwnProperty("collation"), tojson(spec));
})();