Home / Function/ testLiteralHuffmanEncodedWithPaddingNotCorrespondingToMSBThrows() — netty Function Reference

testLiteralHuffmanEncodedWithPaddingNotCorrespondingToMSBThrows() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 262–276

    @Test
    public void testLiteralHuffmanEncodedWithPaddingNotCorrespondingToMSBThrows() throws Http2Exception {
        byte[] input = {0, (byte) 0x81, 0};
        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 testLiteralHuffmanEncodedWithPaddingNotCorrespondingToMSBThrows() do?
testLiteralHuffmanEncodedWithPaddingNotCorrespondingToMSBThrows() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java.
Where is testLiteralHuffmanEncodedWithPaddingNotCorrespondingToMSBThrows() defined?
testLiteralHuffmanEncodedWithPaddingNotCorrespondingToMSBThrows() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java at line 262.
What does testLiteralHuffmanEncodedWithPaddingNotCorrespondingToMSBThrows() call?
testLiteralHuffmanEncodedWithPaddingNotCorrespondingToMSBThrows() 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