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. Oracle designates this 8 * particular file as subject to the "Classpath" exception as provided 9 * by Oracle in the LICENSE file that accompanied this code. 10 * 11 * This code is distributed in the hope that it will be useful, but WITHOUT 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 * version 2 for more details (a copy is included in the LICENSE file that 15 * accompanied this code). 16 * 17 * You should have received a copy of the GNU General Public License version 18 * 2 along with this work; if not, write to the Free Software Foundation, 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 * 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 */ 25 26 /* 27 * Copyright (c) 2008-2012, Stephen Colebourne & Michael Nascimento Santos 28 * 29 * All rights reserved. 30 * 31 * Redistribution and use in source and binary forms, with or without 32 * modification, are permitted provided that the following conditions are met: 33 * 34 * * Redistributions of source code must retain the above copyright notice, 35 * this list of conditions and the following disclaimer. 36 * 37 * * Redistributions in binary form must reproduce the above copyright notice, 38 * this list of conditions and the following disclaimer in the documentation 39 * and/or other materials provided with the distribution. 40 * 41 * * Neither the name of JSR-310 nor the names of its contributors 42 * may be used to endorse or promote products derived from this software 43 * without specific prior written permission. 44 * 45 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 46 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 47 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 48 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 49 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 50 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 51 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 52 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 53 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 54 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 55 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 56 */ 57 package test.java.time.chrono; 58 59 import static java.time.temporal.ChronoField.DAY_OF_MONTH; 60 import static java.time.temporal.ChronoField.MONTH_OF_YEAR; 61 import static java.time.temporal.ChronoField.YEAR; 62 import static java.time.temporal.ChronoField.YEAR_OF_ERA; 63 import static org.testng.Assert.assertEquals; 64 65 import android.platform.test.annotations.LargeTest; 66 67 import java.time.DayOfWeek; 68 import java.time.LocalDate; 69 import java.time.chrono.IsoChronology; 70 import java.time.temporal.ChronoUnit; 71 import java.time.temporal.WeekFields; 72 import java.util.Calendar; 73 import java.util.GregorianCalendar; 74 import java.util.TimeZone; 75 76 import org.testng.annotations.DataProvider; 77 import org.testng.annotations.Test; 78 79 /** 80 * Test. 81 */ 82 @LargeTest 83 @Test 84 public class TestIsoChronoImpl { 85 86 @DataProvider(name = "RangeVersusCalendar") provider_rangeVersusCalendar()87 Object[][] provider_rangeVersusCalendar() { 88 return new Object[][]{ 89 {LocalDate.of(1583, 1, 1), LocalDate.of(2100, 1, 1)}, 90 }; 91 } 92 93 //----------------------------------------------------------------------- 94 // Verify ISO Calendar matches java.util.Calendar for range 95 //----------------------------------------------------------------------- 96 @Test(dataProvider = "RangeVersusCalendar") test_IsoChrono_vsCalendar(LocalDate isoStartDate, LocalDate isoEndDate)97 public void test_IsoChrono_vsCalendar(LocalDate isoStartDate, LocalDate isoEndDate) { 98 GregorianCalendar cal = new GregorianCalendar(); 99 assertEquals(cal.getCalendarType(), "gregory", "Unexpected calendar type"); 100 LocalDate isoDate = IsoChronology.INSTANCE.date(isoStartDate); 101 102 cal.setTimeZone(TimeZone.getTimeZone("GMT+00")); 103 cal.set(Calendar.YEAR, isoDate.get(YEAR)); 104 cal.set(Calendar.MONTH, isoDate.get(MONTH_OF_YEAR) - 1); 105 cal.set(Calendar.DAY_OF_MONTH, isoDate.get(DAY_OF_MONTH)); 106 107 while (isoDate.isBefore(isoEndDate)) { 108 assertEquals(isoDate.get(DAY_OF_MONTH), cal.get(Calendar.DAY_OF_MONTH), "Day mismatch in " + isoDate + "; cal: " + cal); 109 assertEquals(isoDate.get(MONTH_OF_YEAR), cal.get(Calendar.MONTH) + 1, "Month mismatch in " + isoDate); 110 assertEquals(isoDate.get(YEAR_OF_ERA), cal.get(Calendar.YEAR), "Year mismatch in " + isoDate); 111 112 isoDate = isoDate.plus(1, ChronoUnit.DAYS); 113 cal.add(Calendar.DAY_OF_MONTH, 1); 114 } 115 } 116 117 //----------------------------------------------------------------------- 118 // Verify ISO Calendar matches java.util.Calendar 119 // DayOfWeek, WeekOfMonth, WeekOfYear for range 120 //----------------------------------------------------------------------- 121 @Test(dataProvider = "RangeVersusCalendar") test_DayOfWeek_IsoChronology_vsCalendar(LocalDate isoStartDate, LocalDate isoEndDate)122 public void test_DayOfWeek_IsoChronology_vsCalendar(LocalDate isoStartDate, LocalDate isoEndDate) { 123 GregorianCalendar cal = new GregorianCalendar(); 124 assertEquals(cal.getCalendarType(), "gregory", "Unexpected calendar type"); 125 LocalDate isoDate = IsoChronology.INSTANCE.date(isoStartDate); 126 127 for (DayOfWeek firstDayOfWeek : DayOfWeek.values()) { 128 for (int minDays = 1; minDays <= 7; minDays++) { 129 WeekFields weekDef = WeekFields.of(firstDayOfWeek, minDays); 130 cal.setFirstDayOfWeek(Math.floorMod(firstDayOfWeek.getValue(), 7) + 1); 131 cal.setMinimalDaysInFirstWeek(minDays); 132 133 cal.setTimeZone(TimeZone.getTimeZone("GMT+00")); 134 cal.set(Calendar.YEAR, isoDate.get(YEAR)); 135 cal.set(Calendar.MONTH, isoDate.get(MONTH_OF_YEAR) - 1); 136 cal.set(Calendar.DAY_OF_MONTH, isoDate.get(DAY_OF_MONTH)); 137 138 // For every date in the range 139 while (isoDate.isBefore(isoEndDate)) { 140 assertEquals(isoDate.get(DAY_OF_MONTH), cal.get(Calendar.DAY_OF_MONTH), "Day mismatch in " + isoDate + "; cal: " + cal); 141 assertEquals(isoDate.get(MONTH_OF_YEAR), cal.get(Calendar.MONTH) + 1, "Month mismatch in " + isoDate); 142 assertEquals(isoDate.get(YEAR_OF_ERA), cal.get(Calendar.YEAR), "Year mismatch in " + isoDate); 143 144 int jdow = Math.floorMod(cal.get(Calendar.DAY_OF_WEEK) - 2, 7) + 1; 145 int dow = isoDate.get(weekDef.dayOfWeek()); 146 assertEquals(jdow, dow, "Calendar DayOfWeek does not match ISO DayOfWeek"); 147 148 int jweekOfMonth = cal.get(Calendar.WEEK_OF_MONTH); 149 int isoWeekOfMonth = isoDate.get(weekDef.weekOfMonth()); 150 assertEquals(jweekOfMonth, isoWeekOfMonth, "Calendar WeekOfMonth does not match ISO WeekOfMonth"); 151 152 int jweekOfYear = cal.get(Calendar.WEEK_OF_YEAR); 153 int weekOfYear = isoDate.get(weekDef.weekOfWeekBasedYear()); 154 assertEquals(jweekOfYear, weekOfYear, "GregorianCalendar WeekOfYear does not match WeekOfWeekBasedYear"); 155 156 int jWeekYear = cal.getWeekYear(); 157 int weekBasedYear = isoDate.get(weekDef.weekBasedYear()); 158 assertEquals(jWeekYear, weekBasedYear, "GregorianCalendar getWeekYear does not match YearOfWeekBasedYear"); 159 160 int jweeksInWeekyear = cal.getWeeksInWeekYear(); 161 int weeksInWeekBasedYear = (int)isoDate.range(weekDef.weekOfWeekBasedYear()).getMaximum(); 162 assertEquals(jweeksInWeekyear, weeksInWeekBasedYear, "length of weekBasedYear"); 163 164 isoDate = isoDate.plus(1, ChronoUnit.DAYS); 165 cal.add(Calendar.DAY_OF_MONTH, 1); 166 } 167 } 168 } 169 } 170 171 /** 172 * Return the ISO Day of Week from a java.util.Calendr DAY_OF_WEEK. 173 * @param the java.util.Calendar day of week (1=Sunday, 7=Saturday) 174 * @return the ISO DayOfWeek 175 */ toISOfromCalendarDOW(int i)176 private DayOfWeek toISOfromCalendarDOW(int i) { 177 return DayOfWeek.of(Math.floorMod(i - 2, 7) + 1); 178 } 179 } 180