X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FShardTestKit.java;h=9df933b5bac75e84f13cbfbe3ec46e9bd9b0b3b8;hp=fa15db694904ebef9556994a02ac458d10d654fd;hb=d617f1570fb165d02e18785b8b1704df7f830087;hpb=c181b0ab3202b1d5d87d6048d85c787fde090b8a diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTestKit.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTestKit.java index fa15db6949..9df933b5ba 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTestKit.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTestKit.java @@ -13,6 +13,8 @@ import akka.pattern.Patterns; import akka.testkit.JavaTestKit; import akka.util.Timeout; import com.google.common.util.concurrent.Uninterruptibles; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.TimeoutException; import org.junit.Assert; import org.opendaylight.controller.cluster.raft.client.messages.FindLeader; import org.opendaylight.controller.cluster.raft.client.messages.FindLeaderReply; @@ -21,16 +23,13 @@ import scala.concurrent.Future; import scala.concurrent.duration.Duration; import scala.concurrent.duration.FiniteDuration; -import java.util.concurrent.TimeUnit; -import java.util.concurrent.TimeoutException; +public class ShardTestKit extends JavaTestKit { -class ShardTestKit extends JavaTestKit { - - ShardTestKit(ActorSystem actorSystem) { + public ShardTestKit(ActorSystem actorSystem) { super(actorSystem); } - protected void waitForLogMessage(final Class logLevel, ActorRef subject, String logMessage){ + public void waitForLogMessage(final Class logLevel, ActorRef subject, String logMessage){ // Wait for a specific log message to show up final boolean result = new JavaTestKit.EventFilter(logLevel @@ -47,14 +46,14 @@ class ShardTestKit extends JavaTestKit { } - protected void waitUntilLeader(ActorRef shard) { + public static String waitUntilLeader(ActorRef shard) { FiniteDuration duration = Duration.create(100, TimeUnit.MILLISECONDS); for(int i = 0; i < 20 * 5; i++) { - Future future = Patterns.ask(shard, new FindLeader(), new Timeout(duration)); + Future future = Patterns.ask(shard, FindLeader.INSTANCE, new Timeout(duration)); try { FindLeaderReply resp = (FindLeaderReply)Await.result(future, duration); if(resp.getLeaderActor() != null) { - return; + return resp.getLeaderActor(); } } catch(TimeoutException e) { } catch(Exception e) { @@ -67,6 +66,38 @@ class ShardTestKit extends JavaTestKit { } Assert.fail("Leader not found for shard " + shard.path()); + return null; } + public void waitUntilNoLeader(ActorRef shard) { + FiniteDuration duration = Duration.create(100, TimeUnit.MILLISECONDS); + Object lastResponse = null; + for(int i = 0; i < 20 * 5; i++) { + Future future = Patterns.ask(shard, FindLeader.INSTANCE, new Timeout(duration)); + try { + FindLeaderReply resp = (FindLeaderReply)Await.result(future, duration); + if(resp.getLeaderActor() == null) { + return; + } + + lastResponse = resp.getLeaderActor(); + } catch(TimeoutException e) { + lastResponse = e; + } catch(Exception e) { + System.err.println("FindLeader threw ex"); + e.printStackTrace(); + lastResponse = e; + } + + Uninterruptibles.sleepUninterruptibly(50, TimeUnit.MILLISECONDS); + } + + if(lastResponse instanceof Throwable) { + throw (AssertionError)new AssertionError( + String.format("Unexpected error occurred from FindLeader for shard %s", shard.path())). + initCause((Throwable)lastResponse); + } + + Assert.fail(String.format("Unexpected leader %s found for shard %s", lastResponse, shard.path())); + } } \ No newline at end of file