testInvalidIpV6Address() — netty Function Reference
Architecture documentation for the testInvalidIpV6Address() function in HaProxyMessageEncoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD db4686db_bb40_4d5c_1cc7_3a68ace86c73["testInvalidIpV6Address()"] 4545ac9d_2f62_4ac7_c80f_5975d8175456["HaProxyMessageEncoderTest"] db4686db_bb40_4d5c_1cc7_3a68ace86c73 -->|defined in| 4545ac9d_2f62_4ac7_c80f_5975d8175456 style db4686db_bb40_4d5c_1cc7_3a68ace86c73 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-haproxy/src/test/java/io/netty/handler/codec/haproxy/HaProxyMessageEncoderTest.java lines 377–388
@Test
public void testInvalidIpV6Address() {
final String invalidIpv6Address = "2001:0db8:85a3:0000:0000:8a2e:0370:73345";
assertThrows(IllegalArgumentException.class, new Executable() {
@Override
public void execute() {
new HAProxyMessage(
HAProxyProtocolVersion.V1, HAProxyCommand.PROXY, HAProxyProxiedProtocol.TCP6,
invalidIpv6Address, "1050:0:0:0:5:600:300c:326b", 56324, 443);
}
});
}
Domain
Subdomains
Defined In
Source
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/HaProxyMessageEncoderTest.java.
Where is testInvalidIpV6Address() defined?
testInvalidIpV6Address() is defined in codec-haproxy/src/test/java/io/netty/handler/codec/haproxy/HaProxyMessageEncoderTest.java at line 377.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free