Add Match entry deserializers
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / Ipv6NdSllEntryDeserializerTest.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.match.layer._3.match.Ipv6Match;
21
22 public class Ipv6NdSllEntryDeserializerTest extends AbstractMatchEntryDeserializerTest {
23
24     @Test
25     public void deserializeEntry() throws Exception {
26         final ByteBuf in = UnpooledByteBufAllocator.DEFAULT.buffer();
27         final MacAddress address = new MacAddress("00:01:02:03:04:05");
28
29         writeHeader(in, false);
30         in.writeBytes(IetfYangUtil.INSTANCE.bytesFor(address));
31
32         Ipv6Match match = Ipv6Match.class.cast(deserialize(in).getLayer3Match());
33         assertEquals(address.getValue(), match.getIpv6NdSll().getValue());
34         assertEquals(0, in.readableBytes());
35     }
36
37     @Override
38     protected int getOxmClassCode() {
39         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
40     }
41
42     @Override
43     protected int getOxmFieldCode() {
44         return OxmMatchConstants.IPV6_ND_SLL;
45     }
46
47     @Override
48     protected int getValueLength() {
49         return EncodeConstants.MAC_ADDRESS_LENGTH;
50     }
51
52 }