testInvalidFirstFrame() — netty Function Reference
Architecture documentation for the testInvalidFirstFrame() function in Http3ControlStreamInboundHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD e3131110_ec00_0184_d690_3f33218b34bb["testInvalidFirstFrame()"] 902435e9_3b03_3141_b560_3cdae4f30cb6["Http3ControlStreamInboundHandlerTest"] e3131110_ec00_0184_d690_3f33218b34bb -->|defined in| 902435e9_3b03_3141_b560_3cdae4f30cb6 59b3f173_11c4_84be_5dcb_b131aff1d4aa["testInvalidFirstFrameHttp3GoAwayFrame()"] 59b3f173_11c4_84be_5dcb_b131aff1d4aa -->|calls| e3131110_ec00_0184_d690_3f33218b34bb 8cff5796_6dcd_c20c_d10b_4e8c601f07fb["testInvalidFirstFrameHttp3MaxPushIdFrame()"] 8cff5796_6dcd_c20c_d10b_4e8c601f07fb -->|calls| e3131110_ec00_0184_d690_3f33218b34bb 8bd68cf0_2b2b_4dec_e71a_7024a97936f2["testInvalidFirstFrameHttp3CancelPushFrame()"] 8bd68cf0_2b2b_4dec_e71a_7024a97936f2 -->|calls| e3131110_ec00_0184_d690_3f33218b34bb d56b945d_8def_ebfa_0014_323d324ed151["testInvalidFirstFrameNonControlFrame()"] d56b945d_8def_ebfa_0014_323d324ed151 -->|calls| e3131110_ec00_0184_d690_3f33218b34bb 9ac00224_5b82_b7cd_536e_640ebd943996["writeInvalidFrame()"] e3131110_ec00_0184_d690_3f33218b34bb -->|calls| 9ac00224_5b82_b7cd_536e_640ebd943996 style e3131110_ec00_0184_d690_3f33218b34bb fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/Http3ControlStreamInboundHandlerTest.java lines 125–136
private void testInvalidFirstFrame(boolean server, boolean forwardControlFrames, Http3Frame frame)
throws Exception {
final EmbeddedQuicStreamChannel channel = newStream(QuicStreamType.BIDIRECTIONAL,
new Http3ControlStreamInboundHandler(server,
forwardControlFrames ? new ChannelInboundHandlerAdapter() : null,
qpackEncoder, remoteControlStreamHandler));
writeInvalidFrame(forwardControlFrames, Http3ErrorCode.H3_MISSING_SETTINGS, channel, frame);
verifyClose(Http3ErrorCode.H3_MISSING_SETTINGS, parent);
assertFalse(channel.finish());
}
Domain
Subdomains
Defined In
Calls
Called By
Source
Frequently Asked Questions
What does testInvalidFirstFrame() do?
testInvalidFirstFrame() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3ControlStreamInboundHandlerTest.java.
Where is testInvalidFirstFrame() defined?
testInvalidFirstFrame() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3ControlStreamInboundHandlerTest.java at line 125.
What does testInvalidFirstFrame() call?
testInvalidFirstFrame() calls 1 function(s): writeInvalidFrame.
What calls testInvalidFirstFrame()?
testInvalidFirstFrame() is called by 4 function(s): testInvalidFirstFrameHttp3CancelPushFrame, testInvalidFirstFrameHttp3GoAwayFrame, testInvalidFirstFrameHttp3MaxPushIdFrame, testInvalidFirstFrameNonControlFrame.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free