Home / Function/ testSkipUnknown() — netty Function Reference

testSkipUnknown() — netty Function Reference

Architecture documentation for the testSkipUnknown() function in Http3FrameCodecTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  f17ccea9_1b96_9a2e_d929_bb9e2c543178["testSkipUnknown()"]
  5690f307_9248_ec29_2c84_6839dbcdc179["Http3FrameCodecTest"]
  f17ccea9_1b96_9a2e_d929_bb9e2c543178 -->|defined in| 5690f307_9248_ec29_2c84_6839dbcdc179
  f172e438_95aa_794a_73ee_b2131dfe9d18["setUp()"]
  f17ccea9_1b96_9a2e_d929_bb9e2c543178 -->|calls| f172e438_95aa_794a_73ee_b2131dfe9d18
  style f17ccea9_1b96_9a2e_d929_bb9e2c543178 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java lines 798–808

    @ParameterizedTest(name = "{index}: maxBlockedStreams = {0}, delayQpackStreams = {1}")
    @MethodSource("dataNoFragment")
    public void testSkipUnknown(int maxBlockedStreams, boolean delayQpackStreams) throws Exception {
        setUp(maxBlockedStreams, delayQpackStreams);
        ByteBuf buffer = Unpooled.buffer();
        writeVariableLengthInteger(buffer, 4611686018427387903L);
        writeVariableLengthInteger(buffer, 10);
        buffer.writeZero(10);

        assertFalse(codecChannel.writeInbound(buffer));
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testSkipUnknown() do?
testSkipUnknown() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java.
Where is testSkipUnknown() defined?
testSkipUnknown() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java at line 798.
What does testSkipUnknown() call?
testSkipUnknown() calls 1 function(s): setUp.

Analyze Your Own Codebase

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

Try Supermodel Free