Remove EncodeConstants.SIZE_OF_{BYTE,SHORT,INT,LONG}_IN_BYTES
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / match / Icmpv6TypeEntrySerializerTest.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 package org.opendaylight.openflowplugin.impl.protocol.serialization.match;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.Match;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.MatchBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.Icmpv6MatchBuilder;
17
18 public class Icmpv6TypeEntrySerializerTest extends AbstractMatchEntrySerializerTest {
19     @Test
20     public void testSerialize() {
21         final short type = 123;
22
23         final Match match = new MatchBuilder()
24                 .setIcmpv6Match(new Icmpv6MatchBuilder()
25                         .setIcmpv6Type(type)
26                         .build())
27                 .build();
28
29         assertMatch(match, false, (out) -> assertEquals(out.readUnsignedByte(), type));
30     }
31
32     @Override
33     protected short getLength() {
34         return Byte.BYTES;
35     }
36
37     @Override
38     protected int getOxmFieldCode() {
39         return OxmMatchConstants.ICMPV6_TYPE;
40     }
41
42     @Override
43     protected int getOxmClassCode() {
44         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
45     }
46 }