Files
mongo/jstests/multiVersion/genericSetFCVUsage/initialize_from_old_node.js
Matt Broadstone 771dabd098 SERVER-81339 Convert ReplSetTest and ShardingTest to modules (#26332)
GitOrigin-RevId: 744aa110a53786b23c62ff53f87a1418b5991e8d
2024-08-20 22:00:49 +00:00

27 lines
1.0 KiB
JavaScript

/*
* 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.
*/
import {ReplSetTest} from "jstests/libs/replsettest.js";
var name = "initialize_from_old";
// Test old version with both "last-lts" and "last-continuous".
for (let oldVersion of ["last-lts", "last-continuous"]) {
jsTestLog("Testing replSetInitiate with " + oldVersion);
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.commandWorked(response);
// Wait for secondaries to finish their initial sync before shutting down the cluster.
rst.awaitSecondaryNodes();
rst.stopSet();
}