Home / Function/ testIncompleteIndex() — netty Function Reference

testIncompleteIndex() — netty Function Reference

Architecture documentation for the testIncompleteIndex() function in HpackDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  addd6b19_a62d_5b9d_5fc0_48f460db002f["testIncompleteIndex()"]
  499468ca_3853_024b_2b80_17090ef6cd43["HpackDecoderTest"]
  addd6b19_a62d_5b9d_5fc0_48f460db002f -->|defined in| 499468ca_3853_024b_2b80_17090ef6cd43
  47ac4151_0b50_9884_0d18_472d1c51065d["decode()"]
  addd6b19_a62d_5b9d_5fc0_48f460db002f -->|calls| 47ac4151_0b50_9884_0d18_472d1c51065d
  style addd6b19_a62d_5b9d_5fc0_48f460db002f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 278–293

    @Test
    public void testIncompleteIndex() throws Http2Exception {
        byte[] compressed = StringUtil.decodeHexDump("FFF0");
        final ByteBuf in = Unpooled.wrappedBuffer(compressed);
        try {
            assertEquals(2, in.readableBytes());
            assertThrows(Http2Exception.class, new Executable() {
                @Override
                public void execute() throws Throwable {
                    hpackDecoder.decode(0, in, mockHeaders, true);
                }
            });
        } finally {
            in.release();
        }
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testIncompleteIndex() do?
testIncompleteIndex() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java.
Where is testIncompleteIndex() defined?
testIncompleteIndex() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java at line 278.
What does testIncompleteIndex() call?
testIncompleteIndex() calls 1 function(s): decode.

Analyze Your Own Codebase

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

Try Supermodel Free