Remove redundant exception declarations
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / serialization / match / Ipv6NdSllEntrySerializerTest.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.serialization.match;
10
11 import static org.junit.Assert.assertEquals;
12
13 import org.junit.Test;
14 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
15 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
16 import org.opendaylight.openflowjava.util.ByteBufUtils;
17 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.MatchBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.Match;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.layer._3.match.Ipv6MatchBuilder;
21
22 public class Ipv6NdSllEntrySerializerTest extends AbstractMatchEntrySerializerTest {
23
24     @Test
25     public void testSerialize() {
26         final MacAddress ipv6NdSll = new MacAddress("00:01:02:03:04:05");
27
28         final Match ipv6NdSllMatch = new MatchBuilder()
29                 .setLayer3Match(new Ipv6MatchBuilder()
30                         .setIpv6NdSll(ipv6NdSll)
31                         .build())
32                 .build();
33
34         assertMatch(ipv6NdSllMatch, false, (out) -> {
35             byte[] addressBytes = new byte[6];
36             out.readBytes(addressBytes);
37             assertEquals(new MacAddress(ByteBufUtils.macAddressToString(addressBytes)).getValue(),
38                     ipv6NdSll.getValue());
39         });
40     }
41
42     @Override
43     protected short getLength() {
44         return EncodeConstants.MAC_ADDRESS_LENGTH;
45     }
46
47     @Override
48     protected int getOxmFieldCode() {
49         return OxmMatchConstants.IPV6_ND_SLL;
50     }
51
52     @Override
53     protected int getOxmClassCode() {
54         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
55     }
56
57 }