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