BUG-4340: raise test coverage to 80% - services related
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / services / ServiceMocking.java
1 package org.opendaylight.openflowplugin.impl.services;
2
3 import static org.mockito.Mockito.mock;
4 import static org.mockito.Mockito.when;
5
6 import com.google.common.util.concurrent.Futures;
7 import com.google.common.util.concurrent.ListenableFuture;
8 import io.netty.util.HashedWheelTimer;
9 import java.math.BigInteger;
10 import java.util.List;
11 import org.junit.Before;
12 import org.junit.runner.RunWith;
13 import org.mockito.Matchers;
14 import org.mockito.Mock;
15 import org.mockito.runners.MockitoJUnitRunner;
16 import org.opendaylight.openflowjava.protocol.api.connection.ConnectionAdapter;
17 import org.opendaylight.openflowjava.protocol.api.connection.OutboundQueue;
18 import org.opendaylight.openflowplugin.api.OFConstants;
19 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
20 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
21 import org.opendaylight.openflowplugin.api.openflow.device.DeviceState;
22 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
23 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
24 import org.opendaylight.openflowplugin.api.openflow.device.Xid;
25 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceInitializationPhaseHandler;
26 import org.opendaylight.openflowplugin.api.openflow.device.handlers.MultiMsgCollector;
27 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy;
28 import org.opendaylight.openflowplugin.impl.registry.flow.DeviceFlowRegistryImpl;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.FeaturesReply;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MultipartReply;
35 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
36 import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier;
37 import org.opendaylight.yangtools.yang.common.RpcResult;
38 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
39
40 @RunWith(MockitoJUnitRunner.class)
41 public abstract class ServiceMocking {
42     private static final BigInteger DUMMY_DATAPATH_ID = new BigInteger("444");
43     private static final Short DUMMY_VERSION = OFConstants.OFP_VERSION_1_3;
44     private static final Long DUMMY_XID_VALUE = 2121L;
45     private static final Xid DUMMY_XID = new Xid(DUMMY_XID_VALUE);
46
47     protected static final String DUMMY_NODE_ID = "dummyNodeID";
48     private static final KeyedInstanceIdentifier<Node, NodeKey> NODE_II
49             = InstanceIdentifier.create(Nodes.class).child(Node.class, new NodeKey(new NodeId(DUMMY_NODE_ID)));
50
51
52     @Mock
53     protected RequestContextStack mockedRequestContextStack;
54     @Mock
55     protected ConnectionContext mockedPrimConnectionContext;
56     @Mock
57     protected FeaturesReply mockedFeatures;
58     @Mock
59     protected ConnectionAdapter mockedConnectionAdapter;
60     @Mock
61     protected MessageSpy mockedMessagSpy;
62     @Mock
63     protected DeviceContext mockedDeviceContext;
64     @Mock
65     protected DeviceState mockedDeviceState;
66     @Mock
67     protected DeviceInitializationPhaseHandler mockedDevicePhaseHandler;
68     @Mock
69     protected RequestContext mockedRequestContext;
70     @Mock
71     protected OutboundQueue mockedOutboundQueue;
72     @Mock
73     protected MultiMsgCollector multiMessageCollector;
74
75     @Before
76     public void initialization() {
77         when(mockedRequestContextStack.createRequestContext()).thenReturn(mockedRequestContext);
78         when(mockedRequestContext.getXid()).thenReturn(DUMMY_XID);
79
80         when(mockedFeatures.getDatapathId()).thenReturn(DUMMY_DATAPATH_ID);
81         when(mockedFeatures.getVersion()).thenReturn(DUMMY_VERSION);
82
83         when(mockedPrimConnectionContext.getFeatures()).thenReturn(mockedFeatures);
84         when(mockedPrimConnectionContext.getConnectionAdapter()).thenReturn(mockedConnectionAdapter);
85         when(mockedPrimConnectionContext.getConnectionState()).thenReturn(ConnectionContext.CONNECTION_STATE.WORKING);
86         when(mockedPrimConnectionContext.getOutboundQueueProvider()).thenReturn(mockedOutboundQueue);
87
88         when(mockedDeviceState.getNodeInstanceIdentifier()).thenReturn(NODE_II);
89
90
91         when(mockedDeviceContext.getPrimaryConnectionContext()).thenReturn(mockedPrimConnectionContext);
92         when(mockedDeviceContext.getMessageSpy()).thenReturn(mockedMessagSpy);
93         when(mockedDeviceContext.getDeviceFlowRegistry()).thenReturn(new DeviceFlowRegistryImpl());
94         when(mockedDeviceContext.getDeviceState()).thenReturn(mockedDeviceState);
95         when(mockedDeviceContext.getTimer()).thenReturn(mock(HashedWheelTimer.class));
96         when(mockedDeviceContext.getMultiMsgCollector(Matchers.<RequestContext<List<MultipartReply>>>any())).thenReturn(multiMessageCollector);
97
98         setup();
99     }
100
101     protected void setup() {
102         //NOOP - to be overloaded
103     }
104
105
106     protected  <T> void mockSuccessfulFuture() {
107         ListenableFuture<RpcResult<T>> dummySuccessfulFuture = Futures.immediateFuture(RpcResultBuilder.success((T) null).build());
108         when(mockedRequestContext.getFuture()).thenReturn(dummySuccessfulFuture);
109     }
110
111 }