Home / Function/ testInvalidIPV6Address() — netty Function Reference

testInvalidIPV6Address() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-haproxy/src/test/java/io/netty/handler/codec/haproxy/HAProxyMessageDecoderTest.java lines 150–160

    @Test
    public void testInvalidIPV6Address() {
        final String header =
                "PROXY TCP6 r001:0db8:85a3:0000:0000:8a2e:0370:7334 1050:0:0:0:5:600:300c:326b 56324 443\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 testInvalidIPV6Address() do?
testInvalidIPV6Address() is a function in the netty codebase, defined in codec-haproxy/src/test/java/io/netty/handler/codec/haproxy/HAProxyMessageDecoderTest.java.
Where is testInvalidIPV6Address() defined?
testInvalidIPV6Address() is defined in codec-haproxy/src/test/java/io/netty/handler/codec/haproxy/HAProxyMessageDecoderTest.java at line 150.

Analyze Your Own Codebase

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

Try Supermodel Free