Bug 5596 Cleaning part 3
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / statistics / StatisticsContextImpMockInitiation.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;
10
11 import static org.mockito.Mockito.mock;
12 import static org.mockito.Mockito.when;
13
14 import java.math.BigInteger;
15 import org.junit.Before;
16 import org.opendaylight.openflowjava.protocol.api.connection.OutboundQueue;
17 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
18 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
19 import org.opendaylight.openflowplugin.api.openflow.device.DeviceInfo;
20 import org.opendaylight.openflowplugin.api.openflow.device.DeviceManager;
21 import org.opendaylight.openflowplugin.api.openflow.device.DeviceState;
22 import org.opendaylight.openflowplugin.api.openflow.lifecycle.LifecycleConductor;
23 import org.opendaylight.openflowplugin.api.openflow.statistics.StatisticsManager;
24 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy;
25 import org.opendaylight.openflowplugin.impl.statistics.services.dedicated.StatisticsGatheringOnTheFlyService;
26 import org.opendaylight.openflowplugin.impl.statistics.services.dedicated.StatisticsGatheringService;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.FeaturesReply;
32 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
33 import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier;
34
35
36 class StatisticsContextImpMockInitiation {
37     Boolean isTable = false;
38     Boolean isFlow = false;
39     Boolean isGroup = false;
40     Boolean isMeter = false;
41     Boolean isPort = false;
42     Boolean isQueue = false;
43
44     protected DeviceContext mockedDeviceContext;
45     protected DeviceState mockedDeviceState;
46
47     StatisticsGatheringService mockedStatisticsGatheringService;
48     StatisticsGatheringOnTheFlyService mockedStatisticsOnFlyGatheringService;
49     ConnectionContext mockedConnectionContext;
50     DeviceInfo mockedDeviceInfo;
51     StatisticsManager mockedStatisticsManager;
52
53     static final KeyedInstanceIdentifier<Node, NodeKey> dummyNodeII = InstanceIdentifier.create(Nodes.class)
54             .child(Node.class, new NodeKey(new NodeId("dummyNodeId")));
55
56     LifecycleConductor mockConductor;
57
58     @Before
59     public void initialize() {
60         mockedDeviceContext = mock(DeviceContext.class);
61         mockedStatisticsGatheringService = mock(StatisticsGatheringService.class);
62         mockedStatisticsOnFlyGatheringService = mock(StatisticsGatheringOnTheFlyService.class);
63         mockedConnectionContext = mock(ConnectionContext.class);
64         mockedDeviceState = mock(DeviceState.class);
65         mockedDeviceInfo = mock(DeviceInfo.class);
66         mockedStatisticsManager = mock(StatisticsManager.class);
67
68         final FeaturesReply mockedFeatures = mock(FeaturesReply.class);
69         final MessageSpy mockedMessageSpy = mock(MessageSpy.class);
70         final OutboundQueue mockedOutboundQueue = mock(OutboundQueue.class);
71         final DeviceManager mockedDeviceManager = mock(DeviceManager.class);
72
73         mockConductor = mock(LifecycleConductor.class);
74
75         when(mockedDeviceContext.getDeviceState()).thenReturn(mockedDeviceState);
76         when(mockedDeviceContext.getDeviceInfo()).thenReturn(mockedDeviceInfo);
77         when(mockedDeviceContext.getPrimaryConnectionContext()).thenReturn(mockedConnectionContext);
78         when(mockedDeviceContext.getMessageSpy()).thenReturn(mockedMessageSpy);
79
80         when(mockedDeviceState.isTableStatisticsAvailable()).thenReturn(isTable);
81         when(mockedDeviceState.isFlowStatisticsAvailable()).thenReturn(isFlow);
82         when(mockedDeviceState.isGroupAvailable()).thenReturn(isGroup);
83         when(mockedDeviceState.isMetersAvailable()).thenReturn(isMeter);
84         when(mockedDeviceState.isPortStatisticsAvailable()).thenReturn(isPort);
85         when(mockedDeviceState.isQueueStatisticsAvailable()).thenReturn(isQueue);
86         when(mockedDeviceInfo.getNodeInstanceIdentifier()).thenReturn(dummyNodeII);
87         when(mockedDeviceInfo.getDatapathId()).thenReturn(BigInteger.TEN);
88
89         when(mockedDeviceContext.getDeviceState()).thenReturn(mockedDeviceState);
90         when(mockedDeviceContext.getDeviceInfo()).thenReturn(mockedDeviceInfo);
91         when(mockedDeviceContext.getPrimaryConnectionContext()).thenReturn(mockedConnectionContext);
92         when(mockedDeviceContext.getMessageSpy()).thenReturn(mockedMessageSpy);
93         when(mockedDeviceInfo.getNodeId()).thenReturn(dummyNodeII.getKey().getId());
94
95         when(mockedConnectionContext.getNodeId()).thenReturn(dummyNodeII.getKey().getId());
96         when(mockedConnectionContext.getFeatures()).thenReturn(mockedFeatures);
97         when(mockedConnectionContext.getConnectionState()).thenReturn(ConnectionContext.CONNECTION_STATE.WORKING);
98         when(mockedConnectionContext.getOutboundQueueProvider()).thenReturn(mockedOutboundQueue);
99
100         mockConductor.setSafelyManager(mockedDeviceManager);
101         when(mockConductor.getDeviceContext(mockedDeviceInfo)).thenReturn(mockedDeviceContext);
102     }
103 }