Add Action serializers
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / actions / CopyTtlOutActionSerializerTest.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.serialization.actions;
10
11 import org.junit.Test;
12 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.CopyTtlOutCase;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.CopyTtlOutCaseBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.copy.ttl.out._case.CopyTtlOutBuilder;
17
18 public class CopyTtlOutActionSerializerTest extends AbstractActionSerializerTest {
19
20     @Test
21     public void testSerialize() throws Exception {
22         final Action action = new CopyTtlOutCaseBuilder()
23                 .setCopyTtlOut(new CopyTtlOutBuilder()
24                         .build())
25                 .build();
26
27         assertAction(action, out -> out.skipBytes(ActionConstants.PADDING_IN_ACTION_HEADER));
28     }
29
30     @Override
31     protected Class<? extends Action> getClazz() {
32         return CopyTtlOutCase.class;
33     }
34
35     @Override
36     protected int getType() {
37         return ActionConstants.COPY_TTL_OUT_CODE;
38     }
39
40     @Override
41     protected int getLength() {
42         return ActionConstants.GENERAL_ACTION_LENGTH;
43     }
44
45 }