Remove EncodeConstants.SIZE_OF_{BYTE,SHORT,INT,LONG}_IN_BYTES
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / match / IpDscpEntrySerializerTest.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.Dscp;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.Match;
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.IpMatchBuilder;
18
19 public class IpDscpEntrySerializerTest extends AbstractMatchEntrySerializerTest {
20     @Test
21     public void testSerialize() {
22         final short dscp = (short) 58;
23
24         final Match match = new MatchBuilder()
25                 .setIpMatch(new IpMatchBuilder()
26                         .setIpDscp(new Dscp(dscp))
27                         .build())
28                 .build();
29
30         assertMatch(match, false, (out) -> assertEquals(out.readUnsignedByte(), dscp));
31     }
32
33     @Override
34     protected short getLength() {
35         return Byte.BYTES;
36     }
37
38     @Override
39     protected int getOxmFieldCode() {
40         return OxmMatchConstants.IP_DSCP;
41     }
42
43     @Override
44     protected int getOxmClassCode() {
45         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
46     }
47 }