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%2FIntegrationTestKit.java;h=9cc6d838c8c547a59384b97a63ea36fbb26e1909;hb=2f523ae2a9be64bf53d1962fd9ddefe47617ff28;hp=9c07a61e604486a5f04d0488c4393c9dfecf9396;hpb=c2d1b9207fe82d36db83501e1baaffe7bc7da9ae;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/IntegrationTestKit.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/IntegrationTestKit.java index 9c07a61e60..9cc6d838c8 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/IntegrationTestKit.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/IntegrationTestKit.java @@ -22,6 +22,7 @@ import org.mockito.Mockito; import org.opendaylight.controller.cluster.datastore.DatastoreContext.Builder; import org.opendaylight.controller.cluster.datastore.config.Configuration; import org.opendaylight.controller.cluster.datastore.config.ConfigurationImpl; +import org.opendaylight.controller.cluster.datastore.messages.DatastoreSnapshot; import org.opendaylight.controller.cluster.datastore.utils.ActorContext; import org.opendaylight.controller.md.cluster.datastore.model.SchemaContextHelper; import org.opendaylight.controller.sal.core.spi.data.DOMStoreReadTransaction; @@ -34,13 +35,18 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext; public class IntegrationTestKit extends ShardTestKit { - DatastoreContext.Builder datastoreContextBuilder; + protected DatastoreContext.Builder datastoreContextBuilder; + protected DatastoreSnapshot restoreFromSnapshot; public IntegrationTestKit(ActorSystem actorSystem, Builder datastoreContextBuilder) { super(actorSystem); this.datastoreContextBuilder = datastoreContextBuilder; } + public DatastoreContext.Builder getDatastoreContextBuilder() { + return datastoreContextBuilder; + } + public DistributedDataStore setupDistributedDataStore(String typeName, String... shardNames) { return setupDistributedDataStore(typeName, "module-shards.conf", true, SchemaContextHelper.full(), shardNames); } @@ -69,7 +75,8 @@ public class IntegrationTestKit extends ShardTestKit { Mockito.doReturn(datastoreContext).when(mockContextFactory).getBaseDatastoreContext(); Mockito.doReturn(datastoreContext).when(mockContextFactory).getShardDatastoreContext(Mockito.anyString()); - DistributedDataStore dataStore = new DistributedDataStore(getSystem(), cluster, config, mockContextFactory); + DistributedDataStore dataStore = new DistributedDataStore(getSystem(), cluster, config, mockContextFactory, + restoreFromSnapshot); dataStore.onGlobalContextUpdated(schemaContext); @@ -77,6 +84,7 @@ public class IntegrationTestKit extends ShardTestKit { waitUntilLeader(dataStore.getActorContext(), shardNames); } + datastoreContextBuilder = DatastoreContext.newBuilderFrom(datastoreContext); return dataStore; } @@ -140,7 +148,7 @@ public class IntegrationTestKit extends ShardTestKit { assertEquals("Data node", nodeToWrite, optional.get()); } - void doCommit(final DOMStoreThreePhaseCommitCohort cohort) throws Exception { + public void doCommit(final DOMStoreThreePhaseCommitCohort cohort) throws Exception { Boolean canCommit = cohort.canCommit().get(7, TimeUnit.SECONDS); assertEquals("canCommit", true, canCommit); cohort.preCommit().get(5, TimeUnit.SECONDS); @@ -154,7 +162,7 @@ public class IntegrationTestKit extends ShardTestKit { cohort.commit().get(5, TimeUnit.SECONDS); } - void cleanup(DistributedDataStore dataStore) { + public void cleanup(DistributedDataStore dataStore) { if(dataStore != null) { dataStore.getActorContext().getShardManager().tell(PoisonPill.getInstance(), null); }