Merge "Implement SalExperimenterMpMessageService"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / statistics / services / direct / AbstractDirectStatisticsServiceTest.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.direct;
10
11 import static org.mockito.Matchers.any;
12 import static org.mockito.Mockito.when;
13
14 import java.math.BigInteger;
15 import org.junit.Before;
16 import org.junit.Test;
17 import org.junit.runner.RunWith;
18 import org.mockito.Mock;
19 import org.mockito.runners.MockitoJUnitRunner;
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.RequestContextStack;
27 import org.opendaylight.openflowplugin.api.openflow.device.TranslatorLibrary;
28 import org.opendaylight.openflowplugin.api.openflow.device.handlers.MultiMsgCollector;
29 import org.opendaylight.openflowplugin.api.openflow.md.util.OpenflowVersion;
30 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy;
31 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.ConvertorManager;
32 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.ConvertorManagerFactory;
33 import org.opendaylight.openflowplugin.openflow.md.util.InventoryDataServiceUtil;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeConnectorId;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
38 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
39 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
40 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.FeaturesReply;
41 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetFeaturesOutput;
42 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
43 import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier;
44
45 @RunWith(MockitoJUnitRunner.class)
46 public abstract class AbstractDirectStatisticsServiceTest {
47     protected static final Long PORT_NO = 1L;
48     protected static final BigInteger DATAPATH_ID = BigInteger.TEN;
49     protected static final short OF_VERSION = OFConstants.OFP_VERSION_1_3;
50     protected static final String NODE_ID = "openflow:1";
51
52     @Mock
53     protected RequestContextStack requestContextStack;
54     @Mock
55     protected DeviceContext deviceContext;
56     @Mock
57     protected ConnectionContext connectionContext;
58     @Mock
59     protected FeaturesReply features;
60     @Mock
61     protected MessageSpy messageSpy;
62     @Mock
63     protected OutboundQueue outboundQueueProvider;
64     @Mock
65     protected MultiMsgCollector multiMsgCollector;
66     @Mock
67     protected TranslatorLibrary translatorLibrary;
68     @Mock
69     protected DeviceState deviceState;
70     @Mock
71     protected DeviceInfo deviceInfo;
72     @Mock
73     protected GetFeaturesOutput getFeaturesOutput;
74
75     protected NodeConnectorId nodeConnectorId;
76     protected KeyedInstanceIdentifier<Node, NodeKey> nodeInstanceIdentifier;
77     protected ConvertorManager convertorManager;
78
79     protected static NodeRef createNodeRef(String nodeIdValue) {
80         InstanceIdentifier<Node> nodePath = InstanceIdentifier.create(Nodes.class)
81                 .child(Node.class, new NodeKey(new NodeId(nodeIdValue)));
82
83         return new NodeRef(nodePath);
84     }
85
86     @Before
87     public void init() throws Exception {
88         nodeConnectorId = InventoryDataServiceUtil.nodeConnectorIdfromDatapathPortNo(
89                 DATAPATH_ID, PORT_NO, OpenflowVersion.get(OF_VERSION));
90
91         nodeInstanceIdentifier = InstanceIdentifier
92                 .create(Nodes.class)
93                 .child(Node.class, new NodeKey(new NodeId(NODE_ID)));
94
95         convertorManager = ConvertorManagerFactory.createDefaultManager();
96
97         when(deviceContext.getPrimaryConnectionContext()).thenReturn(connectionContext);
98         when(deviceContext.getMessageSpy()).thenReturn(messageSpy);
99         when(deviceContext.getMultiMsgCollector(any())).thenReturn(multiMsgCollector);
100         when(deviceContext.oook()).thenReturn(translatorLibrary);
101         when(deviceContext.getDeviceState()).thenReturn(deviceState);
102         when(deviceContext.getDeviceInfo()).thenReturn(deviceInfo);
103         when(deviceInfo.getNodeInstanceIdentifier()).thenReturn(nodeInstanceIdentifier);
104         when(deviceInfo.getNodeId()).thenReturn(new NodeId(NODE_ID));
105         when(deviceInfo.getVersion()).thenReturn(OF_VERSION);
106         when(deviceInfo.getDatapathId()).thenReturn(DATAPATH_ID);
107         when(getFeaturesOutput.getVersion()).thenReturn(OF_VERSION);
108         when(getFeaturesOutput.getDatapathId()).thenReturn(DATAPATH_ID);
109         when(connectionContext.getFeatures()).thenReturn(features);
110         when(connectionContext.getOutboundQueueProvider()).thenReturn(outboundQueueProvider);
111         when(features.getVersion()).thenReturn(OF_VERSION);
112         when(features.getDatapathId()).thenReturn(DATAPATH_ID);
113         setUp();
114     }
115
116     protected abstract void setUp() throws Exception;
117
118     @Test
119     public abstract void testBuildRequestBody() throws Exception;
120
121     @Test
122     public abstract void testBuildReply() throws Exception;
123
124     @Test
125     public abstract void testStoreStatistics() throws Exception;
126 }