summaryrefslogtreecommitdiff
path: root/jstests/slowNightly/sharding_jscore_passthrough.js
blob: 0d164c6e92cd7662365a1573872cf131baf91bed (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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
var myShardingTest = new ShardingTest("sharding_passthrough", 2, 0, 1);
myShardingTest.adminCommand({ enablesharding : "test" });

var db = myShardingTest.getDB("test");
db.getMongo().forceWriteMode("commands");
_useWriteCommandsDefault = function() { return true; }; // for tests launching parallel shells.

var res = db.adminCommand({ setParameter: 1, useClusterWriteCommands: true });
var files = listFiles("jstests/core");

var runnerStart = new Date();

files.forEach(function(x) {
    if (/[\/\\]_/.test(x.name) || ! /\.js$/.test(x.name)) {
        print(" >>>>>>>>>>>>>>> skipping " + x.name);
        return;
    }

    // Notes:

    // apply_ops1, apply_ops2: nothing works, dunno why yet. SERVER-1439.

    // copydb, copydb2: copyDatabase seems not to work at all in
    //                  the ShardingTest setup.  SERVER-1440.

    // cursor8: cursorInfo different/meaningless(?) in mongos.
    //          closeAllDatabases may not work through mongos
    //          SERVER-1441.
    //          deal with cursorInfo in mongos SERVER-1442.

    // dbcase: Database names are case-insensitive under ShardingTest?
    //         SERVER-1443.

    // These are all SERVER-1444
    // count5: limit() and maybe skip() may be unreliable.
    // geo3: limit() not working, I think.
    // or4: skip() not working?

    // shellkillop: dunno yet.  SERVER-1445

    // update_setOnInsert: db.setPrifilingLevel is not working. SERVER-8653

    // These should simply not be run under sharding:
    // dbadmin: Uncertain  Cut-n-pasting its contents into mongo worked.
    // error1: getpreverror not supported under sharding.
    // fsync, fsync2: isn't supported through mongos.
    // remove5: getpreverror, I think. don't run.
    // update4: getpreverror don't run.

    // Around July 20, command passthrough went away, and these
    // commands weren't implemented:
    // clean cloneCollectionAsCapped copydbgetnonce dataSize
    // datasize dbstats deleteIndexes dropIndexes forceerror
    // getnonce logout medianKey profile reIndex repairDatabase
    // reseterror splitVector validate

    /* missing commands :
     * forceerror and switchtoclienterrors
     * cloneCollectionAsCapped
     * splitvector
     * profile (apitest_db, cursor6, evalb)
     * copydbgetnonce
     * dbhash
     * medianKey
     * clean (apitest_dbcollection)
     * logout and getnonce
     */

    var failsInShardingPattern = new RegExp('[\\/\\\\](' +
        'error3|' +
        'capped.*|' +
        'apitest_db|' +
        'cursor6|' +
        'copydb-auth|' +
        'profile\\d*|' +
        'dbhash|' +
        'dbhash2|' +
        'median|' +
        'apitest_dbcollection|' +
        'evalb|' +
        'evald|' +
        'eval_nolock|' +
        'auth1|' +
        'auth2|' +
        'dropdb_race|' +
        'unix_socket\\d*' +
        ')\.js$');

    // These are bugs (some might be fixed now):
    var mightBeFixedPattern = new RegExp('[\\/\\\\](' +
        'apply_ops[12]|' +
        'count5|' +
        'cursor8|' +
        'or4|' +
        'shellkillop|' +
        'update4|' +
        'update_setOnInsert|' +
        'profile\\d*|' +
        'max_time_ms|' + // Will be fixed when SERVER-2212 is resolved.
        'fts_querylang|' + // Will be fixed when SERVER-9063 is resolved.
        'fts_projection' +
        ')\.js$');

    // These aren't supposed to get run under sharding:
    var notForShardingPattern = new RegExp('[\\/\\\\](' +
        'dbadmin|' +
        'error1|' +
        'fsync|' +
        'fsync2|' +
        'geo.*|' +
        'indexh|' +
        'remove5|' +
        'update4|' +
        'loglong|' +
        'logpath|' +
        'notablescan|' +
        'compact.*|' +
        'check_shard_index|' +
        'bench_test.*|' +
        'mr_replaceIntoDB|' +
        'mr_auth|' +
        'queryoptimizera|' +
        'indexStatsCommand|' +
        'reversecursor|' +
        'block_check_supported|' +
        'stages.*|' +
        'touch1|' +
        'dbcase|' + // undo after fixing SERVER-11735
        'stats' + // tests db.stats().dataFileVersion, which doesn't appear in sharded db.stats()
        ')\.js$');

    if (failsInShardingPattern.test(x.name)) {
        print(" !!!!!!!!!!!!!!! skipping test that has failed under sharding " +
              "but might not anymore " + x.name);
        return;
    }

    if (mightBeFixedPattern.test(x.name)) {
        print(" !!!!!!!!!!!!!!! skipping test that has failed under sharding " +
              "but might not anymore " + x.name);
        return;
    }

    if (notForShardingPattern.test(x.name)) {
        print(" >>>>>>>>>>>>>>> skipping test that would correctly fail under sharding " + x.name);
        return;
    }
    
    print(" *******************************************");
    print("         Test : " + x.name + " ...");
    print("                " +
        Date.timeFunc(function() {
            load(x.name);
        }, 1) + "ms");

    gc(); // TODO SERVER-8683: remove gc() calls once resolved
    
    // Reset "db" variable, just in case someone broke the rules and used it themselves 
    db = myShardingTest.getDB("test");
});


myShardingTest.stop();

var runnerEnd = new Date();

print("total runner time: " + ((runnerEnd.getTime() - runnerStart.getTime()) / 1000) + "secs");