022e2d68e80223257ad93436c5cf600ed2cddbf5
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / statistics / StatisticsContextImpMockInitiation.java
1 /*
2  *
3  *  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
4  *  *
5  *  * This program and the accompanying materials are made available under the
6  *  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  *  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  *
9  *
10  */
11
12 package org.opendaylight.openflowplugin.impl.statistics;
13
14 import static org.mockito.Mockito.mock;
15 import static org.mockito.Mockito.when;
16
17 import org.junit.Before;
18 import org.mockito.Mockito;
19 import org.opendaylight.openflowjava.protocol.api.connection.OutboundQueue;
20 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
21 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
22 import org.opendaylight.openflowplugin.api.openflow.device.DeviceInfo;
23 import org.opendaylight.openflowplugin.api.openflow.device.DeviceManager;
24 import org.opendaylight.openflowplugin.api.openflow.device.DeviceState;
25 import org.opendaylight.openflowplugin.api.openflow.lifecycle.LifecycleConductor;
26 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy;
27 import org.opendaylight.openflowplugin.impl.statistics.services.dedicated.StatisticsGatheringOnTheFlyService;
28 import org.opendaylight.openflowplugin.impl.statistics.services.dedicated.StatisticsGatheringService;
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.GetFeaturesOutput;
35 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
36 import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier;
37
38
39 class StatisticsContextImpMockInitiation {
40     Boolean isTable = false;
41     Boolean isFlow = false;
42     Boolean isGroup = false;
43     Boolean isMeter = false;
44     Boolean isPort = false;
45     Boolean isQueue = false;
46
47     protected DeviceContext mockedDeviceContext;
48     protected DeviceState mockedDeviceState;
49
50     StatisticsGatheringService mockedStatisticsGatheringService;
51     StatisticsGatheringOnTheFlyService mockedStatisticsOnFlyGatheringService;
52     ConnectionContext mockedConnectionContext;
53     DeviceInfo mockedDeviceInfo;
54
55     static final KeyedInstanceIdentifier<Node, NodeKey> dummyNodeII = InstanceIdentifier.create(Nodes.class)
56             .child(Node.class, new NodeKey(new NodeId("dummyNodeId")));
57
58     LifecycleConductor mockConductor;
59
60     @Before
61     public void initialize() {
62         mockedDeviceContext = mock(DeviceContext.class);
63         mockedStatisticsGatheringService = mock(StatisticsGatheringService.class);
64         mockedStatisticsOnFlyGatheringService = mock(StatisticsGatheringOnTheFlyService.class);
65         mockedConnectionContext = mock(ConnectionContext.class);
66         mockedDeviceState = mock(DeviceState.class);
67         mockedDeviceInfo = mock(DeviceInfo.class);
68
69         final FeaturesReply mockedFeatures = mock(FeaturesReply.class);
70         final MessageSpy mockedMessageSpy = mock(MessageSpy.class);
71         final OutboundQueue mockedOutboundQueue = mock(OutboundQueue.class);
72         final DeviceManager mockedDeviceManager = mock(DeviceManager.class);
73         final GetFeaturesOutput mockedFeaturesOutput = mock(GetFeaturesOutput.class);
74
75         mockConductor = mock(LifecycleConductor.class);
76
77         when(mockedDeviceState.isTableStatisticsAvailable()).thenReturn(isTable);
78         when(mockedDeviceState.isFlowStatisticsAvailable()).thenReturn(isFlow);
79         when(mockedDeviceState.isGroupAvailable()).thenReturn(isGroup);
80         when(mockedDeviceState.isMetersAvailable()).thenReturn(isMeter);
81         when(mockedDeviceState.isPortStatisticsAvailable()).thenReturn(isPort);
82         when(mockedDeviceState.isQueueStatisticsAvailable()).thenReturn(isQueue);
83         when(mockedDeviceState.getNodeInstanceIdentifier()).thenReturn(dummyNodeII);
84         when(mockedDeviceState.getFeatures()).thenReturn(mockedFeaturesOutput);
85
86         when(mockedDeviceContext.getDeviceState()).thenReturn(mockedDeviceState);
87         when(mockedDeviceContext.getPrimaryConnectionContext()).thenReturn(mockedConnectionContext);
88         when(mockedDeviceContext.getMessageSpy()).thenReturn(mockedMessageSpy);
89
90         when(mockedConnectionContext.getNodeId()).thenReturn(dummyNodeII.getKey().getId());
91         when(mockedConnectionContext.getFeatures()).thenReturn(mockedFeatures);
92         when(mockedConnectionContext.getConnectionState()).thenReturn(ConnectionContext.CONNECTION_STATE.WORKING);
93         when(mockedConnectionContext.getOutboundQueueProvider()).thenReturn(mockedOutboundQueue);
94
95         when(mockedDeviceManager.getDeviceContextFromNodeId(Mockito.<NodeId>any())).thenReturn(mockedDeviceContext);
96         mockConductor.setSafelyDeviceManager(mockedDeviceManager);
97         when(mockConductor.getDeviceContext(Mockito.<NodeId>any())).thenReturn(mockedDeviceContext);
98
99     }
100 }