TestTimeZoneUtils.java
/*
* Licensed 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.
*/
package com.facebook.presto.util;
import com.facebook.presto.common.type.TimeZoneKey;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.testng.annotations.Test;
import java.time.ZoneId;
import java.util.TreeSet;
import static com.facebook.presto.common.type.DateTimeEncoding.packDateTimeWithZone;
import static com.facebook.presto.common.type.DateTimeEncoding.unpackMillisUtc;
import static com.facebook.presto.common.type.DateTimeEncoding.unpackZoneKey;
import static com.facebook.presto.common.type.TimeZoneKey.isUtcZoneId;
import static com.facebook.presto.util.DateTimeZoneIndex.getDateTimeZone;
import static com.facebook.presto.util.DateTimeZoneIndex.packDateTimeWithZone;
import static com.facebook.presto.util.DateTimeZoneIndex.unpackDateTimeZone;
import static java.lang.String.format;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.fail;
public class TestTimeZoneUtils
{
@Test
public void testNamedZones()
{
TimeZoneKey.getTimeZoneKey("GMT-13:00");
TreeSet<String> jdkZones = new TreeSet<>(ZoneId.getAvailableZoneIds());
for (String zoneId : new TreeSet<>(jdkZones)) {
if (zoneId.startsWith("Etc/") || zoneId.startsWith("GMT") || zoneId.startsWith("SystemV/")) {
continue;
}
if (zoneId.equals("Canada/East-Saskatchewan")) {
// TODO: remove once minimum Java version is increased to 8u161 and 9.0.4, see PrestoSystemRequirement.
// Removed from tzdata since 2017c.
// Java updated to 2017c since 8u161, 9.0.4.
// All Java 10+ are on later versions
continue;
}
if (zoneId.equals("America/Godthab")) {
// TODO: Remove once minimum Java version is increased to 8u261 and 11.0.8
// https://www.oracle.com/java/technologies/tzdata-versions.html
continue;
}
if (zoneId.equals("US/Pacific-New")) {
// TODO: Remove once minimum Java version is increased 11.0.10
// https://www.oracle.com/java/technologies/tzdata-versions.html
// http://mm.icann.org/pipermail/tz-announce/2020-October/000059.html
continue;
}
if (zoneId.equals("Europe/Zaporozhye")) {
// TODO: Remove once minimum Java version is increased 17.0.7
continue;
}
if (zoneId.equals("Europe/Uzhgorod")) {
// TODO: Remove once minimum Java version is increased 17.0.7
continue;
}
if (zoneId.equals("Europe/Kiev")) {
// TODO: Remove once minimum Java version is increased 17.0.7
continue;
}
if (zoneId.equals("Europe/Kyiv")) {
// TODO: Remove once minimum Java version is increased 17.0.7
continue;
}
DateTimeZone dateTimeZone = DateTimeZone.forID(zoneId);
DateTimeZone indexedZone = getDateTimeZone(TimeZoneKey.getTimeZoneKey(zoneId));
assertDateTimeZoneEquals(zoneId, indexedZone);
if (dateTimeZone.getID().equals("Pacific/Kanton")) {
// Pacific/Enderbury normalizes to Pacific/Kanton,
// both introduced in tzdata2021b 2021/09/25
// These are not yet available in all supported JDK patch versions.
// TODO: Remove once minimum Java version is increased to 17.0.2/11.0.14/8u321
continue;
}
assertTimeZone(zoneId, dateTimeZone);
}
}
@Test
public void testOffsets()
{
for (int offsetHours = -13; offsetHours < 14; offsetHours++) {
for (int offsetMinutes = 0; offsetMinutes < 60; offsetMinutes++) {
DateTimeZone dateTimeZone = DateTimeZone.forOffsetHoursMinutes(offsetHours, offsetMinutes);
assertTimeZone(dateTimeZone.getID(), dateTimeZone);
}
}
}
public static void assertTimeZone(String zoneId, DateTimeZone dateTimeZone)
{
long packWithDateTime = packDateTimeWithZone(new DateTime(42, dateTimeZone));
long packWithZoneId = packDateTimeWithZone(42L, ZoneId.of(dateTimeZone.getID()).getId());
if (packWithDateTime != packWithZoneId) {
fail(format(
"packWithDateTime and packWithZoneId differ for zone [%s] / [%s]: %s [%s %s] and %s [%s %s]",
zoneId,
dateTimeZone,
packWithDateTime,
unpackMillisUtc(packWithDateTime),
unpackZoneKey(packWithDateTime),
packWithZoneId,
unpackMillisUtc(packWithZoneId),
unpackZoneKey(packWithZoneId)));
}
DateTimeZone unpackedZone = unpackDateTimeZone(packWithDateTime);
assertDateTimeZoneEquals(zoneId, unpackedZone);
}
public static void assertDateTimeZoneEquals(String zoneId, DateTimeZone actualTimeZone)
{
DateTimeZone expectedDateTimeZone;
if (isUtcZoneId(zoneId)) {
expectedDateTimeZone = DateTimeZone.UTC;
}
else {
expectedDateTimeZone = DateTimeZone.forID(zoneId);
}
assertEquals(actualTimeZone, expectedDateTimeZone);
}
}