View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.net.ntp;
18  
19  import java.util.Calendar;
20  import java.util.Date;
21  
22  import junit.framework.TestCase;
23  
24  /**
25   * Test class that validates assertions for the basic TimeStamp operations and comparisons.
26   */
27  public class TimeStampTest extends TestCase {
28  
29      private static final String TIME1 = "c1a9ae1c.cf6ac48d"; // Tue, Dec 17 2002 14:07:24.810 UTC
30      private static final String TIME2 = "c1a9ae1c.cf6ac48f"; // Tue, Dec 17 2002 14:07:24.810 UTC
31      private static final String TIME3 = "c1a9ae1d.cf6ac48e"; // Tue, Dec 17 2002 14:07:25.810 UTC
32  
33      public void testCompare() {
34  
35          final TimeStamp ts1 = new TimeStamp(TIME1); // Tue, Dec 17 2002 14:07:24.810 UTC
36          final TimeStamp ts2 = new TimeStamp(TIME1);
37          final TimeStamp ts3 = new TimeStamp(TIME2); // Tue, Dec 17 2002 14:07:24.810 UTC
38          final TimeStamp ts4 = new TimeStamp(TIME3); // Tue, Dec 17 2002 14:07:25.810 UTC
39  
40          // do assertion tests on TimeStamp class
41          assertEquals("equals(1,2)", ts1, ts2);
42          assertEquals("compareTo(1,2)", 0, ts1.compareTo(ts2));
43          assertEquals("ntpValue(1,2)", ts1.ntpValue(), ts2.ntpValue());
44          assertEquals("hashCode(1,2)", ts1.hashCode(), ts2.hashCode());
45          assertEquals("ts1==ts1", ts1, ts1);
46  
47          // timestamps in ts1 (TIME1) and ts3 (TIME2) are only off by the smallest
48          // fraction of a second (~200 picoseconds) so the times are not equal but
49          // when converted to Java dates (in milliseconds) they will be equal.
50          assertFalse("ts1 != ts3", ts1.equals(ts3));
51          assertEquals("compareTo(1,3)", -1, ts1.compareTo(ts3));
52          assertEquals("seconds", ts1.getSeconds(), ts3.getSeconds());
53          assertTrue("fraction", ts1.getFraction() != ts3.getFraction());
54          assertTrue("ntpValue(1,3)", ts1.ntpValue() != ts3.ntpValue());
55          assertTrue("hashCode(1,3)", ts1.hashCode() != ts3.hashCode());
56          final long time1 = ts1.getTime();
57          final long time3 = ts3.getTime();
58          assertEquals("equals(time1,3)", time1, time3); // ntpTime1 != ntpTime3 but JavaTime(t1) == JavaTime(t3)...
59  
60          assertFalse("ts3 != ts4", ts3.equals(ts4));
61          assertTrue("time3 != ts4.time", time3 != ts4.getTime());
62      }
63  
64      public void testDateConversion() {
65          // convert current date to NtpTimeStamp then compare Java date
66          // computed from NTP timestamp with original Java date.
67          final Calendar refCal = Calendar.getInstance(java.util.TimeZone.getTimeZone("UTC"));
68          final Date refDate = refCal.getTime();
69          final TimeStamp ts = new TimeStamp(refDate);
70          assertEquals("refDate.getTime()", refDate.getTime(), ts.getTime());
71          final Date tsDate = ts.getDate();
72          assertEquals(refDate, tsDate);
73      }
74  
75      public void testNotSame() {
76          final TimeStamp time = TimeStamp.getCurrentTime();
77          Object other = Integer.valueOf(0);
78          if (time.equals(other)) {
79              fail("TimeStamp cannot equal Date");
80          }
81          other = null;
82          if (time.equals(other)) {
83              fail("TimeStamp cannot equal null");
84          }
85      }
86  
87      public void testUTCString() {
88          final TimeStamp ts1 = new TimeStamp(TIME1); // Tue, Dec 17 2002 14:07:24.810 UTC
89          final String actual = ts1.toUTCString();
90          assertEquals("Tue, Dec 17 2002 14:07:24.810 UTC", actual);
91      }
92  
93  }