Extend openflow-protocol-impl serialization
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / TableModInputMessageFactoryTest.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.TableConfig;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.TableId;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.TableModInput;
23
24 /**
25  * @author giuseppex.petralia@intel.com
26  *
27  */
28 public class TableModInputMessageFactoryTest {
29
30     private OFDeserializer<TableModInput> factory;
31
32     @Before
33     public void startUp() {
34         DeserializerRegistry desRegistry = new DeserializerRegistryImpl();
35         desRegistry.init();
36         factory = desRegistry
37                 .getDeserializer(new MessageCodeKey(EncodeConstants.OF13_VERSION_ID, 17, TableModInput.class));
38
39     }
40
41     @Test
42     public void test() {
43         ByteBuf bb = BufferHelper.buildBuffer("09 00 00 00 00 00 00 01");
44         TableModInput deserializedMessage = BufferHelper.deserialize(factory, bb);
45         BufferHelper.checkHeaderV13(deserializedMessage);
46         // Test Message
47         Assert.assertEquals("Wrong table id ", new TableId(9L), deserializedMessage.getTableId());
48         Assert.assertEquals("Wrong config ", new TableConfig(true), deserializedMessage.getConfig());
49     }
50
51 }