Bump mdsal to 5.0.2
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / statistics / services / AbstractStatsServiceTest.java
1 /*
2  * Copyright (c) 2015 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.statistics.services;
10
11 import static org.mockito.ArgumentMatchers.any;
12
13 import com.google.common.util.concurrent.FutureCallback;
14 import org.junit.Before;
15 import org.junit.runner.RunWith;
16 import org.mockito.Mock;
17 import org.mockito.Mockito;
18 import org.mockito.runners.MockitoJUnitRunner;
19 import org.mockito.stubbing.Answer;
20 import org.opendaylight.openflowjava.protocol.api.connection.OutboundQueue;
21 import org.opendaylight.openflowplugin.api.OFConstants;
22 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
23 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
24 import org.opendaylight.openflowplugin.api.openflow.device.DeviceInfo;
25 import org.opendaylight.openflowplugin.api.openflow.device.DeviceState;
26 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
27 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
28 import org.opendaylight.openflowplugin.api.openflow.device.TranslatorLibrary;
29 import org.opendaylight.openflowplugin.api.openflow.device.handlers.MultiMsgCollector;
30 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.FeaturesReply;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetFeaturesOutput;
38 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
39 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
40 import org.opendaylight.yangtools.yang.common.Uint64;
41 import org.opendaylight.yangtools.yang.common.Uint8;
42
43 /**
44  * Created by mirehak on 7/23/15.
45  */
46 @RunWith(MockitoJUnitRunner.class)
47 public abstract class AbstractStatsServiceTest {
48     @Mock
49     protected RequestContextStack rqContextStack;
50     @Mock
51     protected DeviceContext deviceContext;
52     @Mock
53     protected ConnectionContext connectionContext;
54     @Mock
55     protected FeaturesReply features;
56     @Mock
57     private GetFeaturesOutput getFeaturesOutput;
58     @Mock
59     protected MessageSpy messageSpy;
60     @Mock
61     protected OutboundQueue outboundQueueProvider;
62     @Mock
63     protected MultiMsgCollector multiMsgCollector;
64     @Mock
65     protected TranslatorLibrary translatorLibrary;
66     @Mock
67     protected DeviceState deviceState;
68     @Mock
69     protected DeviceInfo deviceInfo;
70
71
72     public static final NodeId NODE_ID = new NodeId("unit-test-node:123");
73
74     protected final Answer<Void> answerVoidToCallback = invocation -> {
75         final FutureCallback<OfHeader> callback = (FutureCallback<OfHeader>) invocation.getArguments()[2];
76         callback.onSuccess(null);
77         return null;
78     };
79
80     @Before
81     public void init() throws Exception {
82         Mockito.lenient().when(deviceContext.getPrimaryConnectionContext()).thenReturn(connectionContext);
83         Mockito.when(deviceContext.getMessageSpy()).thenReturn(messageSpy);
84         Mockito.lenient().when(deviceContext.getMultiMsgCollector(any(RequestContext.class)))
85                 .thenReturn(multiMsgCollector);
86         Mockito.lenient().when(deviceContext.oook()).thenReturn(translatorLibrary);
87         Mockito.lenient().when(deviceContext.getDeviceState()).thenReturn(deviceState);
88         Mockito.when(deviceContext.getDeviceInfo()).thenReturn(deviceInfo);
89         Mockito.lenient().when(deviceInfo.getNodeId()).thenReturn(NODE_ID);
90         Mockito.lenient().when(deviceInfo.getVersion()).thenReturn(OFConstants.OFP_VERSION_1_3);
91         Mockito.lenient().when(deviceInfo.getDatapathId()).thenReturn(Uint64.valueOf(10));
92         Mockito.lenient().when(connectionContext.getFeatures()).thenReturn(features);
93         Mockito.lenient().when(connectionContext.getOutboundQueueProvider()).thenReturn(outboundQueueProvider);
94         Mockito.lenient().when(features.getVersion()).thenReturn(Uint8.valueOf(OFConstants.OFP_VERSION_1_3));
95         Mockito.lenient().when(getFeaturesOutput.getDatapathId()).thenReturn(Uint64.valueOf(123L));
96         Mockito.lenient().when(getFeaturesOutput.getVersion()).thenReturn(Uint8.valueOf(OFConstants.OFP_VERSION_1_3));
97
98         setUp();
99     }
100
101     protected void setUp() {
102         //NOOP
103     }
104
105     protected static NodeRef createNodeRef(final String nodeIdValue) {
106         InstanceIdentifier<Node> nodePath = InstanceIdentifier.create(Nodes.class)
107                 .child(Node.class, new NodeKey(new NodeId(nodeIdValue)));
108         return new NodeRef(nodePath);
109     }
110 }