Draft implementation of integration tests
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / GetConfigInputMessageFactoryTest.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.Test;\r
8 import org.opendaylight.openflowjava.protocol.impl.deserialization.factories.HelloMessageFactoryTest;\r
9 import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;\r
10 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetConfigInput;\r
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetConfigInputBuilder;\r
12 \r
13 /**\r
14  * @author michal.polkorab\r
15  *\r
16  */\r
17 public class GetConfigInputMessageFactoryTest {\r
18 \r
19     private static final byte GET_CONFIG_REQUEST_MESSAGE_CODE_TYPE = GetConfigInputMessageFactory.MESSAGE_TYPE;\r
20     \r
21     /**\r
22      * Testing of {@link GetConfigInputMessageFactory} for correct translation from POJO\r
23      * @throws Exception \r
24      */\r
25     @Test\r
26     public void test() throws Exception {\r
27         GetConfigInputBuilder gcib = new GetConfigInputBuilder();\r
28         BufferHelper.setupHeader(gcib);\r
29         GetConfigInput gci = gcib.build();\r
30         \r
31         ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();\r
32         GetConfigInputMessageFactory gcimf = GetConfigInputMessageFactory.getInstance();\r
33         gcimf.messageToBuffer(HelloMessageFactoryTest.VERSION_YET_SUPPORTED, out, gci);\r
34         \r
35         BufferHelper.checkHeaderV13(out, GET_CONFIG_REQUEST_MESSAGE_CODE_TYPE, 8);\r
36     }\r
37 \r
38 }\r