Merge "Remove redundant exception declarations"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / Ipv6FlabelEntryDeserializerTest.java
1 /*
2  * Copyright (c) 2016 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
9 package org.opendaylight.openflowplugin.impl.protocol.deserialization.match;
10
11 import static org.junit.Assert.assertEquals;
12
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.UnpooledByteBufAllocator;
15 import org.junit.Test;
16 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
17 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.layer._3.match.Ipv6Match;
19
20 public class Ipv6FlabelEntryDeserializerTest extends AbstractMatchEntryDeserializerTest {
21
22     @Test
23     public void deserializeEntry() {
24         final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer();
25         final int flowLabel = 10;
26         final int flowLabelMask = 8;
27
28         writeHeader(in, false);
29         in.writeInt(flowLabel);
30
31         Ipv6Match match = (Ipv6Match) deserialize(in).getLayer3Match();
32         assertEquals(flowLabel, match.getIpv6Label().getIpv6Flabel().getValue().intValue());
33         assertEquals(0, in.readableBytes());
34
35         writeHeader(in, true);
36         in.writeInt(flowLabel);
37         in.writeInt(flowLabelMask);
38
39         match = (Ipv6Match) deserialize(in).getLayer3Match();
40         assertEquals(flowLabel, match.getIpv6Label().getIpv6Flabel().getValue().intValue());
41         assertEquals(flowLabelMask, match.getIpv6Label().getFlabelMask().getValue().intValue());
42         assertEquals(0, in.readableBytes());
43     }
44
45     @Override
46     protected int getOxmClassCode() {
47         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
48     }
49
50     @Override
51     protected int getOxmFieldCode() {
52         return OxmMatchConstants.IPV6_FLABEL;
53     }
54
55     @Override
56     protected int getValueLength() {
57         return EncodeConstants.SIZE_OF_INT_IN_BYTES;
58     }
59
60 }