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) 2010-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 tck.java.time.format;
  61 
  62 import java.time.format.*;
  63 
  64 import static org.testng.Assert.assertEquals;
  65 import static org.testng.Assert.fail;
  66 
  67 import java.text.ParsePosition;
  68 import java.time.format.DateTimeBuilder;
  69 
  70 import java.time.LocalDate;
  71 import java.time.temporal.TemporalField;
  72 import java.time.temporal.WeekFields;
  73 
  74 import test.java.time.format.AbstractTestPrinterParser;
  75 
  76 import org.testng.annotations.DataProvider;
  77 import org.testng.annotations.Test;
  78 
  79 /**
  80  * Test TCKLocalizedFieldParser.
  81  */
  82 @Test(groups={"tck"})
  83 public class TCKLocalizedFieldParser extends AbstractTestPrinterParser {
  84 
  85     //-----------------------------------------------------------------------
  86     @DataProvider(name="FieldPatterns")
  87     Object[][] provider_fieldPatterns() {
  88         return new Object[][] {
  89             {"e",  "6", 0, 1, 6},
  90             {"w",  "3", 0, 1, 3},
  91             {"W",  "29", 0, 2, 29},
  92             {"WW", "29", 0, 2, 29},
  93         };
  94     }
  95 
  96     @Test(dataProvider="FieldPatterns",groups={"tck"})
  97     public void test_parse_textField(String pattern, String text, int pos, int expectedPos, long expectedValue) {
  98         WeekFields weekDef = WeekFields.of(locale);
  99         TemporalField field = null;
 100         switch(pattern.charAt(0)) {
 101             case 'e' :
 102                 field = weekDef.dayOfWeek();
 103                 break;
 104             case 'w':
 105                 field = weekDef.weekOfMonth();
 106                 break;
 107             case 'W':
 108                 field = weekDef.weekOfYear();
 109                 break;
 110             default:
 111                 throw new IllegalStateException("bad format letter from pattern");
 112         }
 113         ParsePosition ppos = new ParsePosition(pos);
 114         DateTimeFormatterBuilder b
 115                 = new DateTimeFormatterBuilder().appendPattern(pattern);
 116         DateTimeFormatter dtf = b.toFormatter(locale);
 117         DateTimeBuilder dtb = dtf.parseToBuilder(text, ppos);
 118         if (ppos.getErrorIndex() != -1) {
 119             assertEquals(ppos.getErrorIndex(), expectedPos);
 120         } else {
 121             assertEquals(ppos.getIndex(), expectedPos, "Incorrect ending parse position");
 122             long value = dtb.getLong(field);
 123             assertEquals(value, expectedValue, "Value incorrect for " + field);
 124         }
 125     }
 126 
 127    //-----------------------------------------------------------------------
 128     @DataProvider(name="LocalDatePatterns")
 129     Object[][] provider_patternLocalDate() {
 130         return new Object[][] {
 131             {"e w M y",  "1 1 1 2012", 0, 10, LocalDate.of(2012, 1, 1)},
 132             {"e w M y",  "1 2 1 2012", 0, 10, LocalDate.of(2012, 1, 8)},
 133             {"e w M y",  "2 2 1 2012", 0, 10, LocalDate.of(2012, 1, 9)},
 134             {"e w M y",  "3 2 1 2012", 0, 10, LocalDate.of(2012, 1, 10)},
 135             {"e w M y",  "1 3 1 2012", 0, 10, LocalDate.of(2012, 1, 15)},
 136             {"e w M y",  "2 3 1 2012", 0, 10, LocalDate.of(2012, 1, 16)},
 137             {"e w M y",  "6 2 1 2012", 0, 10, LocalDate.of(2012, 1, 13)},
 138             {"e w M y",  "6 2 7 2012", 0, 10, LocalDate.of(2012, 7, 13)},
 139             {"e W y",  "6 29 2012", 0, 9, LocalDate.of(2012, 7, 20)},
 140             {"'Date: 'y-MM', day-of-week: 'e', week-of-month: 'w",
 141                 "Date: 2012-07, day-of-week: 6, week-of-month: 3", 0, 47, LocalDate.of(2012, 7, 20)},
 142             {"'Date: 'y', day-of-week: 'e', week-of-year: 'W",
 143                 "Date: 2012, day-of-week: 6, week-of-year: 29", 0, 44, LocalDate.of(2012, 7, 20)},
 144         };
 145     }
 146    @Test(dataProvider="LocalDatePatterns",groups={"tck"})
 147     public void test_parse_textLocalDate(String pattern, String text, int pos, int expectedPos, LocalDate expectedValue) {
 148         WeekFields weekDef = WeekFields.of(locale);
 149         ParsePosition ppos = new ParsePosition(pos);
 150         DateTimeFormatterBuilder b
 151                 = new DateTimeFormatterBuilder().appendPattern(pattern);
 152         DateTimeFormatter dtf = b.toFormatter(locale);
 153         DateTimeBuilder dtb = dtf.parseToBuilder(text, ppos);
 154         if (ppos.getErrorIndex() != -1) {
 155             assertEquals(ppos.getErrorIndex(), expectedPos);
 156         } else {
 157             assertEquals(ppos.getIndex(), expectedPos, "Incorrect ending parse position");
 158             dtb.resolve();
 159             LocalDate result = dtb.query(LocalDate::from);
 160             assertEquals(result, expectedValue, "LocalDate incorrect for " + pattern);
 161         }
 162     }
 163 
 164 }