Home / Function/ testTooLargeDynamicTableSizeUpdate() — netty Function Reference

testTooLargeDynamicTableSizeUpdate() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 382–392

    @Test
    public void testTooLargeDynamicTableSizeUpdate() throws Http2Exception {
        hpackDecoder.setMaxHeaderTableSize(0);
        assertEquals(0, hpackDecoder.getMaxHeaderTableSize());
        assertThrows(Http2Exception.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                decode("21"); // encoder max header table size not small enough
            }
        });
    }

Domain

Subdomains

Calls

Frequently Asked Questions

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