/* * Copyright 2001-2006 Stephen Colebourne * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.joda.time; import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; import junit.framework.TestCase; import junit.framework.TestSuite; import org.joda.time.chrono.BuddhistChronology; import org.joda.time.chrono.GregorianChronology; import org.joda.time.chrono.ISOChronology; import org.joda.time.format.DateTimeFormat; import org.joda.time.format.DateTimeFormatter; /** * This class is a Junit unit test for LocalDateTime. * * @author Stephen Colebourne */ public class TestLocalDateTime_Constructors extends TestCase { private static final DateTimeZone LONDON = DateTimeZone.forID("Europe/London"); private static final DateTimeZone PARIS = DateTimeZone.forID("Europe/Paris"); private static final DateTimeZone MOSCOW = DateTimeZone.forID("Europe/Moscow"); private static final Chronology ISO_UTC = ISOChronology.getInstanceUTC(); private static final Chronology GREGORIAN_UTC = GregorianChronology.getInstanceUTC(); private static final Chronology GREGORIAN_PARIS = GregorianChronology.getInstance(PARIS); private static final Chronology GREGORIAN_MOSCOW = GregorianChronology.getInstance(MOSCOW); private static final Chronology BUDDHIST_UTC = BuddhistChronology.getInstanceUTC(); private static final int OFFSET_PARIS = PARIS.getOffset(0L) / DateTimeConstants.MILLIS_PER_HOUR; private static final int OFFSET_MOSCOW = MOSCOW.getOffset(0L) / DateTimeConstants.MILLIS_PER_HOUR; private long MILLIS_OF_DAY = 10L * DateTimeConstants.MILLIS_PER_HOUR + 20L * DateTimeConstants.MILLIS_PER_MINUTE + 30L * DateTimeConstants.MILLIS_PER_SECOND + 40L; private long TEST_TIME_NOW = (31L + 28L + 31L + 30L + 31L + 9L -1L) * DateTimeConstants.MILLIS_PER_DAY + MILLIS_OF_DAY; private long TEST_TIME1 = (31L + 28L + 31L + 6L -1L) * DateTimeConstants.MILLIS_PER_DAY + 12L * DateTimeConstants.MILLIS_PER_HOUR + 24L * DateTimeConstants.MILLIS_PER_MINUTE; private long TEST_TIME2 = (365L + 31L + 28L + 31L + 30L + 7L -1L) * DateTimeConstants.MILLIS_PER_DAY + 14L * DateTimeConstants.MILLIS_PER_HOUR + 28L * DateTimeConstants.MILLIS_PER_MINUTE; private DateTimeZone zone = null; public static void main(String[] args) { junit.textui.TestRunner.run(suite()); } public static TestSuite suite() { return new TestSuite(TestLocalDateTime_Constructors.class); } public TestLocalDateTime_Constructors(String name) { super(name); } protected void setUp() throws Exception { DateTimeUtils.setCurrentMillisFixed(TEST_TIME_NOW); zone = DateTimeZone.getDefault(); DateTimeZone.setDefault(MOSCOW); } protected void tearDown() throws Exception { DateTimeUtils.setCurrentMillisSystem(); DateTimeZone.setDefault(zone); zone = null; } //----------------------------------------------------------------------- public void testParse_noFormatter() throws Throwable { assertEquals(new LocalDateTime(2010, 6, 30, 1, 20), LocalDateTime.parse("2010-06-30T01:20")); assertEquals(new LocalDateTime(2010, 1, 2, 14, 50, 30, 432), LocalDateTime.parse("2010-002T14:50:30.432")); } public void testParse_formatter() throws Throwable { DateTimeFormatter f = DateTimeFormat.forPattern("yyyy--dd MM HH").withChronology(ISOChronology.getInstance(PARIS)); assertEquals(new LocalDateTime(2010, 6, 30, 13, 0), LocalDateTime.parse("2010--30 06 13", f)); } //----------------------------------------------------------------------- public void testFactory_FromCalendarFields() throws Exception { GregorianCalendar cal = new GregorianCalendar(1970, 1, 3, 4, 5, 6); cal.set(Calendar.MILLISECOND, 7); LocalDateTime expected = new LocalDateTime(1970, 2, 3, 4, 5, 6, 7); assertEquals(expected, LocalDateTime.fromCalendarFields(cal)); try { LocalDateTime.fromCalendarFields((Calendar) null); fail(); } catch (IllegalArgumentException ex) {} } //----------------------------------------------------------------------- public void testFactory_FromDateFields() throws Exception { GregorianCalendar cal = new GregorianCalendar(1970, 1, 3, 4, 5, 6); cal.set(Calendar.MILLISECOND, 7); LocalDateTime expected = new LocalDateTime(1970, 2, 3, 4, 5 ,6, 7); assertEquals(expected, LocalDateTime.fromDateFields(cal.getTime())); try { LocalDateTime.fromDateFields((Date) null); fail(); } catch (IllegalArgumentException ex) {} } //----------------------------------------------------------------------- public void testConstructor() throws Throwable { LocalDateTime test = new LocalDateTime(); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); assertEquals(test, LocalDateTime.now()); } //----------------------------------------------------------------------- public void testConstructor_DateTimeZone() throws Throwable { DateTime dt = new DateTime(2005, 6, 8, 23, 59, 0, 0, LONDON); DateTimeUtils.setCurrentMillisFixed(dt.getMillis()); // 23:59 in London is 00:59 the following day in Paris LocalDateTime test = new LocalDateTime(LONDON); assertEquals(ISO_UTC, test.getChronology()); assertEquals(2005, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(8, test.getDayOfMonth()); assertEquals(23, test.getHourOfDay()); assertEquals(59, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); assertEquals(test, LocalDateTime.now(LONDON)); test = new LocalDateTime(PARIS); assertEquals(ISO_UTC, test.getChronology()); assertEquals(2005, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(0, test.getHourOfDay()); assertEquals(59, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); assertEquals(test, LocalDateTime.now(PARIS)); } public void testConstructor_nullDateTimeZone() throws Throwable { LocalDateTime test = new LocalDateTime((DateTimeZone) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); } //----------------------------------------------------------------------- public void testConstructor_Chronology() throws Throwable { LocalDateTime test = new LocalDateTime(GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10 + OFFSET_PARIS, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); assertEquals(test, LocalDateTime.now(GREGORIAN_PARIS)); } public void testConstructor_nullChronology() throws Throwable { LocalDateTime test = new LocalDateTime((Chronology) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); } //----------------------------------------------------------------------- public void testConstructor_long1() throws Throwable { LocalDateTime test = new LocalDateTime(TEST_TIME1); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_long2() throws Throwable { LocalDateTime test = new LocalDateTime(TEST_TIME2); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1971, test.getYear()); assertEquals(5, test.getMonthOfYear()); assertEquals(7, test.getDayOfMonth()); assertEquals(14 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(28, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } //----------------------------------------------------------------------- public void testConstructor_long1_DateTimeZone() throws Throwable { LocalDateTime test = new LocalDateTime(TEST_TIME1, PARIS); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_PARIS, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_long2_DateTimeZone() throws Throwable { LocalDateTime test = new LocalDateTime(TEST_TIME2, PARIS); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1971, test.getYear()); assertEquals(5, test.getMonthOfYear()); assertEquals(7, test.getDayOfMonth()); assertEquals(14 + OFFSET_PARIS, test.getHourOfDay()); assertEquals(28, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_long_nullDateTimeZone() throws Throwable { LocalDateTime test = new LocalDateTime(TEST_TIME1, (DateTimeZone) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } //----------------------------------------------------------------------- public void testConstructor_long1_Chronology() throws Throwable { LocalDateTime test = new LocalDateTime(TEST_TIME1, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_PARIS, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_long2_Chronology() throws Throwable { LocalDateTime test = new LocalDateTime(TEST_TIME2, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(1971, test.getYear()); assertEquals(5, test.getMonthOfYear()); assertEquals(7, test.getDayOfMonth()); assertEquals(14 + OFFSET_PARIS, test.getHourOfDay()); assertEquals(28, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_long_nullChronology() throws Throwable { LocalDateTime test = new LocalDateTime(TEST_TIME1, (Chronology) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } //----------------------------------------------------------------------- public void testConstructor_Object1() throws Throwable { Date date = new Date(TEST_TIME1); LocalDateTime test = new LocalDateTime(date); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_nullObject() throws Throwable { LocalDateTime test = new LocalDateTime((Object) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); } public void testConstructor_ObjectString1() throws Throwable { LocalDateTime test = new LocalDateTime("1972-04-06"); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1972, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(0, test.getHourOfDay()); assertEquals(0, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_ObjectString2() throws Throwable { LocalDateTime test = new LocalDateTime("1972-037"); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1972, test.getYear()); assertEquals(2, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(0, test.getHourOfDay()); assertEquals(0, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_ObjectString3() throws Throwable { LocalDateTime test = new LocalDateTime("1972-04-06T10:20:30.040"); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1972, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(10, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); } public void testConstructor_ObjectString4() throws Throwable { LocalDateTime test = new LocalDateTime("1972-04-06T10:20"); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1972, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(10, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_ObjectStringEx1() throws Throwable { try { new LocalDateTime("1970-04-06T+14:00"); fail(); } catch (IllegalArgumentException ex) {} } public void testConstructor_ObjectStringEx2() throws Throwable { try { new LocalDateTime("1970-04-06T10:20:30.040+14:00"); fail(); } catch (IllegalArgumentException ex) {} } public void testConstructor_ObjectStringEx3() throws Throwable { try { new LocalDateTime("T10:20:30.040"); fail(); } catch (IllegalArgumentException ex) {} } public void testConstructor_ObjectStringEx4() throws Throwable { try { new LocalDateTime("T10:20:30.040+14:00"); fail(); } catch (IllegalArgumentException ex) {} } public void testConstructor_ObjectStringEx5() throws Throwable { try { new LocalDateTime("10:20:30.040"); fail(); } catch (IllegalArgumentException ex) {} } public void testConstructor_ObjectStringEx6() throws Throwable { try { new LocalDateTime("10:20:30.040+14:00"); fail(); } catch (IllegalArgumentException ex) {} } public void testConstructor_ObjectLocalDateTime() throws Throwable { LocalDateTime dt = new LocalDateTime(1970, 5, 6, 10, 20, 30, 40, BUDDHIST_UTC); LocalDateTime test = new LocalDateTime(dt); assertEquals(BUDDHIST_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(5, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(10, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); } public void testConstructor_ObjectLocalDate() throws Throwable { LocalDate date = new LocalDate(1970, 5, 6); try { new LocalDateTime(date); fail(); } catch (IllegalArgumentException ex) {} } public void testConstructor_ObjectLocalTime() throws Throwable { LocalTime time = new LocalTime(10, 20, 30, 40); try { new LocalDateTime(time); fail(); } catch (IllegalArgumentException ex) {} } //----------------------------------------------------------------------- public void testConstructor_Object_DateTimeZone() throws Throwable { Date date = new Date(TEST_TIME1); LocalDateTime test = new LocalDateTime(date, PARIS); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_PARIS, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_Object_DateTimeZoneMoscow() throws Throwable { LocalDateTime test = new LocalDateTime("1970-04-06T12:24:00", MOSCOW); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_Object_DateTimeZoneMoscowBadDateTime() throws Throwable { // 1981-03-31T23:59:59.999+03:00 followed by 1981-04-01T01:00:00.000+04:00 // 1981-09-30T23:59:59.999+04:00 followed by 1981-09-30T23:00:00.000+03:00 // when a DST non-existing time is passed in, it should still work (ie. zone ignored) LocalDateTime test = new LocalDateTime("1981-04-01T00:30:00", MOSCOW); // doesnt exist assertEquals(ISO_UTC, test.getChronology()); assertEquals(1981, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(1, test.getDayOfMonth()); assertEquals(0, test.getHourOfDay()); assertEquals(30, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_nullObject_DateTimeZone() throws Throwable { LocalDateTime test = new LocalDateTime((Object) null, PARIS); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10 + OFFSET_PARIS, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); } public void testConstructor_Object_nullDateTimeZone() throws Throwable { Date date = new Date(TEST_TIME1); LocalDateTime test = new LocalDateTime(date, (DateTimeZone) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_nullObject_nullDateTimeZone() throws Throwable { LocalDateTime test = new LocalDateTime((Object) null, (DateTimeZone) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); } //----------------------------------------------------------------------- public void testConstructor_Object_Chronology() throws Throwable { Date date = new Date(TEST_TIME1); LocalDateTime test = new LocalDateTime(date, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_PARIS, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_Object_ChronologyMoscow() throws Throwable { LocalDateTime test = new LocalDateTime("1970-04-06T12:24:00", GREGORIAN_MOSCOW); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_Object_ChronologyMoscowBadDateTime() throws Throwable { // 1981-03-31T23:59:59.999+03:00 followed by 1981-04-01T01:00:00.000+04:00 // 1981-09-30T23:59:59.999+04:00 followed by 1981-09-30T23:00:00.000+03:00 // when a DST non-existing time is passed in, it should still work (ie. zone ignored) LocalDateTime test = new LocalDateTime("1981-04-01T00:30:00", GREGORIAN_MOSCOW); // doesnt exist assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(1981, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(1, test.getDayOfMonth()); assertEquals(0, test.getHourOfDay()); assertEquals(30, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_nullObject_Chronology() throws Throwable { LocalDateTime test = new LocalDateTime((Object) null, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10 + OFFSET_PARIS, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); } public void testConstructor_Object_nullChronology() throws Throwable { Date date = new Date(TEST_TIME1); LocalDateTime test = new LocalDateTime(date, (Chronology) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); assertEquals(12 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(24, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } public void testConstructor_nullObject_nullChronology() throws Throwable { LocalDateTime test = new LocalDateTime((Object) null, (Chronology) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1970, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10 + OFFSET_MOSCOW, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); } //----------------------------------------------------------------------- public void testConstructor_int_int_int_int_int() throws Throwable { LocalDateTime test = new LocalDateTime(2005, 6, 9, 10, 20); assertEquals(ISO_UTC, test.getChronology()); assertEquals(2005, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(0, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } //----------------------------------------------------------------------- public void testConstructor_int_int_int_int_int_int() throws Throwable { LocalDateTime test = new LocalDateTime(2005, 6, 9, 10, 20, 30); assertEquals(ISO_UTC, test.getChronology()); assertEquals(2005, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(0, test.getMillisOfSecond()); } //----------------------------------------------------------------------- public void testConstructor_int_int_int_int_int_int_int() throws Throwable { LocalDateTime test = new LocalDateTime(2005, 6, 9, 10, 20, 30, 40); assertEquals(ISO_UTC, test.getChronology()); assertEquals(2005, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10, test.getHourOfDay()); assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); try { new LocalDateTime(Integer.MIN_VALUE, 6, 9, 10, 20, 30, 40); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(Integer.MAX_VALUE, 6, 9, 10, 20, 30, 40); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(2005, 0, 9, 10, 20, 30, 40); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(2005, 13, 9, 10, 20, 30, 40); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(2005, 6, 0, 10, 20, 30, 40); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(2005, 6, 31, 10, 20, 30, 40); fail(); } catch (IllegalArgumentException ex) {} new LocalDateTime(2005, 7, 31, 10, 20, 30, 40); try { new LocalDateTime(2005, 7, 32, 10, 20, 30, 40); fail(); } catch (IllegalArgumentException ex) {} } public void testConstructor_int_int_int_Chronology() throws Throwable { LocalDateTime test = new LocalDateTime(2005, 6, 9, 10, 20, 30, 40, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(2005, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(10, test.getHourOfDay()); // PARIS has no effect assertEquals(20, test.getMinuteOfHour()); assertEquals(30, test.getSecondOfMinute()); assertEquals(40, test.getMillisOfSecond()); try { new LocalDateTime(Integer.MIN_VALUE, 6, 9, 10, 20, 30, 40, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(Integer.MAX_VALUE, 6, 9, 10, 20, 30, 40, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(2005, 0, 9, 10, 20, 30, 40, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(2005, 13, 9, 10, 20, 30, 40, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(2005, 6, 0, 10, 20, 30, 40, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} try { new LocalDateTime(2005, 6, 31, 10, 20, 30, 40, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} new LocalDateTime(2005, 7, 31, 10, 20, 30, 40, GREGORIAN_PARIS); try { new LocalDateTime(2005, 7, 32, 10, 20, 30, 40, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} } public void testConstructor_int_int_int_nullChronology() throws Throwable { LocalDateTime test = new LocalDateTime(2005, 6, 9, 10, 20, 30, 40, null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(2005, test.getYear()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); } }