9b0d1a4d6688a4bfa9aaebfa8b2615ce43fc2948
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / deserialization / match / OxmIpv6FlabelDeserializerTest.java
1 /*\r
2  * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 \r
9 package org.opendaylight.openflowjava.protocol.impl.deserialization.match;\r
10 \r
11 import io.netty.buffer.ByteBuf;\r
12 \r
13 import org.junit.Assert;\r
14 import org.junit.Test;\r
15 import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;\r
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.Ipv6FlabelMatchEntry;\r
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.Ipv6Flabel;\r
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.OpenflowBasicClass;\r
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.fields.grouping.MatchEntries;\r
20 \r
21 /**\r
22  * @author michal.polkorab\r
23  *\r
24  */\r
25 public class OxmIpv6FlabelDeserializerTest {\r
26 \r
27     /**\r
28      * Tests {@link OxmIpv6FlabelDeserializer#deserialize(ByteBuf)}\r
29      */\r
30     @Test\r
31     public void test() {\r
32         ByteBuf buffer = BufferHelper.buildBuffer("80 00 38 04 00 00 00 02");\r
33 \r
34         buffer.skipBytes(4); // skip XID\r
35         OxmIpv6FlabelDeserializer deserializer = new OxmIpv6FlabelDeserializer();\r
36         MatchEntries entry = deserializer.deserialize(buffer);\r
37 \r
38         Assert.assertEquals("Wrong entry class", OpenflowBasicClass.class, entry.getOxmClass());\r
39         Assert.assertEquals("Wrong entry field", Ipv6Flabel.class, entry.getOxmMatchField());\r
40         Assert.assertEquals("Wrong entry hasMask", false, entry.isHasMask());\r
41         Assert.assertEquals("Wrong entry value", 2, \r
42                 entry.getAugmentation(Ipv6FlabelMatchEntry.class).getIpv6Flabel().getValue().intValue());\r
43     }\r
44 }