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%2FShardTransactionTest.java;h=8f5d0c28d603c39a008f9638ece377aacdf6f1f8;hb=30faeb35260541c273a81b8f126b40da94daa825;hp=9116f24c92971b3f0491b6de52d07eff01d84645;hpb=30c7074e24163a4634ece47a6a3c09e6ff337db7;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTransactionTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTransactionTest.java index 9116f24c92..8f5d0c28d6 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTransactionTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/ShardTransactionTest.java @@ -2,12 +2,19 @@ package org.opendaylight.controller.cluster.datastore; import akka.actor.ActorRef; import akka.actor.Props; +import akka.actor.Terminated; import akka.testkit.JavaTestKit; +import akka.testkit.TestActorRef; import com.google.common.util.concurrent.ListeningExecutorService; import com.google.common.util.concurrent.MoreExecutors; +import org.junit.Assert; import org.junit.Test; +import org.opendaylight.controller.cluster.datastore.exceptions.UnknownMessageException; +import org.opendaylight.controller.cluster.datastore.identifiers.ShardIdentifier; import org.opendaylight.controller.cluster.datastore.messages.CloseTransaction; import org.opendaylight.controller.cluster.datastore.messages.CloseTransactionReply; +import org.opendaylight.controller.cluster.datastore.messages.DataExists; +import org.opendaylight.controller.cluster.datastore.messages.DataExistsReply; import org.opendaylight.controller.cluster.datastore.messages.DeleteData; import org.opendaylight.controller.cluster.datastore.messages.DeleteDataReply; import org.opendaylight.controller.cluster.datastore.messages.MergeData; @@ -25,253 +32,466 @@ import org.opendaylight.controller.cluster.datastore.modification.Modification; import org.opendaylight.controller.cluster.datastore.modification.WriteModification; import org.opendaylight.controller.md.cluster.datastore.model.TestModel; import org.opendaylight.controller.md.sal.dom.store.impl.InMemoryDOMDataStore; -import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier; +import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes; +import org.opendaylight.yangtools.yang.model.api.SchemaContext; + +import java.util.Collections; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; public class ShardTransactionTest extends AbstractActorTest { - private static ListeningExecutorService storeExecutor = MoreExecutors.listeningDecorator(MoreExecutors.sameThreadExecutor()); - - private static final InMemoryDOMDataStore store = new InMemoryDOMDataStore("OPER", storeExecutor); - - static { - store.onGlobalContextUpdated(TestModel.createTestContext()); - } - - @Test - public void testOnReceiveReadData() throws Exception { - new JavaTestKit(getSystem()) {{ - final ActorRef shard = getSystem().actorOf(Shard.props("config")); - final Props props = ShardTransaction.props(store.newReadWriteTransaction(), shard); - final ActorRef subject = getSystem().actorOf(props, "testReadData"); - - new Within(duration("1 seconds")) { - protected void run() { - - subject.tell(new ReadData(InstanceIdentifier.builder().build()), getRef()); - - final String out = new ExpectMsg("match hint") { - // do not put code outside this method, will run afterwards - protected String match(Object in) { - if (in instanceof ReadDataReply) { - if (((ReadDataReply) in).getNormalizedNode() != null) { - return "match"; + private static ListeningExecutorService storeExecutor = + MoreExecutors.listeningDecorator(MoreExecutors.sameThreadExecutor()); + + private static final InMemoryDOMDataStore store = + new InMemoryDOMDataStore("OPER", storeExecutor, MoreExecutors.sameThreadExecutor()); + + private static final SchemaContext testSchemaContext = TestModel.createTestContext(); + + private static final ShardIdentifier SHARD_IDENTIFIER = + ShardIdentifier.builder().memberName("member-1") + .shardName("inventory").type("config").build(); + + + static { + store.onGlobalContextUpdated(testSchemaContext); + } + + @Test + public void testOnReceiveReadData() throws Exception { + new JavaTestKit(getSystem()) {{ + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props(store.newReadOnlyTransaction(), shard, testSchemaContext); + final ActorRef subject = getSystem().actorOf(props, "testReadData"); + + new Within(duration("1 seconds")) { + @Override + protected void run() { + + subject.tell( + new ReadData(YangInstanceIdentifier.builder().build()).toSerializable(), + getRef()); + + final String out = new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in.getClass().equals(ReadDataReply.SERIALIZABLE_CLASS)) { + if (ReadDataReply.fromSerializable(testSchemaContext,YangInstanceIdentifier.builder().build(), in) + .getNormalizedNode()!= null) { + return "match"; + } + return null; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + assertEquals("match", out); + + expectNoMsg(); } - return null; - } else { - throw noMatch(); - } - } - }.get(); // this extracts the received message - - assertEquals("match", out); - - expectNoMsg(); - } - - - }; - }}; - } - private void assertModification(final ActorRef subject, final Class modificationType){ - new JavaTestKit(getSystem()) {{ - new Within(duration("1 seconds")) { - protected void run() { - subject.tell(new ShardTransaction.GetCompositedModification(), getRef()); - - final CompositeModification compositeModification = new ExpectMsg("match hint") { - // do not put code outside this method, will run afterwards - protected CompositeModification match(Object in) { - if (in instanceof ShardTransaction.GetCompositeModificationReply) { - return ((ShardTransaction.GetCompositeModificationReply) in).getModification(); - } else { - throw noMatch(); - } - } - }.get(); // this extracts the received message - - assertTrue(compositeModification.getModifications().size() == 1); - assertEquals(modificationType, compositeModification.getModifications().get(0).getClass()); - - } - }; - }}; - } - - @Test - public void testOnReceiveWriteData() throws Exception { - new JavaTestKit(getSystem()) {{ - final ActorRef shard = getSystem().actorOf(Shard.props("config")); - final Props props = ShardTransaction.props(store.newReadWriteTransaction(), shard); - final ActorRef subject = getSystem().actorOf(props, "testWriteData"); - - new Within(duration("1 seconds")) { - protected void run() { - - subject.tell(new WriteData(TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME)), getRef()); - - final String out = new ExpectMsg("match hint") { - // do not put code outside this method, will run afterwards - protected String match(Object in) { - if (in instanceof WriteDataReply) { - return "match"; - } else { - throw noMatch(); - } - } - }.get(); // this extracts the received message - - assertEquals("match", out); - - assertModification(subject, WriteModification.class); - expectNoMsg(); - } - - - }; - }}; - } - @Test - public void testOnReceiveMergeData() throws Exception { - new JavaTestKit(getSystem()) {{ - final ActorRef shard = getSystem().actorOf(Shard.props("config")); - final Props props = ShardTransaction.props(store.newReadWriteTransaction(), shard); - final ActorRef subject = getSystem().actorOf(props, "testMergeData"); + }; + }}; + } + + @Test + public void testOnReceiveReadDataWhenDataNotFound() throws Exception { + new JavaTestKit(getSystem()) {{ + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props( store.newReadOnlyTransaction(), shard, testSchemaContext); + final ActorRef subject = getSystem().actorOf(props, "testReadDataWhenDataNotFound"); + + new Within(duration("1 seconds")) { + @Override + protected void run() { + + subject.tell( + new ReadData(TestModel.TEST_PATH).toSerializable(), + getRef()); + + final String out = new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in.getClass().equals(ReadDataReply.SERIALIZABLE_CLASS)) { + if (ReadDataReply.fromSerializable(testSchemaContext,TestModel.TEST_PATH, in) + .getNormalizedNode() + == null) { + return "match"; + } + return null; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + assertEquals("match", out); + + expectNoMsg(); + } - new Within(duration("1 seconds")) { - protected void run() { - subject.tell(new MergeData(TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME)), getRef()); + }; + }}; + } + + @Test + public void testOnReceiveDataExistsPositive() throws Exception { + new JavaTestKit(getSystem()) {{ + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props(store.newReadOnlyTransaction(), shard, testSchemaContext); + final ActorRef subject = getSystem().actorOf(props, "testDataExistsPositive"); + + new Within(duration("1 seconds")) { + @Override + protected void run() { + + subject.tell( + new DataExists(YangInstanceIdentifier.builder().build()).toSerializable(), + getRef()); + + final String out = new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in.getClass().equals(DataExistsReply.SERIALIZABLE_CLASS)) { + if (DataExistsReply.fromSerializable(in) + .exists()) { + return "match"; + } + return null; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + assertEquals("match", out); + + expectNoMsg(); + } - final String out = new ExpectMsg("match hint") { - // do not put code outside this method, will run afterwards - protected String match(Object in) { - if (in instanceof MergeDataReply) { - return "match"; - } else { - throw noMatch(); - } - } - }.get(); // this extracts the received message - assertEquals("match", out); + }; + }}; + } + + @Test + public void testOnReceiveDataExistsNegative() throws Exception { + new JavaTestKit(getSystem()) {{ + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, + Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props(store.newReadOnlyTransaction(), shard, testSchemaContext); + final ActorRef subject = getSystem().actorOf(props, "testDataExistsNegative"); + + new Within(duration("1 seconds")) { + @Override + protected void run() { + + subject.tell( + new DataExists(TestModel.TEST_PATH).toSerializable(), + getRef()); + + final String out = new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in.getClass().equals(DataExistsReply.SERIALIZABLE_CLASS)) { + if (!DataExistsReply.fromSerializable(in) + .exists()) { + return "match"; + } + return null; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + assertEquals("match", out); + + expectNoMsg(); + } - assertModification(subject, MergeModification.class); - expectNoMsg(); - } + }; + }}; + } + + private void assertModification(final ActorRef subject, + final Class modificationType) { + new JavaTestKit(getSystem()) {{ + new Within(duration("1 seconds")) { + @Override + protected void run() { + subject + .tell(new ShardTransaction.GetCompositedModification(), + getRef()); + + final CompositeModification compositeModification = + new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected CompositeModification match(Object in) { + if (in instanceof ShardTransaction.GetCompositeModificationReply) { + return ((ShardTransaction.GetCompositeModificationReply) in) + .getModification(); + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + assertTrue( + compositeModification.getModifications().size() == 1); + assertEquals(modificationType, + compositeModification.getModifications().get(0) + .getClass()); + } + }; + }}; + } + + @Test + public void testOnReceiveWriteData() throws Exception { + new JavaTestKit(getSystem()) {{ + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props(store.newWriteOnlyTransaction(), shard, TestModel.createTestContext()); + final ActorRef subject = + getSystem().actorOf(props, "testWriteData"); + + new Within(duration("1 seconds")) { + @Override + protected void run() { + + subject.tell(new WriteData(TestModel.TEST_PATH, + ImmutableNodes.containerNode(TestModel.TEST_QNAME), TestModel.createTestContext()).toSerializable(), + getRef()); + + final String out = new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in.getClass().equals(WriteDataReply.SERIALIZABLE_CLASS)) { + return "match"; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + assertEquals("match", out); + + assertModification(subject, WriteModification.class); + expectNoMsg(); + } - }; - }}; - } - @Test - public void testOnReceiveDeleteData() throws Exception { - new JavaTestKit(getSystem()) {{ - final ActorRef shard = getSystem().actorOf(Shard.props("config")); - final Props props = ShardTransaction.props(store.newReadWriteTransaction(), shard); - final ActorRef subject = getSystem().actorOf(props, "testDeleteData"); + }; + }}; + } + + @Test + public void testOnReceiveMergeData() throws Exception { + new JavaTestKit(getSystem()) {{ + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props(store.newReadWriteTransaction(), shard, testSchemaContext); + final ActorRef subject = + getSystem().actorOf(props, "testMergeData"); + + new Within(duration("1 seconds")) { + @Override + protected void run() { + + subject.tell(new MergeData(TestModel.TEST_PATH, + ImmutableNodes.containerNode(TestModel.TEST_QNAME), testSchemaContext).toSerializable(), + getRef()); + + final String out = new ExpectMsg(duration("500 milliseconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in.getClass().equals(MergeDataReply.SERIALIZABLE_CLASS)) { + return "match"; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + assertEquals("match", out); + + assertModification(subject, MergeModification.class); + + expectNoMsg(); + } - new Within(duration("1 seconds")) { - protected void run() { - subject.tell(new DeleteData(TestModel.TEST_PATH), getRef()); + }; + }}; + } + + @Test + public void testOnReceiveDeleteData() throws Exception { + new JavaTestKit(getSystem()) {{ + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props( store.newWriteOnlyTransaction(), shard, TestModel.createTestContext()); + final ActorRef subject = + getSystem().actorOf(props, "testDeleteData"); + + new Within(duration("1 seconds")) { + @Override + protected void run() { + + subject.tell(new DeleteData(TestModel.TEST_PATH).toSerializable(), getRef()); + + final String out = new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in.getClass().equals(DeleteDataReply.SERIALIZABLE_CLASS)) { + return "match"; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + assertEquals("match", out); + + assertModification(subject, DeleteModification.class); + expectNoMsg(); + } - final String out = new ExpectMsg("match hint") { - // do not put code outside this method, will run afterwards - protected String match(Object in) { - if (in instanceof DeleteDataReply) { - return "match"; - } else { - throw noMatch(); - } - } - }.get(); // this extracts the received message - assertEquals("match", out); + }; + }}; + } - assertModification(subject, DeleteModification.class); - expectNoMsg(); - } + @Test + public void testOnReceiveReadyTransaction() throws Exception { + new JavaTestKit(getSystem()) {{ + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props( store.newReadWriteTransaction(), shard, TestModel.createTestContext()); + final ActorRef subject = + getSystem().actorOf(props, "testReadyTransaction"); - }; - }}; - } + new Within(duration("1 seconds")) { + @Override + protected void run() { + subject.tell(new ReadyTransaction().toSerializable(), getRef()); - @Test - public void testOnReceiveReadyTransaction() throws Exception { - new JavaTestKit(getSystem()) {{ - final ActorRef shard = getSystem().actorOf(Shard.props("config")); - final Props props = ShardTransaction.props(store.newReadWriteTransaction(), shard); - final ActorRef subject = getSystem().actorOf(props, "testReadyTransaction"); + final String out = new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in.getClass().equals(ReadyTransactionReply.SERIALIZABLE_CLASS)) { + return "match"; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message - new Within(duration("1 seconds")) { - protected void run() { + assertEquals("match", out); - subject.tell(new ReadyTransaction(), getRef()); + expectNoMsg(); + } - final String out = new ExpectMsg("match hint") { - // do not put code outside this method, will run afterwards - protected String match(Object in) { - if (in instanceof ReadyTransactionReply) { - return "match"; - } else { - throw noMatch(); - } - } - }.get(); // this extracts the received message - assertEquals("match", out); + }; + }}; + + } + + @Test + public void testOnReceiveCloseTransaction() throws Exception { + new JavaTestKit(getSystem()) {{ + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props(store.newReadWriteTransaction(), shard, TestModel.createTestContext()); + final ActorRef subject = + getSystem().actorOf(props, "testCloseTransaction"); + + watch(subject); + + new Within(duration("2 seconds")) { + @Override + protected void run() { + + subject.tell(new CloseTransaction().toSerializable(), getRef()); + + final String out = new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in.getClass().equals(CloseTransactionReply.SERIALIZABLE_CLASS)) { + return "match"; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + assertEquals("match", out); + + final String termination = new ExpectMsg(duration("1 seconds"), "match hint") { + // do not put code outside this method, will run afterwards + @Override + protected String match(Object in) { + if (in instanceof Terminated) { + return "match"; + } else { + throw noMatch(); + } + } + }.get(); // this extracts the received message + + + expectNoMsg(); + } - expectNoMsg(); - } + }; + }}; - }; - }}; + } - } @Test - public void testOnReceiveCloseTransaction() throws Exception { - new JavaTestKit(getSystem()) {{ - final ActorRef shard = getSystem().actorOf(Shard.props("config")); - final Props props = ShardTransaction.props(store.newReadWriteTransaction(), shard); - final ActorRef subject = getSystem().actorOf(props, "testCloseTransaction"); - - new Within(duration("1 seconds")) { - protected void run() { + public void testNegativePerformingWriteOperationOnReadTransaction() throws Exception { + try { - subject.tell(new CloseTransaction(), getRef()); + final ActorRef shard = getSystem().actorOf(Shard.props(SHARD_IDENTIFIER, Collections.EMPTY_MAP, null)); + final Props props = + ShardTransaction.props(store.newReadOnlyTransaction(), shard, TestModel.createTestContext()); + final TestActorRef subject = TestActorRef.apply(props,getSystem()); - final String out = new ExpectMsg("match hint") { - // do not put code outside this method, will run afterwards - protected String match(Object in) { - if (in instanceof CloseTransactionReply) { - return "match"; - } else { - throw noMatch(); - } - } - }.get(); // this extracts the received message + subject.receive(new DeleteData(TestModel.TEST_PATH).toSerializable(), ActorRef.noSender()); + Assert.assertFalse(true); - assertEquals("match", out); - - expectNoMsg(); - } - - - }; - }}; + } catch (Exception cs) { + assertEquals(UnknownMessageException.class.getSimpleName(), cs.getClass().getSimpleName()); + assertTrue(cs.getMessage(), cs.getMessage().startsWith("Unknown message received ")); + } } - - -} \ No newline at end of file +}