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=9c07a61e604486a5f04d0488c4393c9dfecf9396;hb=refs%2Fchanges%2F20%2F28420%2F6;hp=2b2729c9598921cccdbb356b1bfd68c0f9bd87b4;hpb=ffc46de334c8a903844b9f4aff73dc68b2401659;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 2b2729c959..9c07a61e60 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 @@ -18,10 +18,10 @@ import com.google.common.util.concurrent.ListenableFuture; import com.google.common.util.concurrent.Uninterruptibles; import java.util.concurrent.Callable; import java.util.concurrent.TimeUnit; +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.shardstrategy.ShardStrategyFactory; 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; @@ -32,37 +32,45 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; import org.opendaylight.yangtools.yang.model.api.SchemaContext; -class IntegrationTestKit extends ShardTestKit { +public class IntegrationTestKit extends ShardTestKit { DatastoreContext.Builder datastoreContextBuilder; - IntegrationTestKit(ActorSystem actorSystem, Builder datastoreContextBuilder) { + public IntegrationTestKit(ActorSystem actorSystem, Builder datastoreContextBuilder) { super(actorSystem); this.datastoreContextBuilder = datastoreContextBuilder; } - DistributedDataStore setupDistributedDataStore(String typeName, String... shardNames) { - return setupDistributedDataStore(typeName, true, shardNames); + public DistributedDataStore setupDistributedDataStore(String typeName, String... shardNames) { + return setupDistributedDataStore(typeName, "module-shards.conf", true, SchemaContextHelper.full(), shardNames); } - DistributedDataStore setupDistributedDataStore(String typeName, boolean waitUntilLeader, + public DistributedDataStore setupDistributedDataStore(String typeName, boolean waitUntilLeader, String... shardNames) { - return setupDistributedDataStore(typeName, "module-shards.conf", waitUntilLeader, shardNames); + return setupDistributedDataStore(typeName, "module-shards.conf", waitUntilLeader, + SchemaContextHelper.full(), shardNames); } - DistributedDataStore setupDistributedDataStore(String typeName, String moduleShardsConfig, boolean waitUntilLeader, - String... shardNames) { + public DistributedDataStore setupDistributedDataStore(String typeName, String moduleShardsConfig, + boolean waitUntilLeader, String... shardNames) { + return setupDistributedDataStore(typeName, moduleShardsConfig, waitUntilLeader, + SchemaContextHelper.full(), shardNames); + } + + public DistributedDataStore setupDistributedDataStore(String typeName, String moduleShardsConfig, + boolean waitUntilLeader, SchemaContext schemaContext, String... shardNames) { ClusterWrapper cluster = new ClusterWrapperImpl(getSystem()); Configuration config = new ConfigurationImpl(moduleShardsConfig, "modules.conf"); - ShardStrategyFactory.setConfiguration(config); datastoreContextBuilder.dataStoreType(typeName); DatastoreContext datastoreContext = datastoreContextBuilder.build(); + DatastoreContextFactory mockContextFactory = Mockito.mock(DatastoreContextFactory.class); + Mockito.doReturn(datastoreContext).when(mockContextFactory).getBaseDatastoreContext(); + Mockito.doReturn(datastoreContext).when(mockContextFactory).getShardDatastoreContext(Mockito.anyString()); - DistributedDataStore dataStore = new DistributedDataStore(getSystem(), cluster, config, datastoreContext); + DistributedDataStore dataStore = new DistributedDataStore(getSystem(), cluster, config, mockContextFactory); - SchemaContext schemaContext = SchemaContextHelper.full(); dataStore.onGlobalContextUpdated(schemaContext); if(waitUntilLeader) { @@ -72,7 +80,7 @@ class IntegrationTestKit extends ShardTestKit { return dataStore; } - void waitUntilLeader(ActorContext actorContext, String... shardNames) { + public void waitUntilLeader(ActorContext actorContext, String... shardNames) { for(String shardName: shardNames) { ActorRef shard = findLocalShard(actorContext, shardName); @@ -82,7 +90,7 @@ class IntegrationTestKit extends ShardTestKit { } } - void waitUntilNoLeader(ActorContext actorContext, String... shardNames) { + public void waitUntilNoLeader(ActorContext actorContext, String... shardNames) { for(String shardName: shardNames) { ActorRef shard = findLocalShard(actorContext, shardName); assertNotNull("No local shard found", shard); @@ -91,7 +99,7 @@ class IntegrationTestKit extends ShardTestKit { } } - private ActorRef findLocalShard(ActorContext actorContext, String shardName) { + private static ActorRef findLocalShard(ActorContext actorContext, String shardName) { ActorRef shard = null; for(int i = 0; i < 20 * 5 && shard == null; i++) { Uninterruptibles.sleepUninterruptibly(50, TimeUnit.MILLISECONDS); @@ -188,4 +196,4 @@ class IntegrationTestKit extends ShardTestKit { } }, expType); } -} \ No newline at end of file +}