test/java/time/test/java/time/format/TestCharLiteralParser.java

Print this page




  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.YEAR;
  63 import static org.testng.Assert.assertEquals;
  64 import static org.testng.Assert.assertTrue;
  65 import static org.testng.Assert.fail;
  66 
  67 import java.text.ParsePosition;
  68 import java.time.temporal.Queries;
  69 import java.time.temporal.TemporalAccessor;

  70 
  71 import org.testng.annotations.DataProvider;
  72 import org.testng.annotations.Test;
  73 
  74 /**
  75  * Test CharLiteralPrinterParser.
  76  */
  77 @Test(groups={"implementation"})
  78 public class TestCharLiteralParser extends AbstractTestPrinterParser {
  79 
  80     @DataProvider(name="success")
  81     Object[][] data_success() {
  82         return new Object[][] {
  83             // match
  84             {'a', true, "a", 0, 1},
  85             {'a', true, "aOTHER", 0, 1},
  86             {'a', true, "OTHERaOTHER", 5, 6},
  87             {'a', true, "OTHERa", 5, 6},
  88 
  89             // no match
  90             {'a', true, "", 0, 0},
  91             {'a', true, "a", 1, 1},
  92             {'a', true, "A", 0, 0},
  93             {'a', true, "b", 0, 0},
  94             {'a', true, "OTHERbOTHER", 5, 5},
  95             {'a', true, "OTHERb", 5, 5},
  96 
  97             // case insensitive
  98             {'a', false, "a", 0, 1},
  99             {'a', false, "A", 0, 1},
 100         };
 101     }
 102 
 103     @Test(dataProvider="success")
 104     public void test_parse_success(char c, boolean caseSensitive,
 105                                    String text, int pos, int expectedPos) {
 106         setCaseSensitive(caseSensitive);
 107         ParsePosition ppos = new ParsePosition(pos);
 108         TemporalAccessor parsed = getFormatter(c).parseUnresolved(text, ppos);
 109         if (ppos.getErrorIndex() != -1) {
 110             assertEquals(ppos.getIndex(), expectedPos);
 111         } else {
 112             assertEquals(ppos.getIndex(), expectedPos);
 113             assertEquals(parsed.isSupported(YEAR), false);
 114             assertEquals(parsed.query(Queries.chronology()), null);
 115             assertEquals(parsed.query(Queries.zoneId()), null);
 116         }
 117     }
 118 
 119     //-----------------------------------------------------------------------
 120     @DataProvider(name="error")
 121     Object[][] data_error() {
 122         return new Object[][] {
 123             {'a', "a", -1, IndexOutOfBoundsException.class},
 124             {'a', "a", 2, IndexOutOfBoundsException.class},
 125         };
 126     }
 127 
 128     @Test(dataProvider="error")
 129     public void test_parse_error(char c, String text, int pos, Class<?> expected) {
 130         try {
 131             ParsePosition ppos = new ParsePosition(pos);
 132             getFormatter(c).parseUnresolved(text, ppos);
 133             fail();
 134         } catch (RuntimeException ex) {
 135             assertTrue(expected.isInstance(ex));


  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.YEAR;
  63 import static org.testng.Assert.assertEquals;
  64 import static org.testng.Assert.assertTrue;
  65 import static org.testng.Assert.fail;
  66 
  67 import java.text.ParsePosition;

  68 import java.time.temporal.TemporalAccessor;
  69 import java.time.temporal.TemporalQuery;
  70 
  71 import org.testng.annotations.DataProvider;
  72 import org.testng.annotations.Test;
  73 
  74 /**
  75  * Test CharLiteralPrinterParser.
  76  */
  77 @Test
  78 public class TestCharLiteralParser extends AbstractTestPrinterParser {
  79 
  80     @DataProvider(name="success")
  81     Object[][] data_success() {
  82         return new Object[][] {
  83             // match
  84             {'a', true, "a", 0, 1},
  85             {'a', true, "aOTHER", 0, 1},
  86             {'a', true, "OTHERaOTHER", 5, 6},
  87             {'a', true, "OTHERa", 5, 6},
  88 
  89             // no match
  90             {'a', true, "", 0, 0},
  91             {'a', true, "a", 1, 1},
  92             {'a', true, "A", 0, 0},
  93             {'a', true, "b", 0, 0},
  94             {'a', true, "OTHERbOTHER", 5, 5},
  95             {'a', true, "OTHERb", 5, 5},
  96 
  97             // case insensitive
  98             {'a', false, "a", 0, 1},
  99             {'a', false, "A", 0, 1},
 100         };
 101     }
 102 
 103     @Test(dataProvider="success")
 104     public void test_parse_success(char c, boolean caseSensitive,
 105                                    String text, int pos, int expectedPos) {
 106         setCaseSensitive(caseSensitive);
 107         ParsePosition ppos = new ParsePosition(pos);
 108         TemporalAccessor parsed = getFormatter(c).parseUnresolved(text, ppos);
 109         if (ppos.getErrorIndex() != -1) {
 110             assertEquals(ppos.getIndex(), expectedPos);
 111         } else {
 112             assertEquals(ppos.getIndex(), expectedPos);
 113             assertEquals(parsed.isSupported(YEAR), false);
 114             assertEquals(parsed.query(TemporalQuery.chronology()), null);
 115             assertEquals(parsed.query(TemporalQuery.zoneId()), null);
 116         }
 117     }
 118 
 119     //-----------------------------------------------------------------------
 120     @DataProvider(name="error")
 121     Object[][] data_error() {
 122         return new Object[][] {
 123             {'a', "a", -1, IndexOutOfBoundsException.class},
 124             {'a', "a", 2, IndexOutOfBoundsException.class},
 125         };
 126     }
 127 
 128     @Test(dataProvider="error")
 129     public void test_parse_error(char c, String text, int pos, Class<?> expected) {
 130         try {
 131             ParsePosition ppos = new ParsePosition(pos);
 132             getFormatter(c).parseUnresolved(text, ppos);
 133             fail();
 134         } catch (RuntimeException ex) {
 135             assertTrue(expected.isInstance(ex));