Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmIpDscpSerializerTest.java
index 34d9a9f2a8c1b24e67225d4d41c369bf1c0499e9..527252b8c6631c6eafa47030a94145c6fcf5afe8 100644 (file)
-/*\r
- * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-\r
-package org.opendaylight.openflowjava.protocol.impl.serialization.match;\r
-\r
-import static org.junit.Assert.assertEquals;\r
-import static org.junit.Assert.assertTrue;\r
-import io.netty.buffer.ByteBuf;\r
-import io.netty.buffer.PooledByteBufAllocator;\r
-\r
-import org.junit.Test;\r
-import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;\r
-import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;\r
-import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Dscp;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.DscpMatchEntry;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.DscpMatchEntryBuilder;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.IpDscp;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.OpenflowBasicClass;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.fields.grouping.MatchEntriesBuilder;\r
-\r
-/**\r
- * @author michal.polkorab\r
- *\r
- */\r
-public class OxmIpDscpSerializerTest {\r
-\r
-    OxmIpDscpSerializer serializer = new OxmIpDscpSerializer();\r
-\r
-    /**\r
-     * Test correct serialization\r
-     */\r
-    @Test\r
-    public void testSerialize() {\r
-        MatchEntriesBuilder builder = prepareIpDscpMatchEntry((short) 58);\r
-        \r
-        ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();\r
-        serializer.serialize(builder.build(), buffer);\r
-\r
-        checkHeader(buffer, false);\r
-        assertEquals("Wrong value", 58, buffer.readUnsignedByte());\r
-        assertTrue("Unexpected data", buffer.readableBytes() == 0);\r
-    }\r
-\r
-    /**\r
-     * Test correct header serialization\r
-     */\r
-    @Test\r
-    public void testSerializeHeader() {\r
-        MatchEntriesBuilder builder = prepareIpDscpHeader(false);\r
-        \r
-        ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();\r
-        serializer.serializeHeader(builder.build(), buffer);\r
-\r
-        checkHeader(buffer, false);\r
-        assertTrue("Unexpected data", buffer.readableBytes() == 0);\r
-    }\r
-\r
-    /**\r
-     * Test correct oxm-class return value\r
-     */\r
-    @Test\r
-    public void testGetOxmClassCode() {\r
-        assertEquals("Wrong oxm-class", OxmMatchConstants.OPENFLOW_BASIC_CLASS, serializer.getOxmClassCode());\r
-    }\r
-\r
-    /**\r
-     * Test correct oxm-field return value\r
-     */\r
-    @Test\r
-    public void getOxmFieldCode() {\r
-        assertEquals("Wrong oxm-class", OxmMatchConstants.IP_DSCP, serializer.getOxmFieldCode());\r
-    }\r
-\r
-    /**\r
-     * Test correct value length return value\r
-     */\r
-    @Test\r
-    public void testGetValueLength() {\r
-        assertEquals("Wrong value length", EncodeConstants.SIZE_OF_BYTE_IN_BYTES, serializer.getValueLength());\r
-    }\r
-\r
-    private static MatchEntriesBuilder prepareIpDscpMatchEntry(short value) {\r
-        MatchEntriesBuilder builder = prepareIpDscpHeader(false);\r
-        DscpMatchEntryBuilder dscpBuilder = new DscpMatchEntryBuilder();\r
-        dscpBuilder.setDscp(new Dscp(value));\r
-        builder.addAugmentation(DscpMatchEntry.class, dscpBuilder.build());\r
-        return builder;\r
-    }\r
-\r
-    private static MatchEntriesBuilder prepareIpDscpHeader(boolean hasMask) {\r
-        MatchEntriesBuilder builder = new MatchEntriesBuilder();\r
-        builder.setOxmClass(OpenflowBasicClass.class);\r
-        builder.setOxmMatchField(IpDscp.class);\r
-        builder.setHasMask(hasMask);\r
-        return builder;\r
-    }\r
-\r
-    private static void checkHeader(ByteBuf buffer, boolean hasMask) {\r
-        assertEquals("Wrong oxm-class", OxmMatchConstants.OPENFLOW_BASIC_CLASS, buffer.readUnsignedShort());\r
-        short fieldAndMask = buffer.readUnsignedByte();\r
-        assertEquals("Wrong oxm-field", OxmMatchConstants.IP_DSCP, fieldAndMask >>> 1);\r
-        assertEquals("Wrong hasMask", hasMask, (fieldAndMask & 1) != 0);\r
-        assertEquals("Wrong length", EncodeConstants.SIZE_OF_BYTE_IN_BYTES, buffer.readUnsignedByte());\r
-    }\r
+/*
+ * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package org.opendaylight.openflowjava.protocol.impl.serialization.match;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+import io.netty.buffer.ByteBuf;
+import io.netty.buffer.PooledByteBufAllocator;
+
+import org.junit.Test;
+import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
+import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
+import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Dscp;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.IpDscp;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.OpenflowBasicClass;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntryBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.IpDscpCaseBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.ip.dscp._case.IpDscpBuilder;
+
+/**
+ * @author michal.polkorab
+ *
+ */
+public class OxmIpDscpSerializerTest {
+
+    OxmIpDscpSerializer serializer = new OxmIpDscpSerializer();
+
+    /**
+     * Test correct serialization
+     */
+    @Test
+    public void testSerialize() {
+        MatchEntryBuilder builder = prepareIpDscpMatchEntry((short) 58);
+
+        ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();
+        serializer.serialize(builder.build(), buffer);
+
+        checkHeader(buffer, false);
+        assertEquals("Wrong value", 58, buffer.readUnsignedByte());
+        assertTrue("Unexpected data", buffer.readableBytes() == 0);
+    }
+
+    /**
+     * Test correct header serialization
+     */
+    @Test
+    public void testSerializeHeader() {
+        MatchEntryBuilder builder = prepareIpDscpHeader(false);
+
+        ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();
+        serializer.serializeHeader(builder.build(), buffer);
+
+        checkHeader(buffer, false);
+        assertTrue("Unexpected data", buffer.readableBytes() == 0);
+    }
+
+    /**
+     * Test correct oxm-class return value
+     */
+    @Test
+    public void testGetOxmClassCode() {
+        assertEquals("Wrong oxm-class", OxmMatchConstants.OPENFLOW_BASIC_CLASS, serializer.getOxmClassCode());
+    }
+
+    /**
+     * Test correct oxm-field return value
+     */
+    @Test
+    public void getOxmFieldCode() {
+        assertEquals("Wrong oxm-class", OxmMatchConstants.IP_DSCP, serializer.getOxmFieldCode());
+    }
+
+    /**
+     * Test correct value length return value
+     */
+    @Test
+    public void testGetValueLength() {
+        assertEquals("Wrong value length", EncodeConstants.SIZE_OF_BYTE_IN_BYTES, serializer.getValueLength());
+    }
+
+    private static MatchEntryBuilder prepareIpDscpMatchEntry(short value) {
+        MatchEntryBuilder builder = prepareIpDscpHeader(false);
+        IpDscpCaseBuilder casebuilder = new IpDscpCaseBuilder();
+        IpDscpBuilder dscpBuilder = new IpDscpBuilder();
+        dscpBuilder.setDscp(new Dscp(value));
+        casebuilder.setIpDscp(dscpBuilder.build());
+        builder.setMatchEntryValue(casebuilder.build());
+        return builder;
+    }
+
+    private static MatchEntryBuilder prepareIpDscpHeader(boolean hasMask) {
+        MatchEntryBuilder builder = new MatchEntryBuilder();
+        builder.setOxmClass(OpenflowBasicClass.class);
+        builder.setOxmMatchField(IpDscp.class);
+        builder.setHasMask(hasMask);
+        return builder;
+    }
+
+    private static void checkHeader(ByteBuf buffer, boolean hasMask) {
+        assertEquals("Wrong oxm-class", OxmMatchConstants.OPENFLOW_BASIC_CLASS, buffer.readUnsignedShort());
+        short fieldAndMask = buffer.readUnsignedByte();
+        assertEquals("Wrong oxm-field", OxmMatchConstants.IP_DSCP, fieldAndMask >>> 1);
+        assertEquals("Wrong hasMask", hasMask, (fieldAndMask & 1) != 0);
+        assertEquals("Wrong length", EncodeConstants.SIZE_OF_BYTE_IN_BYTES, buffer.readUnsignedByte());
+    }
 }
\ No newline at end of file