Remove use of junit-addons
[lispflowmapping.git] / mappingservice / lisp-proto / src / test / java / org / opendaylight / lispflowmapping / serializer / MapNotifySerializationTest.java
index 2b17bf952ee4feb26c209ef0126fda2d5f270b10..33e62c02330e55b6d2f8b00491b057f3acc94346 100644 (file)
@@ -5,31 +5,29 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.lispflowmapping.serializer;
 
+import static org.junit.Assert.assertArrayEquals;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
 
 import java.nio.ByteBuffer;
 import java.util.ArrayList;
-
-import junitx.framework.ArrayAssert;
-
 import org.junit.Test;
 import org.opendaylight.lispflowmapping.lisp.serializer.MapNotifySerializer;
 import org.opendaylight.lispflowmapping.lisp.serializer.exception.LispSerializationException;
 import org.opendaylight.lispflowmapping.lisp.util.LispAddressUtil;
+import org.opendaylight.lispflowmapping.lisp.util.MaskUtil;
 import org.opendaylight.lispflowmapping.tools.junit.BaseTestCase;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.MapNotify;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.locatorrecords.LocatorRecord;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapnotifymessage.MapNotifyBuilder;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping.record.container.MappingRecord;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping.record.container.MappingRecord.Action;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping.record.container.MappingRecordBuilder;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping.record.list.MappingRecordItem;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping.record.list.MappingRecordItemBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping._record.container.MappingRecord;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping._record.container.MappingRecord.Action;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping._record.container.MappingRecordBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping._record.list.MappingRecordItem;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.mapping._record.list.MappingRecordItemBuilder;
 
 public class MapNotifySerializationTest extends BaseTestCase {
 
@@ -40,17 +38,17 @@ public class MapNotifySerializationTest extends BaseTestCase {
         mnBuilder.getMappingRecordItem().add(
                 new MappingRecordItemBuilder().setMappingRecord(
                         new MappingRecordBuilder().setEid(LispAddressUtil.asIpv4PrefixEid("0.0.0.1/32")).build())
-                        .build());
+                                .setMappingRecordItemId("xyzzy").build());
         mnBuilder.getMappingRecordItem().add(
                 new MappingRecordItemBuilder().setMappingRecord(
                         new MappingRecordBuilder().setEid(LispAddressUtil.asIpv4PrefixEid("0.0.0.73/32")).build())
-                        .build());
+                                .setMappingRecordItemId("xyzzy").build());
 
         mnBuilder.setNonce(6161616161L);
         mnBuilder.setKeyId((short) 0x0001);
-        byte[] authenticationData = new byte[] { (byte) 0x16, (byte) 0x98, (byte) 0x96, (byte) 0xeb, (byte) 0x88, (byte) 0x2d, (byte) 0x4d,
-                (byte) 0x22, (byte) 0xe5, (byte) 0x8f, (byte) 0xe6, (byte) 0x89, (byte) 0x64, (byte) 0xb9, (byte) 0x17, (byte) 0xa4, (byte) 0xba,
-                (byte) 0x4e, (byte) 0x8c, (byte) 0x41 };
+        byte[] authenticationData = new byte[] { (byte) 0x16, (byte) 0x98, (byte) 0x96, (byte) 0xeb, (byte) 0x88,
+            (byte) 0x2d, (byte) 0x4d, (byte) 0x22, (byte) 0xe5, (byte) 0x8f, (byte) 0xe6, (byte) 0x89, (byte) 0x64,
+            (byte) 0xb9, (byte) 0x17, (byte) 0xa4, (byte) 0xba, (byte) 0x4e, (byte) 0x8c, (byte) 0x41 };
         mnBuilder.setAuthenticationData(authenticationData);
 
         ByteBuffer bb = MapNotifySerializer.getInstance().serialize(mnBuilder.build());
