Home / Function/ testNormalizeAndGetContentLengthInvalidContentLength() — netty Function Reference

testNormalizeAndGetContentLengthInvalidContentLength() — netty Function Reference

Architecture documentation for the testNormalizeAndGetContentLengthInvalidContentLength() function in HttpUtilTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  00e6dd1d_34ac_951d_0cbf_8129ca4ea392["testNormalizeAndGetContentLengthInvalidContentLength()"]
  04f193b8_77e1_8af0_51b3_8dcd3ac8de0e["HttpUtilTest"]
  00e6dd1d_34ac_951d_0cbf_8129ca4ea392 -->|defined in| 04f193b8_77e1_8af0_51b3_8dcd3ac8de0e
  998ef0f4_ba26_2864_6509_832d6020e4fa["normalizeAndGetContentLengthEmpty()"]
  998ef0f4_ba26_2864_6509_832d6020e4fa -->|calls| 00e6dd1d_34ac_951d_0cbf_8129ca4ea392
  7848b94d_ba20_a6d5_0fac_2f20cdff4bfb["normalizeAndGetContentLengthNotANumber()"]
  7848b94d_ba20_a6d5_0fac_2f20cdff4bfb -->|calls| 00e6dd1d_34ac_951d_0cbf_8129ca4ea392
  5259cb4e_f253_2dae_48c0_d5eee2be2ae0["normalizeAndGetContentLengthNegative()"]
  5259cb4e_f253_2dae_48c0_d5eee2be2ae0 -->|calls| 00e6dd1d_34ac_951d_0cbf_8129ca4ea392
  style 00e6dd1d_34ac_951d_0cbf_8129ca4ea392 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/HttpUtilTest.java lines 473–480

    private static void testNormalizeAndGetContentLengthInvalidContentLength(final String contentLengthField) {
        assertThrows(IllegalArgumentException.class, new Executable() {
            @Override
            public void execute() {
                normalizeAndGetContentLength(singletonList(contentLengthField), false, false);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testNormalizeAndGetContentLengthInvalidContentLength() do?
testNormalizeAndGetContentLengthInvalidContentLength() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpUtilTest.java.
Where is testNormalizeAndGetContentLengthInvalidContentLength() defined?
testNormalizeAndGetContentLengthInvalidContentLength() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpUtilTest.java at line 473.
What calls testNormalizeAndGetContentLengthInvalidContentLength()?
testNormalizeAndGetContentLengthInvalidContentLength() is called by 3 function(s): normalizeAndGetContentLengthEmpty, normalizeAndGetContentLengthNegative, normalizeAndGetContentLengthNotANumber.

Analyze Your Own Codebase

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

Try Supermodel Free