Add Action deserializers
[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 org.junit.Test;
15 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.GroupActionCase;
18
19 import io.netty.buffer.ByteBuf;
20 import io.netty.buffer.UnpooledByteBufAllocator;
21
22 public class GroupActionDeserializerTest extends AbstractActionDeserializerTest {
23
24     @Test
25     public void testDeserialize() throws Exception {
26         final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer();
27         final int groupId = 10;
28         writeHeader(in);
29         in.writeInt(groupId);
30
31         final Action action = deserializeAction(in);
32         assertTrue(GroupActionCase.class.isInstance(action));
33         assertEquals(groupId, GroupActionCase.class.cast(action).getGroupAction().getGroupId().intValue());
34         assertEquals(0, in.readableBytes());
35     }
36
37     @Override
38     protected short getType() {
39         return ActionConstants.GROUP_CODE;
40     }
41
42     @Override
43     protected short getLength() {
44         return ActionConstants.GENERAL_ACTION_LENGTH;
45     }
46
47 }