Merge "Bug 8902 - Reconciliation Framework changes"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / OpenFlowPluginProviderImplTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowplugin.impl;
10
11 import static org.mockito.Matchers.any;
12 import static org.mockito.Matchers.eq;
13 import static org.mockito.Mockito.verify;
14 import static org.mockito.Mockito.when;
15
16 import com.google.common.collect.Lists;
17 import com.google.common.util.concurrent.Futures;
18 import org.junit.Before;
19 import org.junit.Test;
20 import org.junit.runner.RunWith;
21 import org.mockito.Mock;
22 import org.mockito.runners.MockitoJUnitRunner;
23 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
24 import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
25 import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;
26 import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipListenerRegistration;
27 import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipService;
28 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker;
29 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
30 import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider;
31 import org.opendaylight.openflowjava.protocol.spi.connection.SwitchConnectionProvider;
32 import org.opendaylight.openflowplugin.api.openflow.OpenFlowPluginProvider;
33 import org.opendaylight.openflowplugin.api.openflow.configuration.ConfigurationProperty;
34 import org.opendaylight.openflowplugin.api.openflow.configuration.ConfigurationService;
35 import org.opendaylight.openflowplugin.api.openflow.mastership.MastershipChangeServiceManager;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflowplugin.sm.control.rev150812.StatisticsManagerControlService;
37
38 @RunWith(MockitoJUnitRunner.class)
39 public class OpenFlowPluginProviderImplTest {
40
41     @Mock
42     DataBroker dataBroker;
43
44     @Mock
45     RpcProviderRegistry rpcProviderRegistry;
46
47     @Mock
48     NotificationPublishService notificationPublishService;
49
50     @Mock
51     WriteTransaction writeTransaction;
52
53     @Mock
54     EntityOwnershipService entityOwnershipService;
55
56     @Mock
57     EntityOwnershipListenerRegistration entityOwnershipListenerRegistration;
58
59     @Mock
60     BindingAwareBroker.RpcRegistration<StatisticsManagerControlService> controlServiceRegistration;
61
62     @Mock
63     SwitchConnectionProvider switchConnectionProvider;
64
65     @Mock
66     ClusterSingletonServiceProvider clusterSingletonServiceProvider;
67
68     @Mock
69     ConfigurationService configurationService;
70
71     @Mock
72     MastershipChangeServiceManager mastershipChangeServiceManager;
73
74     private static final int RPC_REQUESTS_QUOTA = 500;
75     private static final long GLOBAL_NOTIFICATION_QUOTA = 131072;
76     private static final int THREAD_POOL_MIN_THREADS = 1;
77     private static final int THREAD_POOL_MAX_THREADS = 32000;
78     private static final long THREAD_POOL_TIMEOUT = 60;
79     private static final long BASIC_TIMER_DELAY = 1L;
80     private static final boolean USE_SINGLE_LAYER_SERIALIZATION = false;
81
82     @Before
83     public void setUp() throws Exception {
84         when(dataBroker.newWriteOnlyTransaction()).thenReturn(writeTransaction);
85         when(writeTransaction.submit()).thenReturn(Futures.immediateCheckedFuture(null));
86         when(entityOwnershipService.registerListener(any(), any())).thenReturn(entityOwnershipListenerRegistration);
87         when(rpcProviderRegistry.addRpcImplementation(eq(StatisticsManagerControlService.class), any())).thenReturn(controlServiceRegistration);
88         when(switchConnectionProvider.startup()).thenReturn(Futures.immediateFuture(true));
89         when(switchConnectionProvider.shutdown()).thenReturn(Futures.immediateFuture(true));
90         when(configurationService.getProperty(eq(ConfigurationProperty.USE_SINGLE_LAYER_SERIALIZATION.toString()), any())).thenReturn(USE_SINGLE_LAYER_SERIALIZATION);
91         when(configurationService.getProperty(eq(ConfigurationProperty.THREAD_POOL_MIN_THREADS.toString()), any())).thenReturn(THREAD_POOL_MIN_THREADS);
92         when(configurationService.getProperty(eq(ConfigurationProperty.THREAD_POOL_MAX_THREADS.toString()), any())).thenReturn(THREAD_POOL_MAX_THREADS);
93         when(configurationService.getProperty(eq(ConfigurationProperty.THREAD_POOL_TIMEOUT.toString()), any())).thenReturn(THREAD_POOL_TIMEOUT);
94         when(configurationService.getProperty(eq(ConfigurationProperty.RPC_REQUESTS_QUOTA.toString()), any())).thenReturn(RPC_REQUESTS_QUOTA);
95         when(configurationService.getProperty(eq(ConfigurationProperty.GLOBAL_NOTIFICATION_QUOTA.toString()), any())).thenReturn(GLOBAL_NOTIFICATION_QUOTA);
96         when(configurationService.getProperty(eq(ConfigurationProperty.BASIC_TIMER_DELAY.toString()), any())).thenReturn(BASIC_TIMER_DELAY);
97     }
98
99     @Test
100     public void testInitializeAndClose() throws Exception {
101         final OpenFlowPluginProvider provider = new OpenFlowPluginProviderFactoryImpl().newInstance(
102                 configurationService,
103                 dataBroker,
104                 rpcProviderRegistry,
105                 notificationPublishService,
106                 entityOwnershipService,
107                 Lists.newArrayList(switchConnectionProvider),
108                 clusterSingletonServiceProvider,
109                 mastershipChangeServiceManager);
110
111         verify(switchConnectionProvider).startup();
112         provider.close();
113         verify(switchConnectionProvider).shutdown();
114     }
115 }