Removed checkstyle warnings.
[bgpcep.git] / pcep / impl / src / test / java / org / opendaylight / protocol / pcep / impl / PCEPRROSubobjectParserTest.java
index ce938ecb433ee8416f54dcde9f3f3d35f2846194..874d9e87008afcb68f8ba5edc1cc3af6864d5a62 100644 (file)
@@ -40,98 +40,98 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev
 
 public class PCEPRROSubobjectParserTest {
 
-       private static final byte[] ip4PrefixBytes = { (byte) 0x01, (byte) 0x08, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
-               (byte) 0x16, (byte) 0x01 };
-       private static final byte[] ip6PrefixBytes = { (byte) 0x02, (byte) 0x14, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
-               (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
-               (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0x16, (byte) 0x02 };
-       private static final byte[] unnumberedBytes = { (byte) 0x04, (byte) 0x0c, (byte) 0x02, (byte) 0x00, (byte) 0x12, (byte) 0x34,
-               (byte) 0x50, (byte) 0x00, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF };
-       private static final byte[] pathKey32Bytes = { (byte) 0x40, (byte) 0x08, (byte) 0x12, (byte) 0x34, (byte) 0x12, (byte) 0x34,
-               (byte) 0x50, (byte) 0x00 };
-       private static final byte[] pathKey128Bytes = { (byte) 0x41, (byte) 0x14, (byte) 0x12, (byte) 0x34, (byte) 0x12, (byte) 0x34,
-               (byte) 0x56, (byte) 0x78, (byte) 0x9A, (byte) 0xBC, (byte) 0xDE, (byte) 0x12, (byte) 0x34, (byte) 0x54, (byte) 0x00,
-               (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 };
-       private static final byte[] labelBytes = { 0x03, 0x08, (byte) 0x80, 0x02, 0x12, 0x00, 0x25,     (byte) 0xFF };
+    private static final byte[] ip4PrefixBytes = { (byte) 0x01, (byte) 0x08, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
+        (byte) 0x16, (byte) 0x01 };
+    private static final byte[] ip6PrefixBytes = { (byte) 0x02, (byte) 0x14, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
+        (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
+        (byte) 0xFF, (byte) 0xFF, (byte) 0x16, (byte) 0x02 };
+    private static final byte[] unnumberedBytes = { (byte) 0x04, (byte) 0x0c, (byte) 0x02, (byte) 0x00, (byte) 0x12, (byte) 0x34,
+        (byte) 0x50, (byte) 0x00, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF };
+    private static final byte[] pathKey32Bytes = { (byte) 0x40, (byte) 0x08, (byte) 0x12, (byte) 0x34, (byte) 0x12, (byte) 0x34,
+        (byte) 0x50, (byte) 0x00 };
+    private static final byte[] pathKey128Bytes = { (byte) 0x41, (byte) 0x14, (byte) 0x12, (byte) 0x34, (byte) 0x12, (byte) 0x34,
+        (byte) 0x56, (byte) 0x78, (byte) 0x9A, (byte) 0xBC, (byte) 0xDE, (byte) 0x12, (byte) 0x34, (byte) 0x54, (byte) 0x00, (byte) 0x00,
+        (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 };
+    private static final byte[] labelBytes = { 0x03, 0x08, (byte) 0x80, 0x02, 0x12, 0x00, 0x25, (byte) 0xFF };
 
-       @Test
-       public void testRROIp4PrefixSubobject() throws PCEPDeserializerException {
-               final RROIpv4PrefixSubobjectParser parser = new RROIpv4PrefixSubobjectParser();
-               final SubobjectBuilder subs = new SubobjectBuilder();
-               subs.setProtectionAvailable(true);
-               subs.setProtectionInUse(false);
-               subs.setSubobjectType(new IpPrefixCaseBuilder().setIpPrefix(
-                               new IpPrefixBuilder().setIpPrefix(new IpPrefix(new Ipv4Prefix("255.255.255.255/22"))).build()).build());
-               assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(ip4PrefixBytes, 2))));
-               assertArrayEquals(ip4PrefixBytes, parser.serializeSubobject(subs.build()));
-       }
+    @Test
+    public void testRROIp4PrefixSubobject() throws PCEPDeserializerException {
+        final RROIpv4PrefixSubobjectParser parser = new RROIpv4PrefixSubobjectParser();
+        final SubobjectBuilder subs = new SubobjectBuilder();
+        subs.setProtectionAvailable(true);
+        subs.setProtectionInUse(false);
+        subs.setSubobjectType(new IpPrefixCaseBuilder().setIpPrefix(
+                new IpPrefixBuilder().setIpPrefix(new IpPrefix(new Ipv4Prefix("255.255.255.255/22"))).build()).build());
+        assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(ip4PrefixBytes, 2))));
+        assertArrayEquals(ip4PrefixBytes, parser.serializeSubobject(subs.build()));
+    }
 
