/*
* Copyright (c) 2008-2012, Stephen Colebourne & Michael Nascimento Santos
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of JSR-310 nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package javax.time.chrono.global;
import static java.time.calendrical.ChronoField.DAY_OF_MONTH;
import static java.time.calendrical.ChronoField.DAY_OF_YEAR;
import static java.time.calendrical.ChronoField.MONTH_OF_YEAR;
import static java.time.calendrical.ChronoField.YEAR;
import static java.time.calendrical.ChronoField.YEAR_OF_ERA;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertFalse;
import static org.testng.Assert.assertTrue;
import java.time.DateTimeException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.Month;
import java.time.calendrical.ChronoField;
import java.time.calendrical.DateTimeAdjusters;
import java.time.calendrical.DateTimeValueRange;
import java.time.chrono.Chrono;
import java.time.chrono.ChronoLocalDate;
import java.time.chrono.ISOChrono;
import java.time.chrono.global.ThaiBuddhistChrono;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
/**
* Test.
*/
@Test
public class TestThaiBuddhistChrono {
private static final int YDIFF = 543;
// -----------------------------------------------------------------------
// Chrono.ofName("ThaiBuddhist") Lookup by name
// -----------------------------------------------------------------------
@Test(groups = { "tck" })
public void test_chrono_byName() {
Chrono<ThaiBuddhistChrono> c = ThaiBuddhistChrono.INSTANCE;
Chrono<?> test = Chrono.of("ThaiBuddhist");
Assert.assertNotNull(test, "The ThaiBuddhist calendar could not be found byName");
Assert.assertEquals(test.getId(), "ThaiBuddhist", "ID mismatch");
Assert.assertEquals(test.getCalendarType(), "buddhist", "Type mismatch");
Assert.assertEquals(test, c);
}
// -----------------------------------------------------------------------
// creation, toLocalDate()
// -----------------------------------------------------------------------
@DataProvider(name = "samples")
Object[][] data_samples() {
return new Object[][] { { ThaiBuddhistChrono.INSTANCE.date(1 + YDIFF, 1, 1), LocalDate.of(1, 1, 1) },
{ ThaiBuddhistChrono.INSTANCE.date(1 + YDIFF, 1, 2), LocalDate.of(1, 1, 2) },
{ ThaiBuddhistChrono.INSTANCE.date(1 + YDIFF, 1, 3), LocalDate.of(1, 1, 3) },
{ ThaiBuddhistChrono.INSTANCE.date(2 + YDIFF, 1, 1), LocalDate.of(2, 1, 1) },
{ ThaiBuddhistChrono.INSTANCE.date(3 + YDIFF, 1, 1), LocalDate.of(3, 1, 1) },
{ ThaiBuddhistChrono.INSTANCE.date(3 + YDIFF, 12, 6), LocalDate.of(3, 12, 6) },
{ ThaiBuddhistChrono.INSTANCE.date(4 + YDIFF, 1, 1), LocalDate.of(4, 1, 1) },
{ ThaiBuddhistChrono.INSTANCE.date(4 + YDIFF, 7, 3), LocalDate.of(4, 7, 3) },
{ ThaiBuddhistChrono.INSTANCE.date(4 + YDIFF, 7, 4), LocalDate.of(4, 7, 4) },
{ ThaiBuddhistChrono.INSTANCE.date(5 + YDIFF, 1, 1), LocalDate.of(5, 1, 1) },
{ ThaiBuddhistChrono.INSTANCE.date(1662 + YDIFF, 3, 3), LocalDate.of(1662, 3, 3) },
{ ThaiBuddhistChrono.INSTANCE.date(1728 + YDIFF, 10, 28), LocalDate.of(1728, 10, 28) },
{ ThaiBuddhistChrono.INSTANCE.date(1728 + YDIFF, 10, 29), LocalDate.of(1728, 10, 29) },
{ ThaiBuddhistChrono.INSTANCE.date(2555, 8, 29), LocalDate.of(2012, 8, 29) }, };
}
@Test(dataProvider = "samples", groups = { "tck" })
public void test_toLocalDate(ChronoLocalDate<ThaiBuddhistChrono> jdate, LocalDate iso) {
assertEquals(LocalDate.from(jdate), iso);
}
@Test(dataProvider = "samples", groups = { "tck" })
public void test_fromCalendrical(ChronoLocalDate<ThaiBuddhistChrono> jdate, LocalDate iso) {
assertEquals(ThaiBuddhistChrono.INSTANCE.date(iso), jdate);
}
@DataProvider(name = "badDates")
Object[][] data_badDates() {
return new Object[][] { { 1728, 0, 0 },
{ 1728, -1, 1 }, { 1728, 0, 1 }, { 1728, 14, 1 }, { 1728, 15, 1 },
{ 1728, 1, -1 }, { 1728, 1, 0 }, { 1728, 1, 32 },
{ 1728, 12, -1 }, { 1728, 12, 0 }, { 1728, 12, 32 }, };
}
@Test(dataProvider = "badDates", groups = { "tck" }, expectedExceptions = DateTimeException.class)
public void test_badDates(int year, int month, int dom) {
ThaiBuddhistChrono.INSTANCE.date(year, month, dom);
}
// -----------------------------------------------------------------------
// with(WithAdjuster)
// -----------------------------------------------------------------------
@Test(groups = { "tck" })
public void test_adjust1() {
ChronoLocalDate<ThaiBuddhistChrono> base = ThaiBuddhistChrono.INSTANCE.date(1728, 10, 29);
ChronoLocalDate<ThaiBuddhistChrono> test = base.with(DateTimeAdjusters.lastDayOfMonth());
assertEquals(test, ThaiBuddhistChrono.INSTANCE.date(1728, 10, 31));
}
@Test(groups = { "tck" })
public void test_adjust2() {
ChronoLocalDate<ThaiBuddhistChrono> base = ThaiBuddhistChrono.INSTANCE.date(1728, 12, 2);
ChronoLocalDate<ThaiBuddhistChrono> test = base.with(DateTimeAdjusters.lastDayOfMonth());
assertEquals(test, ThaiBuddhistChrono.INSTANCE.date(1728, 12, 31));
}
// -----------------------------------------------------------------------
// withYear()
// -----------------------------------------------------------------------
@Test(groups = { "tck" })
public void test_withYear_BE() {
ChronoLocalDate<ThaiBuddhistChrono> base = ThaiBuddhistChrono.INSTANCE.date(2555, 8, 29);
ChronoLocalDate<ThaiBuddhistChrono> test = base.with(YEAR, 2554);
assertEquals(test, ThaiBuddhistChrono.INSTANCE.date(2554, 8, 29));
}
@Test(groups = { "tck" })
public void test_withYear_BBE() {
ChronoLocalDate<ThaiBuddhistChrono> base = ThaiBuddhistChrono.INSTANCE.date(-2554, 8, 29);
ChronoLocalDate<ThaiBuddhistChrono> test = base.with(YEAR_OF_ERA, 2554);
assertEquals(test, ThaiBuddhistChrono.INSTANCE.date(-2553, 8, 29));
}
// -----------------------------------------------------------------------
// withEra()
// -----------------------------------------------------------------------
@Test(groups = { "tck" })
public void test_withEra_BE() {
ChronoLocalDate<ThaiBuddhistChrono> base = ThaiBuddhistChrono.INSTANCE.date(2555, 8, 29);
ChronoLocalDate<ThaiBuddhistChrono> test = base.with(ChronoField.ERA, ThaiBuddhistChrono.ERA_BE.getValue());
assertEquals(test, ThaiBuddhistChrono.INSTANCE.date(2555, 8, 29));
}
@Test(groups = { "tck" })
public void test_withEra_BBE() {
ChronoLocalDate<ThaiBuddhistChrono> base = ThaiBuddhistChrono.INSTANCE.date(-2554, 8, 29);
ChronoLocalDate<ThaiBuddhistChrono> test = base.with(ChronoField.ERA, ThaiBuddhistChrono.ERA_BEFORE_BE.getValue());
assertEquals(test, ThaiBuddhistChrono.INSTANCE.date(-2554, 8, 29));
}
@Test(groups = { "tck" })
public void test_withEra_swap() {
ChronoLocalDate<ThaiBuddhistChrono> base = ThaiBuddhistChrono.INSTANCE.date(-2554, 8, 29);
ChronoLocalDate<ThaiBuddhistChrono> test = base.with(ChronoField.ERA, ThaiBuddhistChrono.ERA_BE.getValue());
assertEquals(test, ThaiBuddhistChrono.INSTANCE.date(2555, 8, 29));
}
// -----------------------------------------------------------------------
// BuddhistDate.with(Local*)
// -----------------------------------------------------------------------
@Test(groups = { "tck" })
public void test_adjust_toLocalDate() {
ChronoLocalDate<ThaiBuddhistChrono> jdate = ThaiBuddhistChrono.INSTANCE.date(1726, 1, 4);
ChronoLocalDate<ThaiBuddhistChrono> test = jdate.with(LocalDate.of(2012, 7, 6));
assertEquals(test, ThaiBuddhistChrono.INSTANCE.date(2555, 7, 6));
}
@Test(groups = { "tck" }, expectedExceptions = DateTimeException.class)
public void test_adjust_toMonth() {
ChronoLocalDate<ThaiBuddhistChrono> jdate = ThaiBuddhistChrono.INSTANCE.date(1726, 1, 4);
jdate.with(Month.APRIL);
}
// -----------------------------------------------------------------------
// LocalDate.with(BuddhistDate)
// -----------------------------------------------------------------------
@Test(groups = { "tck" })
public void test_LocalDate_adjustToBuddhistDate() {
ChronoLocalDate<ThaiBuddhistChrono> jdate = ThaiBuddhistChrono.INSTANCE.date(2555, 10, 29);
LocalDate test = LocalDate.MIN_DATE.with(jdate);
assertEquals(test, LocalDate.of(2012, 10, 29));
}
@Test(groups = { "tck" })
public void test_LocalDateTime_adjustToBuddhistDate() {
ChronoLocalDate<ThaiBuddhistChrono> jdate = ThaiBuddhistChrono.INSTANCE.date(2555, 10, 29);
LocalDateTime test = LocalDateTime.MIN_DATE_TIME.with(jdate);
assertEquals(test, LocalDateTime.of(2012, 10, 29, 0, 0));
}
// -----------------------------------------------------------------------
// toString()
// -----------------------------------------------------------------------
@DataProvider(name = "toString")
Object[][] data_toString() {
return new Object[][] { { ThaiBuddhistChrono.INSTANCE.date(544, 1, 1), "ThaiBuddhist BE 544-01-01" },
{ ThaiBuddhistChrono.INSTANCE.date(2271, 10, 28), "ThaiBuddhist BE 2271-10-28" },
{ ThaiBuddhistChrono.INSTANCE.date(2271, 10, 29), "ThaiBuddhist BE 2271-10-29" },
{ ThaiBuddhistChrono.INSTANCE.date(2270, 12, 5), "ThaiBuddhist BE 2270-12-05" },
{ ThaiBuddhistChrono.INSTANCE.date(2270, 12, 6), "ThaiBuddhist BE 2270-12-06" }, };
}
@Test(dataProvider = "toString", groups = { "tck" })
public void test_toString(ChronoLocalDate<ThaiBuddhistChrono> jdate, String expected) {
assertEquals(jdate.toString(), expected);
}
// -----------------------------------------------------------------------
// chronology range(ChronoField)
// -----------------------------------------------------------------------
@Test(groups = { "tck" })
public void test_Chrono_range() {
long minYear = LocalDate.MIN_DATE.getYear() + YDIFF;
long maxYear = LocalDate.MAX_DATE.getYear() + YDIFF;
assertEquals(ThaiBuddhistChrono.INSTANCE.range(YEAR), DateTimeValueRange.of(minYear, maxYear));
assertEquals(ThaiBuddhistChrono.INSTANCE.range(YEAR_OF_ERA), DateTimeValueRange.of(1, -minYear + 1, maxYear));
assertEquals(ThaiBuddhistChrono.INSTANCE.range(DAY_OF_MONTH), DAY_OF_MONTH.range());
assertEquals(ThaiBuddhistChrono.INSTANCE.range(DAY_OF_YEAR), DAY_OF_YEAR.range());
assertEquals(ThaiBuddhistChrono.INSTANCE.range(MONTH_OF_YEAR), MONTH_OF_YEAR.range());
}
// -----------------------------------------------------------------------
// equals()
// -----------------------------------------------------------------------
@Test(groups = "tck")
public void test_equals_true() {
assertTrue(ThaiBuddhistChrono.INSTANCE.equals(ThaiBuddhistChrono.INSTANCE));
}
@Test(groups = "tck")
public void test_equals_false() {
assertFalse(ThaiBuddhistChrono.INSTANCE.equals(ISOChrono.INSTANCE));
}
}