Upgrade ietf-{inet,yang}-types to 2013-07-15
[openflowplugin.git] / extension / openflowjava-extension-nicira / src / test / java / org / opendaylight / openflowjava / nx / codec / match / TunIpv4DstCodecTest.java
1 /**
2  * Copyright (c) 2016 Cisco Systems, Inc. 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.openflowjava.nx.codec.match;
10
11 import static org.junit.Assert.assertEquals;
12
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.ByteBufAllocator;
15 import org.junit.Before;
16 import org.junit.Test;
17 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.Nxm1Class;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntryBuilder;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.NxmNxTunIpv4Dst;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.ofj.nxm.nx.match.tun.ipv4.dst.grouping.TunIpv4DstValuesBuilder;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.oxm.container.match.entry.value.TunIpv4DstCaseValue;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.oxm.container.match.entry.value.TunIpv4DstCaseValueBuilder;
25
26 public class TunIpv4DstCodecTest {
27
28     TunIpv4DstCodec tunIpv4DstCodec;
29     ByteBuf buffer;
30     MatchEntry input;
31
32     private static final int VALUE_LENGTH = 4;
33     private static final int NXM_FIELD_CODE = 32;
34
35     @Before
36     public void setUp() {
37         tunIpv4DstCodec = new TunIpv4DstCodec();
38         buffer = ByteBufAllocator.DEFAULT.buffer();
39     }
40
41     @Test
42     public void serializeTest() {
43         input = createMatchEntry();
44         tunIpv4DstCodec.serialize(input, buffer);
45
46         assertEquals(OxmMatchConstants.NXM_1_CLASS, buffer.readUnsignedShort());
47         short fieldMask = buffer.readUnsignedByte();
48         assertEquals(NXM_FIELD_CODE, fieldMask >> 1);
49         assertEquals(0, fieldMask & 1);
50         assertEquals(VALUE_LENGTH, buffer.readUnsignedByte());
51         assertEquals(1, buffer.readUnsignedInt());
52     }
53
54     @Test
55     public void deserializeTest() {
56         createBuffer(buffer);
57
58         input = tunIpv4DstCodec.deserialize(buffer);
59
60         TunIpv4DstCaseValue result = ((TunIpv4DstCaseValue) input.getMatchEntryValue());
61
62         assertEquals(Nxm1Class.class, input.getOxmClass());
63         assertEquals(NxmNxTunIpv4Dst.class, input.getOxmMatchField());
64         assertEquals(false, input.isHasMask());
65         assertEquals(1, result.getTunIpv4DstValues().getValue().intValue());
66     }
67
68
69
70     private MatchEntry createMatchEntry() {
71         MatchEntryBuilder matchEntryBuilder = new MatchEntryBuilder();
72         TunIpv4DstCaseValueBuilder caseBuilder = new TunIpv4DstCaseValueBuilder();
73         TunIpv4DstValuesBuilder valuesBuilder = new TunIpv4DstValuesBuilder();
74
75         matchEntryBuilder.setOxmClass(Nxm1Class.class);
76         matchEntryBuilder.setOxmMatchField(NxmNxTunIpv4Dst.class);
77         matchEntryBuilder.setHasMask(false);
78
79         valuesBuilder.setValue((long)1);
80
81         caseBuilder.setTunIpv4DstValues(valuesBuilder.build());
82         matchEntryBuilder.setMatchEntryValue(caseBuilder.build());
83         return matchEntryBuilder.build();
84     }
85
86     private void createBuffer(ByteBuf message) {
87         message.writeShort(OxmMatchConstants.NXM_1_CLASS);
88
89         int fieldMask = (NXM_FIELD_CODE << 1);
90         message.writeByte(fieldMask);
91         message.writeByte(VALUE_LENGTH);
92         message.writeInt(1);
93     }
94
95 }