Home / Function/ testUncompressedDataBeforeStreamIdentifier() — netty Function Reference

testUncompressedDataBeforeStreamIdentifier() — netty Function Reference

Architecture documentation for the testUncompressedDataBeforeStreamIdentifier() function in SnappyFrameDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  f49e8701_1cee_e325_816e_34a83c7320ce["testUncompressedDataBeforeStreamIdentifier()"]
  8017c2dc_c3bf_3f79_0edd_8dd86487179d["SnappyFrameDecoderTest"]
  f49e8701_1cee_e325_816e_34a83c7320ce -->|defined in| 8017c2dc_c3bf_3f79_0edd_8dd86487179d
  style f49e8701_1cee_e325_816e_34a83c7320ce fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-compression/src/test/java/io/netty/handler/codec/compression/SnappyFrameDecoderTest.java lines 101–113

    @Test
    public void testUncompressedDataBeforeStreamIdentifier() {
        final ByteBuf in = Unpooled.wrappedBuffer(new byte[] {
            0x01, 0x05, 0x00, 0x00, 'n', 'e', 't', 't', 'y'
        });

        assertThrows(DecompressionException.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                channel.writeInbound(in);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testUncompressedDataBeforeStreamIdentifier() do?
testUncompressedDataBeforeStreamIdentifier() is a function in the netty codebase, defined in codec-compression/src/test/java/io/netty/handler/codec/compression/SnappyFrameDecoderTest.java.
Where is testUncompressedDataBeforeStreamIdentifier() defined?
testUncompressedDataBeforeStreamIdentifier() is defined in codec-compression/src/test/java/io/netty/handler/codec/compression/SnappyFrameDecoderTest.java at line 101.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free