Copyright update
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / ExperimenterInputMessageFactoryTest.java
index b75c1c9326544478325aa5cce495bd8a8eddbaeb..ebea19483508b1349b17dee7f657d632e33be695 100644 (file)
@@ -1,51 +1,58 @@
-/* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */\r
-package org.opendaylight.openflowjava.protocol.impl.serialization.factories;\r
-\r
-import io.netty.buffer.ByteBuf;\r
-import io.netty.buffer.UnpooledByteBufAllocator;\r
-\r
-import org.junit.Assert;\r
-import org.junit.Test;\r
-import org.opendaylight.openflowjava.protocol.impl.deserialization.factories.HelloMessageFactoryTest;\r
-import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;\r
-import org.opendaylight.openflowjava.protocol.impl.util.EncodeConstants;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.ExperimenterInput;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.ExperimenterInputBuilder;\r
-\r
-/**\r
- * @author michal.polkorab\r
- * @author timotej.kubas\r
- */\r
-public class ExperimenterInputMessageFactoryTest {\r
-\r
-    private static final byte EXPERIMENTER_REQUEST_MESSAGE_CODE_TYPE = ExperimenterInputMessageFactory.MESSAGE_TYPE;\r
-    \r
-    /**\r
-     * Testing of {@link ExperimenterInputMessageFactory} for correct translation from POJO\r
-     * @throws Exception \r
-     */\r
-    @Test\r
-    public void test() throws Exception {\r
-        ExperimenterInputBuilder builder = new ExperimenterInputBuilder();\r
-        BufferHelper.setupHeader(builder, EncodeConstants.OF13_VERSION_ID);\r
-        builder.setExperimenter(0x0001020304L);\r
-        builder.setExpType(0x0001020304L);\r
-        builder.setData(new byte[] {0x01, 0x02, 0x03});\r
-        ExperimenterInput message = builder.build();\r
-        \r
-        ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();\r
-        ExperimenterInputMessageFactory factory = ExperimenterInputMessageFactory.getInstance();\r
-        factory.messageToBuffer(HelloMessageFactoryTest.VERSION_YET_SUPPORTED, out, message);\r
-        \r
-        BufferHelper.checkHeaderV13(out, EXPERIMENTER_REQUEST_MESSAGE_CODE_TYPE, factory.computeLength(message));\r
-        Assert.assertEquals("Wrong experimenter", 0x0001020304L, out.readUnsignedInt());\r
-        Assert.assertEquals("Wrong expType", 0x0001020304L, out.readUnsignedInt());\r
-        Assert.assertArrayEquals("Wrong data", message.getData(), readData(out));\r
-    }\r
-    \r
-    private static byte[] readData(ByteBuf input) {\r
-        byte[] data = new byte[input.readableBytes()]; \r
-        input.readBytes(data);\r
-        return data;\r
-    }\r
-}\r
+/*
+ * Copyright (c) 2013 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.factories;
+
+import io.netty.buffer.ByteBuf;
+import io.netty.buffer.UnpooledByteBufAllocator;
+
+import org.junit.Assert;
+import org.junit.Test;
+import org.opendaylight.openflowjava.protocol.impl.deserialization.factories.HelloMessageFactoryTest;
+import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;
+import org.opendaylight.openflowjava.protocol.impl.util.EncodeConstants;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.ExperimenterInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.ExperimenterInputBuilder;
+
+/**
+ * @author michal.polkorab
+ * @author timotej.kubas
+ */
+public class ExperimenterInputMessageFactoryTest {
+
+    private static final byte EXPERIMENTER_REQUEST_MESSAGE_CODE_TYPE = ExperimenterInputMessageFactory.MESSAGE_TYPE;
+    
+    /**
+     * Testing of {@link ExperimenterInputMessageFactory} for correct translation from POJO
+     * @throws Exception 
+     */
+    @Test
+    public void test() throws Exception {
+        ExperimenterInputBuilder builder = new ExperimenterInputBuilder();
+        BufferHelper.setupHeader(builder, EncodeConstants.OF13_VERSION_ID);
+        builder.setExperimenter(0x0001020304L);
+        builder.setExpType(0x0001020304L);
+        builder.setData(new byte[] {0x01, 0x02, 0x03});
+        ExperimenterInput message = builder.build();
+        
+        ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();
+        ExperimenterInputMessageFactory factory = ExperimenterInputMessageFactory.getInstance();
+        factory.messageToBuffer(HelloMessageFactoryTest.VERSION_YET_SUPPORTED, out, message);
+        
+        BufferHelper.checkHeaderV13(out, EXPERIMENTER_REQUEST_MESSAGE_CODE_TYPE, factory.computeLength(message));
+        Assert.assertEquals("Wrong experimenter", 0x0001020304L, out.readUnsignedInt());
+        Assert.assertEquals("Wrong expType", 0x0001020304L, out.readUnsignedInt());
+        Assert.assertArrayEquals("Wrong data", message.getData(), readData(out));
+    }
+    
+    private static byte[] readData(ByteBuf input) {
+        byte[] data = new byte[input.readableBytes()]; 
+        input.readBytes(data);
+        return data;
+    }
+}