Renamed packages to org.opendaylight.openflowjava.protocol.impl.*
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / HelloInputMessageFactoryTest.java
1 /* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */\r
2 package org.opendaylight.openflowjava.protocol.impl.serialization.factories;\r
3 \r
4 import io.netty.buffer.ByteBuf;\r
5 import io.netty.buffer.UnpooledByteBufAllocator;\r
6 \r
7 import org.junit.Assert;\r
8 import org.junit.Test;\r
9 import org.opendaylight.openflowjava.protocol.impl.core.OFFrameDecoder;\r
10 import org.opendaylight.openflowjava.protocol.impl.deserialization.factories.HelloMessageFactoryTest;\r
11 import org.opendaylight.openflowjava.protocol.impl.serialization.factories.HelloInputMessageFactory;\r
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.HelloInput;\r
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.HelloInputBuilder;\r
14 \r
15 /**\r
16  * @author michal.polkorab\r
17  *\r
18  */\r
19 public class HelloInputMessageFactoryTest {\r
20 \r
21     private static final byte HELLO_MESSAGE_CODE_TYPE = 0;\r
22     /**\r
23      * Testing of {@link HelloInputMessageFactory} for correct translation from POJO\r
24      */\r
25     @Test\r
26     public void testWithoutElementsSet() {\r
27         HelloInputBuilder hib = new HelloInputBuilder();\r
28         hib.setVersion(HelloMessageFactoryTest.VERSION_YET_SUPPORTED);\r
29         hib.setXid(16909060L);\r
30         HelloInput hi = hib.build();\r
31         \r
32         ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();\r
33         HelloInputMessageFactory himf = HelloInputMessageFactory.getInstance();\r
34         himf.messageToBuffer(HelloMessageFactoryTest.VERSION_YET_SUPPORTED, out, hi);\r
35         \r
36         Assert.assertTrue(out.readByte() == HelloMessageFactoryTest.VERSION_YET_SUPPORTED);\r
37         Assert.assertTrue(out.readByte() == HELLO_MESSAGE_CODE_TYPE);\r
38         Assert.assertTrue(out.readUnsignedShort() == OFFrameDecoder.LENGTH_OF_HEADER);\r
39         Assert.assertTrue(out.readUnsignedInt() == 16909060L);\r
40     }\r
41 \r
42 }\r