Remove use of junit-addons
[lispflowmapping.git] / mappingservice / lisp-proto / src / test / java / org / opendaylight / lispflowmapping / serializer / address / InstanceIdSerializerTest.java
1 /*
2  * Copyright (c) 2014 Contextream, Inc. 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.lispflowmapping.serializer.address;
9
10 import static org.junit.Assert.assertArrayEquals;
11 import static org.junit.Assert.assertEquals;
12
13 import java.nio.ByteBuffer;
14 import org.junit.Test;
15 import org.opendaylight.lispflowmapping.lisp.serializer.address.LispAddressSerializer;
16 import org.opendaylight.lispflowmapping.lisp.serializer.address.LispAddressSerializerContext;
17 import org.opendaylight.lispflowmapping.lisp.serializer.exception.LispSerializationException;
18 import org.opendaylight.lispflowmapping.lisp.util.LispAddressUtil;
19 import org.opendaylight.lispflowmapping.tools.junit.BaseTestCase;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.binary.address.types.rev160504.Ipv4BinaryAfi;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.binary.address.types.rev160504.augmented.lisp.address.address.Ipv4Binary;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.binary.address.types.rev160504.augmented.lisp.address.address.Ipv6Binary;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.eid.container.Eid;
24
25 public class InstanceIdSerializerTest extends BaseTestCase {
26
27     @Test
28     public void deserialize__Simple() throws Exception {
29         Eid address = LispAddressSerializer.getInstance().deserializeEid(hexToByteBuffer("40 03 00 00 "
30                 + "02 20 00 0A "
31                 + "00 BB CC DD " // instance ID
32                 + "00 01 11 22 33 44"), // AFI=1, IP=0x11223344
33                 new LispAddressSerializerContext(null));
34
35         assertEquals(Ipv4BinaryAfi.VALUE, address.getAddressType());
36         Ipv4Binary ipv4 = (Ipv4Binary) address.getAddress();
37
38         assertArrayEquals(new byte[] {0x11, 0x22, 0x33, 0x44}, ipv4.getIpv4Binary().getValue());
39         assertEquals(0x00BBCCDD, address.getVirtualNetworkId().getValue().longValue());
40     }
41
42     @Test(expected = LispSerializationException.class)
43     public void deserialize__ShorterBuffer() throws Exception {
44         LispAddressSerializer.getInstance().deserializeEid(hexToByteBuffer("""
45             40 03 00 00 \
46             02 20 00 0A \
47             AA BB \
48             """), new LispAddressSerializerContext(null));
49     }
50
51     @Test(expected = LispSerializationException.class)
52     public void deserialize__UnknownLCAFType() throws Exception {
53         LispAddressSerializer.getInstance().deserializeEid(hexToByteBuffer("""
54             40 03 00 00 \
55             AA 20 00 0A \
56             00 BB CC DD \
57             00 01 11 22 33 44"""), // AFI=1, IP=0x11223344
58             new LispAddressSerializerContext(null));
59     }
60
61     @Test(expected = LispSerializationException.class)
62     public void deserialize__LongInstanceID() throws Exception {
63         LispAddressSerializer.getInstance().deserializeEid(hexToByteBuffer("""
64             40 03 00 00 \
65             02 20 00 0A \
66             AA BB CC DD \
67             00 01 11 22 33 44"""), // AFI=1, IP=0x11223344
68             new LispAddressSerializerContext(null));
69     }
70
71     @Test
72     public void deserialize__Ipv6() throws Exception {
73         Eid address = LispAddressSerializer.getInstance().deserializeEid(hexToByteBuffer("40 03 00 00 "
74                 + "02 20 00 0A "
75                 + "00 BB CC DD " // instance ID
76                 + "00 02 11 22 33 44 55 66 77 88 99 AA BB CC AA BB CC DD"), // AFI=2,
77                 new LispAddressSerializerContext(null));
78         // IPv6
79
80         assertArrayEquals(new byte[] {(byte) 0x11, (byte) 0x22, (byte) 0x33, (byte) 0x44,
81                                       (byte) 0x55, (byte) 0x66, (byte) 0x77, (byte) 0x88,
82                                       (byte) 0x99, (byte) 0xAA, (byte) 0xBB, (byte) 0xCC,
83                                       (byte) 0xAA, (byte) 0xBB, (byte) 0xCC, (byte) 0xDD},
84                 ((Ipv6Binary) address.getAddress()).getIpv6Binary().getValue());
85
86     }
87
88     @Test
89     public void serialize__Simple() throws Exception {
90         Eid eid = LispAddressUtil.asIpv4Eid("17.34.51.68", 0x00020304L);
91
92         ByteBuffer buf = ByteBuffer.allocate(LispAddressSerializer.getInstance().getAddressSize(eid));
93         LispAddressSerializer.getInstance().serialize(buf, eid);
94         ByteBuffer expectedBuf = hexToByteBuffer("40 03 00 00 "
95                 + "02 20 00 0A "
96                 + "00 02 03 04 " // instance ID
97                 + "00 01 11 22 33 44");
98         assertArrayEquals(expectedBuf.array(), buf.array());
99     }
100 }