Home / Function/ testCmdRequestDecoderDomain() — netty Function Reference

testCmdRequestDecoderDomain() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  51194caa_1e61_2f04_4deb_122e92748b64["testCmdRequestDecoderDomain()"]
  c1fe2676_ad04_03d5_49da_b916e772c7ab["Socks5CommandRequestDecoderTest"]
  51194caa_1e61_2f04_4deb_122e92748b64 -->|defined in| c1fe2676_ad04_03d5_49da_b916e772c7ab
  f1cb7c8e_8115_47d0_8e85_39e49c6ce71b["test()"]
  51194caa_1e61_2f04_4deb_122e92748b64 -->|calls| f1cb7c8e_8115_47d0_8e85_39e49c6ce71b
  style 51194caa_1e61_2f04_4deb_122e92748b64 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-socks/src/test/java/io/netty/handler/codec/socksx/v5/Socks5CommandRequestDecoderTest.java lines 86–110

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

Domain

Subdomains

Calls

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/socksx/v5/Socks5CommandRequestDecoderTest.java.
Where is testCmdRequestDecoderDomain() defined?
testCmdRequestDecoderDomain() is defined in codec-socks/src/test/java/io/netty/handler/codec/socksx/v5/Socks5CommandRequestDecoderTest.java at line 86.
What does testCmdRequestDecoderDomain() call?
testCmdRequestDecoderDomain() calls 1 function(s): test.

Analyze Your Own Codebase

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

Try Supermodel Free