summaryrefslogtreecommitdiff
path: root/jstests/sharding/movechunk_with_moveParanoia.js
blob: 3b63b9b8eea3d307a38b7e24bb68386687a76335 (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
/**
 * This test sets moveParanoia flag and then check that the directory is created with the moved data
 */

load("jstests/sharding/movechunk_include.js");

var st = setupMoveChunkTest({moveParanoia: ""});

var shards = [st.shard0, st.shard1];
var foundMoveChunk = false;
for (i in shards) {
    var dbpath = shards[i].adminCommand("getCmdLineOpts").parsed.storage.dbPath;
    var hasMoveChunkDir = 0 !=
        ls(dbpath)
            .filter(function(a) {
                return null != a.match("moveChunk");
            })
            .length;
    foundMoveChunk = foundMoveChunk || hasMoveChunkDir;
}

assert(foundMoveChunk, "did not find moveChunk directory!");

st.stop();