summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/directoryperdb.js
blob: 52d3d700006e210254fe8318c09528b3c4e9ba57 (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
/**
 * Tests that a mongod started with --directoryperdb will write data for database x into a direcotry
 * named x inside the dbpath.
 *
 * This test does not make sense for in-memory storage engines, since they will not produce any data
 * files.
 * @tags: [requires_persistence]
 */

(function() {
    'use strict';

    var baseDir = "jstests_directoryperdb";
    var dbpath = MongoRunner.dataPath + baseDir + "/";

    var isDirectoryPerDBSupported = jsTest.options().storageEngine == "mmapv1" ||
        jsTest.options().storageEngine == "wiredTiger" || !jsTest.options().storageEngine;

    var m = MongoRunner.runMongod({dbpath: dbpath, directoryperdb: ''});

    if (!isDirectoryPerDBSupported) {
        assert.isnull(m, 'storage engine without directoryperdb support should fail to start up');
        return;
    } else {
        assert(m, 'storage engine with directoryperdb support failed to start up');
    }

    var db = m.getDB("foo");
    db.bar.insert({x: 1});
    assert.eq(1, db.bar.count());

    db.adminCommand({fsync: 1});
    var dbpathFiles = listFiles(dbpath);
    var files = dbpathFiles.filter(function(z) {
        return z.name.endsWith("/foo");
    });
    assert.eq(1, files.length, 'dbpath does not contain "foo" directory: ' + tojson(dbpathFiles));

    files = listFiles(files[0].name);
    assert(files.length > 0);

    MongoRunner.stopMongod(m.port);

    // Subsequent attempt to start server using same dbpath without directoryperdb should fail.
    assert.isnull(MongoRunner.runMongod({dbpath: dbpath, restart: true}));
}());