@@ -63,7 +61,7 @@ public class MapNotifySerializationTest extends BaseTestCase {
 
         byte[] actualAuthenticationData = new byte[20];
         bb.get(actualAuthenticationData);
-        ArrayAssert.assertEquals(authenticationData, actualAuthenticationData);
+        assertArrayEquals(authenticationData, actualAuthenticationData);
 
         bb.position(bb.position() + 12); /* EID in first record */
         assertEquals(0x1, bb.getInt());
@@ -81,24 +79,23 @@ public class MapNotifySerializationTest extends BaseTestCase {
         mnBuilder.getMappingRecordItem().add(
                 new MappingRecordItemBuilder().setMappingRecord(
                         new MappingRecordBuilder().setEid(LispAddressUtil.asIpv4PrefixEid("0.0.0.1/32")).build())
-                        .build());
+                                .setMappingRecordItemId("xyzzy").build());
         mnBuilder.getMappingRecordItem().add(
                 new MappingRecordItemBuilder().setMappingRecord(
                         new MappingRecordBuilder().setEid(LispAddressUtil.asIpv4PrefixEid("0.0.0.73/32")).build())
-                        .build());
+                                .setMappingRecordItemId("xyzzy").build());
 
         mnBuilder.setNonce(6161616161L);
         mnBuilder.setKeyId((short) 0x0001);
-        byte[] authenticationData = new byte[] { (byte) 0x16, (byte) 0x98, (byte) 0x96, (byte) 0xeb, (byte) 0x88, (byte) 0x2d, (byte) 0x4d,
-                (byte) 0x22, (byte) 0xe5, (byte) 0x8f, (byte) 0xe6, (byte) 0x89, (byte) 0x64, (byte) 0xb9, (byte) 0x17, (byte) 0xa4, (byte) 0xba,
-                (byte) 0x4e, (byte) 0x8c, (byte) 0x41 };
+        byte[] authenticationData = new byte[] { (byte) 0x16, (byte) 0x98, (byte) 0x96, (byte) 0xeb, (byte) 0x88,
+            (byte) 0x2d, (byte) 0x4d, (byte) 0x22, (byte) 0xe5, (byte) 0x8f, (byte) 0xe6, (byte) 0x89, (byte) 0x64,
+            (byte) 0xb9, (byte) 0x17, (byte) 0xa4, (byte) 0xba, (byte) 0x4e, (byte) 0x8c, (byte) 0x41 };
         mnBuilder.setAuthenticationData(authenticationData);
 
         MapNotify mn = mnBuilder.build();
-        ArrayAssert.assertEquals(
-                MapNotifySerializer.getInstance().serialize(mn).array(),
-                MapNotifySerializer.getInstance()
-                        .serialize(MapNotifySerializer.getInstance().deserialize(MapNotifySerializer.getInstance().serialize(mn))).array());
+        assertArrayEquals(MapNotifySerializer.getInstance().serialize(mn).array(),
+                MapNotifySerializer.getInstance().serialize(MapNotifySerializer.getInstance()
+                        .deserialize(MapNotifySerializer.getInstance().serialize(mn))).array());
 
     }
 
@@ -116,22 +113,21 @@ public class MapNotifySerializationTest extends BaseTestCase {
         // xTR-ID 1
         // Site-ID 1
         MapNotify mn = MapNotifySerializer.getInstance().deserialize(hexToByteBuffer("48 00 00 01 FF BB "
-        //
-                + "00 00 00 00 00 00 00 00 00 00 00 00 " //
-                + "00 0a 01 20 10 00 00 00 00 01 99 10 fe 01 01 64 " //
+                + "00 00 00 00 00 00 00 00 00 00 00 00 "
+                + "00 0a 01 20 10 00 00 00 00 01 99 10 fe 01 01 64 "
                 + "ff 00 00 05 00 01 c0 a8 88 0a "
                 + "00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 " // xTR-ID
                 + "00 00 00 00 00 00 00 01 " // Site-ID
                 ));
 
 
-        assertTrue(mn.isXtrSiteIdPresent());
+        assertTrue(mn.getXtrSiteIdPresent());
 
         assertEquals(1, mn.getMappingRecordItem().size());
         assertEquals(0xFFBB000000000000L, mn.getNonce().longValue());
         assertEquals(0x0000, mn.getKeyId().shortValue());
         byte[] expectedAuthenticationData = {};
-        ArrayAssert.assertEquals(expectedAuthenticationData, mn.getAuthenticationData());
+        assertArrayEquals(expectedAuthenticationData, mn.getAuthenticationData());
     }
 
     @Test
