Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/util/Calendar/JavatimeTest.java
41149 views
1
/*
2
* Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/*
25
*@test
26
*@bug 8007520 8008254
27
*@summary Test those bridge methods to/from java.time date/time classes
28
* @key randomness
29
*/
30
31
import java.time.Instant;
32
import java.time.LocalDateTime;
33
import java.time.ZonedDateTime;
34
import java.time.ZoneId;
35
import java.time.ZoneOffset;
36
import java.util.Calendar;
37
import java.util.Date;
38
import java.util.GregorianCalendar;
39
import java.util.Random;
40
import java.util.TimeZone;
41
42
public class JavatimeTest {
43
44
static final int NANOS_PER_SECOND = 1000_000_000;
45
46
public static void main(String[] args) throws Throwable {
47
48
int N = 10000;
49
@SuppressWarnings("deprecation")
50
long t1970 = new java.util.Date(70, 0, 01).getTime();
51
Random r = new Random();
52
for (int i = 0; i < N; i++) {
53
int days = r.nextInt(50) * 365 + r.nextInt(365);
54
long secs = t1970 + days * 86400 + r.nextInt(86400);
55
int nanos = r.nextInt(NANOS_PER_SECOND);
56
int nanos_ms = nanos / 1000000 * 1000000; // millis precision
57
long millis = secs * 1000 + r.nextInt(1000);
58
LocalDateTime ldt = LocalDateTime.ofEpochSecond(secs, nanos, ZoneOffset.UTC);
59
LocalDateTime ldt_ms = LocalDateTime.ofEpochSecond(secs, nanos_ms, ZoneOffset.UTC);
60
Instant inst = Instant.ofEpochSecond(secs, nanos);
61
Instant inst_ms = Instant.ofEpochSecond(secs, nanos_ms);
62
///////////// java.util.Date /////////////////////////
63
Date jud = new java.util.Date(millis);
64
Instant inst0 = jud.toInstant();
65
if (jud.getTime() != inst0.toEpochMilli()
66
|| !jud.equals(Date.from(inst0))) {
67
System.out.printf("ms: %16d ns: %10d ldt:[%s]%n", millis, nanos, ldt);
68
throw new RuntimeException("FAILED: j.u.d -> instant -> j.u.d");
69
}
70
// roundtrip only with millis precision
71
Date jud0 = Date.from(inst_ms);
72
if (jud0.getTime() != inst_ms.toEpochMilli()
73
|| !inst_ms.equals(jud0.toInstant())) {
74
System.out.printf("ms: %16d ns: %10d ldt:[%s]%n", millis, nanos, ldt);
75
throw new RuntimeException("FAILED: instant -> j.u.d -> instant");
76
}
77
//////////// java.util.GregorianCalendar /////////////
78
GregorianCalendar cal = new GregorianCalendar();
79
// non-roundtrip of tz name between j.u.tz and j.t.zid
80
cal.setTimeZone(TimeZone.getTimeZone(ZoneId.systemDefault()));
81
cal.setGregorianChange(new java.util.Date(Long.MIN_VALUE));
82
cal.setFirstDayOfWeek(Calendar.MONDAY);
83
cal.setMinimalDaysInFirstWeek(4);
84
cal.setTimeInMillis(millis);
85
ZonedDateTime zdt0 = cal.toZonedDateTime();
86
if (cal.getTimeInMillis() != zdt0.toInstant().toEpochMilli()
87
|| !cal.equals(GregorianCalendar.from(zdt0))) {
88
System.out.println("cal:" + cal);
89
System.out.println("zdt:" + zdt0);
90
System.out.println("calNew:" + GregorianCalendar.from(zdt0));
91
System.out.printf("ms: %16d ns: %10d ldt:[%s]%n", millis, nanos, ldt);
92
throw new RuntimeException("FAILED: gcal -> zdt -> gcal");
93
}
94
inst0 = cal.toInstant();
95
if (cal.getTimeInMillis() != inst0.toEpochMilli()) {
96
System.out.printf("ms: %16d ns: %10d ldt:[%s]%n", millis, nanos, ldt);
97
throw new RuntimeException("FAILED: gcal -> zdt");
98
}
99
ZonedDateTime zdt = ZonedDateTime.of(ldt_ms, ZoneId.systemDefault());
100
GregorianCalendar cal0 = GregorianCalendar.from(zdt);
101
if (zdt.toInstant().toEpochMilli() != cal0.getTimeInMillis()
102
|| !zdt.equals(GregorianCalendar.from(zdt).toZonedDateTime())) {
103
System.out.printf("ms: %16d ns: %10d ldt:[%s]%n", millis, nanos, ldt);
104
throw new RuntimeException("FAILED: zdt -> gcal -> zdt");
105
}
106
}
107
108
///////////// java.util.TimeZone /////////////////////////
109
for (String zidStr : TimeZone.getAvailableIDs()) {
110
// TBD: tzdt intergration
111
if (zidStr.startsWith("SystemV")
112
|| zidStr.contains("Riyadh8")
113
|| zidStr.equals("US/Pacific-New")
114
|| zidStr.equals("EST")
115
|| zidStr.equals("HST")
116
|| zidStr.equals("MST")) {
117
continue;
118
}
119
ZoneId zid = ZoneId.of(zidStr, ZoneId.SHORT_IDS);
120
if (!zid.equals(TimeZone.getTimeZone(zid).toZoneId())) {
121
throw new RuntimeException("FAILED: zid -> tz -> zid :" + zidStr);
122
}
123
TimeZone tz = TimeZone.getTimeZone(zidStr);
124
// no round-trip for alias and "GMT"
125
if (!tz.equals(TimeZone.getTimeZone(tz.toZoneId()))
126
&& !ZoneId.SHORT_IDS.containsKey(zidStr)
127
&& !zidStr.startsWith("GMT")) {
128
throw new RuntimeException("FAILED: tz -> zid -> tz :" + zidStr);
129
}
130
}
131
System.out.println("Passed!");
132
}
133
}
134
135