X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflowplugin-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2FOpenFlowPluginProviderImplTest.java;h=9f6abc99d7d710eee937e002d048b21f072aaa88;hb=refs%2Fchanges%2F66%2F59166%2F14;hp=dc619d61fc0f707f2422d9a200b2b81b9bfc1216;hpb=888fadc5d77ea2b4d020cd1bcaf62e7aa39f0a2c;p=openflowplugin.git diff --git a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/OpenFlowPluginProviderImplTest.java b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/OpenFlowPluginProviderImplTest.java index dc619d61fc..9f6abc99d7 100644 --- a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/OpenFlowPluginProviderImplTest.java +++ b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/OpenFlowPluginProviderImplTest.java @@ -15,14 +15,13 @@ import static org.mockito.Mockito.when; import com.google.common.collect.Lists; import com.google.common.util.concurrent.Futures; -import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; import org.opendaylight.controller.md.sal.binding.api.DataBroker; -import org.opendaylight.controller.md.sal.binding.api.NotificationService; +import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService; import org.opendaylight.controller.md.sal.binding.api.WriteTransaction; import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipListenerRegistration; import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipService; @@ -30,6 +29,8 @@ import org.opendaylight.controller.sal.binding.api.BindingAwareBroker; import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry; import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider; import org.opendaylight.openflowjava.protocol.spi.connection.SwitchConnectionProvider; +import org.opendaylight.openflowplugin.api.openflow.configuration.ConfigurationProperty; +import org.opendaylight.openflowplugin.api.openflow.configuration.ConfigurationService; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflowplugin.sm.control.rev150812.StatisticsManagerControlService; @RunWith(MockitoJUnitRunner.class) @@ -42,7 +43,7 @@ public class OpenFlowPluginProviderImplTest { RpcProviderRegistry rpcProviderRegistry; @Mock - NotificationService notificationService; + NotificationPublishService notificationPublishService; @Mock WriteTransaction writeTransaction; @@ -62,11 +63,16 @@ public class OpenFlowPluginProviderImplTest { @Mock ClusterSingletonServiceProvider clusterSingletonServiceProvider; - private static final long RPC_REQUESTS_QUOTA = 500; + @Mock + ConfigurationService configurationService; + + private static final int RPC_REQUESTS_QUOTA = 500; private static final long GLOBAL_NOTIFICATION_QUOTA = 131072; private static final int THREAD_POOL_MIN_THREADS = 1; private static final int THREAD_POOL_MAX_THREADS = 32000; private static final long THREAD_POOL_TIMEOUT = 60; + private static final long BASIC_TIMER_DELAY = 1L; + private static final boolean USE_SINGLE_LAYER_SERIALIZATION = false; private OpenFlowPluginProviderImpl provider; @@ -77,24 +83,22 @@ public class OpenFlowPluginProviderImplTest { when(entityOwnershipService.registerListener(any(), any())).thenReturn(entityOwnershipListenerRegistration); when(rpcProviderRegistry.addRpcImplementation(eq(StatisticsManagerControlService.class), any())).thenReturn(controlServiceRegistration); when(switchConnectionProvider.startup()).thenReturn(Futures.immediateCheckedFuture(null)); + when(configurationService.getProperty(eq(ConfigurationProperty.USE_SINGLE_LAYER_SERIALIZATION.toString()), any())).thenReturn(USE_SINGLE_LAYER_SERIALIZATION); + when(configurationService.getProperty(eq(ConfigurationProperty.THREAD_POOL_MIN_THREADS.toString()), any())).thenReturn(THREAD_POOL_MIN_THREADS); + when(configurationService.getProperty(eq(ConfigurationProperty.THREAD_POOL_MAX_THREADS.toString()), any())).thenReturn(THREAD_POOL_MAX_THREADS); + when(configurationService.getProperty(eq(ConfigurationProperty.THREAD_POOL_TIMEOUT.toString()), any())).thenReturn(THREAD_POOL_TIMEOUT); + when(configurationService.getProperty(eq(ConfigurationProperty.RPC_REQUESTS_QUOTA.toString()), any())).thenReturn(RPC_REQUESTS_QUOTA); + when(configurationService.getProperty(eq(ConfigurationProperty.GLOBAL_NOTIFICATION_QUOTA.toString()), any())).thenReturn(GLOBAL_NOTIFICATION_QUOTA); + when(configurationService.getProperty(eq(ConfigurationProperty.BASIC_TIMER_DELAY.toString()), any())).thenReturn(BASIC_TIMER_DELAY); provider = new OpenFlowPluginProviderImpl( - RPC_REQUESTS_QUOTA, - GLOBAL_NOTIFICATION_QUOTA, - THREAD_POOL_MIN_THREADS, - THREAD_POOL_MAX_THREADS, - THREAD_POOL_TIMEOUT); - - provider.setDataBroker(dataBroker); - provider.setRpcProviderRegistry(rpcProviderRegistry); - provider.setNotificationProviderService(notificationService); - provider.setSwitchConnectionProviders(Lists.newArrayList(switchConnectionProvider)); - provider.setClusteringSingletonServicesProvider(clusterSingletonServiceProvider); - } - - @After - public void tearDown() throws Exception { - + configurationService, + Lists.newArrayList(switchConnectionProvider), + dataBroker, + rpcProviderRegistry, + notificationPublishService, + clusterSingletonServiceProvider, + entityOwnershipService); } @Test @@ -102,4 +106,4 @@ public class OpenFlowPluginProviderImplTest { provider.initialize(); verify(switchConnectionProvider).startup(); } -} \ No newline at end of file +}