Remove use of junit-addons
[lispflowmapping.git] / mappingservice / lisp-proto / src / test / java / org / opendaylight / lispflowmapping / serializer / address / KeyValueAddressSerializerTest.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.exception.LispSerializationException;
17 import org.opendaylight.lispflowmapping.tools.junit.BaseTestCase;
18 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
19 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address;
20 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.lisp.address.types.rev151105.KeyValueAddressLcaf;
21 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.lisp.address.types.rev151105.SimpleAddress;
22 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.lisp.address.types.rev151105.lisp.address.address.KeyValueAddress;
23 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.lisp.address.types.rev151105.lisp.address.address.key.value.address.KeyValueAddressBuilder;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.eid.container.Eid;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.eid.container.EidBuilder;
26
27 public class KeyValueAddressSerializerTest extends BaseTestCase {
28
29     @Test
30     public void deserialize__Simple() throws Exception {
31         Eid address = LispAddressSerializer.getInstance().deserializeEid(hexToByteBuffer("40 03 00 00 "
32                 + "0F 20 00 0C "
33                 + "00 01 11 22 33 44 " // AFI=1, IP=0x11223344
34                 + "00 01 22 33 44 55"), null); // AFI=1, IP=0x22334455
35
36         assertEquals(KeyValueAddressLcaf.VALUE, address.getAddressType());
37         KeyValueAddress srcDestAddress = (KeyValueAddress) address.getAddress();
38
39         assertEquals("17.34.51.68", srcDestAddress.getKeyValueAddress().getKey().stringValue());
40         assertEquals("34.51.68.85", srcDestAddress.getKeyValueAddress().getValue().stringValue());
41     }
42
43     @Test(expected = LispSerializationException.class)
44     public void deserialize__ShorterBuffer() throws Exception {
45         LispAddressSerializer.getInstance().deserializeEid(hexToByteBuffer("""
46             40 03 00 00 \
47             02 20 00 0A \
48             AA BB \
49             """), null);
50     }
51
52     @Test(expected = LispSerializationException.class)
53     public void deserialize__UnknownLCAFType() throws Exception {
54         LispAddressSerializer.getInstance().deserializeEid(hexToByteBuffer("""
55             40 03 00 00 \
56             AA 20 00 0A \
57             00 01 11 22 33 44 \
58             00 01 22 33 44 55"""), null); // AFI=1, IP=0x22334455
59     }
60
61     @Test
62     public void deserialize__Ipv6() throws Exception {
63         Eid srcAddress = LispAddressSerializer.getInstance().deserializeEid(hexToByteBuffer("40 03 00 00 "
64                 + "0F 20 00 24 "
65                 + "00 02 11 22 33 44 55 66 77 88 99 AA BB CC AA BB CC DD " // AFI=2,
66                 + "00 02 44 33 22 11 88 77 66 55 99 AA BB CC AA BB CC DD"), null); // AFI=2,
67         // IPv6
68
69         assertEquals("1122:3344:5566:7788:99aa:bbcc:aabb:ccdd",
70                 ((KeyValueAddress) srcAddress.getAddress()).getKeyValueAddress().getKey().stringValue());
71         assertEquals("4433:2211:8877:6655:99aa:bbcc:aabb:ccdd",
72                 ((KeyValueAddress) srcAddress.getAddress()).getKeyValueAddress().getValue().stringValue());
73     }
74
75     @Test
76     public void serialize__Simple() throws Exception {
77         KeyValueAddressBuilder addressBuilder = new KeyValueAddressBuilder();
78         addressBuilder.setKey(new SimpleAddress(new IpAddress(new Ipv4Address("17.34.51.68"))));
79         addressBuilder.setValue(new SimpleAddress(new IpAddress(new Ipv4Address("34.51.68.85"))));
80
81         EidBuilder eb = new EidBuilder();
82         eb.setAddressType(KeyValueAddressLcaf.VALUE);
83         eb.setVirtualNetworkId(null);
84         eb.setAddress(new org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.lisp.address.types.rev151105
85             .lisp.address.address.KeyValueAddressBuilder()
86             .setKeyValueAddress(addressBuilder.build()).build());
87
88         ByteBuffer buf = ByteBuffer.allocate(LispAddressSerializer.getInstance().getAddressSize(eb.build()));
89         LispAddressSerializer.getInstance().serialize(buf, eb.build());
90
91         ByteBuffer expectedBuf = hexToByteBuffer("40 03 00 00 "
92                 + "0F 00 00 0C "
93                 + "00 01 11 22 33 44 "  // AFI=1, IP=0x11223344
94                 + "00 01 22 33 44 55"); // AFI=1, IP=0x22334455
95         assertArrayEquals(expectedBuf.array(), buf.array());
96     }
97 }