1   /*
2    * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//httpclient/src/test/org/apache/commons/httpclient/cookie/TestDateParser.java,v 1.1 2004/12/24 20:36:13 olegk Exp $
3    * $Revision: 155418 $
4    * $Date: 2005-02-26 08:01:52 -0500 (Sat, 26 Feb 2005) $
5    * ====================================================================
6    *
7    *  Copyright 1999-2004 The Apache Software Foundation
8    *
9    *  Licensed under the Apache License, Version 2.0 (the "License");
10   *  you may not use this file except in compliance with the License.
11   *  You may obtain a copy of the License at
12   *
13   *      http://www.apache.org/licenses/LICENSE-2.0
14   *
15   *  Unless required by applicable law or agreed to in writing, software
16   *  distributed under the License is distributed on an "AS IS" BASIS,
17   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   *  See the License for the specific language governing permissions and
19   *  limitations under the License.
20   * ====================================================================
21   *
22   * This software consists of voluntary contributions made by many
23   * individuals on behalf of the Apache Software Foundation.  For more
24   * information on the Apache Software Foundation, please see
25   * <http://www.apache.org/>.
26   *
27   */
28  
29  package org.apache.commons.httpclient.cookie;
30  
31  import java.util.ArrayList;
32  import java.util.Calendar;
33  import java.util.List;
34  
35  import org.apache.commons.httpclient.util.DateUtil;
36  
37  import junit.framework.Test;
38  import junit.framework.TestCase;
39  import junit.framework.TestSuite;
40  
41  
42  /***
43   * Test cases for expiry date parsing
44   *
45   * @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
46   * 
47   * @version $Revision: 155418 $
48   */
49  public class TestDateParser extends TestCase {
50  
51      // ------------------------------------------------------------ Constructor
52  
53      public TestDateParser(String name) {
54          super(name);
55      }
56  
57      // ------------------------------------------------------- TestCase Methods
58  
59      public static Test suite() {
60          return new TestSuite(TestDateParser.class);
61      }
62  
63      private static final String PATTERN = "EEE, dd-MMM-yy HH:mm:ss zzz";
64      private static final List PATTERNS = new ArrayList();
65      
66      static {
67          PATTERNS.add(PATTERN);
68      }
69      
70      public void testFourDigitYear() throws Exception {
71          Calendar calendar = Calendar.getInstance();
72          calendar.setTime(DateUtil.parseDate("Thu, 23-Dec-2004 24:00:00 CET", PATTERNS));
73          assertEquals(2004, calendar.get(Calendar.YEAR));
74      }
75  
76      public void testThreeDigitYear() throws Exception {
77          Calendar calendar = Calendar.getInstance();
78          calendar.setTime(DateUtil.parseDate("Thu, 23-Dec-994 24:00:00 CET", PATTERNS));
79          assertEquals(994, calendar.get(Calendar.YEAR));
80      }
81  
82      public void testTwoDigitYear() throws Exception {
83          Calendar calendar = Calendar.getInstance();
84          calendar.setTime(DateUtil.parseDate("Thu, 23-Dec-04 24:00:00 CET", PATTERNS));
85          assertEquals(2004, calendar.get(Calendar.YEAR));
86  
87          calendar.setTime(DateUtil.parseDate("Thu, 23-Dec-94 24:00:00 CET", PATTERNS));
88          assertEquals(2094, calendar.get(Calendar.YEAR));
89      }
90  
91  }
92