summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/create_indexes_shell_helper.js
blob: a42f6b9da87eaa002a0cecc7d9fa4f8ec91d7876 (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
(function() {
"use strict";
var t = db.create_indexes_shell_helper;
t.drop();

var mongo = db.getMongo();

try {
    var commandsRan = [];
    var insertsRan = [];
    var mockMongo = {
        getSecondaryOk: function() {
            return true;
        },
        runCommand: function(db, cmd, opts) {
            commandsRan.push({db: db, cmd: cmd, opts: opts});
            return {ok: 1.0};
        },
        getWriteConcern: function() {
            return null;
        },
        getMinWireVersion: function() {
            return mongo.getMinWireVersion();
        },
        getMaxWireVersion: function() {
            return mongo.getMaxWireVersion();
        },
        isReplicaSetMember: function() {
            return mongo.isReplicaSetMember();
        },
        isMongos: function() {
            return mongo.isMongos();
        },
        isCausalConsistency: function() {
            return false;
        },
        getClusterTime: function() {
            return null;
        },
    };

    db._mongo = mockMongo;
    db._session = new _DummyDriverSession(mockMongo);

    t.createIndexes([{x: 1}]);
    assert.eq(commandsRan.length, 1);
    assert(commandsRan[0].cmd.hasOwnProperty("createIndexes"));
    assert.eq(commandsRan[0].cmd["indexes"][0], {key: {x: 1}, name: "x_1"});

    commandsRan = [];

    t.createIndexes([{y: 1}, {z: -1}]);
    assert.eq(commandsRan.length, 1);
    assert(commandsRan[0].cmd.hasOwnProperty("createIndexes"));
    assert.eq(commandsRan[0].cmd["indexes"][0], {key: {y: 1}, name: "y_1"});
    assert.eq(commandsRan[0].cmd["indexes"][1], {key: {z: -1}, name: "z_-1"});

    commandsRan = [];

    t.createIndex({a: 1});
    assert.eq(commandsRan.length, 1);
    assert(commandsRan[0].cmd.hasOwnProperty("createIndexes"));
    assert.eq(commandsRan[0].cmd["indexes"][0], {key: {a: 1}, name: "a_1"});
} finally {
    db._mongo = mongo;
    db._session = new _DummyDriverSession(mongo);
}
}());