-
Notifications
You must be signed in to change notification settings - Fork 898
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Java] AeronCluster client does not close itself after whole cluster …
…shutdown
- Loading branch information
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
aeron-system-tests/src/test/java/io/aeron/cluster/ClusterClientRecoveryTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package io.aeron.cluster; | ||
|
||
import io.aeron.cluster.client.AeronCluster; | ||
import io.aeron.test.EventLogExtension; | ||
import io.aeron.test.InterruptAfter; | ||
import io.aeron.test.InterruptingTestCallback; | ||
import io.aeron.test.SlowTest; | ||
import io.aeron.test.SystemTestWatcher; | ||
import io.aeron.test.Tests; | ||
import io.aeron.test.cluster.TestCluster; | ||
import io.aeron.test.cluster.TestNode; | ||
import org.agrona.concurrent.IdleStrategy; | ||
import org.agrona.concurrent.SleepingIdleStrategy; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import static io.aeron.test.cluster.TestCluster.aCluster; | ||
import static io.aeron.test.cluster.TestCluster.awaitElectionClosed; | ||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
@SlowTest | ||
@ExtendWith({EventLogExtension.class, InterruptingTestCallback.class }) | ||
class ClusterClientRecoveryTest | ||
{ | ||
@RegisterExtension | ||
final SystemTestWatcher systemTestWatcher = new SystemTestWatcher(); | ||
|
||
@Test | ||
@InterruptAfter(30) | ||
void shouldCloseClusterClientAfterClusterShutdown() | ||
{ | ||
final TestCluster cluster = aCluster().withStaticNodes(3).start(); | ||
systemTestWatcher.cluster(cluster); | ||
|
||
final TestNode follower = cluster.followers().get(0); | ||
awaitElectionClosed(follower); | ||
|
||
final AeronCluster client = cluster.connectClient(); | ||
|
||
assertEquals(false, client.isClosed()); | ||
assertEquals(false, client.ingressPublication().isClosed()); | ||
assertEquals(true, client.sendKeepAlive()); | ||
|
||
cluster.node(0).close(); | ||
cluster.node(1).close(); | ||
cluster.node(2).close(); | ||
|
||
final IdleStrategy idleStrategy = new SleepingIdleStrategy(); | ||
idleStrategy.reset(); | ||
|
||
while (true) | ||
{ | ||
client.sendKeepAlive(); | ||
client.pollEgress(); | ||
|
||
boolean clientClosed = client.isClosed(); | ||
boolean ingressPublicationClosed = client.ingressPublication().isClosed(); | ||
|
||
if (clientClosed && ingressPublicationClosed) | ||
{ | ||
break; | ||
} | ||
|
||
Tests.idle(idleStrategy, "AeronCluster#isClosed = %s, AeronCluster#ingressPublication#isClosed = %s", clientClosed, ingressPublicationClosed); | ||
} | ||
} | ||
} |