X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FShardTestKit.java;h=8f3231b4179ce2c3b086fe083c61fcf55f084574;hb=204f45f8b3233dbea87e2c8065914f0d2a0ded07;hp=281a190e941998c68a597da2ac6d511abc3f9e90;hpb=a507f19b518f36065c74f4f88c9327ede28ff640;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 281a190e94..8f3231b417 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 @@ -46,14 +46,14 @@ public class ShardTestKit extends JavaTestKit { } - public 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,10 +66,12 @@ 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); + Object lastResponse = null; for(int i = 0; i < 20 * 5; i++) { Future future = Patterns.ask(shard, new FindLeader(), new Timeout(duration)); try { @@ -77,16 +79,25 @@ public class ShardTestKit extends JavaTestKit { 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); } - Assert.fail("Unexpected leader found for shard " + shard.path()); + 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