decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal() — netty Function Reference
Architecture documentation for the decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal() function in DefaultHttp2HeadersDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3e86d9da_0310_4ed1_23e7_bc063c56e096["decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal()"] bddf27d1_0dcd_a270_e076_3c8aa8b9b31f["DefaultHttp2HeadersDecoderTest"] 3e86d9da_0310_4ed1_23e7_bc063c56e096 -->|defined in| bddf27d1_0dcd_a270_e076_3c8aa8b9b31f 1762df4d_7e26_6e5a_64bd_9906dfd81eb6["verifyValidationFails()"] 3e86d9da_0310_4ed1_23e7_bc063c56e096 -->|calls| 1762df4d_7e26_6e5a_64bd_9906dfd81eb6 style 3e86d9da_0310_4ed1_23e7_bc063c56e096 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java lines 208–214
@ParameterizedTest
@MethodSource("illegalNotFirstChar")
void decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal(int illegalSecondChar) throws Exception {
final DefaultHttp2HeadersDecoder decoder = new DefaultHttp2HeadersDecoder(true, true);
verifyValidationFails(decoder, encode(b(":method"), b("GET"),
b("test_header"), new byte[]{ (byte) 'a', (byte) illegalSecondChar }));
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal() do?
decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java.
Where is decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal() defined?
decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java at line 208.
What does decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal() call?
decodingInvalidHeaderValueMustFailValidationIfANotFirstCharIsIllegal() calls 1 function(s): verifyValidationFails.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free