Merge "Rework bit-copying functions and re-enable tests"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / action / GroupActionDeserializerTest.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.action;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertTrue;
13
14 import io.netty.buffer.ByteBuf;
15 import io.netty.buffer.UnpooledByteBufAllocator;
16 import org.junit.Test;
17 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.GroupActionCase;
20
21 public class GroupActionDeserializerTest extends AbstractActionDeserializerTest {
22
23     @Test
24     public void testDeserialize() throws Exception {
25         final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer();
26         final int groupId = 10;
27         writeHeader(in);
28         in.writeInt(groupId);
29
30         final Action action = deserializeAction(in);
31         assertTrue(action instanceof GroupActionCase);
32         assertEquals(groupId, ((GroupActionCase) action).getGroupAction().getGroupId().intValue());
33         assertEquals(0, in.readableBytes());
34     }
35
36     @Override
37     protected short getType() {
38         return ActionConstants.GROUP_CODE;
39     }
40
41     @Override
42     protected short getLength() {
43         return ActionConstants.GENERAL_ACTION_LENGTH;
44     }
45
46 }