@@ -141,7 +137,7 @@ public class MapNotifySerializationTest extends BaseTestCase {
         mnBuilder.getMappingRecordItem().add(
                 new MappingRecordItemBuilder().setMappingRecord(
                         new MappingRecordBuilder().setEid(LispAddressUtil.asIpv4PrefixEid("0.0.0.1/32"))
-                        .setRecordTtl(55).build()).build());
+                        .setRecordTtl(55).build()).setMappingRecordItemId("xyzzy").build());
 
         ByteBuffer bb = MapNotifySerializer.getInstance().serialize(mnBuilder.build());
         bb.position(bb.position() + 14); // jump to AuthenticationDataLength
@@ -168,11 +164,12 @@ public class MapNotifySerializationTest extends BaseTestCase {
         MapNotifyBuilder mnBuilder = new MapNotifyBuilder();
         mnBuilder.setMappingRecordItem(new ArrayList<MappingRecordItem>());
         mnBuilder.getMappingRecordItem().add(new MappingRecordItemBuilder().setMappingRecord(
-                new MappingRecordBuilder().build()).build());
-        mnBuilder.getMappingRecordItem().add(new MappingRecordItemBuilder().setMappingRecord
-                (new MappingRecordBuilder().setEid(null).build()).build());
+                new MappingRecordBuilder().build()).setMappingRecordItemId("xyzzy").build());
+        mnBuilder.getMappingRecordItem().add(new MappingRecordItemBuilder().setMappingRecord(
+                new MappingRecordBuilder().setEid(null).build()).setMappingRecordItemId("xyzzy").build());
         mnBuilder.getMappingRecordItem().add(new MappingRecordItemBuilder().setMappingRecord(
-                new MappingRecordBuilder().setEid(LispAddressUtil.getNoAddressEid()).build()).build());
+                new MappingRecordBuilder().setEid(LispAddressUtil.getNoAddressEid()).build())
+                    .setMappingRecordItemId("xyzzy").build());
 
         ByteBuffer bb = MapNotifySerializer.getInstance().serialize(mnBuilder.build());
         bb.position(bb.position() + 16); // jump to first record prefix AFI
