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%2FRemoteTransactionContextTest.java;h=93c83a463315aa771e40e653d9742be75ce30ab3;hb=9905bf0575ff196a531eb114e89b1bdb7226bc6c;hp=526ad77b78eb3c34fdbb67fbd9a760ff2c31237b;hpb=7925d904ffd56c13ddde53e0e7bf6b08b437757d;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/RemoteTransactionContextTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/RemoteTransactionContextTest.java index 526ad77b78..93c83a4633 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/RemoteTransactionContextTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/RemoteTransactionContextTest.java @@ -72,30 +72,30 @@ public class RemoteTransactionContextTest extends AbstractActorTest { */ @Test public void testLimiterOnFailure() throws TimeoutException, InterruptedException { - txContext.executeModification(DELETE); - txContext.executeModification(DELETE); + txContext.executeModification(DELETE, null); + txContext.executeModification(DELETE, null); assertEquals(2, limiter.availablePermits()); - Future future = txContext.sendBatchedModifications(); + final Future sendFuture = txContext.sendBatchedModifications(); assertEquals(2, limiter.availablePermits()); BatchedModifications msg = kit.expectMsgClass(BatchedModifications.class); assertEquals(2, msg.getModifications().size()); assertEquals(1, msg.getTotalMessagesSent()); sendReply(new Failure(new NullPointerException())); - assertFuture(future, new OnComplete() { + assertFuture(sendFuture, new OnComplete() { @Override public void onComplete(final Throwable failure, final Object success) { assertTrue(failure instanceof NullPointerException); assertEquals(4, limiter.availablePermits()); // The transaction has failed, no throttling should occur - txContext.executeModification(DELETE); + txContext.executeModification(DELETE, null); assertEquals(4, limiter.availablePermits()); // Executing a read should result in immediate failure final SettableFuture readFuture = SettableFuture.create(); - txContext.executeRead(new DataExists(), readFuture); + txContext.executeRead(new DataExists(), readFuture, null); assertTrue(readFuture.isDone()); try { readFuture.get(); @@ -106,7 +106,7 @@ public class RemoteTransactionContextTest extends AbstractActorTest { } }); - future = txContext.directCommit(); + final Future commitFuture = txContext.directCommit(null); msg = kit.expectMsgClass(BatchedModifications.class); // Modification should have been thrown away by the dropped transmit induced by executeRead() @@ -115,14 +115,14 @@ public class RemoteTransactionContextTest extends AbstractActorTest { assertTrue(msg.isReady()); assertEquals(2, msg.getTotalMessagesSent()); sendReply(new Failure(new IllegalStateException())); - assertFuture(future, new OnComplete() { + assertFuture(commitFuture, new OnComplete() { @Override public void onComplete(final Throwable failure, final Object success) { assertTrue(failure instanceof IllegalStateException); } }); - kit.expectNoMsg(); + kit.expectNoMessage(); } /** @@ -131,16 +131,16 @@ public class RemoteTransactionContextTest extends AbstractActorTest { */ @Test public void testLimiterOnOverflowFailure() throws TimeoutException, InterruptedException { - txContext.executeModification(DELETE); - txContext.executeModification(DELETE); - txContext.executeModification(DELETE); - txContext.executeModification(DELETE); + txContext.executeModification(DELETE, null); + txContext.executeModification(DELETE, null); + txContext.executeModification(DELETE, null); + txContext.executeModification(DELETE, null); assertEquals(0, limiter.availablePermits()); - txContext.executeModification(DELETE); + txContext.executeModification(DELETE, null); // Last acquire should have failed ... assertEquals(0, limiter.availablePermits()); - Future future = txContext.sendBatchedModifications(); + final Future future = txContext.sendBatchedModifications(); assertEquals(0, limiter.availablePermits()); BatchedModifications msg = kit.expectMsgClass(BatchedModifications.class); @@ -158,7 +158,7 @@ public class RemoteTransactionContextTest extends AbstractActorTest { } }); - kit.expectNoMsg(); + kit.expectNoMessage(); } private void sendReply(final Object message) {