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