Migrate openflowplugim-impl tests to uint types
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / match / TcpDestinationPortEntrySerializerTest.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.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber;
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;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.layer._4.match.TcpMatchBuilder;
18 import org.opendaylight.yangtools.yang.common.Uint16;
19
20 public class TcpDestinationPortEntrySerializerTest extends AbstractMatchEntrySerializerTest {
21     @Test
22     public void testSerialize() {
23         final Match sctpMatch = new MatchBuilder()
24                 .setLayer4Match(new TcpMatchBuilder().setTcpDestinationPort(new PortNumber(Uint16.TEN)).build())
25                 .build();
26
27         assertMatch(sctpMatch, false, (out) -> assertEquals(out.readUnsignedShort(), 10));
28     }
29
30     @Override
31     protected short getLength() {
32         return Short.BYTES;
33     }
34
35     @Override
36     protected int getOxmFieldCode() {
37         return OxmMatchConstants.TCP_DST;
38     }
39
40     @Override
41     protected int getOxmClassCode() {
42         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
43     }
44 }