testResolveUnicode() — netty Function Reference
Architecture documentation for the testResolveUnicode() function in DnsNameResolverTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b3475401_b083_ced4_9b62_2a242a405608["testResolveUnicode()"] b6215f36_0afe_a284_a3fd_3999e90a8e97["DnsNameResolverTest"] b3475401_b083_ced4_9b62_2a242a405608 -->|defined in| b6215f36_0afe_a284_a3fd_3999e90a8e97 3cb8c1be_097f_350c_fb1f_a51180bf9f50["testResolveDecodeUnicode()"] 3cb8c1be_097f_350c_fb1f_a51180bf9f50 -->|calls| b3475401_b083_ced4_9b62_2a242a405608 27f89af3_6213_3736_2776_b2bcf7517cf4["testResolveNotDecodeUnicode()"] 27f89af3_6213_3736_2776_b2bcf7517cf4 -->|calls| b3475401_b083_ced4_9b62_2a242a405608 df4510f5_88a8_20fd_2366_a4c543cdf3b8["resolve()"] b3475401_b083_ced4_9b62_2a242a405608 -->|calls| df4510f5_88a8_20fd_2366_a4c543cdf3b8 b99a0b82_67b1_d1cc_5a21_69efe242b9bf["assertQueryObserver()"] b3475401_b083_ced4_9b62_2a242a405608 -->|calls| b99a0b82_67b1_d1cc_5a21_69efe242b9bf style b3475401_b083_ced4_9b62_2a242a405608 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
resolver-dns/src/test/java/io/netty/resolver/dns/DnsNameResolverTest.java lines 1251–1263
private static void testResolveUnicode(DnsNameResolverChannelStrategy strategy, boolean decode) {
DnsNameResolver resolver = newResolver(strategy, decode).build();
try {
for (Entry<String, String> entries : DOMAINS_PUNYCODE.entrySet()) {
InetAddress address = resolver.resolve(entries.getKey()).syncUninterruptibly().getNow();
assertEquals(decode ? entries.getKey() : entries.getValue(), address.getHostName());
}
assertQueryObserver(resolver, AAAA);
} finally {
resolver.close();
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testResolveUnicode() do?
testResolveUnicode() is a function in the netty codebase, defined in resolver-dns/src/test/java/io/netty/resolver/dns/DnsNameResolverTest.java.
Where is testResolveUnicode() defined?
testResolveUnicode() is defined in resolver-dns/src/test/java/io/netty/resolver/dns/DnsNameResolverTest.java at line 1251.
What does testResolveUnicode() call?
testResolveUnicode() calls 2 function(s): assertQueryObserver, resolve.
What calls testResolveUnicode()?
testResolveUnicode() is called by 2 function(s): testResolveDecodeUnicode, testResolveNotDecodeUnicode.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free