Home / Function/ testSetMaxHeaderTableSizeOverflow() — netty Function Reference

testSetMaxHeaderTableSizeOverflow() — netty Function Reference

Architecture documentation for the testSetMaxHeaderTableSizeOverflow() function in HpackEncoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  f2865c5a_ad76_cbc1_e0ba_62d709eab14e["testSetMaxHeaderTableSizeOverflow()"]
  a8203e54_7e3c_740d_20fe_825ed86c66af["HpackEncoderTest"]
  f2865c5a_ad76_cbc1_e0ba_62d709eab14e -->|defined in| a8203e54_7e3c_740d_20fe_825ed86c66af
  style f2865c5a_ad76_cbc1_e0ba_62d709eab14e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackEncoderTest.java lines 61–69

    @Test
    public void testSetMaxHeaderTableSizeOverflow() {
        assertThrows(Http2Exception.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                hpackEncoder.setMaxHeaderTableSize(buf, MAX_HEADER_TABLE_SIZE + 1);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testSetMaxHeaderTableSizeOverflow() do?
testSetMaxHeaderTableSizeOverflow() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackEncoderTest.java.
Where is testSetMaxHeaderTableSizeOverflow() defined?
testSetMaxHeaderTableSizeOverflow() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackEncoderTest.java at line 61.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free