504390b10e6d71ea3701eef40d5c7845a07d21c7
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / match / InPhyPortEntrySerializerTest.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.inventory.rev130819.NodeConnectorId;
17
18 public class InPhyPortEntrySerializerTest extends AbstractMatchEntrySerializerTest {
19     @Test
20     public void testSerialize() {
21         final int port = 10122;
22
23         final Match match = new MatchBuilder()
24                 .setInPhyPort(new NodeConnectorId("openflow:1:" + port))
25                 .build();
26
27         assertMatch(match, false, (out) -> assertEquals(out.readUnsignedInt(), port));
28     }
29
30     @Override
31     protected short getLength() {
32         return Integer.BYTES;
33     }
34
35     @Override
36     protected int getOxmFieldCode() {
37         return OxmMatchConstants.IN_PHY_PORT;
38     }
39
40     @Override
41     protected int getOxmClassCode() {
42         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
43     }
44 }