Home / Function/ testDecodeExtraPadding2byte() — netty Function Reference

testDecodeExtraPadding2byte() — netty Function Reference

Architecture documentation for the testDecodeExtraPadding2byte() function in HpackHuffmanTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  edb63c67_69ce_377c_ae0b_32ffecd27d8f["testDecodeExtraPadding2byte()"]
  0e9c37ed_3d42_0ea4_35fa_9ba9ae495d19["HpackHuffmanTest"]
  edb63c67_69ce_377c_ae0b_32ffecd27d8f -->|defined in| 0e9c37ed_3d42_0ea4_35fa_9ba9ae495d19
  6e26cc30_14b9_4e43_25df_147213d8cca3["makeBuf()"]
  edb63c67_69ce_377c_ae0b_32ffecd27d8f -->|calls| 6e26cc30_14b9_4e43_25df_147213d8cca3
  e1a530c8_fa65_c1c4_5bdb_eceed12e84ae["decode()"]
  edb63c67_69ce_377c_ae0b_32ffecd27d8f -->|calls| e1a530c8_fa65_c1c4_5bdb_eceed12e84ae
  style edb63c67_69ce_377c_ae0b_32ffecd27d8f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackHuffmanTest.java lines 111–120

    @Test
    public void testDecodeExtraPadding2byte() throws Http2Exception {
        final byte[] buf = makeBuf(0x1F, 0xFF); // 'a'
        assertThrows(Http2Exception.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                decode(buf);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testDecodeExtraPadding2byte() do?
testDecodeExtraPadding2byte() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackHuffmanTest.java.
Where is testDecodeExtraPadding2byte() defined?
testDecodeExtraPadding2byte() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackHuffmanTest.java at line 111.
What does testDecodeExtraPadding2byte() call?
testDecodeExtraPadding2byte() calls 2 function(s): decode, makeBuf.

Analyze Your Own Codebase

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

Try Supermodel Free