X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FShardTestKit.java;h=7f41bb227722926f3f507d1599ec83fe90ed76fc;hb=d54ecf76d2bb2a06b0d94a8d4b8ad6ca0d7830e0;hp=2d1b14c269f922e811f5ce9f8393873c064a7f24;hpb=b9508ff048e882f4227abbaa9b6ac991bb45f9ab;p=controller.git 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 2d1b14c269..7f41bb2277 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 @@ -25,11 +25,11 @@ import scala.concurrent.duration.FiniteDuration; public class ShardTestKit extends JavaTestKit { - protected 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 @@ -46,14 +46,14 @@ public 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)); try { FindLeaderReply resp = (FindLeaderReply)Await.result(future, duration); if(resp.getLeaderActor() != null) { - return; + return resp.getLeaderActor(); } } catch(TimeoutException e) { } catch(Exception e) { @@ -66,6 +66,28 @@ public 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); + for(int i = 0; i < 20 * 5; i++) { + Future future = Patterns.ask(shard, new FindLeader(), new Timeout(duration)); + try { + FindLeaderReply resp = (FindLeaderReply)Await.result(future, duration); + if(resp.getLeaderActor() == null) { + return; + } + } catch(TimeoutException e) { + } catch(Exception e) { + System.err.println("FindLeader threw ex"); + e.printStackTrace(); + } + + + Uninterruptibles.sleepUninterruptibly(50, TimeUnit.MILLISECONDS); + } + + Assert.fail("Unexpected leader found for shard " + shard.path()); + } } \ No newline at end of file