testNotLeakWhenWrapIllegalArgumentException() — netty Function Reference
Architecture documentation for the testNotLeakWhenWrapIllegalArgumentException() function in HttpPostRequestDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3eea7412_f0bc_938f_66da_ce94e4427ba3["testNotLeakWhenWrapIllegalArgumentException()"] d3dadcbe_07b1_86dc_3f34_5a56e9d1367e["HttpPostRequestDecoderTest"] 3eea7412_f0bc_938f_66da_ce94e4427ba3 -->|defined in| d3dadcbe_07b1_86dc_3f34_5a56e9d1367e 3017194e_77f7_45c8_0a99_25a0e4c8068b["testNotLeakDirectBufferWhenWrapIllegalArgumentException()"] 3017194e_77f7_45c8_0a99_25a0e4c8068b -->|calls| 3eea7412_f0bc_938f_66da_ce94e4427ba3 2b5f4b3d_4ab6_9a87_f961_ee0957c346ef["testNotLeakHeapBufferWhenWrapIllegalArgumentException()"] 2b5f4b3d_4ab6_9a87_f961_ee0957c346ef -->|calls| 3eea7412_f0bc_938f_66da_ce94e4427ba3 style 3eea7412_f0bc_938f_66da_ce94e4427ba3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/test/java/io/netty/handler/codec/http/multipart/HttpPostRequestDecoderTest.java lines 804–812
private static void testNotLeakWhenWrapIllegalArgumentException(ByteBuf buf) {
buf.writeCharSequence("a=b&foo=%22bar%22&==", CharsetUtil.US_ASCII);
FullHttpRequest request = new DefaultFullHttpRequest(HttpVersion.HTTP_1_1, HttpMethod.POST, "/", buf);
try {
new HttpPostStandardRequestDecoder(request).destroy();
} finally {
assertTrue(request.release());
}
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does testNotLeakWhenWrapIllegalArgumentException() do?
testNotLeakWhenWrapIllegalArgumentException() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/multipart/HttpPostRequestDecoderTest.java.
Where is testNotLeakWhenWrapIllegalArgumentException() defined?
testNotLeakWhenWrapIllegalArgumentException() is defined in codec-http/src/test/java/io/netty/handler/codec/http/multipart/HttpPostRequestDecoderTest.java at line 804.
What calls testNotLeakWhenWrapIllegalArgumentException()?
testNotLeakWhenWrapIllegalArgumentException() is called by 2 function(s): testNotLeakDirectBufferWhenWrapIllegalArgumentException, testNotLeakHeapBufferWhenWrapIllegalArgumentException.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free