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