Home / Function/ testIncompleteHeaderFieldRepresentation() — netty Function Reference

testIncompleteHeaderFieldRepresentation() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 662–677

    @Test
    public void testIncompleteHeaderFieldRepresentation() throws Http2Exception {
        // Incomplete Literal Header Field with Incremental Indexing
        byte[] input = {(byte) 0x40};
        final ByteBuf in = Unpooled.wrappedBuffer(input);
        try {
            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 testIncompleteHeaderFieldRepresentation() do?
testIncompleteHeaderFieldRepresentation() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java.
Where is testIncompleteHeaderFieldRepresentation() defined?
testIncompleteHeaderFieldRepresentation() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java at line 662.
What does testIncompleteHeaderFieldRepresentation() call?
testIncompleteHeaderFieldRepresentation() 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