@@ -195,10 +192,9 @@ public class MapNotifySerializationTest extends BaseTestCase {
         // 192.168.136.13
         //
         MapNotify mn = MapNotifySerializer.getInstance().deserialize(hexToByteBuffer("40 00 00 "
-        //
                 + "04 " // Record count
-                + "FF BB 00 00 00 00 00 00 00 01 00 14 87 c1 33 cd " //
-                + "d1 1e bc 80 fd 3e 71 11 81 17 40 74 26 25 44 bd " //
+                + "FF BB 00 00 00 00 00 00 00 01 00 14 87 c1 33 cd "
+                + "d1 1e bc 80 fd 3e 71 11 81 17 40 74 26 25 44 bd "
                 + "00 00 00 0a 01 20 10 00 00 00 00 01 99 10 fe 01 01 64 " // Record
                 // 1
                 + "ff 00 00 05 00 01 c0 a8 88 0a " // contd
@@ -214,9 +210,9 @@ public class MapNotifySerializationTest extends BaseTestCase {
         ));
 
         assertEquals(4, mn.getMappingRecordItem().size());
-        assertEquals(LispAddressUtil.asIpv4PrefixEid("153.16.254.1/32"), mn.getMappingRecordItem().get(0)
+        assertEquals(LispAddressUtil.asIpv4PrefixBinaryEid("153.16.254.1/32"), mn.getMappingRecordItem().get(0)
                 .getMappingRecord().getEid());
-        assertEquals(LispAddressUtil.asIpv4PrefixEid("151.16.254.1/32"), mn.getMappingRecordItem().get(2)
+        assertEquals(LispAddressUtil.asIpv4PrefixBinaryEid("151.16.254.1/32"), mn.getMappingRecordItem().get(2)
                 .getMappingRecord().getEid());
         assertEquals(LispAddressUtil.asIpv4Rloc("192.168.136.11"), mn.getMappingRecordItem().get(1)
                 .getMappingRecord().getLocatorRecord().get(0).getRloc());
@@ -227,10 +223,9 @@ public class MapNotifySerializationTest extends BaseTestCase {
     @Test
     public void deserialize__Locators() throws Exception {
         MapNotify mn = MapNotifySerializer.getInstance().deserialize(hexToByteBuffer("40 00 01 01 "
-        //
-                + "FF BB 00 00 00 00 00 00 00 01 00 14 f1 b8 ab f0 " //
-                + "66 bb 2e ef 12 70 74 46 6f 6b 8e ca bf 1e 68 40 " //
-                + "00 00 00 0a " //
+                + "FF BB 00 00 00 00 00 00 00 01 00 14 f1 b8 ab f0 "
+                + "66 bb 2e ef 12 70 74 46 6f 6b 8e ca bf 1e 68 40 "
+                + "00 00 00 0a "
                 + "03 " // Locator Count
                 + "20 10 00 00 00 00 01 99 10 fe 01 "
                 // Locator 1
@@ -269,17 +264,17 @@ public class MapNotifySerializationTest extends BaseTestCase {
         assertEquals((byte) 0x34, loc1.getMulticastWeight().byteValue());
         assertEquals((byte) 0xA4, loc2.getMulticastWeight().byteValue());
 
-        assertTrue(loc0.isLocalLocator());
-        assertFalse(loc1.isLocalLocator());
-        assertFalse(loc2.isLocalLocator());
+        assertTrue(loc0.getLocalLocator());
+        assertFalse(loc1.getLocalLocator());
+        assertFalse(loc2.getLocalLocator());
 
-        assertFalse(loc0.isRlocProbed());
-        assertTrue(loc1.isRlocProbed());
-        assertTrue(loc2.isRlocProbed());
+        assertFalse(loc0.getRlocProbed());
+        assertTrue(loc1.getRlocProbed());
+        assertTrue(loc2.getRlocProbed());
 
-        assertTrue(loc0.isRouted());
-        assertFalse(loc1.isRouted());
-        assertTrue(loc2.isRouted());
+        assertTrue(loc0.getRouted());
+        assertFalse(loc1.getRouted());
+        assertTrue(loc2.getRouted());
 
         assertEquals(LispAddressUtil.asIpv4Rloc("192.168.136.10"), loc0.getRloc());
         assertEquals(LispAddressUtil.asIpv4Rloc("204.170.170.17"), loc1.getRloc());
@@ -315,26 +310,26 @@ public class MapNotifySerializationTest extends BaseTestCase {
 
         assertEquals(4, mn.getMappingRecordItem().size());
 
-        MappingRecord record0 = mn.getMappingRecordItem().get(0).getMappingRecord();
-        MappingRecord record1 = mn.getMappingRecordItem().get(1).getMappingRecord();
-        MappingRecord record2 = mn.getMappingRecordItem().get(2).getMappingRecord();
-        MappingRecord record3 = mn.getMappingRecordItem().get(3).getMappingRecord();
+        final MappingRecord record0 = mn.getMappingRecordItem().get(0).getMappingRecord();
+        final MappingRecord record1 = mn.getMappingRecordItem().get(1).getMappingRecord();
+        final MappingRecord record2 = mn.getMappingRecordItem().get(2).getMappingRecord();
+        final MappingRecord record3 = mn.getMappingRecordItem().get(3).getMappingRecord();
 
         assertEquals(10, record0.getRecordTtl().intValue());
         assertEquals(13, record3.getRecordTtl().intValue());
 
-        assertEquals(32, record0.getMaskLength().intValue());
-        assertEquals(23, record1.getMaskLength().intValue());
+        assertEquals(32, MaskUtil.getMaskForAddress(record0.getEid().getAddress()));
+        assertEquals(23, MaskUtil.getMaskForAddress(record1.getEid().getAddress()));
 
         assertEquals(Action.NoAction, record0.getAction());
         assertEquals(Action.SendMapRequest, record1.getAction());
         assertEquals(Action.NoAction, record2.getAction());
         assertEquals(Action.NativelyForward, record3.getAction());
 
-        assertTrue(record0.isAuthoritative());
-        assertTrue(record1.isAuthoritative());
-        assertFalse(record2.isAuthoritative());
-        assertFalse(record3.isAuthoritative());
+        assertTrue(record0.getAuthoritative());
+        assertTrue(record1.getAuthoritative());
+        assertFalse(record2.getAuthoritative());
+        assertFalse(record3.getAuthoritative());
 
         assertEquals(0x000, record0.getMapVersion().shortValue());
         assertEquals(0x111, record1.getMapVersion().shortValue());
@@ -345,10 +340,9 @@ public class MapNotifySerializationTest extends BaseTestCase {
     @Test
     public void deserialize__IllegalAction() throws Exception {
         MapNotify mn = MapNotifySerializer.getInstance().deserialize(hexToByteBuffer("40 00 01 01 FF BB "
-        //
-                + "00 00 00 00 00 00 00 01 00 14 ec 47 1e 53 25 91 " //
-                + "2f 68 10 75 13 dd 2c e8 6e 3c ac 94 ed e4 00 00 " //
-                + "00 0a 01 20 F0 00 00 00 00 01 99 10 fe 01 01 64 " //
+                + "00 00 00 00 00 00 00 01 00 14 ec 47 1e 53 25 91 "
+                + "2f 68 10 75 13 dd 2c e8 6e 3c ac 94 ed e4 00 00 "
+                + "00 0a 01 20 F0 00 00 00 00 01 99 10 fe 01 01 64 "
                 + "ff 00 00 05 00 01 c0 a8 88 0a"));
 
         assertEquals(1, mn.getMappingRecordItem().size());
@@ -369,10 +363,9 @@ public class MapNotifySerializationTest extends BaseTestCase {
         // Priority/Weight: 1/100, Multicast Priority/Weight: 255/0
         //
         MapNotifySerializer.getInstance().deserialize(hexToByteBuffer("48 00 00 01 FF BB "
-        //
-                + "00 00 00 00 00 00 00 00 00 14 e8 f5 0b c5 c5 f2 " //
-                + "b0 21 27 a8 21 a5 68 89 ec 00 00 " //
-                + "00 0a 01 20 10 00 00 00 00 01 99 10 fe 01 01 64 " //
+                + "00 00 00 00 00 00 00 00 00 14 e8 f5 0b c5 c5 f2 "
+                + "b0 21 27 a8 21 a5 68 89 ec 00 00 "
+                + "00 0a 01 20 10 00 00 00 00 01 99 10 fe 01 01 64 "
                 + "ff 00 00 05 00 01 c0 a8 88 0a"));
     }
 
@@ -390,21 +383,20 @@ public class MapNotifySerializationTest extends BaseTestCase {
         // Priority/Weight: 1/100, Multicast Priority/Weight: 255/0
         //
         MapNotify mn = MapNotifySerializer.getInstance().deserialize(hexToByteBuffer("40 00 00 01 FF BB "
-        //
-                + "00 00 00 00 00 00 00 01 00 14 2c 61 b9 c9 9a 20 " //
-                + "ba d8 f5 40 d3 55 6f 5f 6e 5a b2 0a bf b5 00 00 " //
-                + "00 0a 01 20 10 00 00 00 00 01 99 10 fe 01 01 64 " //
+                + "00 00 00 00 00 00 00 01 00 14 2c 61 b9 c9 9a 20 "
+                + "ba d8 f5 40 d3 55 6f 5f 6e 5a b2 0a bf b5 00 00 "
+                + "00 0a 01 20 10 00 00 00 00 01 99 10 fe 01 01 64 "
                 + "ff 00 00 05 00 01 c0 a8 88 0a"));
 
-        assertFalse(mn.isXtrSiteIdPresent());
+        assertFalse(mn.getXtrSiteIdPresent());
 
         assertEquals(1, mn.getMappingRecordItem().size());
         assertEquals(0xFFBB000000000000L, mn.getNonce().longValue());
         assertEquals(0x0001, mn.getKeyId().shortValue());
-        byte[] expectedAuthenticationData = { (byte) 0x2c, (byte) 0x61, (byte) 0xb9, (byte) 0xc9, (byte) 0x9a, (byte) 0x20, (byte) 0xba, (byte) 0xd8, //
-                (byte) 0xf5, (byte) 0x40, (byte) 0xd3, (byte) 0x55, (byte) 0x6f, (byte) 0x5f, (byte) 0x6e, (byte) 0x5a, //
-                (byte) 0xb2, (byte) 0x0a, (byte) 0xbf, (byte) 0xb5 };
-        ArrayAssert.assertEquals(expectedAuthenticationData, mn.getAuthenticationData());
+        byte[] expectedAuthenticationData = { (byte) 0x2c, (byte) 0x61, (byte) 0xb9, (byte) 0xc9, (byte) 0x9a,
+            (byte) 0x20, (byte) 0xba, (byte) 0xd8, (byte) 0xf5, (byte) 0x40, (byte) 0xd3, (byte) 0x55, (byte) 0x6f,
+            (byte) 0x5f, (byte) 0x6e, (byte) 0x5a, (byte) 0xb2, (byte) 0x0a, (byte) 0xbf, (byte) 0xb5 };
+        assertArrayEquals(expectedAuthenticationData, mn.getAuthenticationData());
     }
 
     @Test
@@ -422,22 +414,21 @@ public class MapNotifySerializationTest extends BaseTestCase {
         // Priority/Weight: 1/100, Multicast Priority/Weight: 255/0
         //
         MapNotify mn = MapNotifySerializer.getInstance().deserialize(hexToByteBuffer("40 00 00 01 FF BB "
-        //
                 + "00 00 00 00 00 00 00 02 00 20 70 30 d4 c6 10 44 0d 83 be 4d bf fd a9 8c 57 6d 68 a5 bf 32 "
-                //
-                + "11 c9 7b 58 c4 b9 9f 06 11 23 b9 38 00 00 " //
-                + "00 0a 01 20 10 00 00 00 00 01 99 10 fe 01 01 64 " //
+                + "11 c9 7b 58 c4 b9 9f 06 11 23 b9 38 00 00 "
+                + "00 0a 01 20 10 00 00 00 00 01 99 10 fe 01 01 64 "
                 + "ff 00 00 05 00 01 c0 a8 88 0a"));
 
-        assertFalse(mn.isXtrSiteIdPresent());
+        assertFalse(mn.getXtrSiteIdPresent());
 
         assertEquals(1, mn.getMappingRecordItem().size());
         assertEquals(0xFFBB000000000000L, mn.getNonce().longValue());
         assertEquals(0x0002, mn.getKeyId().shortValue());
-        byte[] expectedAuthenticationData = { (byte) 0x70, (byte) 0x30, (byte) 0xd4, (byte) 0xc6, (byte) 0x10, (byte) 0x44, (byte) 0x0d, (byte) 0x83,
-                (byte) 0xbe, (byte) 0x4d, (byte) 0xbf, (byte) 0xfd, (byte) 0xa9, (byte) 0x8c, (byte) 0x57, (byte) 0x6d, (byte) 0x68, (byte) 0xa5,
-                (byte) 0xbf, (byte) 0x32, (byte) 0x11, (byte) 0xc9, (byte) 0x7b, (byte) 0x58, (byte) 0xc4, (byte) 0xb9, (byte) 0x9f, (byte) 0x06,
-                (byte) 0x11, (byte) 0x23, (byte) 0xb9, (byte) 0x38 };
-        ArrayAssert.assertEquals(expectedAuthenticationData, mn.getAuthenticationData());
+        byte[] expectedAuthenticationData = { (byte) 0x70, (byte) 0x30, (byte) 0xd4, (byte) 0xc6, (byte) 0x10,
+            (byte) 0x44, (byte) 0x0d, (byte) 0x83, (byte) 0xbe, (byte) 0x4d, (byte) 0xbf, (byte) 0xfd, (byte) 0xa9,
+            (byte) 0x8c, (byte) 0x57, (byte) 0x6d, (byte) 0x68, (byte) 0xa5, (byte) 0xbf, (byte) 0x32, (byte) 0x11,
+            (byte) 0xc9, (byte) 0x7b, (byte) 0x58, (byte) 0xc4, (byte) 0xb9, (byte) 0x9f, (byte) 0x06, (byte) 0x11,
+            (byte) 0x23, (byte) 0xb9, (byte) 0x38 };
+        assertArrayEquals(expectedAuthenticationData, mn.getAuthenticationData());
     }
 }