summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/initialize_from_old_node.js
blob: ad37397d50cec53742091c4656d85bbdd1aca4d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * This is a regression test for SERVER-16189, to make sure a replica set with both current and 
 * prior version nodes can be initialized from the prior version node.
 */

(function() {
    "use strict";
    var name = "initialize_from_old";
    var oldVersion = 'last-stable';
    var newVersion = 'latest';
    var nodes = {
        n0: {binVersion: oldVersion},
        n1: {binVersion: newVersion},
        n2: {binVersion: newVersion}
    };
    var rst = new ReplSetTest({nodes: nodes, name: name});
    var conns = rst.startSet();
    var oldNode = conns[0];
    var config = rst.getReplSetConfig();
    var response = oldNode.getDB("admin").runCommand({replSetInitiate: config});
    assert.eq(response.ok, 1);
})();