098569c482c1bc57cf679bcd7d755981a6dcf6d6
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / multipart / tablefeatures / NextTableTablePropertySerializerTest.java
1 /*
2  * Copyright (c) 2017 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.multipart.tablefeatures;
10
11 import static org.junit.Assert.assertEquals;
12
13 import java.util.Collections;
14 import org.junit.Test;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.TableFeaturesPropType;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.feature.prop.type.TableFeaturePropType;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.feature.prop.type.table.feature.prop.type.NextTable;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.feature.prop.type.table.feature.prop.type.NextTableBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.feature.prop.type.table.feature.prop.type.next.table.TablesBuilder;
20
21 public class NextTableTablePropertySerializerTest extends AbstractTablePropertySerializerTest {
22
23     @Test
24     public void testSerialize() throws Exception {
25         final short tableId = 42;
26         final NextTable property = new NextTableBuilder()
27                 .setTables(new TablesBuilder()
28                         .setTableIds(Collections.singletonList(tableId))
29                         .build())
30                 .build();
31
32         assertProperty(property, out -> {
33             assertEquals(out.readUnsignedByte(), tableId);
34         });
35     }
36
37     @Override
38     protected Class<? extends TableFeaturePropType> getClazz() {
39         return NextTable.class;
40     }
41
42     @Override
43     protected int getType() {
44         return TableFeaturesPropType.OFPTFPTNEXTTABLES.getIntValue();
45     }
46
47 }