Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmTcpSrcSerializerTest.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.augments.rev131002.PortMatchEntry;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.PortMatchEntryBuilder;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.OpenflowBasicClass;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.TcpSrc;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.fields.grouping.MatchEntriesBuilder;
25
26 /**
27  * @author michal.polkorab
28  *
29  */
30 public class OxmTcpSrcSerializerTest {
31
32     OxmTcpSrcSerializer serializer = new OxmTcpSrcSerializer();
33
34     /**
35      * Test correct serialization
36      */
37     @Test
38     public void testSerialize() {
39         MatchEntriesBuilder builder = prepareMatchEntry(512);
40         
41         ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();
42         serializer.serialize(builder.build(), buffer);
43
44         checkHeader(buffer, false);
45         assertEquals("Wrong value", 512, 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         MatchEntriesBuilder 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.TCP_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 MatchEntriesBuilder prepareMatchEntry(int value) {
88         MatchEntriesBuilder builder = prepareHeader(false);
89         PortMatchEntryBuilder portBuilder = new PortMatchEntryBuilder();
90         portBuilder.setPort(new PortNumber(value));
91         builder.addAugmentation(PortMatchEntry.class, portBuilder.build());
92         return builder;
93     }
94
95     private static MatchEntriesBuilder prepareHeader(boolean hasMask) {
96         MatchEntriesBuilder builder = new MatchEntriesBuilder();
97         builder.setOxmClass(OpenflowBasicClass.class);
98         builder.setOxmMatchField(TcpSrc.class);
99         builder.setHasMask(hasMask);
100         return builder;
101     }
102
103     private static void checkHeader(ByteBuf buffer, boolean hasMask) {
104         assertEquals("Wrong oxm-class", OxmMatchConstants.OPENFLOW_BASIC_CLASS, buffer.readUnsignedShort());
105         short fieldAndMask = buffer.readUnsignedByte();
106         assertEquals("Wrong oxm-field", OxmMatchConstants.TCP_SRC, fieldAndMask >>> 1);
107         assertEquals("Wrong hasMask", hasMask, (fieldAndMask & 1) != 0);
108         assertEquals("Wrong length", EncodeConstants.SIZE_OF_SHORT_IN_BYTES, buffer.readUnsignedByte());
109     }
110 }