Home / Function/ testTooManyParams() — netty Function Reference

testTooManyParams() — netty Function Reference

Architecture documentation for the testTooManyParams() function in HAProxyMessageDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  b2905b4d_e15c_f1e1_2c8e_90df40f45488["testTooManyParams()"]
  88909aff_3546_2e28_19d9_812a1929ee17["HAProxyMessageDecoderTest"]
  b2905b4d_e15c_f1e1_2c8e_90df40f45488 -->|defined in| 88909aff_3546_2e28_19d9_812a1929ee17
  style b2905b4d_e15c_f1e1_2c8e_90df40f45488 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-haproxy/src/test/java/io/netty/handler/codec/haproxy/HAProxyMessageDecoderTest.java lines 184–193

    @Test
    public void testTooManyParams() {
        final String header = "PROXY TCP4 192.168.0.1 192.168.0.11 56324 443 123\r\n";
        assertThrows(HAProxyProtocolException.class, new Executable() {
            @Override
            public void execute() {
                ch.writeInbound(copiedBuffer(header, CharsetUtil.US_ASCII));
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testTooManyParams() do?
testTooManyParams() is a function in the netty codebase, defined in codec-haproxy/src/test/java/io/netty/handler/codec/haproxy/HAProxyMessageDecoderTest.java.
Where is testTooManyParams() defined?
testTooManyParams() is defined in codec-haproxy/src/test/java/io/netty/handler/codec/haproxy/HAProxyMessageDecoderTest.java at line 184.

Analyze Your Own Codebase

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

Try Supermodel Free