bf5a3c3607a83f5550af4b0436117a8d0594d7c5
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / GetConfigInputMessageFactoryTest.java
1 /*
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowjava.protocol.impl.serialization.factories;
10
11 import io.netty.buffer.ByteBuf;
12 import io.netty.buffer.UnpooledByteBufAllocator;
13
14 import org.junit.Before;
15 import org.junit.Test;
16 import org.opendaylight.openflowjava.protocol.api.extensibility.MessageTypeKey;
17 import org.opendaylight.openflowjava.protocol.api.extensibility.OFSerializer;
18 import org.opendaylight.openflowjava.protocol.api.extensibility.SerializerRegistry;
19 import org.opendaylight.openflowjava.protocol.impl.serialization.SerializerRegistryImpl;
20 import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;
21 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetConfigInput;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetConfigInputBuilder;
24
25 /**
26  * @author michal.polkorab
27  *
28  */
29 public class GetConfigInputMessageFactoryTest {
30
31     private static final byte GET_CONFIG_REQUEST_MESSAGE_CODE_TYPE = 7;
32     private SerializerRegistry registry;
33     private OFSerializer<GetConfigInput> getConfigFactory;
34
35     /**
36      * Initializes serializer registry and stores correct factory in field
37      */
38     @Before
39     public void startUp() {
40         registry = new SerializerRegistryImpl();
41         registry.init();
42         getConfigFactory = registry.getSerializer(
43                 new MessageTypeKey<>(EncodeConstants.OF13_VERSION_ID, GetConfigInput.class));
44     }
45
46     /**
47      * Testing of {@link GetConfigInputMessageFactory} for correct translation from POJO
48      * @throws Exception 
49      */
50     @Test
51     public void testV13() throws Exception {
52         GetConfigInputBuilder gcib = new GetConfigInputBuilder();
53         BufferHelper.setupHeader(gcib, EncodeConstants.OF13_VERSION_ID);
54         GetConfigInput gci = gcib.build();
55         
56         ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();
57         getConfigFactory.serialize(gci, out);
58
59         BufferHelper.checkHeaderV13(out, GET_CONFIG_REQUEST_MESSAGE_CODE_TYPE, 8);
60     }
61     
62     /**
63      * Testing of {@link GetConfigInputMessageFactory} for correct translation from POJO
64      * @throws Exception 
65      */
66     @Test
67     public void testV10() throws Exception {
68         GetConfigInputBuilder gcib = new GetConfigInputBuilder();
69         BufferHelper.setupHeader(gcib, EncodeConstants.OF10_VERSION_ID);
70         GetConfigInput gci = gcib.build();
71         
72         ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();
73         getConfigFactory.serialize(gci, out);
74         
75         BufferHelper.checkHeaderV10(out, GET_CONFIG_REQUEST_MESSAGE_CODE_TYPE, 8);
76     }
77
78 }