Home / Function/ testCmdRequestDecoderDomain() — netty Function Reference

testCmdRequestDecoderDomain() — netty Function Reference

Architecture documentation for the testCmdRequestDecoderDomain() function in SocksCmdRequestDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  c432bb15_69b6_6e02_474e_0ffc32f541ef["testCmdRequestDecoderDomain()"]
  b310d236_86c5_c256_55ec_07e2514edd9f["SocksCmdRequestDecoderTest"]
  c432bb15_69b6_6e02_474e_0ffc32f541ef -->|defined in| b310d236_86c5_c256_55ec_07e2514edd9f
  6e40a760_b5e1_a0ac_d9e7_a4b3ac495a1a["testSocksCmdRequestDecoderWithDifferentParams()"]
  c432bb15_69b6_6e02_474e_0ffc32f541ef -->|calls| 6e40a760_b5e1_a0ac_d9e7_a4b3ac495a1a
  style c432bb15_69b6_6e02_474e_0ffc32f541ef fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-socks/src/test/java/io/netty/handler/codec/socks/SocksCmdRequestDecoderTest.java lines 82–104

    @Test
    public void testCmdRequestDecoderDomain() {
        String[] hosts = {"google.com" ,
                          "مثال.إختبار",
                          "παράδειγμα.δοκιμή",
                          "مثال.آزمایشی",
                          "пример.испытание",
                          "בײַשפּיל.טעסט",
                          "例子.测试",
                          "例子.測試",
                          "उदाहरण.परीक्षा",
                          "例え.テスト",
                          "실례.테스트",
                          "உதாரணம்.பரிட்சை"};
        int[] ports = {1, 32769, 65535};
        for (SocksCmdType cmdType : SocksCmdType.values()) {
            for (String host : hosts) {
                for (int port : ports) {
                    testSocksCmdRequestDecoderWithDifferentParams(cmdType, SocksAddressType.DOMAIN, host, port);
                }
            }
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does testCmdRequestDecoderDomain() do?
testCmdRequestDecoderDomain() is a function in the netty codebase, defined in codec-socks/src/test/java/io/netty/handler/codec/socks/SocksCmdRequestDecoderTest.java.
Where is testCmdRequestDecoderDomain() defined?
testCmdRequestDecoderDomain() is defined in codec-socks/src/test/java/io/netty/handler/codec/socks/SocksCmdRequestDecoderTest.java at line 82.
What does testCmdRequestDecoderDomain() call?
testCmdRequestDecoderDomain() calls 1 function(s): testSocksCmdRequestDecoderWithDifferentParams.

Analyze Your Own Codebase

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

Try Supermodel Free