Home / Function/ testLiteralNeverIndexedWithLargeValue() — netty Function Reference

testLiteralNeverIndexedWithLargeValue() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 551–567

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

Domain

Subdomains

Calls

Frequently Asked Questions

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