testDecodeExtraPadding3byte() — netty Function Reference
Architecture documentation for the testDecodeExtraPadding3byte() function in HpackHuffmanTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 88e25c47_e8e7_f7e8_97d6_c2dd767907f7["testDecodeExtraPadding3byte()"] 0e9c37ed_3d42_0ea4_35fa_9ba9ae495d19["HpackHuffmanTest"] 88e25c47_e8e7_f7e8_97d6_c2dd767907f7 -->|defined in| 0e9c37ed_3d42_0ea4_35fa_9ba9ae495d19 6e26cc30_14b9_4e43_25df_147213d8cca3["makeBuf()"] 88e25c47_e8e7_f7e8_97d6_c2dd767907f7 -->|calls| 6e26cc30_14b9_4e43_25df_147213d8cca3 e1a530c8_fa65_c1c4_5bdb_eceed12e84ae["decode()"] 88e25c47_e8e7_f7e8_97d6_c2dd767907f7 -->|calls| e1a530c8_fa65_c1c4_5bdb_eceed12e84ae style 88e25c47_e8e7_f7e8_97d6_c2dd767907f7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/HpackHuffmanTest.java lines 122–131
@Test
public void testDecodeExtraPadding3byte() throws Http2Exception {
final byte[] buf = makeBuf(0x1F, 0xFF, 0xFF); // 'a'
assertThrows(Http2Exception.class, new Executable() {
@Override
public void execute() throws Throwable {
decode(buf);
}
});
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testDecodeExtraPadding3byte() do?
testDecodeExtraPadding3byte() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackHuffmanTest.java.
Where is testDecodeExtraPadding3byte() defined?
testDecodeExtraPadding3byte() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackHuffmanTest.java at line 122.
What does testDecodeExtraPadding3byte() call?
testDecodeExtraPadding3byte() 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