c4807192a4fc57140ab26ec7ce6a73cb9cbe3d4e
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / OF10HelloInputMessageFactoryTest.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.HelloInput;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.HelloInputBuilder;
24
25 /**
26  * @author michal.polkorab
27  *
28  */
29 public class OF10HelloInputMessageFactoryTest {
30
31     private SerializerRegistry registry;
32     private OFSerializer<HelloInput> helloFactory;
33
34     /**
35      * Initializes serializer registry and stores correct factory in field
36      */
37     @Before
38     public void startUp() {
39         registry = new SerializerRegistryImpl();
40         registry.init();
41         helloFactory = registry.getSerializer(
42                 new MessageTypeKey<>(EncodeConstants.OF10_VERSION_ID, HelloInput.class));
43     }
44
45     /**
46      * Testing of {@link OF10HelloInputMessageFactory} for correct translation from POJO
47      * @throws Exception 
48      */
49     @Test
50     public void testWithoutElementsSet() throws Exception {
51         HelloInputBuilder hib = new HelloInputBuilder();
52         BufferHelper.setupHeader(hib, EncodeConstants.OF10_VERSION_ID);
53         HelloInput hi = hib.build();
54         
55         ByteBuf out = UnpooledByteBufAllocator.DEFAULT.buffer();
56         helloFactory.serialize(hi, out);
57         
58         BufferHelper.checkHeaderV10(out, (byte) 0, 8);
59     }
60
61 }