use of io.aeron.test.cluster.TestNode in project aeron by real-logic.
the class ClusterTest method shouldStopLeaderAndFollowersThenRestartAllWithSnapshot.
@Test
@InterruptAfter(30)
public void shouldStopLeaderAndFollowersThenRestartAllWithSnapshot() {
cluster = aCluster().withStaticNodes(3).start();
systemTestWatcher.cluster(cluster);
final TestNode leader = cluster.awaitLeader();
cluster.takeSnapshot(leader);
cluster.awaitSnapshotCount(1);
cluster.stopAllNodes();
cluster.restartAllNodes(false);
cluster.awaitLeader();
assertEquals(2, cluster.followers().size());
cluster.awaitSnapshotsLoaded();
}
use of io.aeron.test.cluster.TestNode in project aeron by real-logic.
the class ClusterTest method shouldStopFollowerAndRestartFollower.
@Test
@InterruptAfter(30)
public void shouldStopFollowerAndRestartFollower() {
cluster = aCluster().withStaticNodes(3).start();
systemTestWatcher.cluster(cluster);
cluster.awaitLeader();
TestNode follower = cluster.followers().get(0);
awaitElectionClosed(follower);
cluster.stopNode(follower);
follower = cluster.startStaticNode(follower.index(), false);
awaitElectionClosed(follower);
assertEquals(FOLLOWER, follower.role());
}
use of io.aeron.test.cluster.TestNode in project aeron by real-logic.
the class ClusterTest method shouldReplaySnapshotTakenWhileDown.
@Test
@InterruptAfter(40)
public void shouldReplaySnapshotTakenWhileDown() {
cluster = aCluster().withStaticNodes(3).start();
systemTestWatcher.cluster(cluster);
final TestNode leader = cluster.awaitLeader();
final List<TestNode> followers = cluster.followers();
final TestNode followerA = followers.get(0);
TestNode followerB = followers.get(1);
awaitElectionClosed(followerB);
cluster.stopNode(followerB);
cluster.takeSnapshot(leader);
cluster.awaitSnapshotCount(leader, 1);
cluster.awaitSnapshotCount(followerA, 1);
final int messageCount = 10;
cluster.connectClient();
cluster.sendMessages(messageCount);
cluster.awaitResponseMessageCount(messageCount);
followerB = cluster.startStaticNode(followerB.index(), false);
cluster.awaitSnapshotCount(followerB, 1);
assertEquals(FOLLOWER, followerB.role());
cluster.awaitServiceMessageCount(followerB, messageCount);
assertEquals(0L, followerB.errors());
}
use of io.aeron.test.cluster.TestNode in project aeron by real-logic.
the class ClusterTest method shouldRecoverWhenFollowerIsMultipleTermsBehind.
@Test
@InterruptAfter(40)
public void shouldRecoverWhenFollowerIsMultipleTermsBehind() {
cluster = aCluster().withStaticNodes(3).start();
systemTestWatcher.cluster(cluster);
final TestNode originalLeader = cluster.awaitLeader();
final int messageCount = 10;
cluster.connectClient();
cluster.sendMessages(messageCount);
cluster.awaitResponseMessageCount(messageCount);
cluster.stopNode(originalLeader);
final TestNode newLeader = cluster.awaitLeader();
cluster.reconnectClient();
cluster.sendMessages(messageCount);
cluster.awaitResponseMessageCount(messageCount * 2);
cluster.stopNode(newLeader);
cluster.startStaticNode(newLeader.index(), false);
cluster.awaitLeader();
cluster.reconnectClient();
cluster.sendMessages(messageCount);
cluster.awaitResponseMessageCount(messageCount * 3);
cluster.startStaticNode(originalLeader.index(), false);
final TestNode lateJoiningNode = cluster.node(originalLeader.index());
while (lateJoiningNode.service().messageCount() < messageCount * 3) {
Tests.yieldingIdle("Waiting for late joining follower to catch up");
}
}
use of io.aeron.test.cluster.TestNode in project aeron by real-logic.
the class StalledLeaderLogReplicationClusterTest method shouldHandleMultipleElections.
@Test
@InterruptAfter(60)
void shouldHandleMultipleElections() {
final TestCluster cluster = aCluster().withStaticNodes(3).start();
systemTestWatcher.cluster(cluster);
final TestNode leader0 = cluster.awaitLeader();
final int numMessages = 3;
cluster.connectClient();
cluster.sendMessages(numMessages);
cluster.awaitResponseMessageCount(numMessages);
cluster.awaitServicesMessageCount(numMessages);
cluster.stopNode(leader0);
final TestNode leader1 = cluster.awaitLeader(leader0.index());
cluster.awaitNewLeadershipEvent(1);
awaitAvailableWindow(cluster.client().ingressPublication());
assertTrue(cluster.client().sendKeepAlive());
cluster.startStaticNode(leader0.index(), false);
awaitElectionClosed(cluster.node(leader0.index()));
cluster.sendMessages(numMessages);
cluster.awaitResponseMessageCount(numMessages * 2);
cluster.awaitServicesMessageCount(numMessages * 2);
cluster.stopNode(leader1);
cluster.awaitLeader(leader1.index());
cluster.awaitNewLeadershipEvent(2);
awaitAvailableWindow(cluster.client().ingressPublication());
assertTrue(cluster.client().sendKeepAlive());
cluster.startStaticNode(leader1.index(), false);
awaitElectionClosed(cluster.node(leader1.index()));
cluster.sendMessages(numMessages);
cluster.awaitResponseMessageCount(numMessages * 3);
cluster.awaitServicesMessageCount(numMessages * 3);
}
Aggregations