-       @Test
-       public void testRROIp6PrefixSubobject() throws PCEPDeserializerException {
-               final RROIpv6PrefixSubobjectParser parser = new RROIpv6PrefixSubobjectParser();
-               final SubobjectBuilder subs = new SubobjectBuilder();
-               subs.setProtectionAvailable(false);
-               subs.setProtectionInUse(true);
-               subs.setSubobjectType(new IpPrefixCaseBuilder().setIpPrefix(
-                               new IpPrefixBuilder().setIpPrefix(
-                                               new IpPrefix(Ipv6Util.prefixForBytes(new byte[] { (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
-                                                               (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
-                                                               (byte) 0xFF, (byte) 0xFF, (byte) 0xFF }, 22))).build()).build());
-               assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(ip6PrefixBytes, 2))));
-               assertArrayEquals(ip6PrefixBytes, parser.serializeSubobject(subs.build()));
-       }
+    @Test
+    public void testRROIp6PrefixSubobject() throws PCEPDeserializerException {
+        final RROIpv6PrefixSubobjectParser parser = new RROIpv6PrefixSubobjectParser();
+        final SubobjectBuilder subs = new SubobjectBuilder();
+        subs.setProtectionAvailable(false);
+        subs.setProtectionInUse(true);
+        subs.setSubobjectType(new IpPrefixCaseBuilder().setIpPrefix(
+                new IpPrefixBuilder().setIpPrefix(
+                        new IpPrefix(Ipv6Util.prefixForBytes(new byte[] { (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
+                            (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
+                            (byte) 0xFF, (byte) 0xFF, (byte) 0xFF }, 22))).build()).build());
+        assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(ip6PrefixBytes, 2))));
+        assertArrayEquals(ip6PrefixBytes, parser.serializeSubobject(subs.build()));
+    }
 
-       @Test
-       public void testRROUnnumberedSubobject() throws PCEPDeserializerException {
-               final RROUnnumberedInterfaceSubobjectParser parser = new RROUnnumberedInterfaceSubobjectParser();
-               final SubobjectBuilder subs = new SubobjectBuilder();
-               subs.setProtectionAvailable(false);
-               subs.setProtectionInUse(true);
-               subs.setSubobjectType(new UnnumberedCaseBuilder().setUnnumbered(
-                               new UnnumberedBuilder().setRouterId(0x12345000L).setInterfaceId(0xffffffffL).build()).build());
-               assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(unnumberedBytes, 2))));
-               assertArrayEquals(unnumberedBytes, parser.serializeSubobject(subs.build()));
-       }
+    @Test
+    public void testRROUnnumberedSubobject() throws PCEPDeserializerException {
+        final RROUnnumberedInterfaceSubobjectParser parser = new RROUnnumberedInterfaceSubobjectParser();
+        final SubobjectBuilder subs = new SubobjectBuilder();
+        subs.setProtectionAvailable(false);
+        subs.setProtectionInUse(true);
+        subs.setSubobjectType(new UnnumberedCaseBuilder().setUnnumbered(
+                new UnnumberedBuilder().setRouterId(0x12345000L).setInterfaceId(0xffffffffL).build()).build());
+        assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(unnumberedBytes, 2))));
+        assertArrayEquals(unnumberedBytes, parser.serializeSubobject(subs.build()));
+    }
 
-       @Test
-       public void testRROPathKey32Subobject() throws PCEPDeserializerException {
-               final RROPathKey32SubobjectParser parser = new RROPathKey32SubobjectParser();
-               final SubobjectBuilder subs = new SubobjectBuilder();
-               final PathKeyBuilder pBuilder = new PathKeyBuilder();
-               pBuilder.setPceId(new PceId(new byte[] { (byte) 0x12, (byte) 0x34, (byte) 0x50, (byte) 0x00 }));
-               pBuilder.setPathKey(new PathKey(4660));
-               subs.setSubobjectType(new PathKeyCaseBuilder().setPathKey(pBuilder.build()).build());
-               assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(pathKey32Bytes, 2))));
-               assertArrayEquals(pathKey32Bytes, parser.serializeSubobject(subs.build()));
-       }
+    @Test
+    public void testRROPathKey32Subobject() throws PCEPDeserializerException {
+        final RROPathKey32SubobjectParser parser = new RROPathKey32SubobjectParser();
+        final SubobjectBuilder subs = new SubobjectBuilder();
+        final PathKeyBuilder pBuilder = new PathKeyBuilder();
+        pBuilder.setPceId(new PceId(new byte[] { (byte) 0x12, (byte) 0x34, (byte) 0x50, (byte) 0x00 }));
+        pBuilder.setPathKey(new PathKey(4660));
+        subs.setSubobjectType(new PathKeyCaseBuilder().setPathKey(pBuilder.build()).build());
+        assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(pathKey32Bytes, 2))));
+        assertArrayEquals(pathKey32Bytes, parser.serializeSubobject(subs.build()));
+    }
 
