From: Eric Hartmann Date: Thu, 22 Jun 2017 11:43:34 +0000 (+0200) Subject: Make HazelcastClientWrapperImplTest more robust X-Git-Tag: 6.5-M2~108 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8af2f37ed8c0594926adb33f6db91856625157b3;p=sonarqube.git Make HazelcastClientWrapperImplTest more robust --- diff --git a/server/sonar-ce/src/test/java/org/sonar/ce/cluster/HazelcastClientWrapperImplTest.java b/server/sonar-ce/src/test/java/org/sonar/ce/cluster/HazelcastClientWrapperImplTest.java index 746b31960f6..b86fe768c94 100644 --- a/server/sonar-ce/src/test/java/org/sonar/ce/cluster/HazelcastClientWrapperImplTest.java +++ b/server/sonar-ce/src/test/java/org/sonar/ce/cluster/HazelcastClientWrapperImplTest.java @@ -26,6 +26,8 @@ import ch.qos.logback.core.AppenderBase; import com.google.common.collect.ImmutableSet; import com.hazelcast.client.impl.HazelcastClientInstanceImpl; import com.hazelcast.client.impl.HazelcastClientProxy; +import com.hazelcast.core.Client; +import com.hazelcast.core.ClientListener; import com.hazelcast.core.HazelcastInstance; import java.net.InetAddress; import java.util.ArrayList; @@ -36,6 +38,8 @@ import java.util.List; import java.util.Map; import java.util.Properties; import java.util.Set; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.TimeUnit; import org.apache.commons.lang.RandomStringUtils; import org.junit.AfterClass; import org.junit.BeforeClass; @@ -154,15 +158,18 @@ public class HazelcastClientWrapperImplTest { } @Test - public void client_must_connect_to_hazelcast() { + public void client_must_connect_to_hazelcast() throws InterruptedException { int port = NetworkUtils.getNextAvailablePort(InetAddress.getLoopbackAddress()); // Launch a fake Hazelcast instance HazelcastInstance hzInstance = HazelcastTestHelper.createHazelcastCluster("client_must_connect_to_hazelcast", port); Settings settings = createClusterSettings("client_must_connect_to_hazelcast", "localhost:" + port); HazelcastClientWrapperImpl hazelcastClientWrapperImpl = new HazelcastClientWrapperImpl(settings); + ClientListenerImpl clientListener = new ClientListenerImpl(); + hzInstance.getClientService().addClientListener(clientListener); try { hazelcastClientWrapperImpl.start(); + clientListener.counter.await(5, TimeUnit.SECONDS); assertThat(hazelcastClientWrapperImpl.getConnectedClients()).hasSize(1); assertThat(hazelcastClientWrapperImpl.getClientUUID()).isNotEmpty(); } finally { @@ -269,6 +276,20 @@ public class HazelcastClientWrapperImplTest { ); } + private class ClientListenerImpl implements ClientListener { + CountDownLatch counter = new CountDownLatch(1); + + @Override + public void clientConnected(Client client) { + counter.countDown(); + } + + @Override + public void clientDisconnected(Client client) { + + } + } + private static Settings createClusterSettings(String name, String localEndPoint) { Properties properties = new Properties(); properties.setProperty(ProcessProperties.CLUSTER_NAME, name);