Home / Function/ testLiteralHuffmanEncodedWithDecodingEOSThrows() — netty Function Reference

testLiteralHuffmanEncodedWithDecodingEOSThrows() — netty Function Reference

Architecture documentation for the testLiteralHuffmanEncodedWithDecodingEOSThrows() function in HpackDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  7bbb7356_0f9b_c39f_9a07_4eb9cf3d430d["testLiteralHuffmanEncodedWithDecodingEOSThrows()"]
  499468ca_3853_024b_2b80_17090ef6cd43["HpackDecoderTest"]
  7bbb7356_0f9b_c39f_9a07_4eb9cf3d430d -->|defined in| 499468ca_3853_024b_2b80_17090ef6cd43
  47ac4151_0b50_9884_0d18_472d1c51065d["decode()"]
  7bbb7356_0f9b_c39f_9a07_4eb9cf3d430d -->|calls| 47ac4151_0b50_9884_0d18_472d1c51065d
  style 7bbb7356_0f9b_c39f_9a07_4eb9cf3d430d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 246–260

    @Test
    public void testLiteralHuffmanEncodedWithDecodingEOSThrows() throws Http2Exception {
        byte[] input = {0, (byte) 0x84, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF};
        final ByteBuf in = Unpooled.wrappedBuffer(input);
        try {
            assertThrows(Http2Exception.class, new Executable() {
                @Override
                public void execute() throws Throwable {
                    hpackDecoder.decode(0, in, mockHeaders, true);
                }
            });
        } finally {
            in.release();
        }
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testLiteralHuffmanEncodedWithDecodingEOSThrows() do?
testLiteralHuffmanEncodedWithDecodingEOSThrows() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java.
Where is testLiteralHuffmanEncodedWithDecodingEOSThrows() defined?
testLiteralHuffmanEncodedWithDecodingEOSThrows() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java at line 246.
What does testLiteralHuffmanEncodedWithDecodingEOSThrows() call?
testLiteralHuffmanEncodedWithDecodingEOSThrows() calls 1 function(s): decode.

Analyze Your Own Codebase

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

Try Supermodel Free