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. 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 * This file is available under and governed by the GNU General Public 26 * License version 2 only, as published by the Free Software Foundation. 27 * However, the following notice accompanied the original version of this 28 * file: 29 * 30 * Copyright (c) 2008-2012, Stephen Colebourne & Michael Nascimento Santos 31 * 32 * All rights reserved. 33 * 34 * Redistribution and use in source and binary forms, with or without 35 * modification, are permitted provided that the following conditions are met: 36 * 37 * * Redistributions of source code must retain the above copyright notice, 38 * this list of conditions and the following disclaimer. 39 * 40 * * Redistributions in binary form must reproduce the above copyright notice, 41 * this list of conditions and the following disclaimer in the documentation 42 * and/or other materials provided with the distribution. 43 * 44 * * Neither the name of JSR-310 nor the names of its contributors 45 * may be used to endorse or promote products derived from this software 46 * without specific prior written permission. 47 * 48 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 49 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 50 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 51 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 52 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 53 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 54 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 55 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 56 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 57 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 58 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 59 */ 60 package test.java.time.format; 61 62 import static java.time.temporal.ChronoField.DAY_OF_MONTH; 63 import static java.time.temporal.ChronoField.DAY_OF_WEEK; 64 import static java.time.temporal.ChronoField.ERA; 65 import static java.time.temporal.ChronoField.MONTH_OF_YEAR; 66 import static java.time.temporal.IsoFields.QUARTER_OF_YEAR; 67 import static org.testng.Assert.assertEquals; 68 69 import java.time.DateTimeException; 70 import java.time.DayOfWeek; 71 import java.time.LocalDate; 72 import java.time.chrono.JapaneseChronology; 73 import java.time.format.DateTimeFormatter; 74 import java.time.format.TextStyle; 75 import java.time.temporal.TemporalField; 76 import java.util.Locale; 77 78 import org.testng.annotations.DataProvider; 79 import org.testng.annotations.Test; 80 import test.java.time.temporal.MockFieldValue; 81 82 /** 83 * Test TextPrinterParser. 84 */ 85 @Test 86 public class TestTextPrinter extends AbstractTestPrinterParser { 87 static final Locale RUSSIAN = new Locale("ru"); 88 static final Locale FINNISH = new Locale("fi"); 89 90 //----------------------------------------------------------------------- 91 @Test(expectedExceptions=DateTimeException.class) test_print_emptyCalendrical()92 public void test_print_emptyCalendrical() throws Exception { 93 getFormatter(DAY_OF_WEEK, TextStyle.FULL).formatTo(EMPTY_DTA, buf); 94 } 95 test_print_append()96 public void test_print_append() throws Exception { 97 buf.append("EXISTING"); 98 getFormatter(DAY_OF_WEEK, TextStyle.FULL).formatTo(LocalDate.of(2012, 4, 18), buf); 99 assertEquals(buf.toString(), "EXISTINGWednesday"); 100 } 101 102 //----------------------------------------------------------------------- 103 @DataProvider(name="print") provider_dow()104 Object[][] provider_dow() { 105 return new Object[][] { 106 {DAY_OF_WEEK, TextStyle.FULL, 1, "Monday"}, 107 {DAY_OF_WEEK, TextStyle.FULL, 2, "Tuesday"}, 108 {DAY_OF_WEEK, TextStyle.FULL, 3, "Wednesday"}, 109 {DAY_OF_WEEK, TextStyle.FULL, 4, "Thursday"}, 110 {DAY_OF_WEEK, TextStyle.FULL, 5, "Friday"}, 111 {DAY_OF_WEEK, TextStyle.FULL, 6, "Saturday"}, 112 {DAY_OF_WEEK, TextStyle.FULL, 7, "Sunday"}, 113 114 {DAY_OF_WEEK, TextStyle.SHORT, 1, "Mon"}, 115 {DAY_OF_WEEK, TextStyle.SHORT, 2, "Tue"}, 116 {DAY_OF_WEEK, TextStyle.SHORT, 3, "Wed"}, 117 {DAY_OF_WEEK, TextStyle.SHORT, 4, "Thu"}, 118 {DAY_OF_WEEK, TextStyle.SHORT, 5, "Fri"}, 119 {DAY_OF_WEEK, TextStyle.SHORT, 6, "Sat"}, 120 {DAY_OF_WEEK, TextStyle.SHORT, 7, "Sun"}, 121 122 {DAY_OF_WEEK, TextStyle.NARROW, 1, "M"}, 123 {DAY_OF_WEEK, TextStyle.NARROW, 2, "T"}, 124 {DAY_OF_WEEK, TextStyle.NARROW, 3, "W"}, 125 {DAY_OF_WEEK, TextStyle.NARROW, 4, "T"}, 126 {DAY_OF_WEEK, TextStyle.NARROW, 5, "F"}, 127 {DAY_OF_WEEK, TextStyle.NARROW, 6, "S"}, 128 {DAY_OF_WEEK, TextStyle.NARROW, 7, "S"}, 129 130 {DAY_OF_MONTH, TextStyle.FULL, 1, "1"}, 131 {DAY_OF_MONTH, TextStyle.FULL, 2, "2"}, 132 {DAY_OF_MONTH, TextStyle.FULL, 3, "3"}, 133 {DAY_OF_MONTH, TextStyle.FULL, 28, "28"}, 134 {DAY_OF_MONTH, TextStyle.FULL, 29, "29"}, 135 {DAY_OF_MONTH, TextStyle.FULL, 30, "30"}, 136 {DAY_OF_MONTH, TextStyle.FULL, 31, "31"}, 137 138 {DAY_OF_MONTH, TextStyle.SHORT, 1, "1"}, 139 {DAY_OF_MONTH, TextStyle.SHORT, 2, "2"}, 140 {DAY_OF_MONTH, TextStyle.SHORT, 3, "3"}, 141 {DAY_OF_MONTH, TextStyle.SHORT, 28, "28"}, 142 {DAY_OF_MONTH, TextStyle.SHORT, 29, "29"}, 143 {DAY_OF_MONTH, TextStyle.SHORT, 30, "30"}, 144 {DAY_OF_MONTH, TextStyle.SHORT, 31, "31"}, 145 146 {MONTH_OF_YEAR, TextStyle.FULL, 1, "January"}, 147 {MONTH_OF_YEAR, TextStyle.FULL, 2, "February"}, 148 {MONTH_OF_YEAR, TextStyle.FULL, 3, "March"}, 149 {MONTH_OF_YEAR, TextStyle.FULL, 4, "April"}, 150 {MONTH_OF_YEAR, TextStyle.FULL, 5, "May"}, 151 {MONTH_OF_YEAR, TextStyle.FULL, 6, "June"}, 152 {MONTH_OF_YEAR, TextStyle.FULL, 7, "July"}, 153 {MONTH_OF_YEAR, TextStyle.FULL, 8, "August"}, 154 {MONTH_OF_YEAR, TextStyle.FULL, 9, "September"}, 155 {MONTH_OF_YEAR, TextStyle.FULL, 10, "October"}, 156 {MONTH_OF_YEAR, TextStyle.FULL, 11, "November"}, 157 {MONTH_OF_YEAR, TextStyle.FULL, 12, "December"}, 158 159 {MONTH_OF_YEAR, TextStyle.SHORT, 1, "Jan"}, 160 {MONTH_OF_YEAR, TextStyle.SHORT, 2, "Feb"}, 161 {MONTH_OF_YEAR, TextStyle.SHORT, 3, "Mar"}, 162 {MONTH_OF_YEAR, TextStyle.SHORT, 4, "Apr"}, 163 {MONTH_OF_YEAR, TextStyle.SHORT, 5, "May"}, 164 {MONTH_OF_YEAR, TextStyle.SHORT, 6, "Jun"}, 165 {MONTH_OF_YEAR, TextStyle.SHORT, 7, "Jul"}, 166 {MONTH_OF_YEAR, TextStyle.SHORT, 8, "Aug"}, 167 {MONTH_OF_YEAR, TextStyle.SHORT, 9, "Sep"}, 168 {MONTH_OF_YEAR, TextStyle.SHORT, 10, "Oct"}, 169 {MONTH_OF_YEAR, TextStyle.SHORT, 11, "Nov"}, 170 {MONTH_OF_YEAR, TextStyle.SHORT, 12, "Dec"}, 171 172 {MONTH_OF_YEAR, TextStyle.NARROW, 1, "J"}, 173 {MONTH_OF_YEAR, TextStyle.NARROW, 2, "F"}, 174 {MONTH_OF_YEAR, TextStyle.NARROW, 3, "M"}, 175 {MONTH_OF_YEAR, TextStyle.NARROW, 4, "A"}, 176 {MONTH_OF_YEAR, TextStyle.NARROW, 5, "M"}, 177 {MONTH_OF_YEAR, TextStyle.NARROW, 6, "J"}, 178 {MONTH_OF_YEAR, TextStyle.NARROW, 7, "J"}, 179 {MONTH_OF_YEAR, TextStyle.NARROW, 8, "A"}, 180 {MONTH_OF_YEAR, TextStyle.NARROW, 9, "S"}, 181 {MONTH_OF_YEAR, TextStyle.NARROW, 10, "O"}, 182 {MONTH_OF_YEAR, TextStyle.NARROW, 11, "N"}, 183 {MONTH_OF_YEAR, TextStyle.NARROW, 12, "D"}, 184 185 {ERA, TextStyle.FULL, 0, "Before Christ"}, 186 {ERA, TextStyle.FULL, 1, "Anno Domini"}, 187 {ERA, TextStyle.SHORT, 0, "BC"}, 188 {ERA, TextStyle.SHORT, 1, "AD"}, 189 {ERA, TextStyle.NARROW, 0, "B"}, 190 {ERA, TextStyle.NARROW, 1, "A"}, 191 192 {QUARTER_OF_YEAR, TextStyle.FULL, 1, "1st quarter"}, 193 {QUARTER_OF_YEAR, TextStyle.FULL, 2, "2nd quarter"}, 194 {QUARTER_OF_YEAR, TextStyle.FULL, 3, "3rd quarter"}, 195 {QUARTER_OF_YEAR, TextStyle.FULL, 4, "4th quarter"}, 196 197 {QUARTER_OF_YEAR, TextStyle.SHORT, 1, "Q1"}, 198 {QUARTER_OF_YEAR, TextStyle.SHORT, 2, "Q2"}, 199 {QUARTER_OF_YEAR, TextStyle.SHORT, 3, "Q3"}, 200 {QUARTER_OF_YEAR, TextStyle.SHORT, 4, "Q4"}, 201 202 {QUARTER_OF_YEAR, TextStyle.NARROW, 1, "1"}, 203 {QUARTER_OF_YEAR, TextStyle.NARROW, 2, "2"}, 204 {QUARTER_OF_YEAR, TextStyle.NARROW, 3, "3"}, 205 {QUARTER_OF_YEAR, TextStyle.NARROW, 4, "4"}, 206 }; 207 } 208 209 @DataProvider(name="print_DayOfWeekData") providerDayOfWeekData()210 Object[][] providerDayOfWeekData() { 211 return new Object[][] { 212 // Locale, pattern, expected text, input DayOfWeek 213 {Locale.US, "e", "1", DayOfWeek.SUNDAY}, 214 {Locale.US, "ee", "01", DayOfWeek.SUNDAY}, 215 {Locale.US, "c", "1", DayOfWeek.SUNDAY}, 216 217 {Locale.UK, "e", "1", DayOfWeek.MONDAY}, 218 {Locale.UK, "ee", "01", DayOfWeek.MONDAY}, 219 {Locale.UK, "c", "1", DayOfWeek.MONDAY}, 220 }; 221 } 222 223 @DataProvider(name="print_JapaneseChronology") provider_japaneseEra()224 Object[][] provider_japaneseEra() { 225 return new Object[][] { 226 {ERA, TextStyle.FULL, 2, "Heisei"}, // Note: CLDR doesn't define "wide" Japanese era names. 227 {ERA, TextStyle.SHORT, 2, "Heisei"}, 228 {ERA, TextStyle.NARROW, 2, "H"}, 229 }; 230 }; 231 232 // Test data is dependent on localized resources. 233 @DataProvider(name="print_standalone") provider_StandaloneNames()234 Object[][] provider_StandaloneNames() { 235 return new Object[][] { 236 // standalone names for 2013-01-01 (Tue) 237 // Locale, TemporalField, TextStyle, expected text 238 // Android-changed: CLDR uses lower case for russian month names. 239 {RUSSIAN, MONTH_OF_YEAR, TextStyle.FULL_STANDALONE, "\u044f\u043d\u0432\u0430\u0440\u044c"}, 240 {RUSSIAN, MONTH_OF_YEAR, TextStyle.SHORT_STANDALONE, "\u044f\u043d\u0432."}, 241 {FINNISH, DAY_OF_WEEK, TextStyle.FULL_STANDALONE, "tiistai"}, 242 {FINNISH, DAY_OF_WEEK, TextStyle.SHORT_STANDALONE, "ti"}, 243 }; 244 } 245 246 @Test(dataProvider="print") test_format(TemporalField field, TextStyle style, int value, String expected)247 public void test_format(TemporalField field, TextStyle style, int value, String expected) throws Exception { 248 getFormatter(field, style).formatTo(new MockFieldValue(field, value), buf); 249 assertEquals(buf.toString(), expected); 250 } 251 252 @Test(dataProvider="print_DayOfWeekData") test_formatDayOfWeek(Locale locale, String pattern, String expected, DayOfWeek dayOfWeek)253 public void test_formatDayOfWeek(Locale locale, String pattern, String expected, DayOfWeek dayOfWeek) { 254 DateTimeFormatter formatter = getPatternFormatter(pattern).withLocale(locale); 255 String text = formatter.format(dayOfWeek); 256 assertEquals(text, expected); 257 } 258 259 @Test(dataProvider="print_JapaneseChronology") test_formatJapaneseEra(TemporalField field, TextStyle style, int value, String expected)260 public void test_formatJapaneseEra(TemporalField field, TextStyle style, int value, String expected) throws Exception { 261 LocalDate ld = LocalDate.of(2013, 1, 31); 262 getFormatter(field, style).withChronology(JapaneseChronology.INSTANCE).formatTo(ld, buf); 263 assertEquals(buf.toString(), expected); 264 } 265 266 @Test(dataProvider="print_standalone") test_standaloneNames(Locale locale, TemporalField field, TextStyle style, String expected)267 public void test_standaloneNames(Locale locale, TemporalField field, TextStyle style, String expected) { 268 getFormatter(field, style).withLocale(locale).formatTo(LocalDate.of(2013, 1, 1), buf); 269 assertEquals(buf.toString(), expected); 270 } 271 272 //----------------------------------------------------------------------- test_print_french_long()273 public void test_print_french_long() throws Exception { 274 getFormatter(MONTH_OF_YEAR, TextStyle.FULL).withLocale(Locale.FRENCH).formatTo(LocalDate.of(2012, 1, 1), buf); 275 assertEquals(buf.toString(), "janvier"); 276 } 277 test_print_french_short()278 public void test_print_french_short() throws Exception { 279 getFormatter(MONTH_OF_YEAR, TextStyle.SHORT).withLocale(Locale.FRENCH).formatTo(LocalDate.of(2012, 1, 1), buf); 280 assertEquals(buf.toString(), "janv."); 281 } 282 283 //----------------------------------------------------------------------- test_toString1()284 public void test_toString1() throws Exception { 285 assertEquals(getFormatter(MONTH_OF_YEAR, TextStyle.FULL).toString(), "Text(MonthOfYear)"); 286 } 287 test_toString2()288 public void test_toString2() throws Exception { 289 assertEquals(getFormatter(MONTH_OF_YEAR, TextStyle.SHORT).toString(), "Text(MonthOfYear,SHORT)"); 290 } 291 292 } 293