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