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%2FDistributedDataStoreIntegrationTest.java;h=fc527b6bffe13726d89d5923cee71a6c471af055;hp=f400e74231f83b7f72881656fe891404a0b7b24d;hb=4caeacba93677c05dd79bc4cb7058f021fa1e88b;hpb=c1362c86eb19e92e6c64d10099a45deb499c6db1 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DistributedDataStoreIntegrationTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DistributedDataStoreIntegrationTest.java index f400e74231..fc527b6bff 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DistributedDataStoreIntegrationTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DistributedDataStoreIntegrationTest.java @@ -1,53 +1,211 @@ package org.opendaylight.controller.cluster.datastore; +import akka.actor.ActorSystem; +import akka.event.Logging; +import akka.testkit.JavaTestKit; import com.google.common.base.Optional; import com.google.common.util.concurrent.ListenableFuture; +import junit.framework.Assert; +import org.apache.commons.io.FileUtils; +import org.junit.After; +import org.junit.Before; import org.junit.Test; +import org.opendaylight.controller.cluster.datastore.shardstrategy.ShardStrategyFactory; +import org.opendaylight.controller.cluster.datastore.utils.MockClusterWrapper; +import org.opendaylight.controller.md.cluster.datastore.model.CarsModel; +import org.opendaylight.controller.md.cluster.datastore.model.PeopleModel; +import org.opendaylight.controller.md.cluster.datastore.model.SchemaContextHelper; import org.opendaylight.controller.md.cluster.datastore.model.TestModel; import org.opendaylight.controller.sal.core.spi.data.DOMStoreReadWriteTransaction; import org.opendaylight.controller.sal.core.spi.data.DOMStoreThreePhaseCommitCohort; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes; +import java.io.File; +import java.io.IOException; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.TimeoutException; + import static junit.framework.Assert.assertEquals; import static junit.framework.Assert.assertTrue; +import static junit.framework.Assert.fail; + +public class DistributedDataStoreIntegrationTest { + + private static ActorSystem system; + + @Before + public void setUp() throws IOException { + File journal = new File("journal"); + + if(journal.exists()) { + FileUtils.deleteDirectory(journal); + } + + + System.setProperty("shard.persistent", "false"); + system = ActorSystem.create("test"); + } + + @After + public void tearDown() { + JavaTestKit.shutdownActorSystem(system); + system = null; + } -public class DistributedDataStoreIntegrationTest extends AbstractActorTest { + protected ActorSystem getSystem() { + return system; + } @Test public void integrationTest() throws Exception { - DistributedDataStore distributedDataStore = - new DistributedDataStore(getSystem(), "config"); + final Configuration configuration = new ConfigurationImpl("module-shards.conf", "modules.conf"); + ShardStrategyFactory.setConfiguration(configuration); + + + + new JavaTestKit(getSystem()) { + { + + new Within(duration("10 seconds")) { + protected void run() { + try { + final DistributedDataStore distributedDataStore = + new DistributedDataStore(getSystem(), "config", new MockClusterWrapper(), configuration); + + distributedDataStore.onGlobalContextUpdated(TestModel.createTestContext()); + + // Wait for a specific log message to show up + final boolean result = + new JavaTestKit.EventFilter(Logging.Info.class + ) { + protected Boolean run() { + return true; + } + }.from("akka://test/user/shardmanager-config/member-1-shard-test-1-config") + .message("Switching from state Candidate to Leader") + .occurrences(1).exec(); + + assertEquals(true, result); + + DOMStoreReadWriteTransaction transaction = + distributedDataStore.newReadWriteTransaction(); + + transaction + .write(TestModel.TEST_PATH, ImmutableNodes + .containerNode(TestModel.TEST_QNAME)); + + ListenableFuture>> + future = + transaction.read(TestModel.TEST_PATH); + + Optional> optional = + future.get(); + + Assert.assertTrue("Node not found", optional.isPresent()); + + NormalizedNode normalizedNode = + optional.get(); + + assertEquals(TestModel.TEST_QNAME, + normalizedNode.getNodeType()); + + DOMStoreThreePhaseCommitCohort ready = + transaction.ready(); + + ListenableFuture canCommit = + ready.canCommit(); + + assertTrue(canCommit.get(5, TimeUnit.SECONDS)); + + ListenableFuture preCommit = + ready.preCommit(); + + preCommit.get(5, TimeUnit.SECONDS); + + ListenableFuture commit = ready.commit(); + + commit.get(5, TimeUnit.SECONDS); + } catch (ExecutionException | TimeoutException | InterruptedException e){ + fail(e.getMessage()); + } + } + }; + } + }; + + } + + + //FIXME : Disabling test because it's flaky + //@Test + public void integrationTestWithMultiShardConfiguration() + throws ExecutionException, InterruptedException, TimeoutException { + final Configuration configuration = new ConfigurationImpl("module-shards.conf", "modules.conf"); + + ShardStrategyFactory.setConfiguration(configuration); + + new JavaTestKit(getSystem()) { + { + + new Within(duration("10 seconds")) { + protected void run() { + try { + final DistributedDataStore distributedDataStore = + new DistributedDataStore(getSystem(), "config", + new MockClusterWrapper(), configuration); + + distributedDataStore.onGlobalContextUpdated( + SchemaContextHelper.full()); - distributedDataStore.onGlobalContextUpdated(TestModel.createTestContext()); + // Wait for a specific log message to show up + final boolean result = + new JavaTestKit.EventFilter( + Logging.Info.class + ) { + protected Boolean run() { + return true; + } + }.from( + "akka://test/user/shardmanager-config/member-1-shard-cars-1-config") + .message( + "Switching from state Candidate to Leader") + .occurrences(1) + .exec(); - DOMStoreReadWriteTransaction transaction = - distributedDataStore.newReadWriteTransaction(); + Thread.sleep(1000); - transaction.write(TestModel.TEST_PATH, ImmutableNodes.containerNode(TestModel.TEST_QNAME)); - ListenableFuture>> future = - transaction.read(TestModel.TEST_PATH); + DOMStoreReadWriteTransaction transaction = + distributedDataStore.newReadWriteTransaction(); - Optional> optional = future.get(); + transaction.write(CarsModel.BASE_PATH, CarsModel.emptyContainer()); + transaction.write(PeopleModel.BASE_PATH, PeopleModel.emptyContainer()); - NormalizedNode normalizedNode = optional.get(); + DOMStoreThreePhaseCommitCohort ready = transaction.ready(); - assertEquals(TestModel.TEST_QNAME, normalizedNode.getNodeType()); + ListenableFuture canCommit = ready.canCommit(); - DOMStoreThreePhaseCommitCohort ready = transaction.ready(); + assertTrue(canCommit.get(5, TimeUnit.SECONDS)); - ListenableFuture canCommit = ready.canCommit(); + ListenableFuture preCommit = ready.preCommit(); - assertTrue(canCommit.get()); + preCommit.get(5, TimeUnit.SECONDS); - ListenableFuture preCommit = ready.preCommit(); + ListenableFuture commit = ready.commit(); - preCommit.get(); + commit.get(5, TimeUnit.SECONDS); - ListenableFuture commit = ready.commit(); + assertEquals(true, result); + } catch(ExecutionException | TimeoutException | InterruptedException e){ + fail(e.getMessage()); + } + } + }; + } + }; - commit.get(); }