Extensibility support (deserialization part)
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / OF10FlowRemovedMessageFactoryTest.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 package org.opendaylight.openflowjava.protocol.impl.deserialization.factories;
9
10 import io.netty.buffer.ByteBuf;
11
12 import org.junit.Assert;
13 import org.junit.Before;
14 import org.junit.Test;
15 import org.opendaylight.openflowjava.protocol.api.extensibility.DeserializerRegistry;
16 import org.opendaylight.openflowjava.protocol.api.extensibility.MessageCodeKey;
17 import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer;
18 import org.opendaylight.openflowjava.protocol.impl.deserialization.DeserializerRegistryImpl;
19 import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;
20 import org.opendaylight.openflowjava.protocol.impl.util.EncodeConstants;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.FlowRemovedMessage;
22
23 /**
24  * @author michal.polkorab
25  */
26 public class OF10FlowRemovedMessageFactoryTest {
27
28     private OFDeserializer<FlowRemovedMessage> flowFactory;
29
30     /**
31      * Initializes deserializer registry and lookups correct deserializer
32      */
33     @Before
34     public void startUp() {
35         DeserializerRegistry registry = new DeserializerRegistryImpl();
36         registry.init();
37         flowFactory = registry.getDeserializer(
38                 new MessageCodeKey(EncodeConstants.OF10_VERSION_ID, 11, FlowRemovedMessage.class));
39     }
40
41     /**
42      * Testing {@link OF10FlowRemovedMessageFactory} for correct translation into POJO
43      */
44     @Test
45     public void test(){
46         ByteBuf bb = BufferHelper.buildBuffer("00 24 08 D1 00 20 AA BB CC DD EE FF "
47                 + "AA BB CC DD EE FF 00 05 10 00 00 08 07 06 00 00 10 11 12 13 01 02 03 04 "//36
48                 + "50 50 20 20 "// match
49                 + "00 01 02 03 04 05 06 07 00 03 01 00 00 00 00 02 "
50                 + "00 00 00 05 00 08 00 00 00 01 02 03 04 05 06 07 00 01 02 03 04 05 06 07");//41
51         FlowRemovedMessage builtByFactory = BufferHelper.deserialize(flowFactory, bb);
52
53         BufferHelper.checkHeaderV10(builtByFactory);
54         Assert.assertEquals("Wrong cookie", 0x0001020304050607L, builtByFactory.getCookie().longValue());
55         Assert.assertEquals("Wrong priority", 0x03, builtByFactory.getPriority().intValue());
56         Assert.assertEquals("Wrong reason", 0x01, builtByFactory.getReason().getIntValue());
57         Assert.assertEquals("Wrong durationSec", 0x00000002L, builtByFactory.getDurationSec().longValue());
58         Assert.assertEquals("Wrong durationNsec", 0x00000005L, builtByFactory.getDurationNsec().longValue());
59         Assert.assertEquals("Wrong idleTimeout", 0x08, builtByFactory.getIdleTimeout().intValue());
60         Assert.assertEquals("Wrong packetCount", 0x0001020304050607L, builtByFactory.getPacketCount().longValue());
61         Assert.assertEquals("Wrong byteCount", 0x0001020304050607L, builtByFactory.getByteCount().longValue());
62     }
63
64 }