TestDateUtils arrived here from core
git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@548073 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
848ff6f652
commit
0f0128450b
|
@ -42,6 +42,7 @@ public class TestAllCookieImpl extends TestCase {
|
|||
|
||||
public static Test suite() {
|
||||
TestSuite suite = new TestSuite();
|
||||
suite.addTest(TestDateUtils.suite());
|
||||
suite.addTest(TestAbstractCookieSpec.suite());
|
||||
suite.addTest(TestBasicCookieAttribHandlers.suite());
|
||||
suite.addTest(TestNetscapeCookieAttribHandlers.suite());
|
||||
|
|
|
@ -43,7 +43,7 @@ import org.apache.http.cookie.Cookie;
|
|||
import org.apache.http.cookie.CookieAttributeHandler;
|
||||
import org.apache.http.cookie.CookieOrigin;
|
||||
import org.apache.http.cookie.MalformedCookieException;
|
||||
import org.apache.http.util.DateUtils;
|
||||
|
||||
|
||||
public class TestBasicCookieAttribHandlers extends TestCase {
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ import org.apache.http.cookie.CookieOrigin;
|
|||
import org.apache.http.cookie.CookieSpec;
|
||||
import org.apache.http.cookie.MalformedCookieException;
|
||||
import org.apache.http.message.BasicHeader;
|
||||
import org.apache.http.util.DateUtils;
|
||||
|
||||
|
||||
/**
|
||||
* Test cases for BrowserCompatSpec
|
||||
|
|
|
@ -40,7 +40,7 @@ import org.apache.http.cookie.CookieOrigin;
|
|||
import org.apache.http.cookie.CookieSpec;
|
||||
import org.apache.http.cookie.MalformedCookieException;
|
||||
import org.apache.http.message.BasicHeader;
|
||||
import org.apache.http.util.DateUtils;
|
||||
|
||||
|
||||
/**
|
||||
* Test cases for RFC2109 cookie spec
|
||||
|
|
|
@ -0,0 +1,160 @@
|
|||
/*
|
||||
* $HeadURL$
|
||||
* $Revision$
|
||||
* $Date$
|
||||
*
|
||||
* ====================================================================
|
||||
* 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.cookie;
|
||||
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestCase;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
/**
|
||||
* Unit tests for {@link DateUtils}.
|
||||
*
|
||||
* @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
|
||||
*/
|
||||
public class TestDateUtils extends TestCase {
|
||||
|
||||
public TestDateUtils(String testName) {
|
||||
super(testName);
|
||||
}
|
||||
|
||||
public static void main(String args[]) {
|
||||
String[] testCaseName = { TestDateUtils.class.getName() };
|
||||
junit.textui.TestRunner.main(testCaseName);
|
||||
}
|
||||
|
||||
public static Test suite() {
|
||||
return new TestSuite(TestDateUtils.class);
|
||||
}
|
||||
|
||||
public void testBasicDateParse() throws Exception {
|
||||
Calendar calendar = Calendar.getInstance();
|
||||
calendar.setTimeZone(DateUtils.GMT);
|
||||
calendar.set(2005, Calendar.OCTOBER, 14, 0, 0, 0);
|
||||
calendar.set(Calendar.MILLISECOND, 0);
|
||||
Date date1 = calendar.getTime();
|
||||
|
||||
String[] formats = new String[] {
|
||||
DateUtils.PATTERN_RFC1123
|
||||
};
|
||||
Date date2 = DateUtils.parseDate("Fri, 14 Oct 2005 00:00:00 GMT", formats, null);
|
||||
assertEquals(date1, date2);
|
||||
date2 = DateUtils.parseDate("Fri, 14 Oct 2005 00:00:00 GMT", formats);
|
||||
assertEquals(date1, date2);
|
||||
date2 = DateUtils.parseDate("Fri, 14 Oct 2005 00:00:00 GMT");
|
||||
assertEquals(date1, date2);
|
||||
}
|
||||
|
||||
public void testInvalidInput() throws Exception {
|
||||
try {
|
||||
DateUtils.parseDate(null, null, null);
|
||||
fail("IllegalArgumentException should habe been thrown");
|
||||
} catch (IllegalArgumentException ex) {
|
||||
// expected
|
||||
}
|
||||
try {
|
||||
DateUtils.parseDate("Fri, 14 Oct 2005 00:00:00 GMT", new String[] {}, null);
|
||||
fail("DateParseException should habe been thrown");
|
||||
} catch (DateParseException ex) {
|
||||
// expected
|
||||
}
|
||||
try {
|
||||
DateUtils.formatDate(null);
|
||||
fail("IllegalArgumentException should habe been thrown");
|
||||
} catch (IllegalArgumentException ex) {
|
||||
// expected
|
||||
}
|
||||
try {
|
||||
DateUtils.formatDate(new Date(), null);
|
||||
fail("IllegalArgumentException should habe been thrown");
|
||||
} catch (IllegalArgumentException ex) {
|
||||
// expected
|
||||
}
|
||||
}
|
||||
|
||||
public void testTwoDigitYearDateParse() throws Exception {
|
||||
Calendar calendar = Calendar.getInstance();
|
||||
calendar.setTimeZone(DateUtils.GMT);
|
||||
calendar.set(2005, Calendar.OCTOBER, 14, 0, 0, 0);
|
||||
calendar.set(Calendar.MILLISECOND, 0);
|
||||
Date date1 = calendar.getTime();
|
||||
|
||||
String[] formats = new String[] {
|
||||
DateUtils.PATTERN_RFC1036
|
||||
};
|
||||
Date date2 = DateUtils.parseDate("Friday, 14-Oct-05 00:00:00 GMT", formats, null);
|
||||
assertEquals(date1, date2);
|
||||
|
||||
calendar.set(1900, Calendar.JANUARY, 0, 0, 0, 0);
|
||||
calendar.set(Calendar.MILLISECOND, 0);
|
||||
Date startDate = calendar.getTime();
|
||||
|
||||
calendar.set(1905, Calendar.OCTOBER, 14, 0, 0, 0);
|
||||
calendar.set(Calendar.MILLISECOND, 0);
|
||||
date1 = calendar.getTime();
|
||||
|
||||
date2 = DateUtils.parseDate("Friday, 14-Oct-05 00:00:00 GMT", formats, startDate);
|
||||
assertEquals(date1, date2);
|
||||
}
|
||||
|
||||
public void testParseQuotedDate() throws Exception {
|
||||
Calendar calendar = Calendar.getInstance();
|
||||
calendar.setTimeZone(DateUtils.GMT);
|
||||
calendar.set(2005, Calendar.OCTOBER, 14, 0, 0, 0);
|
||||
calendar.set(Calendar.MILLISECOND, 0);
|
||||
Date date1 = calendar.getTime();
|
||||
|
||||
String[] formats = new String[] {
|
||||
DateUtils.PATTERN_RFC1123
|
||||
};
|
||||
Date date2 = DateUtils.parseDate("'Fri, 14 Oct 2005 00:00:00 GMT'", formats);
|
||||
assertEquals(date1, date2);
|
||||
}
|
||||
|
||||
public void testBasicDateFormat() throws Exception {
|
||||
Calendar calendar = Calendar.getInstance();
|
||||
calendar.setTimeZone(DateUtils.GMT);
|
||||
calendar.set(2005, Calendar.OCTOBER, 14, 0, 0, 0);
|
||||
calendar.set(Calendar.MILLISECOND, 0);
|
||||
Date date = calendar.getTime();
|
||||
|
||||
assertEquals("Fri, 14 Oct 2005 00:00:00 GMT", DateUtils.formatDate(date));
|
||||
assertEquals("Fri, 14 Oct 2005 00:00:00 GMT", DateUtils.formatDate(date, DateUtils.PATTERN_RFC1123));
|
||||
}
|
||||
|
||||
public void testConstructor() {
|
||||
new DateParseException();
|
||||
new DateParseException("Oppsie");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue