testIgnoreEmptyDomain() — netty Function Reference
Architecture documentation for the testIgnoreEmptyDomain() function in ClientCookieDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 84e44465_93d6_1b8b_8aaf_d08386e9eda4["testIgnoreEmptyDomain()"] 2635e872_d46e_792f_9aed_dd9f06eec252["ClientCookieDecoderTest"] 84e44465_93d6_1b8b_8aaf_d08386e9eda4 -->|defined in| 2635e872_d46e_792f_9aed_dd9f06eec252 style 84e44465_93d6_1b8b_8aaf_d08386e9eda4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/test/java/io/netty/handler/codec/http/cookie/ClientCookieDecoderTest.java lines 279–284
@Test
public void testIgnoreEmptyDomain() {
String emptyDomain = "sessionid=OTY4ZDllNTgtYjU3OC00MWRjLTkzMWMtNGUwNzk4MTY0MTUw;Domain=;Path=/";
Cookie cookie = ClientCookieDecoder.STRICT.decode(emptyDomain);
assertNull(cookie.domain());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testIgnoreEmptyDomain() do?
testIgnoreEmptyDomain() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/cookie/ClientCookieDecoderTest.java.
Where is testIgnoreEmptyDomain() defined?
testIgnoreEmptyDomain() is defined in codec-http/src/test/java/io/netty/handler/codec/http/cookie/ClientCookieDecoderTest.java at line 279.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free