ab611e216afbb57f0e163a8732e748d2acccd267
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / statistics / services / dedicated / StatisticsGatheringOnTheFlyServiceTest.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.dedicated;
10
11 import org.junit.Assert;
12 import org.junit.Test;
13 import org.mockito.Mockito;
14 import org.opendaylight.openflowplugin.api.openflow.device.Xid;
15 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.EventIdentifier;
16 import org.opendaylight.openflowplugin.impl.services.ServiceMocking;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.MultipartType;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MultipartRequestInput;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
21
22 /**
23  * Test for {@link StatisticsGatheringOnTheFlyService}.
24  */
25 public class StatisticsGatheringOnTheFlyServiceTest extends ServiceMocking {
26
27     public static final NodeId NODE_ID = new NodeId(DUMMY_NODE_ID);
28     private StatisticsGatheringOnTheFlyService statisticsGatheringService;
29
30     @Override
31     protected void setup() {
32         statisticsGatheringService = new StatisticsGatheringOnTheFlyService(mockedRequestContextStack, mockedDeviceContext);
33         Mockito.doReturn(NODE_ID).when(mockedPrimConnectionContext).getNodeId();
34         Mockito.when(mockedDeviceContext.getDeviceState().getNodeId()).thenReturn(NODE_ID);
35     }
36
37     @Test
38     public void testGetStatisticsOfType() throws Exception {
39         final EventIdentifier eventIdentifier = new EventIdentifier("ut-event", "ut-device-id:1");
40         statisticsGatheringService.getStatisticsOfType(eventIdentifier, MultipartType.OFPMPFLOW);
41         Mockito.verify(mockedRequestContextStack).createRequestContext();
42     }
43
44     @Test
45     public void testBuildRequest() throws Exception {
46         final long xidValue = 21L;
47         Xid xid = new Xid(xidValue);
48         final OfHeader request = statisticsGatheringService.buildRequest(xid, MultipartType.OFPMPFLOW);
49         Assert.assertEquals(MultipartRequestInput.class, request.getImplementedInterface());
50         Assert.assertEquals(xidValue, request.getXid().longValue());
51         Assert.assertNotNull(request);
52     }
53 }