Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmUdpSrcSerializerTest.java
1 /*
2  * Copyright (c) 2014 Pantheon Technologies s.r.o. 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.openflowjava.protocol.impl.serialization.match;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertTrue;
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.PooledByteBufAllocator;
15
16 import org.junit.Test;
17 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
18 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
19 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.PortNumber;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.OpenflowBasicClass;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.UdpSrc;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntryBuilder;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.UdpSrcCaseBuilder;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.udp.src._case.UdpSrcBuilder;
25
26 /**
27  * @author michal.polkorab
28  *
29  */
30 public class OxmUdpSrcSerializerTest {
31
32     OxmUdpSrcSerializer serializer = new OxmUdpSrcSerializer();
33
34     /**
35      * Test correct serialization
36      */
37     @Test
38     public void testSerialize() {
39         MatchEntryBuilder builder = prepareMatchEntry(1024);
40
41         ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();
42         serializer.serialize(builder.build(), buffer);
43
44         checkHeader(buffer, false);
45         assertEquals("Wrong value", 1024, buffer.readUnsignedShort());
46         assertTrue("Unexpected data", buffer.readableBytes() == 0);
47     }
48
49     /**
50      * Test correct header serialization
51      */
52     @Test
53     public void testSerializeHeader() {
54         MatchEntryBuilder builder = prepareHeader(false);
55
56         ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();
57         serializer.serializeHeader(builder.build(), buffer);
58
59         checkHeader(buffer, false);
60         assertTrue("Unexpected data", buffer.readableBytes() == 0);
61     }
62
63     /**
64      * Test correct oxm-class return value
65      */
66     @Test
67     public void testGetOxmClassCode() {
68         assertEquals("Wrong oxm-class", OxmMatchConstants.OPENFLOW_BASIC_CLASS, serializer.getOxmClassCode());
69     }
70
71     /**
72      * Test correct oxm-field return value
73      */
74     @Test
75     public void getOxmFieldCode() {
76         assertEquals("Wrong oxm-class", OxmMatchConstants.UDP_SRC, serializer.getOxmFieldCode());
77     }
78
79     /**
80      * Test correct value length return value
81      */
82     @Test
83     public void testGetValueLength() {
84         assertEquals("Wrong value length", EncodeConstants.SIZE_OF_SHORT_IN_BYTES, serializer.getValueLength());
85     }
86
87     private static MatchEntryBuilder prepareMatchEntry(int value) {
88         MatchEntryBuilder builder = prepareHeader(false);
89         UdpSrcCaseBuilder casebuilder = new UdpSrcCaseBuilder();
90         UdpSrcBuilder valueBuilder = new UdpSrcBuilder();
91         valueBuilder.setPort(new PortNumber(value));
92         casebuilder.setUdpSrc(valueBuilder.build());
93         builder.setMatchEntryValue(casebuilder.build());
94         return builder;
95     }
96
97     private static MatchEntryBuilder prepareHeader(boolean hasMask) {
98         MatchEntryBuilder builder = new MatchEntryBuilder();
99         builder.setOxmClass(OpenflowBasicClass.class);
100         builder.setOxmMatchField(UdpSrc.class);
101         builder.setHasMask(hasMask);
102         return builder;
103     }
104
105     private static void checkHeader(ByteBuf buffer, boolean hasMask) {
106         assertEquals("Wrong oxm-class", OxmMatchConstants.OPENFLOW_BASIC_CLASS, buffer.readUnsignedShort());
107         short fieldAndMask = buffer.readUnsignedByte();
108         assertEquals("Wrong oxm-field", OxmMatchConstants.UDP_SRC, fieldAndMask >>> 1);
109         assertEquals("Wrong hasMask", hasMask, (fieldAndMask & 1) != 0);
110         assertEquals("Wrong length", EncodeConstants.SIZE_OF_SHORT_IN_BYTES, buffer.readUnsignedByte());
111     }
112 }