Home / Function/ testMissingDynamicTableSizeUpdate() — netty Function Reference

testMissingDynamicTableSizeUpdate() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 394–404

    @Test
    public void testMissingDynamicTableSizeUpdate() throws Http2Exception {
        hpackDecoder.setMaxHeaderTableSize(0);
        assertEquals(0, hpackDecoder.getMaxHeaderTableSize());
        assertThrows(Http2Exception.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                decode("81");
            }
        });
    }

Domain

Subdomains

Calls

Frequently Asked Questions

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