Home / Function/ testMultipleContentLengthHeadersWithFolding() — netty Function Reference

testMultipleContentLengthHeadersWithFolding() — netty Function Reference

Architecture documentation for the testMultipleContentLengthHeadersWithFolding() function in HttpRequestDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  4a29b3ae_1484_f67b_69b7_7ffd5692263d["testMultipleContentLengthHeadersWithFolding()"]
  514322d5_436a_d1ac_6240_1f9cf42934a4["HttpRequestDecoderTest"]
  4a29b3ae_1484_f67b_69b7_7ffd5692263d -->|defined in| 514322d5_436a_d1ac_6240_1f9cf42934a4
  09b68b29_7f9b_974c_84e2_6dbc49644974["testInvalidHeaders0()"]
  4a29b3ae_1484_f67b_69b7_7ffd5692263d -->|calls| 09b68b29_7f9b_974c_84e2_6dbc49644974
  style 4a29b3ae_1484_f67b_69b7_7ffd5692263d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/HttpRequestDecoderTest.java lines 582–592

    @Test
    public void testMultipleContentLengthHeadersWithFolding() {
        String requestStr = "POST / HTTP/1.1\r\n" +
                "Host: example.com\r\n" +
                "Connection: close\r\n" +
                "Content-Length: 5\r\n" +
                "Content-Length:\r\n" +
                "\t6\r\n\r\n" +
                "123456";
        testInvalidHeaders0(requestStr);
    }

Domain

Subdomains

Frequently Asked Questions

What does testMultipleContentLengthHeadersWithFolding() do?
testMultipleContentLengthHeadersWithFolding() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpRequestDecoderTest.java.
Where is testMultipleContentLengthHeadersWithFolding() defined?
testMultipleContentLengthHeadersWithFolding() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpRequestDecoderTest.java at line 582.
What does testMultipleContentLengthHeadersWithFolding() call?
testMultipleContentLengthHeadersWithFolding() calls 1 function(s): testInvalidHeaders0.

Analyze Your Own Codebase

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

Try Supermodel Free