summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/directoryperdb.js
blob: 6e2522d62a213bf818929148612284e6636cce73 (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
(function() {
    'use strict';
    var baseDir = "jstests_directoryperdb";
    var port = allocatePorts( 1 )[ 0 ];
    var dbpath = MongoRunner.dataPath + baseDir + "/";

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

    var m = MongoRunner.runMongod({
        dbpath: dbpath,
        port: port,
        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(port);

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