Upgrade ietf-{inet,yang}-types to 2013-07-15
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / SetConfigMessageFactoryTest.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.SwitchConfigFlag;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.SetConfigInput;
22
23 /**
24  * @author giuseppex.petralia@intel.com
25  *
26  */
27 public class SetConfigMessageFactoryTest {
28     private OFDeserializer<SetConfigInput> factory;
29
30     @Before
31     public void startUp() {
32         DeserializerRegistry desRegistry = new DeserializerRegistryImpl();
33         desRegistry.init();
34         factory = desRegistry
35                 .getDeserializer(new MessageCodeKey(EncodeConstants.OF13_VERSION_ID, 9, SetConfigInput.class));
36     }
37
38     @Test
39     public void test() {
40         ByteBuf bb = BufferHelper.buildBuffer("00 02 " + "00 0a");
41         SetConfigInput deserializedMessage = BufferHelper.deserialize(factory, bb);
42         BufferHelper.checkHeaderV13(deserializedMessage);
43
44         // Test Message
45         Assert.assertEquals("Wrong flags ", SwitchConfigFlag.forValue(2), deserializedMessage.getFlags());
46         Assert.assertEquals("Wrong Miss Send len ", 10, deserializedMessage.getMissSendLen().intValue());
47     }
48
49 }