/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.jmeter.protocol.http.control;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import java.net.URL;
import java.util.List;
import org.apache.http.client.config.CookieSpecs;
import org.apache.http.cookie.ClientCookie;
import org.apache.http.impl.cookie.BasicClientCookie;
import org.apache.jmeter.junit.JMeterTestCase;
import org.apache.jmeter.protocol.http.sampler.HTTPNullSampler;
import org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase;
import org.apache.jmeter.protocol.http.util.HTTPConstants;
import org.apache.jmeter.threads.JMeterContext;
import org.apache.jmeter.threads.JMeterContextService;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
/**
* HC4CookieHandler tests
*/
public class TestHC4CookieManager extends JMeterTestCase {
private CookieManager man = null;
private JMeterContext jmctx = null;
@Before
public void setUp() throws Exception {
jmctx = JMeterContextService.getContext();
man = new CookieManager();
// Ensure we use the new GUI defaults
man.setImplementation(HC4CookieHandler.class.getName());
man.setCookiePolicy(HC4CookieHandler.DEFAULT_POLICY_NAME);
man.setThreadContext(jmctx);
man.testStarted();// This is needed in order to set up the cookie policy
}
@Test
public void testRemoveCookie() throws Exception {
man.setThreadContext(jmctx);
Cookie c = new Cookie("id", "me", "127.0.0.1", "/", false, 0);
man.add(c);
assertEquals(1, man.getCookieCount());
// This should be ignored, as there is no value
Cookie d = new Cookie("id", "", "127.0.0.1", "/", false, 0);
man.add(d);
assertEquals(0, man.getCookieCount());
man.add(c);
man.add(c);
assertEquals(1, man.getCookieCount());
Cookie e = new Cookie("id", "me2", "127.0.0.1", "/", false, 0);
man.add(e);
assertEquals(1, man.getCookieCount());
}
@Test
public void testSendCookie() throws Exception {
man.add(new Cookie("id", "value", "jakarta.apache.org", "/", false, 9999999999L));
HTTPSamplerBase sampler = new HTTPNullSampler();
sampler.setDomain("jakarta.apache.org");
sampler.setPath("/index.html");
sampler.setMethod(HTTPConstants.GET);
assertNotNull(man.getCookieHeaderForURL(sampler.getUrl()));
}
@Test
public void testSendCookie2() throws Exception {
man.add(new Cookie("id", "value", ".apache.org", "/", false, 9999999999L));
HTTPSamplerBase sampler = new HTTPNullSampler();
sampler.setDomain("jakarta.apache.org");
sampler.setPath("/index.html");
sampler.setMethod(HTTPConstants.GET);
assertNotNull(man.getCookieHeaderForURL(sampler.getUrl()));
}
/**
* Test that the cookie domain field is actually handled as browsers do
* (i.e.: host X matches domain .X):
*
* @throws Exception if something fails
*/
@Test
public void testDomainHandling() throws Exception {
URL url = new URL("http://jakarta.apache.org/");
man.addCookieFromHeader("test=1;domain=.jakarta.apache.org", url);
assertNotNull(man.getCookieHeaderForURL(url));
}
/**
* @throws Exception when anything goes wrong in the test
*/
@Test
public void testAddCookieFromHeaderWithWildcard() throws Exception {
URL url = new URL("https://subdomain.bt.com/page");
String headerLine = "SMTRYNO=1; path=/; domain=.bt.com";
man.addCookieFromHeader(headerLine, url);
Assert.assertEquals(1, man.getCookieCount());
HC4CookieHandler cookieHandler = (HC4CookieHandler) man.getCookieHandler();
List<org.apache.http.cookie.Cookie> cookies =
cookieHandler.getCookiesForUrl(man.getCookies(), url,
CookieManager.ALLOW_VARIABLE_COOKIES);
for (org.apache.http.cookie.Cookie cookie : cookies) {
// See http://tools.ietf.org/html/rfc6265#section-5.2.3
Assert.assertEquals("bt.com", cookie.getDomain());
Assert.assertTrue( ((BasicClientCookie)cookie).containsAttribute(ClientCookie.DOMAIN_ATTR));
}
// we check that CookieManager returns the cookies for the main domain
URL urlMainDomain = new URL("https://www.bt.com/page");
cookies =
cookieHandler.getCookiesForUrl(man.getCookies(), urlMainDomain,
CookieManager.ALLOW_VARIABLE_COOKIES);
Assert.assertEquals(1, cookies.size());
for (org.apache.http.cookie.Cookie cookie : cookies) {
// See http://tools.ietf.org/html/rfc6265#section-5.2.3
Assert.assertEquals("bt.com", cookie.getDomain());
Assert.assertTrue( ((BasicClientCookie)cookie).containsAttribute(ClientCookie.DOMAIN_ATTR));
}
}
/**
* @throws Exception when anything goes wrong in the test
*/
@Test
public void testAddCookieFromHeaderWithNoWildcard() throws Exception {
URL url = new URL("https://subdomain.bt.com/page");
String headerLine = "SMTRYNO=1; path=/";
man.addCookieFromHeader(headerLine, url);
Assert.assertEquals(1, man.getCookieCount());
HC4CookieHandler cookieHandler = (HC4CookieHandler) man.getCookieHandler();
List<org.apache.http.cookie.Cookie> cookies =
cookieHandler.getCookiesForUrl(man.getCookies(), url,
CookieManager.ALLOW_VARIABLE_COOKIES);
Assert.assertEquals(1, cookies.size());
for (org.apache.http.cookie.Cookie cookie : cookies) {
// See http://tools.ietf.org/html/rfc6265#section-5.2.3
Assert.assertEquals("subdomain.bt.com", cookie.getDomain());
Assert.assertFalse( ((BasicClientCookie)cookie).containsAttribute(ClientCookie.DOMAIN_ATTR));
}
// we check that CookieManager returns the cookies for the main domain
URL urlMainDomain = new URL("https://www.bt.com/page");
cookies =
cookieHandler.getCookiesForUrl(man.getCookies(), urlMainDomain,
CookieManager.ALLOW_VARIABLE_COOKIES);
Assert.assertEquals(0, cookies.size());
}
/**
* @throws Exception when anything goes wrong in the test
*/
@Test
public void testAddCookieFromHeaderWithWildcard2() throws Exception {
URL url = new URL("https://www.bt.com/page");
String headerLine = "SMTRYNO=1; path=/; domain=.bt.com";
man.addCookieFromHeader(headerLine, url);
Assert.assertEquals(1, man.getCookieCount());
HC4CookieHandler cookieHandler = (HC4CookieHandler) man.getCookieHandler();
URL urlSubDomain = new URL("https://subdomain.bt.com/page");
List<org.apache.http.cookie.Cookie> cookies =
cookieHandler.getCookiesForUrl(man.getCookies(), urlSubDomain,
CookieManager.ALLOW_VARIABLE_COOKIES);
Assert.assertEquals(1, cookies.size());
for (org.apache.http.cookie.Cookie cookie : cookies) {
// See http://tools.ietf.org/html/rfc6265#section-5.2.3
Assert.assertEquals("bt.com", cookie.getDomain());
Assert.assertTrue( ((BasicClientCookie)cookie).containsAttribute(ClientCookie.DOMAIN_ATTR));
}
}
/**
* @throws Exception when anything goes wrong in the test
*/
@Test
public void testBug56358() throws Exception {
URL url = new URL("http://remote.com:10008/get/cookie");
String headerLine = "test=value;Max-age=120;path=/;Version=1";
man.setCookiePolicy(CookieSpecs.STANDARD);
man.addCookieFromHeader(headerLine, url);
Assert.assertEquals(1, man.getCookieCount());
HC4CookieHandler cookieHandler = (HC4CookieHandler) man.getCookieHandler();
URL urlSameDomainDifferentPort = new URL("http://remote.com:10001/test/me");
List<org.apache.http.cookie.Cookie> cookies =
cookieHandler.getCookiesForUrl(man.getCookies(), urlSameDomainDifferentPort,
CookieManager.ALLOW_VARIABLE_COOKIES);
Assert.assertEquals(1, cookies.size());
for (org.apache.http.cookie.Cookie cookie : cookies) {
// See http://tools.ietf.org/html/rfc6265#section-5.2.3
Assert.assertEquals("remote.com", cookie.getDomain());
Assert.assertEquals("test", cookie.getName());
}
}
@Test
public void testCrossDomainHandling() throws Exception {
URL url = new URL("http://jakarta.apache.org/");
assertEquals(0,man.getCookieCount()); // starts empty
man.addCookieFromHeader("test=2;domain=.hc.apache.org", url);
assertEquals(0,man.getCookieCount()); // should not be stored
man.addCookieFromHeader("test=1;domain=.jakarta.apache.org", url);
assertEquals(1,man.getCookieCount()); // OK
}
/**
* Test that we won't be tricked by similar host names (this was a past
* bug, although it never got reported in the bug database):
*
* @throws Exception if something fails
*/
@Test
public void testSimilarHostNames() throws Exception {
URL url = new URL("http://ache.org/");
man.addCookieFromHeader("test=1", url);
url = new URL("http://jakarta.apache.org/");
assertNull(man.getCookieHeaderForURL(url));
}
// Test session cookie is returned
@Test
public void testSessionCookie() throws Exception {
URL url = new URL("http://a.b.c/");
man.addCookieFromHeader("test=1", url);
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("test=1", s);
}
// Bug 2063
@Test
public void testCookieWithEquals() throws Exception {
URL url = new URL("http://a.b.c/");
man.addCookieFromHeader("NSCP_USER_LOGIN1_NEW=SHA=xxxxx", url);
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("NSCP_USER_LOGIN1_NEW=SHA=xxxxx", s);
Cookie c=man.get(0);
assertEquals("NSCP_USER_LOGIN1_NEW",c.getName());
assertEquals("SHA=xxxxx",c.getValue());
}
// Test Old cookie is not returned
@Test
public void testOldCookie() throws Exception {
URL url = new URL("http://a.b.c/");
man.addCookieFromHeader("test=1; expires=Mon, 01-Jan-1990 00:00:00 GMT", url);
String s = man.getCookieHeaderForURL(url);
assertNull(s);
}
// Test New cookie is returned
@Test
public void testNewCookie() throws Exception {
URL url = new URL("http://a.b.c/");
man.addCookieFromHeader("test=1; expires=Mon, 01-Jan-2990 00:00:00 GMT", url);
assertEquals(1,man.getCookieCount());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("test=1", s);
}
// Test HttpOnly cookie is parsed correctly
@Test
public void testHttpOnlyCookie() throws Exception {
URL url = new URL("http://a.b.c/");
man.addCookieFromHeader("mySASession=s%3AcafPSGf6UJguyhddGFFeLdHBy9CYbzIS.NhYyA26LGTAVoLxhCQUK%2F2Bs34MW5kGHmErKzG6r3XI; Path=/; Expires=Tue, 07 Feb 2990 09:13:14 GMT; HttpOnly", url);
assertEquals(1,man.getCookieCount());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("mySASession=s%3AcafPSGf6UJguyhddGFFeLdHBy9CYbzIS.NhYyA26LGTAVoLxhCQUK%2F2Bs34MW5kGHmErKzG6r3XI", s);
}
// Test Secure cookie is parsed correctly and not transmitted for HTTP
@Test
public void testSecureCookieWithHttp() throws Exception {
URL url = new URL("http://a.b.c/");
man.addCookieFromHeader("mySASession=s%3AcafPSGf6UJguyhddGFFeLdHBy9CYbzIS.NhYyA26LGTAVoLxhCQUK%2F2Bs34MW5kGHmErKzG6r3XI; Path=/; Expires=Tue, 07 Feb 2990 09:13:14 GMT; HttpOnly; secure", url);
assertEquals(1,man.getCookieCount());
String s = man.getCookieHeaderForURL(url);
assertNull(s);
}
// Test Secure cookie is parsed correctly and transmitted for HTTPS
@Test
public void testSecureCookieWithHttps() throws Exception {
URL url = new URL("https://a.b.c/");
man.addCookieFromHeader("mySASession=s%3AcafPSGf6UJguyhddGFFeLdHBy9CYbzIS.NhYyA26LGTAVoLxhCQUK%2F2Bs34MW5kGHmErKzG6r3XI; Path=/; Expires=Tue, 07 Feb 2990 09:13:14 GMT; HttpOnly; secure", url);
assertEquals(1,man.getCookieCount());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("mySASession=s%3AcafPSGf6UJguyhddGFFeLdHBy9CYbzIS.NhYyA26LGTAVoLxhCQUK%2F2Bs34MW5kGHmErKzG6r3XI", s);
}
// Test multi-cookie header handling
@Test
public void testCookies1() throws Exception {
man.setCookiePolicy(CookieSpecs.DEFAULT);
man.testStarted(); // ensure policy is picked up
URL url = new URL("http://a.b.c.d/testCookies1");
man.addCookieFromHeader("test1=1; comment=\"how,now\", test2=2; version=1", url);
assertEquals(2,man.getCookieCount());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("test1=1; test2=2", s);
}
@Test
public void testCookies2() throws Exception {
URL url = new URL("https://a.b.c.d/testCookies2");
//The cookie in question does not have a version attribute mandatory for
//standard (RFC 2109 and RFC 2965) cookies. Therefore it is parsed as
//Netscape style cookie in which case comma is not considered a valid
//header element delimiter and is treated as normal character.
man.addCookieFromHeader("test1=1;secure, test2=2;secure", url);
assertEquals(1,man.getCookieCount());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("test1=1", s);
}
@Test
public void testCookies3() throws Exception {
man.setCookiePolicy(CookieSpecs.DEFAULT);
man.testStarted(); // ensure policy is picked up
URL url = new URL("https://a.b.c.d/testCookies2");
man.addCookieFromHeader("test1=1;secure, test2=2;secure; version=1", url);
assertEquals(2,man.getCookieCount());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("test1=1; test2=2", s);
}
// Test duplicate cookie handling
@Test
public void testDuplicateCookie() throws Exception {
URL url = new URL("http://a.b.c/");
man.addCookieFromHeader("test=1", url);
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("test=1", s);
man.addCookieFromHeader("test=2", url);
s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("test=2", s);
}
@Test
public void testDuplicateCookie2() throws Exception {
URL url = new URL("http://a.b.c/");
man.addCookieFromHeader("test=1", url);
man.addCookieFromHeader("test2=a", url);
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("test=1; test2=a", s); // Assumes some kind of list is used
man.addCookieFromHeader("test=2", url);
man.addCookieFromHeader("test3=b", url);
s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("test2=a; test=2; test3=b", s);// Assumes some kind of list is use
// If not using a list that retains the order, then the asserts would need to change
}
/** Tests missing cookie path for a trivial URL fetch from the domain
* Note that this fails prior to a fix for BUG 38256
*
* @throws Exception if something fails
*/
@Test
public void testMissingPath0() throws Exception {
URL url = new URL("http://d.e.f/goo.html");
man.addCookieFromHeader("test=moo", url);
String s = man.getCookieHeaderForURL(new URL("http://d.e.f/"));
assertNotNull(s);
assertEquals("test=moo", s);
}
/** Tests missing cookie path for a non-trivial URL fetch from the
* domain. Note that this fails prior to a fix for BUG 38256
*
* @throws Exception if something fails
*/
@Test
public void testMissingPath1() throws Exception {
URL url = new URL("http://d.e.f/moo.html");
man.addCookieFromHeader("test=moo", url);
String s = man.getCookieHeaderForURL(new URL("http://d.e.f/goo.html"));
assertNotNull(s);
assertEquals("test=moo", s);
}
/** Tests explicit root path with a trivial URL fetch from the domain
*
* @throws Exception if something fails
*/
@Test
public void testRootPath0() throws Exception {
URL url = new URL("http://d.e.f/goo.html");
man.addCookieFromHeader("test=moo;path=/", url);
String s = man.getCookieHeaderForURL(new URL("http://d.e.f/"));
assertNotNull(s);
assertEquals("test=moo", s);
}
/** Tests explicit root path with a non-trivial URL fetch from the domain
*
* @throws Exception if something fails
*/
@Test
public void testRootPath1() throws Exception {
URL url = new URL("http://d.e.f/moo.html");
man.addCookieFromHeader("test=moo;path=/", url);
String s = man.getCookieHeaderForURL(new URL("http://d.e.f/goo.html"));
assertNotNull(s);
assertEquals("test=moo", s);
}
// Test cookie matching
@Test
public void testCookieMatching() throws Exception {
URL url = new URL("http://a.b.c:8080/TopDir/fred.jsp");
man.addCookieFromHeader("ID=abcd; Path=/TopDir", url);
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
assertEquals("ID=abcd", s);
url = new URL("http://a.b.c:8080/other.jsp");
s=man.getCookieHeaderForURL(url);
assertNull(s);
url = new URL("http://a.b.c:8080/TopDir/suub/another.jsp");
s=man.getCookieHeaderForURL(url);
assertNotNull(s);
url = new URL("http://a.b.c:8080/TopDir");
s=man.getCookieHeaderForURL(url);
assertNotNull(s);
url = new URL("http://a.b.d/");
s=man.getCookieHeaderForURL(url);
assertNull(s);
}
@Test
public void testCookieOrdering1() throws Exception {
URL url = new URL("http://order.now/sub1/moo.html");
man.addCookieFromHeader("test1=moo1;path=/", url);
// Waiting for https://issues.apache.org/jira/browse/HTTPCLIENT-1705
man.addCookieFromHeader("test2=moo2;path=/sub1", url);
man.addCookieFromHeader("test2=moo3;path=/", url);
assertEquals(3,man.getCookieCount());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
//Cookies like "test1=moo1;path=/" are invalid from the standpoint of RFC 2109 and RFC 2965 as they lack mandatory version attribute.
// The default policy treats such cookies as Netscape draft compatible. And the Netscape draft does not define any particular order
// for cookies in the cookie header.
// see https://issues.apache.org/jira/browse/HTTPCLIENT-1705
// assertEquals("test2=moo2; test1=moo1; test2=moo3", s);
}
@Test
public void testCookieOrdering2() throws Exception {
URL url = new URL("http://order.now/sub1/moo.html");
man.addCookieFromHeader("test1=moo1;", url);
man.addCookieFromHeader("test2=moo2;path=/sub1", url);
man.addCookieFromHeader("test2=moo3;path=/", url);
assertEquals(3,man.getCookieCount());
assertEquals("/sub1",man.get(0).getPath()); // Defaults to caller URL
assertEquals("/sub1",man.get(1).getPath());
assertEquals("/",man.get(2).getPath());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
HC4CookieHandler cookieHandler = (HC4CookieHandler) man.getCookieHandler();
List<org.apache.http.cookie.Cookie> c =
cookieHandler.getCookiesForUrl(man.getCookies(), url,
CookieManager.ALLOW_VARIABLE_COOKIES);
assertEquals("/sub1",c.get(0).getPath());
assertFalse(((BasicClientCookie)c.get(0)).containsAttribute(ClientCookie.PATH_ATTR));
assertEquals("/sub1",c.get(1).getPath());
assertTrue(((BasicClientCookie)c.get(1)).containsAttribute(ClientCookie.PATH_ATTR));
assertEquals("/",c.get(2).getPath());
assertEquals("test1=moo1; test2=moo2; test2=moo3", s);
}
@SuppressWarnings("deprecation") // test of deprecated item
@Test
public void testCookiePolicy2109() throws Exception {
man.setCookiePolicy(org.apache.http.client.params.CookiePolicy.RFC_2109);
man.testStarted(); // ensure policy is picked up
URL url = new URL("http://order.now/sub1/moo.html");
man.addCookieFromHeader("test1=moo1;", url);
man.addCookieFromHeader("test2=moo2;path=/sub1", url);
man.addCookieFromHeader("test2=moo3;path=/", url);
assertEquals(3,man.getCookieCount());
assertEquals("/sub1",man.get(0).getPath());
assertEquals("/sub1",man.get(1).getPath());
assertEquals("/",man.get(2).getPath());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
HC4CookieHandler cookieHandler = (HC4CookieHandler) man.getCookieHandler();
List<org.apache.http.cookie.Cookie> c =
cookieHandler.getCookiesForUrl(man.getCookies(), url,
CookieManager.ALLOW_VARIABLE_COOKIES);
assertEquals("/sub1",c.get(0).getPath());
assertFalse(((BasicClientCookie)c.get(0)).containsAttribute(ClientCookie.PATH_ATTR));
assertEquals("/sub1",c.get(1).getPath());
assertTrue(((BasicClientCookie)c.get(1)).containsAttribute(ClientCookie.PATH_ATTR));
assertEquals("/",c.get(2).getPath());
assertTrue(((BasicClientCookie)c.get(2)).containsAttribute(ClientCookie.PATH_ATTR));
assertEquals("$Version=0; test1=moo1; test2=moo2; $Path=/sub1; test2=moo3; $Path=/", s);
}
@Test
public void testCookiePolicyNetscape() throws Exception {
man.setCookiePolicy(CookieSpecs.NETSCAPE);
man.testStarted(); // ensure policy is picked up
URL url = new URL("http://www.order.now/sub1/moo.html");
man.addCookieFromHeader("test1=moo1;", url);
man.addCookieFromHeader("test2=moo2;path=/sub1", url);
man.addCookieFromHeader("test2=moo3;path=/", url);
assertEquals(3,man.getCookieCount());
assertEquals("/sub1",man.get(0).getPath());
assertEquals("/sub1",man.get(1).getPath());
assertEquals("/",man.get(2).getPath());
String s = man.getCookieHeaderForURL(url);
assertNotNull(s);
HC4CookieHandler cookieHandler = (HC4CookieHandler) man.getCookieHandler();
List<org.apache.http.cookie.Cookie> c =
cookieHandler.getCookiesForUrl(man.getCookies(), url,
CookieManager.ALLOW_VARIABLE_COOKIES);
assertEquals("/sub1",c.get(0).getPath());
assertFalse(((BasicClientCookie)c.get(0)).containsAttribute(ClientCookie.PATH_ATTR));
assertEquals("/sub1",c.get(1).getPath());
assertTrue(((BasicClientCookie)c.get(1)).containsAttribute(ClientCookie.PATH_ATTR));
assertEquals("/",c.get(2).getPath());
assertTrue(((BasicClientCookie)c.get(2)).containsAttribute(ClientCookie.PATH_ATTR));
assertEquals("test1=moo1; test2=moo2; test2=moo3", s);
}
@Test
public void testCookiePolicyIgnore() throws Exception {
man.setCookiePolicy(CookieSpecs.IGNORE_COOKIES);
man.testStarted(); // ensure policy is picked up
URL url = new URL("http://order.now/sub1/moo.html");
man.addCookieFromHeader("test1=moo1;", url);
man.addCookieFromHeader("test2=moo2;path=/sub1", url);
man.addCookieFromHeader("test2=moo3;path=/", url);
assertEquals(0,man.getCookieCount());// Cookies are ignored
Cookie cc;
cc=new Cookie("test1","moo1",null,"/sub1",false,0,false,false);
man.add(cc);
cc=new Cookie("test2","moo2",null,"/sub1",false,0,true,false);
man.add(cc);
cc=new Cookie("test3","moo3",null,"/",false,0,false,false);
man.add(cc);
assertEquals(3,man.getCookieCount());
assertEquals("/sub1",man.get(0).getPath());
assertEquals("/sub1",man.get(1).getPath());
assertEquals("/",man.get(2).getPath());
String s = man.getCookieHeaderForURL(url);
// With ignore policy, s is null as no match will occur,
// getCookieHeaderForURL will return null
assertNull(s);
HC4CookieHandler cookieHandler = (HC4CookieHandler) man.getCookieHandler();
List<org.apache.http.cookie.Cookie> c =
cookieHandler.getCookiesForUrl(man.getCookies(), url,
CookieManager.ALLOW_VARIABLE_COOKIES);
assertNotNull(c); // Make sure variable is used
// see https://issues.apache.org/jira/browse/HTTPCLIENT-1704
assertEquals(0,c.size()); // Cookies again ignored
}
@Test
public void testLoad() throws Exception{
assertEquals(0,man.getCookieCount());
man.addFile(findTestPath("testfiles/cookies.txt"));
assertEquals(3,man.getCookieCount());
int num = 0;
assertEquals("name",man.get(num).getName());
assertEquals("value",man.get(num).getValue());
assertEquals("path",man.get(num).getPath());
assertEquals("domain",man.get(num).getDomain());
assertTrue(man.get(num).getSecure());
assertEquals(num,man.get(num).getExpires());
num++;
assertEquals("name2",man.get(num).getName());
assertEquals("value2",man.get(num).getValue());
assertEquals("/",man.get(num).getPath());
assertEquals("",man.get(num).getDomain());
assertFalse(man.get(num).getSecure());
assertEquals(0,man.get(num).getExpires());
num++;
assertEquals("a",man.get(num).getName());
assertEquals("b",man.get(num).getValue());
assertEquals("d",man.get(num).getPath());
assertEquals("c",man.get(num).getDomain());
assertTrue(man.get(num).getSecure());
assertEquals(0,man.get(num).getExpires()); // Show that maxlong now saved as 0
}
}