Merge "Rework bit-copying functions and re-enable tests"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / ArpSourceHardwareAddressEntryDeserializerTest.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.deserialization.match;
10
11 import static org.junit.Assert.assertEquals;
12
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.UnpooledByteBufAllocator;
15 import org.junit.Test;
16 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
17 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
18 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.IetfYangUtil;
19 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.arp.match.fields.ArpSourceHardwareAddress;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.layer._3.match.ArpMatch;
22
23 public class ArpSourceHardwareAddressEntryDeserializerTest extends AbstractMatchEntryDeserializerTest {
24
25     @Test
26     public void deserializeEntry() throws Exception {
27         final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer();
28         final MacAddress arpSourceHardwareAddress = new MacAddress("00:01:02:03:04:05");
29         final MacAddress arpSourceHardwareAddressMask = new MacAddress("00:00:00:00:00:00");
30
31         writeHeader(in, false);
32         in.writeBytes(IetfYangUtil.INSTANCE.bytesFor(arpSourceHardwareAddress));
33
34         assertEquals(arpSourceHardwareAddress.getValue(),
35                 ((ArpMatch) deserialize(in).getLayer3Match()).getArpSourceHardwareAddress().getAddress()
36                         .getValue());
37         assertEquals(0, in.readableBytes());
38
39         writeHeader(in, true);
40         in.writeBytes(IetfYangUtil.INSTANCE.bytesFor(arpSourceHardwareAddress));
41         in.writeBytes(IetfYangUtil.INSTANCE.bytesFor(arpSourceHardwareAddressMask));
42
43         final ArpSourceHardwareAddress desAddress =
44                 ((ArpMatch) deserialize(in).getLayer3Match()).getArpSourceHardwareAddress();
45         assertEquals(arpSourceHardwareAddress.getValue(), desAddress.getAddress().getValue());
46         assertEquals(arpSourceHardwareAddressMask.getValue(), desAddress.getMask().getValue());
47         assertEquals(0, in.readableBytes());
48     }
49
50     @Override
51     protected int getOxmClassCode() {
52         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
53     }
54
55     @Override
56     protected int getOxmFieldCode() {
57         return OxmMatchConstants.ARP_SHA;
58     }
59
60     @Override
61     protected int getValueLength() {
62         return EncodeConstants.MAC_ADDRESS_LENGTH;
63     }
64 }