Skip to content

Commit

Permalink
Made BasicClientCookie, BasicClientCookie2, and BasicCookieStore Seri…
Browse files Browse the repository at this point in the history
…alizable

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/branches/4.0.x@988723 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
ok2c committed Aug 24, 2010
1 parent c43a508 commit 25b567d
Show file tree
Hide file tree
Showing 4 changed files with 108 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

package org.apache.http.impl.client;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Date;
Expand All @@ -46,7 +47,9 @@
* @since 4.0
*/
@ThreadSafe
public class BasicCookieStore implements CookieStore {
public class BasicCookieStore implements CookieStore, Serializable {

private static final long serialVersionUID = -1113466491038527240L;

@GuardedBy("this")
private final ArrayList<Cookie> cookies;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

package org.apache.http.impl.cookie;

import java.io.Serializable;
import java.util.Date;
import java.util.HashMap;
import java.util.Locale;
Expand All @@ -43,7 +44,9 @@
* @since 4.0
*/
@NotThreadSafe
public class BasicClientCookie implements SetCookie, ClientCookie, Cloneable {
public class BasicClientCookie implements SetCookie, ClientCookie, Cloneable, Serializable {

private static final long serialVersionUID = -3869795591041535538L;

/**
* Default Constructor taking a name and a value. The value may be null.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
@NotThreadSafe
public class BasicClientCookie2 extends BasicClientCookie implements SetCookie2 {

private static final long serialVersionUID = -6913749905211574650L;

private String commentURL;
private int[] ports;
private boolean discard;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/*
* ====================================================================
* 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 java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.Calendar;
import java.util.List;

import junit.framework.TestCase;

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

/**
* Unit tests for {@link BasicCookieStore}.
*/
public class TestBasicCookieStore extends TestCase {

public void testBasics() throws Exception {
BasicCookieStore store = new BasicCookieStore();
store.addCookie(new BasicClientCookie("name1", "value1"));
store.addCookies(new BasicClientCookie[] {new BasicClientCookie("name2", "value2")});
List<Cookie> l = store.getCookies();
assertNotNull(l);
assertEquals(2, l.size());
assertEquals("name1", l.get(0).getName());
assertEquals("name2", l.get(1).getName());
store.clear();
l = store.getCookies();
assertNotNull(l);
assertEquals(0, l.size());
}

public void testExpiredCookie() throws Exception {
BasicCookieStore store = new BasicCookieStore();
BasicClientCookie cookie = new BasicClientCookie("name1", "value1");

Calendar c = Calendar.getInstance();
c.add(Calendar.DAY_OF_YEAR, -10);
cookie.setExpiryDate(c.getTime());
store.addCookie(cookie);
List<Cookie> l = store.getCookies();
assertNotNull(l);
assertEquals(0, l.size());
}

public void testSerialization() throws Exception {
BasicCookieStore orig = new BasicCookieStore();
orig.addCookie(new BasicClientCookie("name1", "value1"));
orig.addCookie(new BasicClientCookie("name2", "value2"));
ByteArrayOutputStream outbuffer = new ByteArrayOutputStream();
ObjectOutputStream outstream = new ObjectOutputStream(outbuffer);
outstream.writeObject(orig);
outstream.close();
byte[] raw = outbuffer.toByteArray();
ByteArrayInputStream inbuffer = new ByteArrayInputStream(raw);
ObjectInputStream instream = new ObjectInputStream(inbuffer);
BasicCookieStore clone = (BasicCookieStore) instream.readObject();
List<Cookie> expected = orig.getCookies();
List<Cookie> clones = clone.getCookies();
assertNotNull(expected);
assertNotNull(clones);
assertEquals(expected.size(), clones.size());
for (int i = 0; i < expected.size(); i++) {
assertEquals(expected.get(i).getName(), clones.get(i).getName());
assertEquals(expected.get(i).getValue(), clones.get(i).getValue());
}
}

}

0 comments on commit 25b567d

Please sign in to comment.