Bump upstreams
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / EthernetSourceEntryDeserializerTest.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.ethernet.match.fields.EthernetSource;
20
21 public class EthernetSourceEntryDeserializerTest extends AbstractMatchEntryDeserializerTest {
22
23     @Test
24     public void deserializeEntry() {
25         final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer();
26         final MacAddress ethernetSourceAddress = new MacAddress("00:01:02:03:04:05");
27         final MacAddress ethernetSourceAddressMask = new MacAddress("00:00:00:00:00:00");
28
29         writeHeader(in, false);
30         in.writeBytes(IetfYangUtil.macAddressBytes(ethernetSourceAddress));
31
32         assertEquals(ethernetSourceAddress.getValue(),
33                 deserialize(in).getEthernetMatch().getEthernetSource().getAddress().getValue());
34         assertEquals(0, in.readableBytes());
35
36         writeHeader(in, true);
37         in.writeBytes(IetfYangUtil.macAddressBytes(ethernetSourceAddress));
38         in.writeBytes(IetfYangUtil.macAddressBytes(ethernetSourceAddressMask));
39
40         final EthernetSource desAddress = deserialize(in).getEthernetMatch().getEthernetSource();
41         assertEquals(ethernetSourceAddress.getValue(), desAddress.getAddress().getValue());
42         assertEquals(ethernetSourceAddressMask.getValue(), desAddress.getMask().getValue());
43         assertEquals(0, in.readableBytes());
44     }
45
46     @Override
47     protected int getOxmClassCode() {
48         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
49     }
50
51     @Override
52     protected int getOxmFieldCode() {
53         return OxmMatchConstants.ETH_SRC;
54     }
55
56     @Override
57     protected int getValueLength() {
58         return EncodeConstants.MAC_ADDRESS_LENGTH;
59     }
60 }