d6a914bc96b8bd7ebe63297251f5ff656a6ffc25
[openflowplugin.git] / extension / openflowplugin-extension-nicira / src / test / java / org / opendaylight / openflowplugin / extension / vendor / nicira / convertor / match / UdpDstConvertorTest.java
1 /**
2  * Copyright (c) 2016 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.extension.vendor.nicira.convertor.match;
10
11 import static org.mockito.Mockito.when;
12
13 import org.junit.Assert;
14 import org.junit.Before;
15 import org.junit.Test;
16 import org.junit.runner.RunWith;
17 import org.mockito.ArgumentMatchers;
18 import org.mockito.Mock;
19 import org.mockito.runners.MockitoJUnitRunner;
20 import org.opendaylight.openflowplugin.extension.api.ExtensionAugment;
21 import org.opendaylight.openflowplugin.extension.api.path.MatchPath;
22 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.ofj.nxm.of.match.udp.dst.grouping.UdpDstValuesBuilder;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.oxm.container.match.entry.value.UdpDstCaseValue;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.oxm.container.match.entry.value.UdpDstCaseValueBuilder;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.general.rev140714.general.extension.grouping.Extension;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.NxAugMatchNodesNodeTableFlow;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.NxAugMatchNodesNodeTableFlowBuilder;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.NxAugMatchNotifPacketIn;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.NxAugMatchNotifSwitchFlowRemoved;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.NxAugMatchRpcGetFlowStats;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.NxmOfUdpDstKey;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.nxm.of.udp.dst.grouping.NxmOfUdpDstBuilder;
35 import org.opendaylight.yangtools.yang.binding.Augmentation;
36
37 /**
38  * Test for {@link UdpDstConvertor}.
39  */
40 @RunWith(MockitoJUnitRunner.class)
41 public class UdpDstConvertorTest {
42     @Mock
43     private Extension extension;
44     @Mock
45     private MatchEntry matchEntry;
46
47     private static final PortNumber DEFAULT_PORT = new PortNumber(9999);
48
49     private UdpDstConvertor udpDstConvertor;
50
51     @Before
52     public void setUp() throws Exception {
53         final NxmOfUdpDstBuilder nxmOfUdpDstBuilder = new NxmOfUdpDstBuilder()
54                 .setMask(1)
55                 .setPort(DEFAULT_PORT);
56         final NxAugMatchNodesNodeTableFlowBuilder nxAugMatchNotifUpdateFlowStatsBuilder =
57                 new NxAugMatchNodesNodeTableFlowBuilder();
58         nxAugMatchNotifUpdateFlowStatsBuilder.setNxmOfUdpDst(nxmOfUdpDstBuilder.build());
59
60         final Augmentation<Extension> extensionAugmentation = nxAugMatchNotifUpdateFlowStatsBuilder.build();
61         when(extension.augmentation(ArgumentMatchers.<Class<Augmentation<Extension>>>any()))
62             .thenReturn(extensionAugmentation);
63
64         udpDstConvertor = new UdpDstConvertor();
65     }
66
67     @Test
68     public void testConvert() throws Exception {
69         final MatchEntry converted = udpDstConvertor.convert(extension);
70         Assert.assertEquals(Integer.valueOf(1),
71                 ((UdpDstCaseValue) converted.getMatchEntryValue()).getUdpDstValues().getMask());
72         Assert.assertEquals(DEFAULT_PORT,
73                 ((UdpDstCaseValue) converted.getMatchEntryValue()).getUdpDstValues().getPort());
74     }
75
76     @Test
77     public void testConvert1() throws Exception {
78         final UdpDstValuesBuilder udpDstValuesBuilder = new UdpDstValuesBuilder()
79                 .setMask(2)
80                 .setPort(DEFAULT_PORT);
81         final UdpDstCaseValueBuilder udpDstCaseValueBuilder = new UdpDstCaseValueBuilder()
82                 .setUdpDstValues(udpDstValuesBuilder.build());
83
84         final UdpDstCaseValue udpDstCaseValue = udpDstCaseValueBuilder.build();
85
86         when(matchEntry.getMatchEntryValue()).thenReturn(udpDstCaseValue);
87
88         final ExtensionAugment<? extends Augmentation<Extension>> extensionAugment = udpDstConvertor.convert(matchEntry,
89                 MatchPath.PACKET_RECEIVED_MATCH);
90         Assert.assertEquals(Integer.valueOf(2),
91                 ((NxAugMatchNotifPacketIn) extensionAugment.getAugmentationObject()).getNxmOfUdpDst().getMask());
92         Assert.assertEquals(DEFAULT_PORT,
93                 ((NxAugMatchNotifPacketIn) extensionAugment.getAugmentationObject()).getNxmOfUdpDst().getPort());
94         Assert.assertEquals(extensionAugment.getKey(), NxmOfUdpDstKey.class);
95
96         final ExtensionAugment<? extends Augmentation<Extension>> extensionAugment1 = udpDstConvertor
97                 .convert(matchEntry, MatchPath.SWITCH_FLOW_REMOVED_MATCH);
98         Assert.assertEquals(Integer.valueOf(2),
99                 ((NxAugMatchNotifSwitchFlowRemoved) extensionAugment1.getAugmentationObject()).getNxmOfUdpDst()
100                         .getMask());
101         Assert.assertEquals(DEFAULT_PORT, ((NxAugMatchNotifSwitchFlowRemoved) extensionAugment1.getAugmentationObject())
102                 .getNxmOfUdpDst().getPort());
103         Assert.assertEquals(extensionAugment.getKey(), NxmOfUdpDstKey.class);
104
105         final ExtensionAugment<? extends Augmentation<Extension>> extensionAugment2 = udpDstConvertor
106                 .convert(matchEntry, MatchPath.FLOWS_STATISTICS_UPDATE_MATCH);
107         Assert.assertEquals(Integer.valueOf(2),
108                 ((NxAugMatchNodesNodeTableFlow) extensionAugment2.getAugmentationObject()).getNxmOfUdpDst().getMask());
109         Assert.assertEquals(DEFAULT_PORT,
110                 ((NxAugMatchNodesNodeTableFlow) extensionAugment2.getAugmentationObject()).getNxmOfUdpDst().getPort());
111         Assert.assertEquals(extensionAugment.getKey(), NxmOfUdpDstKey.class);
112
113         final ExtensionAugment<? extends Augmentation<Extension>> extensionAugment3 = udpDstConvertor
114                 .convert(matchEntry, MatchPath.FLOWS_STATISTICS_RPC_MATCH);
115         Assert.assertEquals(Integer.valueOf(2),
116                 ((NxAugMatchRpcGetFlowStats) extensionAugment3.getAugmentationObject()).getNxmOfUdpDst().getMask());
117         Assert.assertEquals(DEFAULT_PORT,
118                 ((NxAugMatchRpcGetFlowStats) extensionAugment3.getAugmentationObject()).getNxmOfUdpDst().getPort());
119         Assert.assertEquals(extensionAugment.getKey(), NxmOfUdpDstKey.class);
120     }
121 }