Merge "Drop the odlparent.netty property"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / actions / SetVlanPcpActionSerializerTest.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 static org.junit.Assert.assertEquals;
12
13 import org.junit.Test;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.SetVlanPcpActionCase;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.SetVlanPcpActionCaseBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.set.vlan.pcp.action._case.SetVlanPcpActionBuilder;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.l2.types.rev130827.VlanPcp;
19
20 public class SetVlanPcpActionSerializerTest extends AbstractSetFieldActionSerializerTest {
21
22     @Test
23     public void testSerialize() throws Exception {
24         final short vlan = 1;
25
26         final Action action = new SetVlanPcpActionCaseBuilder()
27                 .setSetVlanPcpAction(new SetVlanPcpActionBuilder()
28                         .setVlanPcp(new VlanPcp(vlan))
29                         .build())
30                 .build();
31
32         assertAction(action, out -> assertEquals(out.readUnsignedByte(), vlan));
33     }
34
35     @Override
36     protected Class<? extends Action> getClazz() {
37         return SetVlanPcpActionCase.class;
38     }
39
40 }