091e6a52321573098e62addd05612d2424a81521
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / ExperimenterMessageFactoryTest.java
1 /* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */\r
2 package org.opendaylight.openflowjava.protocol.impl.deserialization.factories;\r
3 \r
4 import io.netty.buffer.ByteBuf;\r
5 \r
6 import org.junit.Assert;\r
7 import org.junit.Test;\r
8 import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;\r
9 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.ExperimenterMessage;\r
10 \r
11 /**\r
12  * @author michal.polkorab\r
13  *\r
14  */\r
15 public class ExperimenterMessageFactoryTest {\r
16 \r
17     /**\r
18      * Testing {@link ExperimenterMessageFactory} for correct translation into POJO\r
19      */\r
20     @Test\r
21     public void test() {\r
22         ByteBuf bb = BufferHelper.buildBuffer("01 02 03 04 01 02 03 04");\r
23         ExperimenterMessage builtByFactory = BufferHelper.decodeV13(\r
24                 ExperimenterMessageFactory.getInstance(), bb);\r
25 \r
26         BufferHelper.checkHeaderV13(builtByFactory);\r
27         Assert.assertEquals(builtByFactory.getExperimenter().longValue(), 0x01020304L);\r
28         Assert.assertEquals(builtByFactory.getExpType().longValue(), 0x01020304L);\r
29     }\r
30 \r
31 }\r