test/jdk/java/time/test/java/time/TestZonedDateTime.java
author naoto
Tue, 13 Aug 2019 10:10:42 -0700
changeset 57733 be8c11fc16bb
parent 47216 71c04702a3d5
permissions -rw-r--r--
8211990: DateTimeException thrown when calculating duration between certain dates Reviewed-by: lancea, scolebourne, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     1
/*
57733
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
     2
 * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     4
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     7
 * published by the Free Software Foundation.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     8
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    13
 * accompanied this code).
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    14
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    18
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    21
 * questions.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    22
 */
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    23
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    24
/*
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    25
 * This file is available under and governed by the GNU General Public
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    26
 * License version 2 only, as published by the Free Software Foundation.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    27
 * However, the following notice accompanied the original version of this
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    28
 * file:
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    29
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    30
 * Copyright (c) 2008-2012, Stephen Colebourne & Michael Nascimento Santos
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    31
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    32
 * All rights reserved.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    33
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    34
 * Redistribution and use in source and binary forms, with or without
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    35
 * modification, are permitted provided that the following conditions are met:
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    36
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    37
 *  * Redistributions of source code must retain the above copyright notice,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    38
 *    this list of conditions and the following disclaimer.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    39
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    40
 *  * Redistributions in binary form must reproduce the above copyright notice,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    41
 *    this list of conditions and the following disclaimer in the documentation
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    42
 *    and/or other materials provided with the distribution.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    43
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    44
 *  * Neither the name of JSR-310 nor the names of its contributors
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    45
 *    may be used to endorse or promote products derived from this software
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    46
 *    without specific prior written permission.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    47
 *
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    48
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    49
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    50
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    51
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    52
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    53
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    54
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    55
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    56
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    57
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    58
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    59
 */
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    60
package test.java.time;
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    61
57733
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    62
import static org.testng.Assert.assertEquals;
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    63
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    64
import java.time.Duration;
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    65
import java.time.LocalDateTime;
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    66
import java.time.ZonedDateTime;
57733
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    67
import java.time.ZoneId;
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    68
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    69
import org.testng.annotations.Test;
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    70
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    71
/**
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    72
 * Test ZonedDateTime.
57733
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    73
 *
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    74
 * @bug 8211990
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    75
 */
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    76
@Test
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    77
public class TestZonedDateTime extends AbstractTest {
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    78
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    79
    @Test
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    80
    public void test_immutable() {
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    81
        assertImmutable(ZonedDateTime.class);
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    82
    }
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    83
57733
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    84
    @Test
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    85
    public void test_duration() {
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    86
        ZoneId tokyo = ZoneId.of("Asia/Tokyo");
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    87
        ZoneId sanJose = ZoneId.of("America/Los_Angeles");
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    88
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    89
        ZonedDateTime end = ZonedDateTime.of(LocalDateTime.MAX, sanJose);
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    90
        ZonedDateTime start = end.withZoneSameLocal(tokyo);
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    91
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    92
        assertEquals(Duration.between(start, end), Duration.ofHours(17));
be8c11fc16bb 8211990: DateTimeException thrown when calculating duration between certain dates
naoto
parents: 47216
diff changeset
    93
    }
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents:
diff changeset
    94
}