testDecodeInvalidSettings() — netty Function Reference
Architecture documentation for the testDecodeInvalidSettings() function in Http3FrameCodecTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3496e374_4298_dede_43cf_385944c27d9b["testDecodeInvalidSettings()"] 5690f307_9248_ec29_2c84_6839dbcdc179["Http3FrameCodecTest"] 3496e374_4298_dede_43cf_385944c27d9b -->|defined in| 5690f307_9248_ec29_2c84_6839dbcdc179 5d230c3a_9419_cdf7_a6b5_7d327fbc0020["testDecodeReservedSettingsKey()"] 5d230c3a_9419_cdf7_a6b5_7d327fbc0020 -->|calls| 3496e374_4298_dede_43cf_385944c27d9b 71dc186e_86e1_20d5_a28f_787eb5d3c199["testDecodeSettingsWithSameKey()"] 71dc186e_86e1_20d5_a28f_787eb5d3c199 -->|calls| 3496e374_4298_dede_43cf_385944c27d9b a9a3ec95_664a_9197_46a1_611a3016bc21["setQpackStreams()"] 3496e374_4298_dede_43cf_385944c27d9b -->|calls| a9a3ec95_664a_9197_46a1_611a3016bc21 style 3496e374_4298_dede_43cf_385944c27d9b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java lines 537–550
private void testDecodeInvalidSettings(boolean delayQpackStreams, ByteBuf buffer) {
try {
assertFalse(codecChannel.writeInbound(buffer));
if (delayQpackStreams) {
setQpackStreams();
codecChannel.checkException();
}
fail();
} catch (Exception e) {
assertException(Http3ErrorCode.H3_SETTINGS_ERROR, e);
}
verifyClose(Http3ErrorCode.H3_SETTINGS_ERROR, parent);
assertEquals(0, buffer.refCnt());
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does testDecodeInvalidSettings() do?
testDecodeInvalidSettings() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java.
Where is testDecodeInvalidSettings() defined?
testDecodeInvalidSettings() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3FrameCodecTest.java at line 537.
What does testDecodeInvalidSettings() call?
testDecodeInvalidSettings() calls 1 function(s): setQpackStreams.
What calls testDecodeInvalidSettings()?
testDecodeInvalidSettings() is called by 2 function(s): testDecodeReservedSettingsKey, testDecodeSettingsWithSameKey.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free