Improve unit test coverage
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmArpShaSerializerTest.java
diff --git a/openflow-protocol-impl/src/test/java/org/opendaylight/openflowjava/protocol/impl/serialization/match/OxmArpShaSerializerTest.java b/openflow-protocol-impl/src/test/java/org/opendaylight/openflowjava/protocol/impl/serialization/match/OxmArpShaSerializerTest.java
new file mode 100644 (file)
index 0000000..c23b9db
--- /dev/null
@@ -0,0 +1,159 @@
+/*\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.Assert;\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.yang.types.rev100924.MacAddress;\r
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.MacAddressMatchEntry;\r
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.MacAddressMatchEntryBuilder;\r
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.MaskMatchEntry;\r
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.MaskMatchEntryBuilder;\r
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.ArpTha;\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 OxmArpShaSerializerTest {\r
+\r
+    OxmArpThaSerializer serializer = new OxmArpThaSerializer();\r
+\r
+    /**\r
+     * Test correct serialization\r
+     */\r
+    @Test\r
+    public void testSerializeWithoutMask() {\r
+        MatchEntriesBuilder builder = prepareMatchEntry(false, "00:01:02:03:04:05");\r
+        \r
+        ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();\r
+        serializer.serialize(builder.build(), buffer);\r
+\r
+        checkHeader(buffer, false);\r
+        byte[] address = new byte[6];\r
+        buffer.readBytes(address);\r
+        Assert.assertArrayEquals("Wrong address", new byte[]{0, 1, 2, 3, 4, 5}, address);\r
+        assertTrue("Unexpected data", buffer.readableBytes() == 0);\r
+    }\r
+\r
+    /**\r
+     * Test correct serialization\r
+     */\r
+    @Test\r
+    public void testSerializeWithMask() {\r
+        MatchEntriesBuilder builder = prepareMatchEntry(true, "00:01:02:03:04:0A");\r
+        \r
+        ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();\r
+        serializer.serialize(builder.build(), buffer);\r
+\r
+        checkHeader(buffer, true);\r
+        \r
+        byte[] address = new byte[6];\r
+        buffer.readBytes(address);\r
+        Assert.assertArrayEquals("Wrong address", new byte[]{0, 1, 2, 3, 4, 10}, address);\r
+        byte[] tmp = new byte[6];\r
+        buffer.readBytes(tmp);\r
+        Assert.assertArrayEquals("Wrong mask", new byte[]{15, 15, 0, 0, 10, 10}, tmp);\r
+        assertTrue("Unexpected data", buffer.readableBytes() == 0);\r
+    }\r
+\r
+    /**\r
+     * Test correct header serialization\r
+     */\r
+    @Test\r
+    public void testSerializeHeaderWithoutMask() {\r
+        MatchEntriesBuilder builder = prepareHeader(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 header serialization\r
+     */\r
+    @Test\r
+    public void testSerializeHeaderWithMask() {\r
+        MatchEntriesBuilder builder = prepareHeader(true);\r
+        \r
+        ByteBuf buffer = PooledByteBufAllocator.DEFAULT.buffer();\r
+        serializer.serializeHeader(builder.build(), buffer);\r
+\r
+        checkHeader(buffer, true);\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.ARP_THA, 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.MAC_ADDRESS_LENGTH, serializer.getValueLength());\r
+    }\r
+\r
+    private static MatchEntriesBuilder prepareMatchEntry(boolean hasMask, String value) {\r
+        MatchEntriesBuilder builder = prepareHeader(hasMask);\r
+        if (hasMask) {\r
+            MaskMatchEntryBuilder maskBuilder = new MaskMatchEntryBuilder();\r
+            maskBuilder.setMask(new byte[]{15, 15, 0, 0, 10, 10});\r
+            builder.addAugmentation(MaskMatchEntry.class, maskBuilder.build());\r
+        }\r
+        MacAddressMatchEntryBuilder macBuilder = new MacAddressMatchEntryBuilder();\r
+        macBuilder.setMacAddress(new MacAddress(value));\r
+        builder.addAugmentation(MacAddressMatchEntry.class, macBuilder.build());\r
+        return builder;\r
+    }\r
+\r
+    private static MatchEntriesBuilder prepareHeader(boolean hasMask) {\r
+        MatchEntriesBuilder builder = new MatchEntriesBuilder();\r
+        builder.setOxmClass(OpenflowBasicClass.class);\r
+        builder.setOxmMatchField(ArpTha.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.ARP_THA, fieldAndMask >>> 1);\r
+        assertEquals("Wrong hasMask", hasMask, (fieldAndMask & 1) != 0);\r
+        if (hasMask) {\r
+            assertEquals("Wrong length", 2 * EncodeConstants.MAC_ADDRESS_LENGTH, buffer.readUnsignedByte());\r
+        } else {\r
+            assertEquals("Wrong length", EncodeConstants.MAC_ADDRESS_LENGTH, buffer.readUnsignedByte());\r
+        }\r
+    }\r
+}
\ No newline at end of file