2 * Copyright (c) 2016 Pantheon Technologies s.r.o. and others. All rights reserved.
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
8 package org.opendaylight.openflowplugin.impl.protocol.serialization.match;
10 import static org.junit.Assert.assertEquals;
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;
20 public class TcpDestinationPortEntrySerializerTest extends AbstractMatchEntrySerializerTest {
22 public void testSerialize() {
23 final Match sctpMatch = new MatchBuilder()
24 .setLayer4Match(new TcpMatchBuilder().setTcpDestinationPort(new PortNumber(Uint16.TEN)).build())
27 assertMatch(sctpMatch, false, (out) -> assertEquals(out.readUnsignedShort(), 10));
31 protected short getLength() {
36 protected int getOxmFieldCode() {
37 return OxmMatchConstants.TCP_DST;
41 protected int getOxmClassCode() {
42 return OxmMatchConstants.OPENFLOW_BASIC_CLASS;