alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (TestCookieIdentityComparator.java)

This example source code file (TestCookieIdentityComparator.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java tags/keywords

basicclientcookie, cookieidentitycomparator, string, test, testcase, testcookieidentitycomparator

The TestCookieIdentityComparator.java example source code

/*
 * ====================================================================
 *
 *  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.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * <http://www.apache.org/>.
 */

package org.apache.http.impl.client;

import org.apache.http.cookie.CookieIdentityComparator;
import org.apache.http.impl.cookie.BasicClientCookie;

import junit.framework.*;

/**
 * Simple tests for {@link CookieIdentityComparator}.
 * 
 * @version $Id:$
 */
public class TestCookieIdentityComparator extends TestCase {

    // ------------------------------------------------------------ Constructor
    public TestCookieIdentityComparator(String testName) {
        super(testName);
    }

    // ------------------------------------------------------------------- Main
    public static void main(String args[]) {
        String[] testCaseName = { TestCookieIdentityComparator.class.getName() };
        junit.textui.TestRunner.main(testCaseName);
    }

    // ------------------------------------------------------- TestCase Methods

    public static Test suite() {
        return new TestSuite(TestCookieIdentityComparator.class);
    }


    // ----------------------------------------------------------- Test Methods

    public void testCookieIdentityComparasionByName() {
        CookieIdentityComparator comparator = new CookieIdentityComparator(); 
        BasicClientCookie c1 = new BasicClientCookie("name", "value1"); 
        BasicClientCookie c2 = new BasicClientCookie("name", "value2"); 
        assertTrue(comparator.compare(c1, c2) == 0);
        
        BasicClientCookie c3 = new BasicClientCookie("name1", "value"); 
        BasicClientCookie c4 = new BasicClientCookie("name2", "value"); 
        assertFalse(comparator.compare(c3, c4) == 0);
    }

    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");
        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");
        assertFalse(comparator.compare(c3, c4) == 0);
    }

    public void testCookieIdentityComparasionByNameAndNullDomain() {
        CookieIdentityComparator comparator = new CookieIdentityComparator(); 
        BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        c1.setDomain(null);
        BasicClientCookie c2 = new BasicClientCookie("name", "value2"); 
        c2.setDomain(null);
        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(null);
        assertFalse(comparator.compare(c3, c4) == 0);
    }

    public void testCookieIdentityComparasionByNameAndLocalHost() {
        CookieIdentityComparator comparator = new CookieIdentityComparator(); 
        BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        c1.setDomain("localhost");
        BasicClientCookie c2 = new BasicClientCookie("name", "value2"); 
        c2.setDomain("localhost");
        assertTrue(comparator.compare(c1, c2) == 0);
        
        BasicClientCookie c3 = new BasicClientCookie("name", "value1"); 
        c3.setDomain("localhost.local");
        BasicClientCookie c4 = new BasicClientCookie("name", "value2"); 
        c4.setDomain("localhost");
        assertTrue(comparator.compare(c3, c4) == 0);
    }

    public void testCookieIdentityComparasionByNameDomainAndPath() {
        CookieIdentityComparator comparator = new CookieIdentityComparator(); 
        BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        c1.setDomain("www.domain.com");
        c1.setPath("/whatever");
        BasicClientCookie c2 = new BasicClientCookie("name", "value2"); 
        c2.setDomain("www.domain.com");
        c2.setPath("/whatever");
        assertTrue(comparator.compare(c1, c2) == 0);
        
        BasicClientCookie c3 = new BasicClientCookie("name", "value1"); 
        c3.setDomain("www.domain.com");
        c3.setPath("/whatever");
        BasicClientCookie c4 = new BasicClientCookie("name", "value2"); 
        c4.setDomain("domain.com");
        c4.setPath("/whatever-not");
        assertFalse(comparator.compare(c3, c4) == 0);
    }

    public void testCookieIdentityComparasionByNameDomainAndNullPath() {
        CookieIdentityComparator comparator = new CookieIdentityComparator(); 
        BasicClientCookie c1 = new BasicClientCookie("name", "value1");
        c1.setDomain("www.domain.com");
        c1.setPath("/");
        BasicClientCookie c2 = new BasicClientCookie("name", "value2"); 
        c2.setDomain("www.domain.com");
        c2.setPath(null);
        assertTrue(comparator.compare(c1, c2) == 0);
        
        BasicClientCookie c3 = new BasicClientCookie("name", "value1"); 
        c3.setDomain("www.domain.com");
        c3.setPath("/whatever");
        BasicClientCookie c4 = new BasicClientCookie("name", "value2"); 
        c4.setDomain("domain.com");
        c4.setPath(null);
        assertFalse(comparator.compare(c3, c4) == 0);
    }

}

Other Java examples (source code examples)

Here is a short list of links related to this Java TestCookieIdentityComparator.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.