Examples of CookieIdentityComparator


Examples of org.apache.http.cookie.CookieIdentityComparator

        Assert.assertFalse(comparator.compare(c3, c4) == 0);
    }

    @Test
    public void testCookieIdentityComparasionByNameAndNullDomain() {
        final CookieIdentityComparator comparator = new CookieIdentityComparator();
        final BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        c1.setDomain(null);
        final BasicClientCookie c2 = new BasicClientCookie("name", "value2");
        c2.setDomain(null);
        Assert.assertTrue(comparator.compare(c1, c2) == 0);

        final BasicClientCookie c3 = new BasicClientCookie("name", "value1");
        c3.setDomain("www.domain.com");
        final BasicClientCookie c4 = new BasicClientCookie("name", "value2");
        c4.setDomain(null);
        Assert.assertFalse(comparator.compare(c3, c4) == 0);
    }
View Full Code Here

Examples of org.apache.http.cookie.CookieIdentityComparator

        Assert.assertFalse(comparator.compare(c3, c4) == 0);
    }

    @Test
    public void testCookieIdentityComparasionByNameAndLocalHost() {
        final CookieIdentityComparator comparator = new CookieIdentityComparator();
        final BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        c1.setDomain("localhost");
        final BasicClientCookie c2 = new BasicClientCookie("name", "value2");
        c2.setDomain("localhost");
        Assert.assertTrue(comparator.compare(c1, c2) == 0);

        final BasicClientCookie c3 = new BasicClientCookie("name", "value1");
        c3.setDomain("localhost.local");
        final BasicClientCookie c4 = new BasicClientCookie("name", "value2");
        c4.setDomain("localhost");
        Assert.assertTrue(comparator.compare(c3, c4) == 0);
    }
View Full Code Here

Examples of org.apache.http.cookie.CookieIdentityComparator

        Assert.assertTrue(comparator.compare(c3, c4) == 0);
    }

    @Test
    public void testCookieIdentityComparasionByNameDomainAndPath() {
        final CookieIdentityComparator comparator = new CookieIdentityComparator();
        final BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        c1.setDomain("www.domain.com");
        c1.setPath("/whatever");
        final BasicClientCookie c2 = new BasicClientCookie("name", "value2");
        c2.setDomain("www.domain.com");
        c2.setPath("/whatever");
        Assert.assertTrue(comparator.compare(c1, c2) == 0);

        final BasicClientCookie c3 = new BasicClientCookie("name", "value1");
        c3.setDomain("www.domain.com");
        c3.setPath("/whatever");
        final BasicClientCookie c4 = new BasicClientCookie("name", "value2");
        c4.setDomain("domain.com");
        c4.setPath("/whatever-not");
        Assert.assertFalse(comparator.compare(c3, c4) == 0);
    }
View Full Code Here

Examples of org.apache.http.cookie.CookieIdentityComparator

        Assert.assertFalse(comparator.compare(c3, c4) == 0);
    }

    @Test
    public void testCookieIdentityComparasionByNameDomainAndNullPath() {
        final CookieIdentityComparator comparator = new CookieIdentityComparator();
        final BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        c1.setDomain("www.domain.com");
        c1.setPath("/");
        final BasicClientCookie c2 = new BasicClientCookie("name", "value2");
        c2.setDomain("www.domain.com");
        c2.setPath(null);
        Assert.assertTrue(comparator.compare(c1, c2) == 0);

        final BasicClientCookie c3 = new BasicClientCookie("name", "value1");
        c3.setDomain("www.domain.com");
        c3.setPath("/whatever");
        final BasicClientCookie c4 = new BasicClientCookie("name", "value2");
        c4.setDomain("domain.com");
        c4.setPath(null);
        Assert.assertFalse(comparator.compare(c3, c4) == 0);
    }
View Full Code Here

Examples of org.apache.http.cookie.CookieIdentityComparator

    @GuardedBy("this")
    private final TreeSet<Cookie> cookies;

    public BasicCookieStore() {
        super();
        this.cookies = new TreeSet<Cookie>(new CookieIdentityComparator());
    }
View Full Code Here

Examples of org.apache.http.cookie.CookieIdentityComparator

    private final TreeSet<Cookie> cookies;

    public OurBasicCookieStore() {
      super();
      this.cookies = new TreeSet<Cookie>(new CookieIdentityComparator());
    }
View Full Code Here

Examples of org.apache.http.cookie.CookieIdentityComparator

     * Default constructor.
     */
    public BasicCookieStore() {
        super();
        this.cookies = new ArrayList<Cookie>();
        this.cookieComparator = new CookieIdentityComparator();
    }
View Full Code Here

Examples of org.apache.http.cookie.CookieIdentityComparator

    @GuardedBy("this")
    private final TreeSet<Cookie> cookies;

    public BasicCookieStore() {
        super();
        this.cookies = new TreeSet<Cookie>(new CookieIdentityComparator());
    }
View Full Code Here

Examples of org.apache.http.cookie.CookieIdentityComparator

*/
public class TestCookieIdentityComparator {

    @Test
    public void testCookieIdentityComparasionByName() {
        CookieIdentityComparator comparator = new CookieIdentityComparator();
        BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        BasicClientCookie c2 = new BasicClientCookie("name", "value2");
        Assert.assertTrue(comparator.compare(c1, c2) == 0);

        BasicClientCookie c3 = new BasicClientCookie("name1", "value");
        BasicClientCookie c4 = new BasicClientCookie("name2", "value");
        Assert.assertFalse(comparator.compare(c3, c4) == 0);
    }
View Full Code Here

Examples of org.apache.http.cookie.CookieIdentityComparator

        Assert.assertFalse(comparator.compare(c3, c4) == 0);
    }

    @Test
    public void testCookieIdentityComparasionByNameAndDomain() {
        CookieIdentityComparator comparator = new CookieIdentityComparator();
        BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        c1.setDomain("www.domain.com");
        BasicClientCookie c2 = new BasicClientCookie("name", "value2");
        c2.setDomain("www.domain.com");
        Assert.assertTrue(comparator.compare(c1, c2) == 0);

        BasicClientCookie c3 = new BasicClientCookie("name", "value1");
        c3.setDomain("www.domain.com");
        BasicClientCookie c4 = new BasicClientCookie("name", "value2");
        c4.setDomain("domain.com");
        Assert.assertFalse(comparator.compare(c3, c4) == 0);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.