summaryrefslogtreecommitdiff
path: root/test/qa-tests/jstests/restore/24_to_28.js
blob: d818b60539336163a4bbfd4cc3cbc0fb663b29b2 (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
// This test requires mongo 2.4.x, and mongo 3.0.0 releases
// @tags: [requires_mongo_24, requires_mongo_30]
(function() {

    load("jstests/configs/standard_dump_targets.config.js");

    // skip tests requiring wiredTiger storage engine on pre 3.0 mongod
    if (TestData && TestData.storageEngine === 'wiredTiger')
        return

    // Skip this test if running with SSL turned on, because the common tool args are not
    // compatible with 2.4 servers.
    if (TestData && TestData.useSSL) {
        return
    }
    // Tests using mongorestore to restore a dump from a 2.4 mongod to a 3.0 mongod.

    jsTest.log('Testing running mongorestore restoring data from a 2.4 mongod to'+
            ' a 3.0 mongod');

    var toolTest = new ToolTest('24_to_28', { binVersion: '2.4' });
    toolTest.startDB('foo');

    // where we'll put the dump
    var dumpTarget = '24_to_28_dump';
    resetDbpath(dumpTarget);

    // the db and collection we'll be using
    var testDB = toolTest.db.getSiblingDB('test');
    var testColl = testDB.coll;

    // insert some documents
    for (var i = 0; i < 50; i++) {
        testColl.insert({ _id: i });
    }
    // sanity check the insert worked
    assert.eq(50, testColl.count());

    // dump the data 
    var ret = toolTest.runTool.apply(toolTest,['dump'].concat(getDumpTarget(dumpTarget)));
    assert.eq(0, ret);

    // drop the database
    testDB.dropDatabase();

    // restart the mongod as a 3.0
    stopMongod(toolTest.port);
    toolTest.m = null;
    toolTest.db = null;
    delete toolTest.options.binVersion;
    toolTest.startDB('foo');

    // refresh the db and coll reference
    testDB = toolTest.db.getSiblingDB('test');
    testColl = testDB.coll;

    // restore the data
    ret = toolTest.runTool.apply(toolTest,['restore'].concat(getRestoreTarget(dumpTarget)));
    assert.eq(0, ret);

    // make sure the data was restored
    assert.eq(50, testColl.count());
    for (var i = 0; i < 50; i++) {
        assert.eq(1, testColl.count({ _id: i })); 
    }

    // success
    toolTest.stop();

}());