Merge "Sonar issues"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / translator / FlowRemovedTranslatorTest.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.translator;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.mockito.Mockito.when;
13
14 import java.math.BigInteger;
15 import java.util.Collections;
16 import org.junit.Before;
17 import org.junit.Test;
18 import org.junit.runner.RunWith;
19 import org.mockito.Mock;
20 import org.mockito.runners.MockitoJUnitRunner;
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.DeviceState;
24 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.ConvertorManager;
25 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.ConvertorManagerFactory;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.service.rev130819.FlowRemoved;
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.common.types.rev130731.FlowWildcardsV10;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.TableId;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.grouping.MatchBuilder;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.v10.grouping.MatchV10Builder;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.FlowRemovedMessageBuilder;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetFeaturesOutput;
38 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
39 import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier;
40
41 /**
42  * Test of {@link AggregatedFlowStatisticsTranslator}
43  */
44 @RunWith(MockitoJUnitRunner.class)
45 public class FlowRemovedTranslatorTest {
46
47     private FlowRemovedTranslator translator;
48
49     private FlowRemovedV10Translator translatorV10;
50
51     @Mock
52     private DeviceContext deviceContext;
53
54     @Mock
55     private DeviceState deviceState;
56
57     @Mock
58     private DeviceInfo deviceInfo;
59
60     @Mock
61     private GetFeaturesOutput features;
62
63     @Mock
64     private FlowWildcardsV10 flowWildcards;
65
66     private KeyedInstanceIdentifier<Node, NodeKey> nodeId;
67
68     @Before
69     public void setUp() throws Exception {
70         nodeId = InstanceIdentifier.create(Nodes.class)
71                 .child(Node.class, new NodeKey(new NodeId("dummyNodeId")));
72
73         final ConvertorManager convertorManager = ConvertorManagerFactory.createDefaultManager();
74         translator = new FlowRemovedTranslator(convertorManager);
75         translatorV10 = new FlowRemovedV10Translator(convertorManager);
76
77         when(deviceContext.getDeviceState()).thenReturn(deviceState);
78         when(deviceInfo.getNodeInstanceIdentifier()).thenReturn(nodeId);
79         when(features.getDatapathId()).thenReturn(BigInteger.TEN);
80     }
81
82     @Test
83     public void testTranslate() throws Exception {
84         org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.FlowRemoved flowRemovedMessage = buildMessage(false);
85         final FlowRemoved flowRemoved = translator.translate(flowRemovedMessage, deviceInfo, null);
86
87         assertEquals(flowRemovedMessage.getCookie(), flowRemoved.getCookie().getValue());
88         assertEquals(flowRemovedMessage.getPriority(), flowRemoved.getPriority());
89         assertEquals((long)flowRemovedMessage.getTableId().getValue(), (long)flowRemoved.getTableId());
90     }
91
92     @Test
93     public void testTranslateV10() throws Exception {
94         org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.FlowRemoved flowRemovedMessage = buildMessage(true);
95         final FlowRemoved flowRemoved = translatorV10.translate(flowRemovedMessage, deviceInfo, null);
96
97         assertEquals(flowRemovedMessage.getCookie(), flowRemoved.getCookie().getValue());
98         assertEquals(flowRemovedMessage.getPriority(), flowRemoved.getPriority());
99         assertEquals((short)0, flowRemoved.getTableId().shortValue());
100     }
101
102     private org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.FlowRemoved buildMessage(boolean isV10) {
103         FlowRemovedMessageBuilder builder = new FlowRemovedMessageBuilder()
104                 .setCookie(BigInteger.ONE)
105                 .setPriority(1);
106
107         if (isV10) {
108             builder.setMatchV10(new MatchV10Builder().setWildcards(flowWildcards).build());
109         } else {
110             builder.setMatch(new MatchBuilder().setMatchEntry(Collections.<MatchEntry>emptyList()).build())
111                 .setTableId(new TableId(42L));
112         }
113
114         return builder.build();
115     }
116 }