Home / Function/ testLiteralNeverIndexedWithLargeName() — netty Function Reference

testLiteralNeverIndexedWithLargeName() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 534–549

    @Test
    public void testLiteralNeverIndexedWithLargeName() throws Http2Exception {
        // Ignore header name that exceeds max header size
        final StringBuilder sb = new StringBuilder();
        sb.append("107F817F");
        for (int i = 0; i < 16384; i++) {
            sb.append("61"); // 'a'
        }
        sb.append("00");
        assertThrows(Http2Exception.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                decode(sb.toString());
            }
        });
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testLiteralNeverIndexedWithLargeName() do?
testLiteralNeverIndexedWithLargeName() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java.
Where is testLiteralNeverIndexedWithLargeName() defined?
testLiteralNeverIndexedWithLargeName() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java at line 534.
What does testLiteralNeverIndexedWithLargeName() call?
testLiteralNeverIndexedWithLargeName() 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