Clean up instance checks and casts
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / SctpDestinationPortEntryDeserializerTest.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.deserialization.match;
10
11 import static org.junit.Assert.assertEquals;
12
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.UnpooledByteBufAllocator;
15 import org.junit.Test;
16 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
17 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.layer._4.match.SctpMatch;
19
20 public class SctpDestinationPortEntryDeserializerTest extends AbstractMatchEntryDeserializerTest {
21
22     @Test
23     public void deserializeEntry() throws Exception {
24         final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer();
25         final int port = 22;
26
27         writeHeader(in, false);
28         in.writeShort(port);
29
30         assertEquals(port, ((SctpMatch) deserialize(in).getLayer4Match()).getSctpDestinationPort().getValue()
31                 .intValue());
32         assertEquals(0, in.readableBytes());
33     }
34
35     @Override
36     protected int getOxmClassCode() {
37         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
38     }
39
40     @Override
41     protected int getOxmFieldCode() {
42         return OxmMatchConstants.SCTP_DST;
43     }
44
45     @Override
46     protected int getValueLength() {
47         return EncodeConstants.SIZE_OF_SHORT_IN_BYTES;
48     }
49 }