Add Match entry deserializers
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / Icmpv4CodeEntryDeserializerTest.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
19 public class Icmpv4CodeEntryDeserializerTest extends AbstractMatchEntryDeserializerTest {
20
21     @Test
22     public void deserializeEntry() throws Exception {
23         final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer();
24         final short code = 7;
25
26         writeHeader(in, false);
27         in.writeByte(code);
28
29         assertEquals(code, deserialize(in).getIcmpv4Match().getIcmpv4Code().shortValue());
30         assertEquals(0, in.readableBytes());
31     }
32
33     @Override
34     protected int getOxmClassCode() {
35         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
36     }
37
38     @Override
39     protected int getOxmFieldCode() {
40         return OxmMatchConstants.ICMPV4_CODE;
41     }
42
43     @Override
44     protected int getValueLength() {
45         return EncodeConstants.SIZE_OF_BYTE_IN_BYTES;
46     }
47 }