Bump upstreams for 2022.09 Chlorine
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / multipart / tablefeatures / MatchTablePropertySerializerTest.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 package org.opendaylight.openflowplugin.impl.protocol.serialization.multipart.tablefeatures;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.TableFeaturesPropType;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.ArpOp;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.set.field.match.SetFieldMatchBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.feature.prop.type.TableFeaturePropType;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.feature.prop.type.table.feature.prop.type.Match;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.feature.prop.type.table.feature.prop.type.MatchBuilder;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.table.feature.prop.type.table.feature.prop.type.match.MatchSetfieldBuilder;
21 import org.opendaylight.yangtools.yang.binding.util.BindingMap;
22
23 public class MatchTablePropertySerializerTest extends AbstractTablePropertySerializerTest {
24     @Test
25     public void testSerialize() {
26         final Match property = new MatchBuilder()
27             .setMatchSetfield(new MatchSetfieldBuilder()
28                 .setSetFieldMatch(BindingMap.of(new SetFieldMatchBuilder()
29                     .setMatchType(ArpOp.VALUE)
30                     .setHasMask(false)
31                     .build()))
32                 .build())
33             .build();
34
35         assertProperty(property, out -> {
36             assertEquals(out.readUnsignedShort(), OxmMatchConstants.OPENFLOW_BASIC_CLASS);
37             assertEquals(out.readUnsignedByte(), OxmMatchConstants.ARP_OP << 1);
38             out.skipBytes(Byte.BYTES); // Skip match entry length
39         });
40     }
41
42     @Override
43     protected Class<? extends TableFeaturePropType> getClazz() {
44         return Match.class;
45     }
46
47     @Override
48     protected int getType() {
49         return TableFeaturesPropType.OFPTFPTMATCH.getIntValue();
50     }
51 }