Home / Function/ testInvalidHttp3Frame0() — netty Function Reference

testInvalidHttp3Frame0() — netty Function Reference

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

Function java Buffer Allocators calls 1 called by 6

Entity Profile

Dependency Diagram

graph TD
  0a5602b9_880b_f6b7_0665_131b3f50e1c6["testInvalidHttp3Frame0()"]
  5690f307_9248_ec29_2c84_6839dbcdc179["Http3FrameCodecTest"]
  0a5602b9_880b_f6b7_0665_131b3f50e1c6 -->|defined in| 5690f307_9248_ec29_2c84_6839dbcdc179
  2cf4611d_5d60_8acc_041d_d2810bfe4d15["testInvalidHttp3MaxPushIdFrame()"]
  2cf4611d_5d60_8acc_041d_d2810bfe4d15 -->|calls| 0a5602b9_880b_f6b7_0665_131b3f50e1c6
  8ff73076_9b68_f0e2_c638_049c9d8082a8["testInvalidHttp3GoAwayFrame()"]
  8ff73076_9b68_f0e2_c638_049c9d8082a8 -->|calls| 0a5602b9_880b_f6b7_0665_131b3f50e1c6
  9582e751_24f4_4078_633d_0a219dfb7f4e["testInvalidHttp3SettingsFrame()"]
  9582e751_24f4_4078_633d_0a219dfb7f4e -->|calls| 0a5602b9_880b_f6b7_0665_131b3f50e1c6
  09926331_4fc1_c287_f888_baf513612f8b["testInvalidHttp3CancelPushFrame()"]
  09926331_4fc1_c287_f888_baf513612f8b -->|calls| 0a5602b9_880b_f6b7_0665_131b3f50e1c6
  2ad2230c_7adc_c502_7b6e_fab547d4959c["testInvalidHttp3HeadersFrame()"]
  2ad2230c_7adc_c502_7b6e_fab547d4959c -->|calls| 0a5602b9_880b_f6b7_0665_131b3f50e1c6
  edcf63bf_322f_30e0_84b3_b164d59fa0dc["testInvalidHttp3PushPromiseFrame()"]
  edcf63bf_322f_30e0_84b3_b164d59fa0dc -->|calls| 0a5602b9_880b_f6b7_0665_131b3f50e1c6
  a9a3ec95_664a_9197_46a1_611a3016bc21["setQpackStreams()"]
  0a5602b9_880b_f6b7_0665_131b3f50e1c6 -->|calls| a9a3ec95_664a_9197_46a1_611a3016bc21
  style 0a5602b9_880b_f6b7_0665_131b3f50e1c6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java lines 810–826

    private void testInvalidHttp3Frame0(boolean delayQpackStreams, int type, int length, Http3ErrorCode code) {
        ByteBuf buffer = Unpooled.buffer();
        writeVariableLengthInteger(buffer, type);
        writeVariableLengthInteger(buffer, length);

        try {
            assertFalse(codecChannel.writeInbound(buffer));
            if (delayQpackStreams) {
                setQpackStreams();
                codecChannel.checkException();
            }
            fail();
        } catch (Exception e) {
            assertException(code, e);
        }
        verifyClose(code, parent);
    }

Domain

Subdomains

Frequently Asked Questions

What does testInvalidHttp3Frame0() do?
testInvalidHttp3Frame0() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java.
Where is testInvalidHttp3Frame0() defined?
testInvalidHttp3Frame0() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java at line 810.
What does testInvalidHttp3Frame0() call?
testInvalidHttp3Frame0() calls 1 function(s): setQpackStreams.
What calls testInvalidHttp3Frame0()?
testInvalidHttp3Frame0() is called by 6 function(s): testInvalidHttp3CancelPushFrame, testInvalidHttp3GoAwayFrame, testInvalidHttp3HeadersFrame, testInvalidHttp3MaxPushIdFrame, testInvalidHttp3PushPromiseFrame, testInvalidHttp3SettingsFrame.

Analyze Your Own Codebase

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

Try Supermodel Free