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 java.time.format.*;
  63 
  64 import static java.time.temporal.ChronoField.DAY_OF_MONTH;
  65 import static java.time.temporal.ChronoField.DAY_OF_WEEK;
  66 import static java.time.temporal.ChronoField.MONTH_OF_YEAR;
  67 import static java.time.temporal.ChronoField.ERA;
  68 import static org.testng.Assert.assertEquals;
  69 
  70 import java.util.Locale;
  71 
  72 import java.time.DateTimeException;
  73 import java.time.LocalDate;
  74 import java.time.temporal.TemporalField;
  75 import java.time.chrono.JapaneseChronology;
  76 import test.java.time.temporal.MockFieldValue;
  77 
  78 import org.testng.annotations.DataProvider;
  79 import org.testng.annotations.Test;
  80 
  81 /**
  82  * Test TextPrinterParser.
  83  */
  84 @Test(groups={"implementation"})
  85 public class TestTextPrinter extends AbstractTestPrinterParser {
  86 
  87     //-----------------------------------------------------------------------
  88     @Test(expectedExceptions=DateTimeException.class)
  89     public void test_print_emptyCalendrical() throws Exception {
  90         getFormatter(DAY_OF_WEEK, TextStyle.FULL).formatTo(EMPTY_DTA, buf);
  91     }
  92 
  93     public void test_print_append() throws Exception {
  94         buf.append("EXISTING");
  95         getFormatter(DAY_OF_WEEK, TextStyle.FULL).formatTo(LocalDate.of(2012, 4, 18), buf);
  96         assertEquals(buf.toString(), "EXISTINGWednesday");
  97     }
  98 
  99     //-----------------------------------------------------------------------
 100     @DataProvider(name="print")
 101     Object[][] provider_dow() {
 102         return new Object[][] {
 103             {DAY_OF_WEEK, TextStyle.FULL, 1, "Monday"},
 104             {DAY_OF_WEEK, TextStyle.FULL, 2, "Tuesday"},
 105             {DAY_OF_WEEK, TextStyle.FULL, 3, "Wednesday"},
 106             {DAY_OF_WEEK, TextStyle.FULL, 4, "Thursday"},
 107             {DAY_OF_WEEK, TextStyle.FULL, 5, "Friday"},
 108             {DAY_OF_WEEK, TextStyle.FULL, 6, "Saturday"},
 109             {DAY_OF_WEEK, TextStyle.FULL, 7, "Sunday"},
 110 
 111             {DAY_OF_WEEK, TextStyle.SHORT, 1, "Mon"},
 112             {DAY_OF_WEEK, TextStyle.SHORT, 2, "Tue"},
 113             {DAY_OF_WEEK, TextStyle.SHORT, 3, "Wed"},
 114             {DAY_OF_WEEK, TextStyle.SHORT, 4, "Thu"},
 115             {DAY_OF_WEEK, TextStyle.SHORT, 5, "Fri"},
 116             {DAY_OF_WEEK, TextStyle.SHORT, 6, "Sat"},
 117             {DAY_OF_WEEK, TextStyle.SHORT, 7, "Sun"},
 118 
 119             {DAY_OF_WEEK, TextStyle.NARROW, 1, "M"},
 120             {DAY_OF_WEEK, TextStyle.NARROW, 2, "T"},
 121             {DAY_OF_WEEK, TextStyle.NARROW, 3, "W"},
 122             {DAY_OF_WEEK, TextStyle.NARROW, 4, "T"},
 123             {DAY_OF_WEEK, TextStyle.NARROW, 5, "F"},
 124             {DAY_OF_WEEK, TextStyle.NARROW, 6, "S"},
 125             {DAY_OF_WEEK, TextStyle.NARROW, 7, "S"},
 126 
 127             {DAY_OF_MONTH, TextStyle.FULL, 1, "1"},
 128             {DAY_OF_MONTH, TextStyle.FULL, 2, "2"},
 129             {DAY_OF_MONTH, TextStyle.FULL, 3, "3"},
 130             {DAY_OF_MONTH, TextStyle.FULL, 28, "28"},
 131             {DAY_OF_MONTH, TextStyle.FULL, 29, "29"},
 132             {DAY_OF_MONTH, TextStyle.FULL, 30, "30"},
 133             {DAY_OF_MONTH, TextStyle.FULL, 31, "31"},
 134 
 135             {DAY_OF_MONTH, TextStyle.SHORT, 1, "1"},
 136             {DAY_OF_MONTH, TextStyle.SHORT, 2, "2"},
 137             {DAY_OF_MONTH, TextStyle.SHORT, 3, "3"},
 138             {DAY_OF_MONTH, TextStyle.SHORT, 28, "28"},
 139             {DAY_OF_MONTH, TextStyle.SHORT, 29, "29"},
 140             {DAY_OF_MONTH, TextStyle.SHORT, 30, "30"},
 141             {DAY_OF_MONTH, TextStyle.SHORT, 31, "31"},
 142 
 143             {MONTH_OF_YEAR, TextStyle.FULL, 1, "January"},
 144             {MONTH_OF_YEAR, TextStyle.FULL, 2, "February"},
 145             {MONTH_OF_YEAR, TextStyle.FULL, 3, "March"},
 146             {MONTH_OF_YEAR, TextStyle.FULL, 4, "April"},
 147             {MONTH_OF_YEAR, TextStyle.FULL, 5, "May"},
 148             {MONTH_OF_YEAR, TextStyle.FULL, 6, "June"},
 149             {MONTH_OF_YEAR, TextStyle.FULL, 7, "July"},
 150             {MONTH_OF_YEAR, TextStyle.FULL, 8, "August"},
 151             {MONTH_OF_YEAR, TextStyle.FULL, 9, "September"},
 152             {MONTH_OF_YEAR, TextStyle.FULL, 10, "October"},
 153             {MONTH_OF_YEAR, TextStyle.FULL, 11, "November"},
 154             {MONTH_OF_YEAR, TextStyle.FULL, 12, "December"},
 155 
 156             {MONTH_OF_YEAR, TextStyle.SHORT, 1, "Jan"},
 157             {MONTH_OF_YEAR, TextStyle.SHORT, 2, "Feb"},
 158             {MONTH_OF_YEAR, TextStyle.SHORT, 3, "Mar"},
 159             {MONTH_OF_YEAR, TextStyle.SHORT, 4, "Apr"},
 160             {MONTH_OF_YEAR, TextStyle.SHORT, 5, "May"},
 161             {MONTH_OF_YEAR, TextStyle.SHORT, 6, "Jun"},
 162             {MONTH_OF_YEAR, TextStyle.SHORT, 7, "Jul"},
 163             {MONTH_OF_YEAR, TextStyle.SHORT, 8, "Aug"},
 164             {MONTH_OF_YEAR, TextStyle.SHORT, 9, "Sep"},
 165             {MONTH_OF_YEAR, TextStyle.SHORT, 10, "Oct"},
 166             {MONTH_OF_YEAR, TextStyle.SHORT, 11, "Nov"},
 167             {MONTH_OF_YEAR, TextStyle.SHORT, 12, "Dec"},
 168 
 169             {ERA,           TextStyle.FULL, 0, "Before Christ"},
 170             {ERA,           TextStyle.FULL, 1, "Anno Domini"},
 171             {ERA,           TextStyle.SHORT, 0, "BC"},
 172             {ERA,           TextStyle.SHORT, 1, "AD"},
 173             {ERA,           TextStyle.NARROW, 0, "B"},
 174             {ERA,           TextStyle.NARROW, 1, "A"},
 175        };
 176     }
 177 
 178     @DataProvider(name="print_JapaneseChronology")
 179     Object[][] provider_japaneseEra() {
 180        return new Object[][] {
 181             {ERA,           TextStyle.FULL, 2, "Heisei"}, // Note: CLDR doesn't define "wide" Japanese era names.
 182             {ERA,           TextStyle.SHORT, 2, "Heisei"},
 183             {ERA,           TextStyle.NARROW, 2, "H"},
 184        };
 185     };
 186 
 187     @Test(dataProvider="print")
 188     public void test_format(TemporalField field, TextStyle style, int value, String expected) throws Exception {
 189         getFormatter(field, style).formatTo(new MockFieldValue(field, value), buf);
 190         assertEquals(buf.toString(), expected);
 191     }
 192 
 193     @Test(dataProvider="print_JapaneseChronology")
 194     public void test_formatJapaneseEra(TemporalField field, TextStyle style, int value, String expected) throws Exception {
 195         LocalDate ld = LocalDate.of(2013, 1, 31);
 196         getFormatter(field, style).withChronology(JapaneseChronology.INSTANCE).formatTo(ld, buf);
 197         assertEquals(buf.toString(), expected);
 198     }
 199 
 200     //-----------------------------------------------------------------------
 201     public void test_print_french_long() throws Exception {
 202         getFormatter(MONTH_OF_YEAR, TextStyle.FULL).withLocale(Locale.FRENCH).formatTo(LocalDate.of(2012, 1, 1), buf);
 203         assertEquals(buf.toString(), "janvier");
 204     }
 205 
 206     public void test_print_french_short() throws Exception {
 207         getFormatter(MONTH_OF_YEAR, TextStyle.SHORT).withLocale(Locale.FRENCH).formatTo(LocalDate.of(2012, 1, 1), buf);
 208         assertEquals(buf.toString(), "janv.");
 209     }
 210 
 211     //-----------------------------------------------------------------------
 212     public void test_toString1() throws Exception {
 213         assertEquals(getFormatter(MONTH_OF_YEAR, TextStyle.FULL).toString(), "Text(MonthOfYear)");
 214     }
 215 
 216     public void test_toString2() throws Exception {
 217         assertEquals(getFormatter(MONTH_OF_YEAR, TextStyle.SHORT).toString(), "Text(MonthOfYear,SHORT)");
 218     }
 219 
 220 }