-       @Test
-       public void testRROPathKey128Subobject() throws PCEPDeserializerException {
-               final RROPathKey128SubobjectParser parser = new RROPathKey128SubobjectParser();
-               final SubobjectBuilder subs = new SubobjectBuilder();
-               final PathKeyBuilder pBuilder = new PathKeyBuilder();
-               pBuilder.setPceId(new PceId(new byte[] { (byte) 0x12, (byte) 0x34, (byte) 0x56, (byte) 0x78, (byte) 0x9A, (byte) 0xBC, (byte) 0xDE,
-                               (byte) 0x12, (byte) 0x34, (byte) 0x54, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 }));
-               pBuilder.setPathKey(new PathKey(4660));
-               subs.setSubobjectType(new PathKeyCaseBuilder().setPathKey(pBuilder.build()).build());
-               assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(pathKey128Bytes, 2))));
-               assertArrayEquals(pathKey128Bytes, parser.serializeSubobject(subs.build()));
-       }
+    @Test
+    public void testRROPathKey128Subobject() throws PCEPDeserializerException {
+        final RROPathKey128SubobjectParser parser = new RROPathKey128SubobjectParser();
+        final SubobjectBuilder subs = new SubobjectBuilder();
+        final PathKeyBuilder pBuilder = new PathKeyBuilder();
+        pBuilder.setPceId(new PceId(new byte[] { (byte) 0x12, (byte) 0x34, (byte) 0x56, (byte) 0x78, (byte) 0x9A, (byte) 0xBC, (byte) 0xDE,
+            (byte) 0x12, (byte) 0x34, (byte) 0x54, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00 }));
+        pBuilder.setPathKey(new PathKey(4660));
+        subs.setSubobjectType(new PathKeyCaseBuilder().setPathKey(pBuilder.build()).build());
+        assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(pathKey128Bytes, 2))));
+        assertArrayEquals(pathKey128Bytes, parser.serializeSubobject(subs.build()));
+    }
 
-       @Test
-       public void testRROLabelSubobject() throws Exception {
-               final SimplePCEPExtensionProviderContext ctx = new SimplePCEPExtensionProviderContext();
-               try (Activator a = new Activator()) {
-                       a.start(ctx);
-                       final RROLabelSubobjectParser parser = new RROLabelSubobjectParser(ctx.getLabelHandlerRegistry());
-                       final SubobjectBuilder subs = new SubobjectBuilder();
-                       subs.setSubobjectType(new LabelCaseBuilder().setLabel(
-                                       new LabelBuilder().setUniDirectional(true).setGlobal(false).setLabelType(
-                                                       new GeneralizedLabelCaseBuilder().setGeneralizedLabel(
-                                                                       new GeneralizedLabelBuilder().setGeneralizedLabel(
-                                                                                       new byte[] { (byte) 0x12, (byte) 0x00, (byte) 0x25, (byte) 0xFF }).build()).build()).build()).build());
-                       assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(labelBytes, 2))));
-                       assertArrayEquals(labelBytes, parser.serializeSubobject(subs.build()));
-               }
-       }
+    @Test
+    public void testRROLabelSubobject() throws Exception {
+        final SimplePCEPExtensionProviderContext ctx = new SimplePCEPExtensionProviderContext();
+        try (Activator a = new Activator()) {
+            a.start(ctx);
+            final RROLabelSubobjectParser parser = new RROLabelSubobjectParser(ctx.getLabelHandlerRegistry());
+            final SubobjectBuilder subs = new SubobjectBuilder();
+            subs.setSubobjectType(new LabelCaseBuilder().setLabel(
+                    new LabelBuilder().setUniDirectional(true).setGlobal(false).setLabelType(
+                            new GeneralizedLabelCaseBuilder().setGeneralizedLabel(
+                                    new GeneralizedLabelBuilder().setGeneralizedLabel(
+                                            new byte[] { (byte) 0x12, (byte) 0x00, (byte) 0x25, (byte) 0xFF }).build()).build()).build()).build());
+            assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(labelBytes, 2))));
+            assertArrayEquals(labelBytes, parser.serializeSubobject(subs.build()));
+        }
+    }
 }