X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=pcep%2Fimpl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fprotocol%2Fpcep%2Fimpl%2FPCEPEROSubobjectParserTest.java;h=1a6bc1aad8d3f5b431d00264960d08bf62d2d053;hb=bb1a5b0139b814666b85de460a89604bea5db0ec;hp=66f4a35bd9023a45bc7703263c1db8134a1c946e;hpb=ebe38e97c244cba2e959c4f58c44a43bcd8240a1;p=bgpcep.git diff --git a/pcep/impl/src/test/java/org/opendaylight/protocol/pcep/impl/PCEPEROSubobjectParserTest.java b/pcep/impl/src/test/java/org/opendaylight/protocol/pcep/impl/PCEPEROSubobjectParserTest.java index 66f4a35bd9..1a6bc1aad8 100644 --- a/pcep/impl/src/test/java/org/opendaylight/protocol/pcep/impl/PCEPEROSubobjectParserTest.java +++ b/pcep/impl/src/test/java/org/opendaylight/protocol/pcep/impl/PCEPEROSubobjectParserTest.java @@ -9,143 +9,175 @@ package org.opendaylight.protocol.pcep.impl; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; +import io.netty.buffer.Unpooled; import java.util.List; +import org.junit.Before; import org.junit.Test; import org.opendaylight.protocol.concepts.Ipv6Util; -import org.opendaylight.protocol.pcep.PCEPDeserializerException; import org.opendaylight.protocol.pcep.impl.subobject.EROAsNumberSubobjectParser; import org.opendaylight.protocol.pcep.impl.subobject.EROExplicitExclusionRouteSubobjectParser; -import org.opendaylight.protocol.pcep.impl.subobject.EROIpPrefixSubobjectParser; +import org.opendaylight.protocol.pcep.impl.subobject.EROIpv4PrefixSubobjectParser; +import org.opendaylight.protocol.pcep.impl.subobject.EROIpv6PrefixSubobjectParser; import org.opendaylight.protocol.pcep.impl.subobject.EROLabelSubobjectParser; -import org.opendaylight.protocol.pcep.impl.subobject.EROPathKeySubobjectParser; +import org.opendaylight.protocol.pcep.impl.subobject.EROPathKey128SubobjectParser; +import org.opendaylight.protocol.pcep.impl.subobject.EROPathKey32SubobjectParser; import org.opendaylight.protocol.pcep.impl.subobject.EROUnnumberedInterfaceSubobjectParser; -import org.opendaylight.protocol.pcep.spi.pojo.PCEPExtensionProviderContextImpl; +import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException; +import org.opendaylight.protocol.pcep.spi.pojo.SimplePCEPExtensionProviderContext; +import org.opendaylight.protocol.util.ByteArray; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.AsNumber; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.IpPrefix; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Ipv4Prefix; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.PathKey; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.PceId; -import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.SubobjectsBuilder; -import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.subobjects.subobject.type.PathKeyBuilder; -import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.AsNumberBuilder; -import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.IpPrefixBuilder; -import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.LabelBuilder; -import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.UnnumberedBuilder; -import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.explicit.route.subobjects.subobject.type.ExrsBuilder; -import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.label.subobject.label.type.GeneralizedLabelBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.SubobjectBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.subobject.subobject.type.PathKeyCaseBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.subobject.subobject.type.path.key._case.PathKeyBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.AsNumberCaseBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.IpPrefixCaseBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.LabelCaseBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.UnnumberedCaseBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.as.number._case.AsNumberBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.ip.prefix._case.IpPrefixBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.label._case.LabelBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.basic.explicit.route.subobjects.subobject.type.unnumbered._case.UnnumberedBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.explicit.route.subobjects.subobject.type.ExrsCaseBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.explicit.route.subobjects.subobject.type.exrs._case.ExrsBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.label.subobject.label.type.GeneralizedLabelCaseBuilder; +import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.label.subobject.label.type.generalized.label._case.GeneralizedLabelBuilder; import com.google.common.collect.Lists; public class PCEPEROSubobjectParserTest { - private static final byte[] ip4PrefixBytes = { (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0x16, (byte) 0x00 }; - private static final byte[] ip6PrefixBytes = { (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) 0x00 }; - private static final byte[] asNumberBytes = { (byte) 0x00, (byte) 0x64 }; - private static final byte[] unnumberedBytes = { (byte) 0x00, (byte) 0x00, (byte) 0x12, (byte) 0x34, (byte) 0x50, (byte) 0x00, - (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF }; - private static final byte[] pathKey32Bytes = { (byte) 0x12, (byte) 0x34, (byte) 0x12, (byte) 0x34, (byte) 0x50, (byte) 0x00 }; - private static final byte[] pathKey128Bytes = { (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 = { (byte) 0x80, (byte) 0x02, (byte) 0x12, (byte) 0x00, (byte) 0x25, (byte) 0xFF }; - private static final byte[] exrsBytes = { (byte) 0xa0, (byte) 0x04, (byte) 0x00, (byte) 0x64 }; + private static final byte[] ip4PrefixBytes = { (byte) 0x81, (byte) 0x08, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, + (byte) 0x16, (byte) 0x00 }; + 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) 0x00 }; + private static final byte[] asNumberBytes = { (byte) 0xa0, (byte) 0x04, (byte) 0x00, (byte) 0x64 }; + private static final byte[] unnumberedBytes = { (byte) 0x84, (byte) 0x0c, (byte) 0x00, (byte) 0x00, (byte) 0x12, (byte) 0x34, + (byte) 0x50, (byte) 0x00, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF }; + private static final byte[] pathKey32Bytes = { (byte) 0xc0, (byte) 0x08, (byte) 0x12, (byte) 0x34, (byte) 0x12, (byte) 0x34, + (byte) 0x50, (byte) 0x00 }; + private static final byte[] pathKey128Bytes = { (byte) 0xc1, (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 = { (byte) 0x83, (byte) 0x08, (byte) 0x80, (byte) 0x02, (byte) 0x12, (byte) 0x00, (byte) 0x25, + (byte) 0xFF }; + private static final byte[] exrsBytes = { (byte) 0xa1, (byte) 0x06, (byte) 0xa0, (byte) 0x04, (byte) 0x00, (byte) 0x64 }; + + private SimplePCEPExtensionProviderContext ctx; + private Activator act; + + @Before + public void setUp() { + this.ctx = new SimplePCEPExtensionProviderContext(); + this.act = new Activator(); + this.act.start(this.ctx); + } @Test public void testEROIp4PrefixSubobject() throws PCEPDeserializerException { - final EROIpPrefixSubobjectParser parser = new EROIpPrefixSubobjectParser(); - final SubobjectsBuilder subs = new SubobjectsBuilder(); + final EROIpv4PrefixSubobjectParser parser = new EROIpv4PrefixSubobjectParser(); + final SubobjectBuilder subs = new SubobjectBuilder(); subs.setLoose(true); - subs.setSubobjectType(new IpPrefixBuilder().setIpPrefix(new IpPrefix(new Ipv4Prefix("255.255.255.255/22"))).build()); - assertEquals(subs.build(), parser.parseSubobject(ip4PrefixBytes, true)); + 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)), true)); assertArrayEquals(ip4PrefixBytes, parser.serializeSubobject(subs.build())); } @Test public void testEROIp6PrefixSubobject() throws PCEPDeserializerException { - final EROIpPrefixSubobjectParser parser = new EROIpPrefixSubobjectParser(); - final SubobjectsBuilder subs = new SubobjectsBuilder(); - subs.setSubobjectType(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()); + final EROIpv6PrefixSubobjectParser parser = new EROIpv6PrefixSubobjectParser(); + final SubobjectBuilder subs = new SubobjectBuilder(); + 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()); subs.setLoose(false); - assertEquals(subs.build(), parser.parseSubobject(ip6PrefixBytes, false)); + assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(ip6PrefixBytes, 2)), false)); assertArrayEquals(ip6PrefixBytes, parser.serializeSubobject(subs.build())); } @Test public void testEROAsNumberSubobject() throws PCEPDeserializerException { final EROAsNumberSubobjectParser parser = new EROAsNumberSubobjectParser(); - final SubobjectsBuilder subs = new SubobjectsBuilder(); + final SubobjectBuilder subs = new SubobjectBuilder(); subs.setLoose(true); - subs.setSubobjectType(new AsNumberBuilder().setAsNumber(new AsNumber(0x64L)).build()); - assertEquals(subs.build(), parser.parseSubobject(asNumberBytes, true)); + subs.setSubobjectType(new AsNumberCaseBuilder().setAsNumber(new AsNumberBuilder().setAsNumber(new AsNumber(0x64L)).build()).build()); + assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(asNumberBytes, 2)), true)); assertArrayEquals(asNumberBytes, parser.serializeSubobject(subs.build())); } @Test public void testEROUnnumberedSubobject() throws PCEPDeserializerException { final EROUnnumberedInterfaceSubobjectParser parser = new EROUnnumberedInterfaceSubobjectParser(); - final SubobjectsBuilder subs = new SubobjectsBuilder(); + final SubobjectBuilder subs = new SubobjectBuilder(); subs.setLoose(true); - subs.setSubobjectType(new UnnumberedBuilder().setRouterId(0x12345000L).setInterfaceId(0xffffffffL).build()); - assertEquals(subs.build(), parser.parseSubobject(unnumberedBytes, 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)), true)); assertArrayEquals(unnumberedBytes, parser.serializeSubobject(subs.build())); } @Test public void testEROPathKey32Subobject() throws PCEPDeserializerException { - final EROPathKeySubobjectParser parser = new EROPathKeySubobjectParser(); - final SubobjectsBuilder subs = new SubobjectsBuilder(); + final EROPathKey32SubobjectParser parser = new EROPathKey32SubobjectParser(); + final SubobjectBuilder subs = new SubobjectBuilder(); subs.setLoose(true); - final org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.subobjects.subobject.type.path.key.PathKeyBuilder pBuilder = new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.subobjects.subobject.type.path.key.PathKeyBuilder(); + 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 PathKeyBuilder().setPathKey(pBuilder.build()).build()); - assertEquals(subs.build(), parser.parseSubobject(pathKey32Bytes, true)); + subs.setSubobjectType(new PathKeyCaseBuilder().setPathKey(pBuilder.build()).build()); + assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(pathKey32Bytes, 2)), true)); assertArrayEquals(pathKey32Bytes, parser.serializeSubobject(subs.build())); } @Test public void testEROPathKey128Subobject() throws PCEPDeserializerException { - final EROPathKeySubobjectParser parser = new EROPathKeySubobjectParser(); - final SubobjectsBuilder subs = new SubobjectsBuilder(); + final EROPathKey128SubobjectParser parser = new EROPathKey128SubobjectParser(); + final SubobjectBuilder subs = new SubobjectBuilder(); subs.setLoose(true); - final org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.subobjects.subobject.type.path.key.PathKeyBuilder pBuilder = new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.subobjects.subobject.type.path.key.PathKeyBuilder(); + 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 PathKeyBuilder().setPathKey(pBuilder.build()).build()); - assertEquals(subs.build(), parser.parseSubobject(pathKey128Bytes, true)); + subs.setSubobjectType(new PathKeyCaseBuilder().setPathKey(pBuilder.build()).build()); + assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(pathKey128Bytes, 2)), true)); assertArrayEquals(pathKey128Bytes, parser.serializeSubobject(subs.build())); } @Test public void testEROLabelSubobject() throws Exception { - final EROLabelSubobjectParser parser = new EROLabelSubobjectParser(PCEPExtensionProviderContextImpl.create().getLabelHandlerRegistry()); - final SubobjectsBuilder subs = new SubobjectsBuilder(); + final EROLabelSubobjectParser parser = new EROLabelSubobjectParser(this.ctx.getLabelHandlerRegistry()); + + final SubobjectBuilder subs = new SubobjectBuilder(); subs.setLoose(true); - subs.setSubobjectType(new LabelBuilder().setUniDirectional(true).setLabelType( - new GeneralizedLabelBuilder().setGeneralizedLabel(new byte[] { (byte) 0x12, (byte) 0x00, (byte) 0x25, (byte) 0xFF }).build()).build()); - assertEquals(subs.build(), parser.parseSubobject(labelBytes, true)); + subs.setSubobjectType(new LabelCaseBuilder().setLabel( + new LabelBuilder().setUniDirectional(true).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)), true)); assertArrayEquals(labelBytes, parser.serializeSubobject(subs.build())); } @Test public void testEROEXRSSubobject() throws Exception { - final EROExplicitExclusionRouteSubobjectParser parser = new EROExplicitExclusionRouteSubobjectParser(PCEPExtensionProviderContextImpl.create().getXROSubobjectHandlerRegistry()); - final SubobjectsBuilder subs = new SubobjectsBuilder(); + final EROExplicitExclusionRouteSubobjectParser parser = new EROExplicitExclusionRouteSubobjectParser(this.ctx.getXROSubobjectHandlerRegistry()); + final SubobjectBuilder subs = new SubobjectBuilder(); subs.setLoose(true); - final List list = Lists.newArrayList(); - final org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.explicit.route.subobjects.subobject.type.exrs.ExrsBuilder builder = new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.explicit.route.subobjects.subobject.type.exrs.ExrsBuilder(); + final List list = Lists.newArrayList(); + final org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.explicit.route.subobjects.subobject.type.exrs._case.exrs.ExrsBuilder builder = new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.explicit.route.subobjects.subobject.type.exrs._case.exrs.ExrsBuilder(); builder.setMandatory(true); - builder.setSubobjectType(new AsNumberBuilder().setAsNumber(new AsNumber(0x64L)).build()); + builder.setSubobjectType(new AsNumberCaseBuilder().setAsNumber(new AsNumberBuilder().setAsNumber(new AsNumber(0x64L)).build()).build()); list.add(builder.build()); - subs.setSubobjectType(new ExrsBuilder().setExrs(list).build()); - assertEquals(subs.build(), parser.parseSubobject(exrsBytes, true)); - // assertArrayEquals(exrsBytes, parser.serializeSubobject(subs.build())); + subs.setSubobjectType(new ExrsCaseBuilder().setExrs(new ExrsBuilder().setExrs(list).build()).build()); + assertEquals(subs.build(), parser.parseSubobject(Unpooled.wrappedBuffer(ByteArray.cutBytes(exrsBytes, 2)), true)); + assertArrayEquals(exrsBytes, parser.serializeSubobject(subs.build())); } }