4d84fc5956713256304d2ea75db759d88ff5e4f2
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / match / MplsBosEntrySerializerTest.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.MatchBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.Match;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.ProtocolMatchFieldsBuilder;
19
20 public class MplsBosEntrySerializerTest extends AbstractMatchEntrySerializerTest {
21
22     @Test
23     public void testSerialize() {
24         final short mplsBos = (short) 1;
25
26         final Match mplsBosMatch = new MatchBuilder()
27                 .setProtocolMatchFields(new ProtocolMatchFieldsBuilder()
28                         .setMplsBos(mplsBos)
29                         .build())
30                 .build();
31
32         // TODO: Why are we using short in models instead of boolean?
33         assertMatch(mplsBosMatch, false, (out) -> assertEquals(out.readBoolean(), mplsBos != 0));
34     }
35
36     @Override
37     protected short getLength() {
38         return EncodeConstants.SIZE_OF_BYTE_IN_BYTES;
39     }
40
41     @Override
42     protected int getOxmFieldCode() {
43         return OxmMatchConstants.MPLS_BOS;
44     }
45
46     @Override
47     protected int getOxmClassCode() {
48         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
49     }
50
51 }