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