Modernize codebase
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / match / Icmpv6CodeEntrySerializerTest.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 import org.opendaylight.yangtools.yang.common.Uint8;
18
19 public class Icmpv6CodeEntrySerializerTest extends AbstractMatchEntrySerializerTest {
20     @Test
21     public void testSerialize() {
22         final short code = 101;
23
24         final Match match = new MatchBuilder()
25                 .setIcmpv6Match(new Icmpv6MatchBuilder().setIcmpv6Code(Uint8.valueOf(code)).build())
26                 .build();
27
28         assertMatch(match, false, (out) -> assertEquals(out.readUnsignedByte(), code));
29     }
30
31     @Override
32     protected short getLength() {
33         return Byte.BYTES;
34     }
35
36     @Override
37     protected int getOxmFieldCode() {
38         return OxmMatchConstants.ICMPV6_CODE;
39     }
40
41     @Override
42     protected int getOxmClassCode() {
43         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
44     }
45 }