mirror of https://gitee.com/bigwinds/arangodb
597 lines
24 KiB
JavaScript
597 lines
24 KiB
JavaScript
/*jshint globalstrict:false, strict:false */
|
|
/*global assertTrue, assertFalse, assertEqual, fail, instanceInfo */
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief test synchronous replication in the cluster
|
|
///
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2016-2016 ArangoDB GmbH, Cologne, Germany
|
|
///
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
/// you may not use this file except in compliance with the License.
|
|
/// You may obtain a copy of the License at
|
|
///
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
///
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
/// See the License for the specific language governing permissions and
|
|
/// limitations under the License.
|
|
///
|
|
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
///
|
|
/// @author Max Neunhoeffer
|
|
/// @author Copyright 2016, ArangoDB GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
const jsunity = require("jsunity");
|
|
const arangodb = require("@arangodb");
|
|
const db = arangodb.db;
|
|
const ERRORS = arangodb.errors;
|
|
const _ = require("lodash");
|
|
const wait = require("internal").wait;
|
|
const request = require('@arangodb/request');
|
|
const suspendExternal = require("internal").suspendExternal;
|
|
const continueExternal = require("internal").continueExternal;
|
|
|
|
function getDBServers() {
|
|
var tmp = global.ArangoClusterInfo.getDBServers();
|
|
var servers = [];
|
|
for (var i = 0; i < tmp.length; ++i) {
|
|
servers[i] = tmp[i].serverId;
|
|
}
|
|
return servers;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief test suite
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
function SynchronousReplicationSuite() {
|
|
'use strict';
|
|
var cn = "UnitTestSyncRep";
|
|
var c;
|
|
var cinfo;
|
|
var ccinfo;
|
|
var shards;
|
|
if (!require('internal').debugSetFailAt) {
|
|
console.info("Failure Tests disabled, Skipping...");
|
|
return {};
|
|
}
|
|
function baseUrl(endpoint) { // arango.getEndpoint()
|
|
return endpoint.replace(/^tcp:/, 'http:').replace(/^ssl:/, 'https:');
|
|
};
|
|
/// @brief set failure point
|
|
function debugSetFailAt(endpoint, failAt) {
|
|
assertTrue(failAt !== undefined);
|
|
let res = request.put({
|
|
url: baseUrl(endpoint) + '/_admin/debug/failat/' + failAt,
|
|
body: ""
|
|
});
|
|
if (res.status !== 200) {
|
|
throw "Error seting failure point";
|
|
}
|
|
}
|
|
/// @brief remove failure point
|
|
function debugRemoveFailAt(endpoint, failAt) {
|
|
assertTrue(failAt !== undefined);
|
|
let res = request.delete({
|
|
url: baseUrl(endpoint) + '/_admin/debug/failat/' + failAt,
|
|
body: ""
|
|
});
|
|
if (res.status !== 200) {
|
|
throw "Error seting failure point";
|
|
}
|
|
}
|
|
/// @brief remove all failure points
|
|
function debugClearFailAt(endpoint) {
|
|
let res = request.delete({
|
|
url: baseUrl(endpoint) + '/_admin/debug/failat',
|
|
body: ""
|
|
});
|
|
if (res.status !== 200) {
|
|
throw "Error seting failure point";
|
|
}
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief find out servers for the system collections
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
function findCollectionServers(database, collection) {
|
|
var cinfo = global.ArangoClusterInfo.getCollectionInfo(database, collection);
|
|
var shard = Object.keys(cinfo.shards)[0];
|
|
return cinfo.shards[shard];
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief wait for synchronous replication
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
function waitForSynchronousReplication(database) {
|
|
console.info("Waiting for synchronous replication to settle...");
|
|
global.ArangoClusterInfo.flush();
|
|
cinfo = global.ArangoClusterInfo.getCollectionInfo(database, cn);
|
|
shards = Object.keys(cinfo.shards);
|
|
var count = 0;
|
|
var replicas;
|
|
while (++count <= 300) {
|
|
ccinfo = shards.map(
|
|
s => global.ArangoClusterInfo.getCollectionInfoCurrent(database, cn, s)
|
|
);
|
|
console.info("Plan:", cinfo.shards, "Current:", ccinfo.map(s => s.servers));
|
|
replicas = ccinfo.map(s => s.servers.length);
|
|
if (replicas.every(x => x > 1)) {
|
|
console.info("Replication up and running!");
|
|
return true;
|
|
}
|
|
wait(0.5);
|
|
global.ArangoClusterInfo.flush();
|
|
}
|
|
console.error("Replication did not finish");
|
|
return false;
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fail the follower
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
function failFollower(failAt) {
|
|
var follower = cinfo.shards[shards[0]][1];
|
|
var endpoint = global.ArangoClusterInfo.getServerEndpoint(follower);
|
|
// Now look for instanceInfo:
|
|
var pos = _.findIndex(global.instanceInfo.arangods,
|
|
x => x.endpoint === endpoint);
|
|
assertTrue(pos >= 0);
|
|
if (failAt) {
|
|
debugSetFailAt(endpoint, failAt);
|
|
console.info("Have added failure in follower", follower, " at ", failAt);
|
|
} else {
|
|
assertTrue(suspendExternal(global.instanceInfo.arangods[pos].pid));
|
|
console.info("Have failed follower", follower);
|
|
}
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief heal the follower
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
function healFollower(failAt) {
|
|
var follower = cinfo.shards[shards[0]][1];
|
|
var endpoint = global.ArangoClusterInfo.getServerEndpoint(follower);
|
|
// Now look for instanceInfo:
|
|
var pos = _.findIndex(global.instanceInfo.arangods,
|
|
x => x.endpoint === endpoint);
|
|
assertTrue(pos >= 0);
|
|
if (failAt) {
|
|
debugRemoveFailAt(endpoint, failAt);
|
|
console.info("Have removed failure in follower", follower, " at ", failAt);
|
|
} else {
|
|
assertTrue(continueExternal(global.instanceInfo.arangods[pos].pid));
|
|
console.info("Have healed follower", follower);
|
|
}
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fail the leader
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
function failLeader(failAt) {
|
|
var leader = cinfo.shards[shards[0]][0];
|
|
var endpoint = global.ArangoClusterInfo.getServerEndpoint(leader);
|
|
// Now look for instanceInfo:
|
|
var pos = _.findIndex(global.instanceInfo.arangods,
|
|
x => x.endpoint === endpoint);
|
|
assertTrue(pos >= 0);
|
|
if (failAt) {
|
|
debugSetFailAt(endpoint, failAt);
|
|
console.info("Have failed leader", leader, " at ", failAt);
|
|
} else {
|
|
assertTrue(suspendExternal(global.instanceInfo.arangods[pos].pid));
|
|
console.info("Have failed leader", leader);
|
|
}
|
|
return leader;
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief heal the follower
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
function healLeader(failAt) {
|
|
var leader = cinfo.shards[shards[0]][0];
|
|
var endpoint = global.ArangoClusterInfo.getServerEndpoint(leader);
|
|
// Now look for instanceInfo:
|
|
var pos = _.findIndex(global.instanceInfo.arangods,
|
|
x => x.endpoint === endpoint);
|
|
assertTrue(pos >= 0);
|
|
if (failAt) {
|
|
debugRemoveFailAt(endpoint, failAt);
|
|
console.info("Have removed failure in leader", leader, " at ", failAt);
|
|
} else {
|
|
assertTrue(continueExternal(global.instanceInfo.arangods[pos].pid));
|
|
console.info("Have healed leader", leader);
|
|
}
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief basic operations, with various failure modes:
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
function runBasicOperations(monkeyFn) {
|
|
monkeyFn(1);
|
|
// Insert with check:
|
|
var id = c.insert({ Hallo: 12 });
|
|
assertEqual(1, c.count());
|
|
monkeyFn(2);
|
|
var doc = c.document(id._key);
|
|
assertEqual(12, doc.Hallo);
|
|
monkeyFn(3);
|
|
var ids = c.insert([{ Hallo: 13 }, { Hallo: 14 }]);
|
|
assertEqual(3, c.count());
|
|
assertEqual(2, ids.length);
|
|
monkeyFn(4);
|
|
var docs = c.document([ids[0]._key, ids[1]._key]);
|
|
assertEqual(2, docs.length);
|
|
assertEqual(13, docs[0].Hallo);
|
|
assertEqual(14, docs[1].Hallo);
|
|
monkeyFn(5);
|
|
// Replace with check:
|
|
c.replace(id._key, { "Hallo": 100 });
|
|
monkeyFn(6);
|
|
doc = c.document(id._key);
|
|
assertEqual(100, doc.Hallo);
|
|
monkeyFn(7);
|
|
c.replace([ids[0]._key, ids[1]._key], [{ Hallo: 101 }, { Hallo: 102 }]);
|
|
monkeyFn(8);
|
|
docs = c.document([ids[0]._key, ids[1]._key]);
|
|
assertEqual(2, docs.length);
|
|
assertEqual(101, docs[0].Hallo);
|
|
assertEqual(102, docs[1].Hallo);
|
|
monkeyFn(9);
|
|
// Update with check:
|
|
c.update(id._key, { "Hallox": 105 });
|
|
monkeyFn(10);
|
|
doc = c.document(id._key);
|
|
assertEqual(100, doc.Hallo);
|
|
assertEqual(105, doc.Hallox);
|
|
monkeyFn(11);
|
|
c.update([ids[0]._key, ids[1]._key], [{ Hallox: 106 }, { Hallox: 107 }]);
|
|
monkeyFn(12);
|
|
docs = c.document([ids[0]._key, ids[1]._key]);
|
|
assertEqual(2, docs.length);
|
|
assertEqual(101, docs[0].Hallo);
|
|
assertEqual(102, docs[1].Hallo);
|
|
assertEqual(106, docs[0].Hallox);
|
|
assertEqual(107, docs[1].Hallox);
|
|
monkeyFn(13);
|
|
// AQL:
|
|
var q = db._query(`FOR x IN @@cn
|
|
FILTER x.Hallo > 0
|
|
SORT x.Hallo
|
|
RETURN {"Hallo": x.Hallo}`, { "@cn": cn });
|
|
docs = q.toArray();
|
|
assertEqual(3, docs.length);
|
|
assertEqual([{ Hallo: 100 }, { Hallo: 101 }, { Hallo: 102 }], docs);
|
|
monkeyFn(14);
|
|
// Remove with check:
|
|
c.remove(id._key);
|
|
monkeyFn(15);
|
|
try {
|
|
doc = c.document(id._key);
|
|
fail();
|
|
}
|
|
catch (e1) {
|
|
assertEqual(ERRORS.ERROR_ARANGO_DOCUMENT_NOT_FOUND.code, e1.errorNum);
|
|
}
|
|
monkeyFn(16);
|
|
assertEqual(2, c.count());
|
|
monkeyFn(17);
|
|
c.remove([ids[0]._key, ids[1]._key]);
|
|
monkeyFn(18);
|
|
docs = c.document([ids[0]._key, ids[1]._key]);
|
|
assertEqual(2, docs.length);
|
|
assertTrue(docs[0].error);
|
|
assertTrue(docs[1].error);
|
|
monkeyFn(19);
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief the actual tests
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
return {
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief set up
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
setUp: function () {
|
|
var systemCollServers = findCollectionServers("_system", "_graphs");
|
|
console.info("System collections use servers:", systemCollServers);
|
|
while (true) {
|
|
db._drop(cn);
|
|
c = db._create(cn, {
|
|
numberOfShards: 1, replicationFactor: 2,
|
|
avoidServers: systemCollServers
|
|
});
|
|
var servers = findCollectionServers("_system", cn);
|
|
console.info("Test collections uses servers:", servers);
|
|
if (_.intersection(systemCollServers, servers).length === 0) {
|
|
return;
|
|
}
|
|
console.info("Need to recreate collection to avoid system collection servers.");
|
|
//waitForSynchronousReplication("_system");
|
|
console.info("Synchronous replication has settled, now dropping again.");
|
|
}
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief tear down
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
tearDown: function () {
|
|
var servers = global.ArangoClusterInfo.getDBServers();
|
|
servers.forEach(s => {
|
|
let endpoint = global.ArangoClusterInfo.getServerEndpoint(s.serverId);
|
|
debugClearFailAt(endpoint);
|
|
});
|
|
db._drop(cn);
|
|
//global.ArangoAgency.set('Target/FailedServers', {});
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief check whether we have access to global.instanceInfo
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testCheckInstanceInfo: function () {
|
|
assertTrue(global.instanceInfo !== undefined);
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief check if a synchronously replicated collection gets online
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testSetup: function () {
|
|
for (var count = 0; count < 120; ++count) {
|
|
let dbservers = getDBServers();
|
|
if (dbservers.length === 5) {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
return;
|
|
}
|
|
console.log("Waiting for 5 dbservers to be present:", JSON.stringify(dbservers));
|
|
wait(1.0);
|
|
}
|
|
assertTrue(false, "Timeout waiting for 5 dbservers.");
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fail in place 1
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsFollowerFail1: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 1) {
|
|
failFollower("LogicalCollection::insert");
|
|
} else if (place === 18) {
|
|
healFollower("LogicalCollection::insert");
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fail in place 2
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsFollowerFail2: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 2) {
|
|
failFollower("LogicalCollection::read");
|
|
} else if (place === 18) {
|
|
healFollower("LogicalCollection::read");
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fail in place 3
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsFollowerFail3: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 2) {
|
|
failFollower("LogicalCollection::insert");
|
|
} else if (place === 18) {
|
|
healFollower("LogicalCollection::insert");
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fail in place 5
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsFollowerFail5: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 2) {
|
|
failFollower("LogicalCollection::replace");
|
|
} else if (place === 18) {
|
|
healFollower("LogicalCollection::replace");
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fail in place 7
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsFollowerFail7: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 2) {
|
|
failFollower("LogicalCollection::replace");
|
|
} else if (place === 18) {
|
|
healFollower("LogicalCollection::replace");
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fail in place 9
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsFollowerFail9: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 2) {
|
|
failFollower("LogicalCollection::update");
|
|
} else if (place === 18) {
|
|
healFollower("LogicalCollection::update");
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fail in place 9
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsFollowerFail14: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 2) {
|
|
failFollower("LogicalCollection::remove");
|
|
} else if (place === 18) {
|
|
healFollower("LogicalCollection::remove");
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief follower fail in place 1 until 2, leader fail in 3
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsCombinedFail1_2_3: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 1) {
|
|
failFollower("LogicalCollection::insert"); // replication fails
|
|
} else if (place === 2) {
|
|
healFollower("LogicalCollection::insert");
|
|
} else if (place === 3) {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
failLeader();
|
|
} else if (place === 19) {
|
|
healLeader();
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief follower fail in place 3 until 4, leader fails in 4 after in-sync
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsCombinedFail3_4: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 3) {
|
|
failFollower("LogicalCollection::insert"); // replication fails
|
|
} else if (place === 4) {
|
|
healFollower("LogicalCollection::insert");
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
failLeader();
|
|
} else if (place === 19) {
|
|
healLeader();
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief follower fail in place 5 until 4, leader fails in 4 after in-sync
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsCombinedFail5_6: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 5) {
|
|
failFollower("LogicalCollection::replace"); // replication fails
|
|
} else if (place === 6) {
|
|
healFollower("LogicalCollection::replace");
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
failLeader();
|
|
} else if (place === 19) {
|
|
healLeader();
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief follower fail in place 7 until 8, leader fails in 8 after in-sync
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsCombinedFail7_8: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 7) {
|
|
failFollower("LogicalCollection::replace"); // replication fails
|
|
} else if (place === 8) {
|
|
healFollower("LogicalCollection::replace");
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
failLeader();
|
|
} else if (place === 19) {
|
|
healLeader();
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief follower fail in place 9 until 10, leader fails in 10 after in-sync
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsCombinedFail9_10: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 9) {
|
|
failFollower("LogicalCollection::update"); // replication fails
|
|
} else if (place === 10) {
|
|
healFollower("LogicalCollection::update");
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
failLeader();
|
|
} else if (place === 19) {
|
|
healLeader();
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief follower fail in place 11 until 12, leader fails in 12 after in-sync
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsCombinedFail11_12: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 11) {
|
|
failFollower("LogicalCollection::update"); // replication fails
|
|
} else if (place === 12) {
|
|
healFollower("LogicalCollection::update");
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
failLeader();
|
|
} else if (place === 19) {
|
|
healLeader();
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief follower fail in place 14 until 15, leader fails in 18 after in-sync
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsCombinedFail14_15: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 14) {
|
|
failFollower("LogicalCollection::remove"); // replication fails
|
|
} else if (place === 15) {
|
|
healFollower("LogicalCollection::remove");
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
failLeader();
|
|
} else if (place === 19) {
|
|
healLeader();
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief follower fail in place 17 until 18, leader fails in 18 after in-sync
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testBasicOperationsCombinedFail17_18: function () {
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
runBasicOperations((place) => {
|
|
if (place === 17) {
|
|
failFollower("LogicalCollection::remove"); // replication fails
|
|
} else if (place === 18) {
|
|
healFollower("LogicalCollection::remove");
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
failLeader();
|
|
} else if (place === 19) {
|
|
healLeader();
|
|
}
|
|
});
|
|
assertTrue(waitForSynchronousReplication("_system"));
|
|
},
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief just to allow a trailing comma at the end of the last test
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
testDummy: function () {
|
|
assertEqual(12, 12);
|
|
}
|
|
};
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief executes the test suite
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
jsunity.run(SynchronousReplicationSuite);
|
|
return jsunity.done();
|