• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2012, 2013, 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.  Oracle designates this
8  * particular file as subject to the "Classpath" exception as provided
9  * by Oracle in the LICENSE file that accompanied this code.
10  *
11  * This code is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14  * version 2 for more details (a copy is included in the LICENSE file that
15  * accompanied this code).
16  *
17  * You should have received a copy of the GNU General Public License version
18  * 2 along with this work; if not, write to the Free Software Foundation,
19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22  * or visit www.oracle.com if you need additional information or have any
23  * questions.
24  */
25 
26 /*
27  * Copyright (c) 2008-2012, Stephen Colebourne & Michael Nascimento Santos
28  *
29  * All rights reserved.
30  *
31  * Redistribution and use in source and binary forms, with or without
32  * modification, are permitted provided that the following conditions are met:
33  *
34  *  * Redistributions of source code must retain the above copyright notice,
35  *    this list of conditions and the following disclaimer.
36  *
37  *  * Redistributions in binary form must reproduce the above copyright notice,
38  *    this list of conditions and the following disclaimer in the documentation
39  *    and/or other materials provided with the distribution.
40  *
41  *  * Neither the name of JSR-310 nor the names of its contributors
42  *    may be used to endorse or promote products derived from this software
43  *    without specific prior written permission.
44  *
45  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
46  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
47  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
48  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
49  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
50  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
51  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
52  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
53  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
54  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
55  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
56  */
57 package tck.java.time.format;
58 
59 import java.time.LocalDateTime;
60 import java.time.ZoneId;
61 import java.time.ZoneOffset;
62 import java.time.ZonedDateTime;
63 import java.time.format.DateTimeFormatter;
64 import java.time.format.DateTimeFormatterBuilder;
65 import java.time.format.FormatStyle;
66 import java.time.temporal.Temporal;
67 import java.util.Locale;
68 
69 import static org.testng.Assert.assertEquals;
70 
71 import dalvik.annotation.compat.VersionCodes;
72 
73 import libcore.test.annotation.NonMts;
74 import libcore.test.reasons.NonMtsReasons;
75 
76 import org.testng.annotations.DataProvider;
77 import org.testng.annotations.Test;
78 
79 /**
80  * Test.
81  */
82 @Test
83 public class TCKFormatStyle {
84 
85     private static final ZoneId ZONEID_PARIS = ZoneId.of("Europe/Paris");
86     private static final ZoneId OFFSET_PTWO = ZoneOffset.of("+02:00");
87 
88     //-----------------------------------------------------------------------
89     // valueOf()
90     //-----------------------------------------------------------------------
91     @Test
test_valueOf()92     public void test_valueOf() {
93         for (FormatStyle style : FormatStyle.values()) {
94             assertEquals(FormatStyle.valueOf(style.name()), style);
95         }
96     }
97 
98     @DataProvider(name="formatStyle")
data_formatStyle()99     Object[][] data_formatStyle() {
100         return new Object[][] {
101                 // Android-changed: date/time patterns changed in new CLDR; adapt to UK locale.
102                 {ZonedDateTime.of(LocalDateTime.of(2001, 10, 2, 1, 2, 3), ZONEID_PARIS), FormatStyle.FULL, "Tuesday 2 October 2001 at 01:02:03 Central European Summer Time Europe/Paris"},
103                 {ZonedDateTime.of(LocalDateTime.of(2001, 10, 2, 1, 2, 3), ZONEID_PARIS), FormatStyle.LONG, "2 October 2001 at 01:02:03 CEST Europe/Paris"},
104                 {ZonedDateTime.of(LocalDateTime.of(2001, 10, 2, 1, 2, 3), ZONEID_PARIS), FormatStyle.MEDIUM, "2 Oct 2001, 01:02:03 Europe/Paris"},
105                 {ZonedDateTime.of(LocalDateTime.of(2001, 10, 2, 1, 2, 3), ZONEID_PARIS), FormatStyle.SHORT, "02/10/2001, 01:02 Europe/Paris"},
106 
107                 {ZonedDateTime.of(LocalDateTime.of(2001, 10, 2, 1, 2, 3), OFFSET_PTWO), FormatStyle.FULL, "Tuesday 2 October 2001 at 01:02:03 +02:00 +02:00"},
108                 {ZonedDateTime.of(LocalDateTime.of(2001, 10, 2, 1, 2, 3), OFFSET_PTWO), FormatStyle.LONG, "2 October 2001 at 01:02:03 +02:00 +02:00"},
109                 {ZonedDateTime.of(LocalDateTime.of(2001, 10, 2, 1, 2, 3), OFFSET_PTWO), FormatStyle.MEDIUM, "2 Oct 2001, 01:02:03 +02:00"},
110                 {ZonedDateTime.of(LocalDateTime.of(2001, 10, 2, 1, 2, 3), OFFSET_PTWO), FormatStyle.SHORT, "02/10/2001, 01:02 +02:00"},
111         };
112     }
113 
114     @NonMts(reason = NonMtsReasons.ICU_VERSION_DEPENDENCY,
115         disabledUntilSdk = VersionCodes.VANILLA_ICE_CREAM)
116     @Test(dataProvider = "formatStyle")
test_formatStyle(Temporal temporal, FormatStyle style, String formattedStr)117     public void test_formatStyle(Temporal temporal, FormatStyle style, String formattedStr) {
118         DateTimeFormatterBuilder builder = new DateTimeFormatterBuilder();
119         DateTimeFormatter formatter = builder.appendLocalized(style, style).appendLiteral(" ").appendZoneOrOffsetId().toFormatter();
120         // Android-changed: Use a locale that actually uses "CEST" as short form of Europe/Paris.
121         formatter = formatter.withLocale(Locale.UK);
122         assertEquals(formatter.format(temporal), formattedStr);
123     }
124 }
125