74bdfe7ff92db2e749a3eb068a91d6ff5f5f7f27
[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
9 package org.opendaylight.openflowplugin.impl.protocol.serialization.match;
10
11 import static org.junit.Assert.assertEquals;
12
13 import org.junit.Test;
14 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
15 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.Match;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.MatchBuilder;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeConnectorId;
19
20 public class InPhyPortEntrySerializerTest extends AbstractMatchEntrySerializerTest {
21
22     @Test
23     public void testSerialize() {
24         final int port = 10122;
25
26         final Match match = new MatchBuilder()
27                 .setInPhyPort(new NodeConnectorId("openflow:1:" + port))
28                 .build();
29
30         assertMatch(match, false, (out) -> assertEquals(out.readUnsignedInt(), port));
31     }
32
33     @Override
34     protected short getLength() {
35         return EncodeConstants.SIZE_OF_INT_IN_BYTES;
36     }
37
38     @Override
39     protected int getOxmFieldCode() {
40         return OxmMatchConstants.IN_PHY_PORT;
41     }
42
43     @Override
44     protected int getOxmClassCode() {
45         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
46     }
47
48 }