Extend openflow-protocol-impl serialization
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / OF10GetQueueConfigInputMessageFactoryTest.java
1 /*
2  * Copyright (c) 2015 NetIDE Consortium 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 package org.opendaylight.openflowjava.protocol.impl.deserialization.factories;
9
10 import io.netty.buffer.ByteBuf;
11 import org.junit.Assert;
12 import org.junit.Before;
13 import org.junit.Test;
14 import org.opendaylight.openflowjava.protocol.api.extensibility.DeserializerRegistry;
15 import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer;
16 import org.opendaylight.openflowjava.protocol.api.keys.MessageCodeKey;
17 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
18 import org.opendaylight.openflowjava.protocol.impl.deserialization.DeserializerRegistryImpl;
19 import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.PortNumber;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetQueueConfigInput;
22
23 /**
24  * @author giuseppex.petralia@intel.com
25  *
26  */
27 public class OF10GetQueueConfigInputMessageFactoryTest {
28     private OFDeserializer<GetQueueConfigInput> factory;
29
30     @Before
31     public void startUp() {
32         DeserializerRegistry desRegistry = new DeserializerRegistryImpl();
33         desRegistry.init();
34         factory = desRegistry
35                 .getDeserializer(new MessageCodeKey(EncodeConstants.OF10_VERSION_ID, 20, GetQueueConfigInput.class));
36     }
37
38     @Test
39     public void test() {
40         ByteBuf bb = BufferHelper.buildBuffer("19 fd 00 00");
41         GetQueueConfigInput deserializedMessage = BufferHelper.deserialize(factory, bb);
42         BufferHelper.checkHeaderV10(deserializedMessage);
43         Assert.assertEquals("Wrong port", new PortNumber(6653L), deserializedMessage.getPort());
44     }
45 }