Merge "Rework bit-copying functions and re-enable tests"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / instruction / MeterInstructionDeserializerTest.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.instruction;
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.impl.util.InstructionConstants;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.Instruction;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.instruction.MeterCase;
19
20 public class MeterInstructionDeserializerTest extends AbstractInstructionDeserializerTest {
21
22     @Test
23     public void testDeserialize() throws Exception {
24         final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer();
25         final int meterId = 3;
26         writeHeader(in);
27         in.writeInt(meterId);
28
29         final Instruction instruction = deserializeInstruction(in);
30         assertEquals(MeterCase.class, instruction.getImplementedInterface());
31         assertEquals(meterId, ((MeterCase) instruction).getMeter().getMeterId().getValue().intValue());
32         assertEquals(0, in.readableBytes());
33     }
34
35     @Override
36     protected short getType() {
37         return InstructionConstants.METER_TYPE;
38     }
39
40     @Override
41     protected short getLength() {
42         return InstructionConstants.STANDARD_INSTRUCTION_LENGTH;
43     }
44
45 }