/* * Copyright 2001-2010 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.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 MonthDay. Based on {@link TestYearMonth_Constuctors} */ public class TestMonthDay_Constructors extends TestCase { private static final DateTimeZone PARIS = DateTimeZone.forID("Europe/Paris"); private static final DateTimeZone LONDON = DateTimeZone.forID("Europe/London"); 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 long TEST_TIME_NOW = (31L + 28L + 31L + 30L + 31L + 9L -1L) * DateTimeConstants.MILLIS_PER_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(TestMonthDay_Constructors.class); } public TestMonthDay_Constructors(String name) { super(name); } protected void setUp() throws Exception { DateTimeUtils.setCurrentMillisFixed(TEST_TIME_NOW); zone = DateTimeZone.getDefault(); DateTimeZone.setDefault(LONDON); } protected void tearDown() throws Exception { DateTimeUtils.setCurrentMillisSystem(); DateTimeZone.setDefault(zone); zone = null; } //----------------------------------------------------------------------- public void testParse_noFormatter() throws Throwable { assertEquals(new MonthDay(6, 30), MonthDay.parse("--06-30")); assertEquals(new MonthDay(2, 29), MonthDay.parse("--02-29")); assertEquals(new MonthDay(6, 30), MonthDay.parse("2010-06-30")); assertEquals(new MonthDay(1, 2), MonthDay.parse("2010-002")); } public void testParse_formatter() throws Throwable { DateTimeFormatter f = DateTimeFormat.forPattern("yyyy--dd MM").withChronology(ISOChronology.getInstance(PARIS)); assertEquals(new MonthDay(6, 30), MonthDay.parse("2010--30 06", f)); } //----------------------------------------------------------------------- public void testFactory_FromCalendarFields() throws Exception { GregorianCalendar cal = new GregorianCalendar(1970, 1, 3, 4, 5, 6); cal.set(Calendar.MILLISECOND, 7); MonthDay expected = new MonthDay(2, 3); assertEquals(expected, MonthDay.fromCalendarFields(cal)); try { MonthDay.fromCalendarFields(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); MonthDay expected = new MonthDay(2, 3); assertEquals(expected, MonthDay.fromDateFields(cal.getTime())); try { MonthDay.fromDateFields(null); fail(); } catch (IllegalArgumentException ex) {} } //----------------------------------------------------------------------- /** * Test constructor () */ public void testConstructor() throws Throwable { MonthDay test = new MonthDay(); assertEquals(ISO_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(test, MonthDay.now()); } /** * Test constructor (DateTimeZone) */ public void testConstructor_DateTimeZone() throws Throwable { DateTime dt = new DateTime(2005, 6, 30, 23, 59, 0, 0, LONDON); DateTimeUtils.setCurrentMillisFixed(dt.getMillis()); // 23:59 in London is 00:59 the following day in Paris MonthDay test = new MonthDay(LONDON); assertEquals(ISO_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(30, test.getDayOfMonth()); assertEquals(test, MonthDay.now(LONDON)); test = new MonthDay(PARIS); assertEquals(ISO_UTC, test.getChronology()); assertEquals(7, test.getMonthOfYear()); assertEquals(1, test.getDayOfMonth()); assertEquals(test, MonthDay.now(PARIS)); } /** * Test constructor (DateTimeZone=null) */ public void testConstructor_nullDateTimeZone() throws Throwable { DateTime dt = new DateTime(2005, 6, 30, 23, 59, 0, 0, LONDON); DateTimeUtils.setCurrentMillisFixed(dt.getMillis()); // 23:59 in London is 00:59 the following day in Paris MonthDay test = new MonthDay((DateTimeZone) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(30, test.getDayOfMonth()); } /** * Test constructor (Chronology) */ public void testConstructor_Chronology() throws Throwable { MonthDay test = new MonthDay(GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); assertEquals(test, MonthDay.now(GREGORIAN_PARIS)); } /** * Test constructor (Chronology=null) */ public void testConstructor_nullChronology() throws Throwable { MonthDay test = new MonthDay((Chronology) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); } //----------------------------------------------------------------------- /** * Test constructor (long) */ public void testConstructor_long1() throws Throwable { MonthDay test = new MonthDay(TEST_TIME1); assertEquals(ISO_UTC, test.getChronology()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); } /** * Test constructor (long) */ public void testConstructor_long2() throws Throwable { MonthDay test = new MonthDay(TEST_TIME2); assertEquals(ISO_UTC, test.getChronology()); assertEquals(5, test.getMonthOfYear()); assertEquals(7, test.getDayOfMonth()); } /** * Test constructor (long, Chronology) */ public void testConstructor_long1_Chronology() throws Throwable { MonthDay test = new MonthDay(TEST_TIME1, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); } /** * Test constructor (long, Chronology) */ public void testConstructor_long2_Chronology() throws Throwable { MonthDay test = new MonthDay(TEST_TIME2, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(5, test.getMonthOfYear()); assertEquals(7, test.getDayOfMonth()); } /** * Test constructor (long, Chronology=null) */ public void testConstructor_long_nullChronology() throws Throwable { MonthDay test = new MonthDay(TEST_TIME1, null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); } //----------------------------------------------------------------------- public void testConstructor_Object() throws Throwable { Date date = new Date(TEST_TIME1); MonthDay test = new MonthDay(date); assertEquals(ISO_UTC, test.getChronology()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); } public void testConstructor_nullObject() throws Throwable { MonthDay test = new MonthDay((Object) null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); } public void testConstructor_ObjectString1() throws Throwable { MonthDay test = new MonthDay("1972-12"); assertEquals(ISO_UTC, test.getChronology()); assertEquals(12, test.getMonthOfYear()); assertEquals(1, test.getDayOfMonth()); } public void testConstructor_ObjectString5() throws Throwable { MonthDay test = new MonthDay("10"); assertEquals(ISO_UTC, test.getChronology()); assertEquals(1, test.getMonthOfYear()); assertEquals(1, test.getDayOfMonth()); } public void testConstructor_ObjectStringEx1() throws Throwable { try { new MonthDay("T10:20:30.040"); fail(); } catch (IllegalArgumentException ex) { // expected } } public void testConstructor_ObjectStringEx2() throws Throwable { try { new MonthDay("T10:20:30.040+14:00"); fail(); } catch (IllegalArgumentException ex) { // expected } } public void testConstructor_ObjectStringEx3() throws Throwable { try { new MonthDay("10:20:30.040"); fail(); } catch (IllegalArgumentException ex) { // expected } } public void testConstructor_ObjectStringEx4() throws Throwable { try { new MonthDay("10:20:30.040+14:00"); fail(); } catch (IllegalArgumentException ex) { // expected } } //----------------------------------------------------------------------- /** * Test constructor (Object, Chronology) */ public void testConstructor_Object_Chronology() throws Throwable { Date date = new Date(TEST_TIME1); MonthDay test = new MonthDay(date, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); } /** * Test constructor (Object=null, Chronology) */ public void testConstructor_nullObject_Chronology() throws Throwable { MonthDay test = new MonthDay((Object) null, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); } /** * Test constructor (Object, Chronology=null) */ public void testConstructor_Object_nullChronology() throws Throwable { Date date = new Date(TEST_TIME1); MonthDay test = new MonthDay(date, null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(4, test.getMonthOfYear()); assertEquals(6, test.getDayOfMonth()); } /** * Test constructor (Object=null, Chronology=null) */ public void testConstructor_nullObject_nullChronology() throws Throwable { MonthDay test = new MonthDay((Object) null, null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(9, test.getDayOfMonth()); } //----------------------------------------------------------------------- /** * Test constructor (int, int) */ public void testConstructor_int_int() throws Throwable { MonthDay test = new MonthDay(6, 30); assertEquals(ISO_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(30, test.getDayOfMonth()); try { new MonthDay(Integer.MIN_VALUE, 6); fail(); } catch (IllegalArgumentException ex) {} try { new MonthDay(Integer.MAX_VALUE, 6); fail(); } catch (IllegalArgumentException ex) {} try { new MonthDay(1970, 0); fail(); } catch (IllegalArgumentException ex) {} try { new MonthDay(1970, 13); fail(); } catch (IllegalArgumentException ex) {} } /** * Test constructor (int, int, Chronology) */ public void testConstructor_int_int_Chronology() throws Throwable { MonthDay test = new MonthDay(6, 30, GREGORIAN_PARIS); assertEquals(GREGORIAN_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(30, test.getDayOfMonth()); try { new MonthDay(Integer.MIN_VALUE, 6, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} try { new MonthDay(Integer.MAX_VALUE, 6, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} try { new MonthDay(1970, 0, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} try { new MonthDay(1970, 13, GREGORIAN_PARIS); fail(); } catch (IllegalArgumentException ex) {} } /** * Test constructor (int, int, Chronology=null) */ public void testConstructor_int_int_nullChronology() throws Throwable { MonthDay test = new MonthDay(6, 30, null); assertEquals(ISO_UTC, test.getChronology()); assertEquals(6, test.getMonthOfYear()); assertEquals(30, test.getDayOfMonth()); } }