testDecodingGoogleAnalyticsCookie() — netty Function Reference
Architecture documentation for the testDecodingGoogleAnalyticsCookie() function in ClientCookieDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 070729b7_8785_cd76_c9d5_bbb6ed199f28["testDecodingGoogleAnalyticsCookie()"] 2635e872_d46e_792f_9aed_dd9f06eec252["ClientCookieDecoderTest"] 070729b7_8785_cd76_c9d5_bbb6ed199f28 -->|defined in| 2635e872_d46e_792f_9aed_dd9f06eec252 style 070729b7_8785_cd76_c9d5_bbb6ed199f28 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/test/java/io/netty/handler/codec/http/cookie/ClientCookieDecoderTest.java lines 156–168
@Test
public void testDecodingGoogleAnalyticsCookie() {
String source = "ARPT=LWUKQPSWRTUN04CKKJI; "
+ "kw-2E343B92-B097-442c-BFA5-BE371E0325A2=unfinished furniture; "
+ "__utma=48461872.1094088325.1258140131.1258140131.1258140131.1; "
+ "__utmb=48461872.13.10.1258140131; __utmc=48461872; "
+ "__utmz=48461872.1258140131.1.1.utmcsr=overstock.com|utmccn=(referral)|"
+ "utmcmd=referral|utmcct=/Home-Garden/Furniture/Clearance,/clearance,/32/dept.html";
Cookie cookie = ClientCookieDecoder.STRICT.decode(source);
assertEquals("ARPT", cookie.name());
assertEquals("LWUKQPSWRTUN04CKKJI", cookie.value());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testDecodingGoogleAnalyticsCookie() do?
testDecodingGoogleAnalyticsCookie() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/cookie/ClientCookieDecoderTest.java.
Where is testDecodingGoogleAnalyticsCookie() defined?
testDecodingGoogleAnalyticsCookie() is defined in codec-http/src/test/java/io/netty/handler/codec/http/cookie/ClientCookieDecoderTest.java at line 156.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free