blob: 249d23d5778cf954be16a3429ae48f02b45521c7 [file] [log] [blame]
/*
* Copyright 2001-2013 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.Locale;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.joda.time.chrono.CopticChronology;
import org.joda.time.chrono.LenientChronology;
import org.joda.time.chrono.StrictChronology;
/**
* This class is a Junit unit test for DateTime.
*
* @author Stephen Colebourne
* @author Mike Schrag
*/
public class TestDateTime_Properties extends TestCase {
// Test in 2002/03 as time zones are more well known
// (before the late 90's they were all over the place)
private static final DateTimeZone PARIS = DateTimeZone.forID("Europe/Paris");
private static final Chronology COPTIC_PARIS = CopticChronology.getInstance(PARIS);
//private static final DateTimeZone PARIS = DateTimeZone.forID("Europe/Paris");
private static final DateTimeZone LONDON = DateTimeZone.forID("Europe/London");
long y2002days = 365 + 365 + 366 + 365 + 365 + 365 + 366 + 365 + 365 + 365 +
366 + 365 + 365 + 365 + 366 + 365 + 365 + 365 + 366 + 365 +
365 + 365 + 366 + 365 + 365 + 365 + 366 + 365 + 365 + 365 +
366 + 365;
long y2003days = 365 + 365 + 366 + 365 + 365 + 365 + 366 + 365 + 365 + 365 +
366 + 365 + 365 + 365 + 366 + 365 + 365 + 365 + 366 + 365 +
365 + 365 + 366 + 365 + 365 + 365 + 366 + 365 + 365 + 365 +
366 + 365 + 365;
// 2002-06-09
private long TEST_TIME_NOW =
(y2002days + 31L + 28L + 31L + 30L + 31L + 9L -1L) * DateTimeConstants.MILLIS_PER_DAY;
// 2002-04-05 Fri
private long TEST_TIME1 =
(y2002days + 31L + 28L + 31L + 5L -1L) * DateTimeConstants.MILLIS_PER_DAY
+ 12L * DateTimeConstants.MILLIS_PER_HOUR
+ 24L * DateTimeConstants.MILLIS_PER_MINUTE;
// 2003-05-06 Tue
private long TEST_TIME2 =
(y2003days + 31L + 28L + 31L + 30L + 6L -1L) * DateTimeConstants.MILLIS_PER_DAY
+ 14L * DateTimeConstants.MILLIS_PER_HOUR
+ 28L * DateTimeConstants.MILLIS_PER_MINUTE;
private DateTimeZone zone = null;
private Locale locale = null;
public static void main(String[] args) {
junit.textui.TestRunner.run(suite());
}
public static TestSuite suite() {
return new TestSuite(TestDateTime_Properties.class);
}
public TestDateTime_Properties(String name) {
super(name);
}
protected void setUp() throws Exception {
DateTimeUtils.setCurrentMillisFixed(TEST_TIME_NOW);
zone = DateTimeZone.getDefault();
locale = Locale.getDefault();
DateTimeZone.setDefault(LONDON);
Locale.setDefault(Locale.UK);
}
protected void tearDown() throws Exception {
DateTimeUtils.setCurrentMillisSystem();
DateTimeZone.setDefault(zone);
Locale.setDefault(locale);
zone = null;
}
//-----------------------------------------------------------------------
public void testTest() {
assertEquals("2002-06-09T00:00:00.000Z", new Instant(TEST_TIME_NOW).toString());
assertEquals("2002-04-05T12:24:00.000Z", new Instant(TEST_TIME1).toString());
assertEquals("2003-05-06T14:28:00.000Z", new Instant(TEST_TIME2).toString());
}
//-----------------------------------------------------------------------
public void testPropertyGetEra() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().era(), test.era().getField());
assertEquals("era", test.era().getName());
assertEquals("Property[era]", test.era().toString());
assertSame(test, test.era().getDateTime());
assertEquals(1, test.era().get());
assertEquals("1", test.era().getAsString());
assertEquals("AD", test.era().getAsText());
assertEquals("AD", test.era().getField().getAsText(1, Locale.ENGLISH));
assertEquals("ap. J.-C.", test.era().getAsText(Locale.FRENCH));
assertEquals("ap. J.-C.", test.era().getField().getAsText(1, Locale.FRENCH));
assertEquals("AD", test.era().getAsShortText());
assertEquals("AD", test.era().getField().getAsShortText(1, Locale.ENGLISH));
assertEquals("ap. J.-C.", test.era().getAsShortText(Locale.FRENCH));
assertEquals("ap. J.-C.", test.era().getField().getAsShortText(1, Locale.FRENCH));
assertEquals(test.getChronology().eras(), test.era().getDurationField());
assertEquals(null, test.era().getRangeDurationField());
assertEquals(2, test.era().getMaximumTextLength(null));
assertEquals(9, test.era().getMaximumTextLength(Locale.FRENCH));
assertEquals(2, test.era().getMaximumShortTextLength(null));
assertEquals(9, test.era().getMaximumShortTextLength(Locale.FRENCH));
}
//-----------------------------------------------------------------------
public void testPropertyGetYearOfEra() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().yearOfEra(), test.yearOfEra().getField());
assertEquals("yearOfEra", test.yearOfEra().getName());
assertEquals("Property[yearOfEra]", test.yearOfEra().toString());
assertSame(test, test.yearOfEra().getDateTime());
assertEquals(2004, test.yearOfEra().get());
assertEquals("2004", test.yearOfEra().getAsString());
assertEquals("2004", test.yearOfEra().getAsText());
assertEquals("2004", test.yearOfEra().getAsText(Locale.FRENCH));
assertEquals("2004", test.yearOfEra().getAsShortText());
assertEquals("2004", test.yearOfEra().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().years(), test.yearOfEra().getDurationField());
assertEquals(null, test.yearOfEra().getRangeDurationField());
assertEquals(9, test.yearOfEra().getMaximumTextLength(null));
assertEquals(9, test.yearOfEra().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyGetCenturyOfEra() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().centuryOfEra(), test.centuryOfEra().getField());
assertEquals("centuryOfEra", test.centuryOfEra().getName());
assertEquals("Property[centuryOfEra]", test.centuryOfEra().toString());
assertSame(test, test.centuryOfEra().getDateTime());
assertEquals(20, test.centuryOfEra().get());
assertEquals("20", test.centuryOfEra().getAsString());
assertEquals("20", test.centuryOfEra().getAsText());
assertEquals("20", test.centuryOfEra().getAsText(Locale.FRENCH));
assertEquals("20", test.centuryOfEra().getAsShortText());
assertEquals("20", test.centuryOfEra().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().centuries(), test.centuryOfEra().getDurationField());
assertEquals(null, test.centuryOfEra().getRangeDurationField());
assertEquals(7, test.centuryOfEra().getMaximumTextLength(null));
assertEquals(7, test.centuryOfEra().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyGetYearOfCentury() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().yearOfCentury(), test.yearOfCentury().getField());
assertEquals("yearOfCentury", test.yearOfCentury().getName());
assertEquals("Property[yearOfCentury]", test.yearOfCentury().toString());
assertSame(test, test.yearOfCentury().getDateTime());
assertEquals(4, test.yearOfCentury().get());
assertEquals("4", test.yearOfCentury().getAsString());
assertEquals("4", test.yearOfCentury().getAsText());
assertEquals("4", test.yearOfCentury().getAsText(Locale.FRENCH));
assertEquals("4", test.yearOfCentury().getAsShortText());
assertEquals("4", test.yearOfCentury().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().years(), test.yearOfCentury().getDurationField());
assertEquals(test.getChronology().centuries(), test.yearOfCentury().getRangeDurationField());
assertEquals(2, test.yearOfCentury().getMaximumTextLength(null));
assertEquals(2, test.yearOfCentury().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyGetWeekyear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().weekyear(), test.weekyear().getField());
assertEquals("weekyear", test.weekyear().getName());
assertEquals("Property[weekyear]", test.weekyear().toString());
assertSame(test, test.weekyear().getDateTime());
assertEquals(2004, test.weekyear().get());
assertEquals("2004", test.weekyear().getAsString());
assertEquals("2004", test.weekyear().getAsText());
assertEquals("2004", test.weekyear().getAsText(Locale.FRENCH));
assertEquals("2004", test.weekyear().getAsShortText());
assertEquals("2004", test.weekyear().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().weekyears(), test.weekyear().getDurationField());
assertEquals(null, test.weekyear().getRangeDurationField());
assertEquals(9, test.weekyear().getMaximumTextLength(null));
assertEquals(9, test.weekyear().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyGetYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().year(), test.year().getField());
assertEquals("year", test.year().getName());
assertEquals("Property[year]", test.year().toString());
assertSame(test, test.year().getDateTime());
assertEquals(2004, test.year().get());
assertEquals("2004", test.year().getAsString());
assertEquals("2004", test.year().getAsText());
assertEquals("2004", test.year().getAsText(Locale.FRENCH));
assertEquals("2004", test.year().getAsShortText());
assertEquals("2004", test.year().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().years(), test.year().getDurationField());
assertEquals(null, test.year().getRangeDurationField());
assertEquals(9, test.year().getMaximumTextLength(null));
assertEquals(9, test.year().getMaximumShortTextLength(null));
assertEquals(-292275054, test.year().getMinimumValue());
assertEquals(-292275054, test.year().getMinimumValueOverall());
assertEquals(292278993, test.year().getMaximumValue());
assertEquals(292278993, test.year().getMaximumValueOverall());
}
public void testPropertyLeapYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertEquals(true, test.year().isLeap());
assertEquals(1, test.year().getLeapAmount());
assertEquals(test.getChronology().days(), test.year().getLeapDurationField());
test = new DateTime(2003, 6, 9, 0, 0, 0, 0);
assertEquals(false, test.year().isLeap());
assertEquals(0, test.year().getLeapAmount());
assertEquals(test.getChronology().days(), test.year().getLeapDurationField());
}
public void testPropertyAddYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.year().addToCopy(9);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2013-06-09T00:00:00.000+01:00", copy.toString());
copy = test.year().addToCopy(0);
assertEquals("2004-06-09T00:00:00.000+01:00", copy.toString());
copy = test.year().addToCopy(292277023 - 2004);
assertEquals(292277023, copy.getYear());
try {
test.year().addToCopy(292278993 - 2004 + 1);
fail();
} catch (IllegalArgumentException ex) {}
copy = test.year().addToCopy(-2004);
assertEquals(0, copy.getYear());
copy = test.year().addToCopy(-2005);
assertEquals(-1, copy.getYear());
try {
test.year().addToCopy(-292275054 - 2004 - 1);
fail();
} catch (IllegalArgumentException ex) {}
}
public void testPropertyAddWrapFieldYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.year().addWrapFieldToCopy(9);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2013-06-09T00:00:00.000+01:00", copy.toString());
copy = test.year().addWrapFieldToCopy(0);
assertEquals(2004, copy.getYear());
copy = test.year().addWrapFieldToCopy(292278993 - 2004 + 1);
assertEquals(-292275054, copy.getYear());
copy = test.year().addWrapFieldToCopy(-292275054 - 2004 - 1);
assertEquals(292278993, copy.getYear());
}
public void testPropertySetYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.year().setCopy(1960);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("1960-06-09T00:00:00.000+01:00", copy.toString());
}
public void testPropertySetTextYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.year().setCopy("1960");
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("1960-06-09T00:00:00.000+01:00", copy.toString());
}
public void testPropertyCompareToYear() {
DateTime test1 = new DateTime(TEST_TIME1);
DateTime test2 = new DateTime(TEST_TIME2);
assertEquals(true, test1.year().compareTo(test2) < 0);
assertEquals(true, test2.year().compareTo(test1) > 0);
assertEquals(true, test1.year().compareTo(test1) == 0);
try {
test1.year().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
}
@SuppressWarnings("deprecation")
public void testPropertyCompareToYear2() {
DateTime test1 = new DateTime(2004, 6, 9, 0, 0, 0, 0);
YearMonthDay ymd1 = new YearMonthDay(2003, 6, 9);
YearMonthDay ymd2 = new YearMonthDay(2004, 6, 9);
YearMonthDay ymd3 = new YearMonthDay(2005, 6, 9);
assertEquals(true, test1.year().compareTo(ymd1) > 0);
assertEquals(true, test1.year().compareTo(ymd2) == 0);
assertEquals(true, test1.year().compareTo(ymd3) < 0);
try {
test1.year().compareTo((ReadablePartial) null);
fail();
} catch (IllegalArgumentException ex) {}
}
public void testPropertyEqualsHashCodeYear() {
DateTime test1 = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertEquals(true, test1.year().equals(test1.year()));
assertEquals(true, test1.year().equals(new DateTime(2004, 6, 9, 0, 0, 0, 0).year()));
assertEquals(false, test1.year().equals(new DateTime(2004, 6, 9, 0, 0, 0, 0).monthOfYear()));
assertEquals(false, test1.year().equals(new DateTime(2004, 6, 9, 0, 0, 0, 0, CopticChronology.getInstance()).year()));
assertEquals(true, test1.year().hashCode() == test1.year().hashCode());
assertEquals(true, test1.year().hashCode() == new DateTime(2004, 6, 9, 0, 0, 0, 0).year().hashCode());
assertEquals(false, test1.year().hashCode() == new DateTime(2004, 6, 9, 0, 0, 0, 0).monthOfYear().hashCode());
assertEquals(false, test1.year().hashCode() == new DateTime(2004, 6, 9, 0, 0, 0, 0, CopticChronology.getInstance()).year().hashCode());
}
//-----------------------------------------------------------------------
public void testPropertyGetMonthOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().monthOfYear(), test.monthOfYear().getField());
assertEquals("monthOfYear", test.monthOfYear().getName());
assertEquals("Property[monthOfYear]", test.monthOfYear().toString());
assertSame(test, test.monthOfYear().getDateTime());
assertEquals(6, test.monthOfYear().get());
assertEquals("6", test.monthOfYear().getAsString());
assertEquals("June", test.monthOfYear().getAsText());
assertEquals("June", test.monthOfYear().getField().getAsText(6, Locale.ENGLISH));
assertEquals("juin", test.monthOfYear().getAsText(Locale.FRENCH));
assertEquals("juin", test.monthOfYear().getField().getAsText(6, Locale.FRENCH));
assertEquals("Jun", test.monthOfYear().getAsShortText());
assertEquals("Jun", test.monthOfYear().getField().getAsShortText(6, Locale.ENGLISH));
assertEquals("juin", test.monthOfYear().getAsShortText(Locale.FRENCH));
assertEquals("juin", test.monthOfYear().getField().getAsShortText(6, Locale.FRENCH));
assertEquals(test.getChronology().months(), test.monthOfYear().getDurationField());
assertEquals(test.getChronology().years(), test.monthOfYear().getRangeDurationField());
assertEquals(9, test.monthOfYear().getMaximumTextLength(null));
assertEquals(3, test.monthOfYear().getMaximumShortTextLength(null));
test = new DateTime(2004, 7, 9, 0, 0, 0, 0);
assertEquals("juillet", test.monthOfYear().getAsText(Locale.FRENCH));
assertEquals("juillet", test.monthOfYear().getField().getAsText(7, Locale.FRENCH));
assertEquals("juil.", test.monthOfYear().getAsShortText(Locale.FRENCH));
assertEquals("juil.", test.monthOfYear().getField().getAsShortText(7, Locale.FRENCH));
assertEquals(1, test.monthOfYear().getMinimumValue());
assertEquals(1, test.monthOfYear().getMinimumValueOverall());
assertEquals(12, test.monthOfYear().getMaximumValue());
assertEquals(12, test.monthOfYear().getMaximumValueOverall());
assertEquals(1, test.monthOfYear().getMinimumValue());
assertEquals(1, test.monthOfYear().getMinimumValueOverall());
assertEquals(12, test.monthOfYear().getMaximumValue());
assertEquals(12, test.monthOfYear().getMaximumValueOverall());
}
public void testPropertyLeapMonthOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertEquals(false, test.monthOfYear().isLeap());
assertEquals(0, test.monthOfYear().getLeapAmount());
assertEquals(test.getChronology().days(), test.monthOfYear().getLeapDurationField());
test = new DateTime(2004, 2, 9, 0, 0, 0, 0);
assertEquals(true, test.monthOfYear().isLeap());
assertEquals(1, test.monthOfYear().getLeapAmount());
assertEquals(test.getChronology().days(), test.monthOfYear().getLeapDurationField());
test = new DateTime(2003, 6, 9, 0, 0, 0, 0);
assertEquals(false, test.monthOfYear().isLeap());
assertEquals(0, test.monthOfYear().getLeapAmount());
assertEquals(test.getChronology().days(), test.monthOfYear().getLeapDurationField());
test = new DateTime(2003, 2, 9, 0, 0, 0, 0);
assertEquals(false, test.monthOfYear().isLeap());
assertEquals(0, test.monthOfYear().getLeapAmount());
assertEquals(test.getChronology().days(), test.monthOfYear().getLeapDurationField());
}
public void testPropertyAddMonthOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.monthOfYear().addToCopy(6);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-12-09T00:00:00.000Z", copy.toString());
copy = test.monthOfYear().addToCopy(7);
assertEquals("2005-01-09T00:00:00.000Z", copy.toString());
copy = test.monthOfYear().addToCopy(-5);
assertEquals("2004-01-09T00:00:00.000Z", copy.toString());
copy = test.monthOfYear().addToCopy(-6);
assertEquals("2003-12-09T00:00:00.000Z", copy.toString());
test = new DateTime(2004, 1, 31, 0, 0, 0, 0);
copy = test.monthOfYear().addToCopy(1);
assertEquals("2004-01-31T00:00:00.000Z", test.toString());
assertEquals("2004-02-29T00:00:00.000Z", copy.toString());
copy = test.monthOfYear().addToCopy(2);
assertEquals("2004-03-31T00:00:00.000+01:00", copy.toString());
copy = test.monthOfYear().addToCopy(3);
assertEquals("2004-04-30T00:00:00.000+01:00", copy.toString());
test = new DateTime(2003, 1, 31, 0, 0, 0, 0);
copy = test.monthOfYear().addToCopy(1);
assertEquals("2003-02-28T00:00:00.000Z", copy.toString());
}
public void testPropertyAddWrapFieldMonthOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.monthOfYear().addWrapFieldToCopy(4);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-10-09T00:00:00.000+01:00", copy.toString());
copy = test.monthOfYear().addWrapFieldToCopy(8);
assertEquals("2004-02-09T00:00:00.000Z", copy.toString());
copy = test.monthOfYear().addWrapFieldToCopy(-8);
assertEquals("2004-10-09T00:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 1, 31, 0, 0, 0, 0);
copy = test.monthOfYear().addWrapFieldToCopy(1);
assertEquals("2004-01-31T00:00:00.000Z", test.toString());
assertEquals("2004-02-29T00:00:00.000Z", copy.toString());
copy = test.monthOfYear().addWrapFieldToCopy(2);
assertEquals("2004-03-31T00:00:00.000+01:00", copy.toString());
copy = test.monthOfYear().addWrapFieldToCopy(3);
assertEquals("2004-04-30T00:00:00.000+01:00", copy.toString());
test = new DateTime(2005, 1, 31, 0, 0, 0, 0);
copy = test.monthOfYear().addWrapFieldToCopy(1);
assertEquals("2005-01-31T00:00:00.000Z", test.toString());
assertEquals("2005-02-28T00:00:00.000Z", copy.toString());
}
public void testPropertySetMonthOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.monthOfYear().setCopy(12);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-12-09T00:00:00.000Z", copy.toString());
test = new DateTime(2004, 1, 31, 0, 0, 0, 0);
copy = test.monthOfYear().setCopy(2);
assertEquals("2004-02-29T00:00:00.000Z", copy.toString());
try {
test.monthOfYear().setCopy(13);
fail();
} catch (IllegalArgumentException ex) {}
try {
test.monthOfYear().setCopy(0);
fail();
} catch (IllegalArgumentException ex) {}
}
public void testPropertySetTextMonthOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.monthOfYear().setCopy("12");
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-12-09T00:00:00.000Z", copy.toString());
copy = test.monthOfYear().setCopy("December");
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-12-09T00:00:00.000Z", copy.toString());
copy = test.monthOfYear().setCopy("Dec");
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-12-09T00:00:00.000Z", copy.toString());
}
public void testPropertyCompareToMonthOfYear() {
DateTime test1 = new DateTime(TEST_TIME1);
DateTime test2 = new DateTime(TEST_TIME2);
assertEquals(true, test1.monthOfYear().compareTo(test2) < 0);
assertEquals(true, test2.monthOfYear().compareTo(test1) > 0);
assertEquals(true, test1.monthOfYear().compareTo(test1) == 0);
try {
test1.monthOfYear().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
DateTime dt1 = new DateTime(TEST_TIME1);
DateTime dt2 = new DateTime(TEST_TIME2);
assertEquals(true, test1.monthOfYear().compareTo(dt2) < 0);
assertEquals(true, test2.monthOfYear().compareTo(dt1) > 0);
assertEquals(true, test1.monthOfYear().compareTo(dt1) == 0);
try {
test1.monthOfYear().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
}
//-----------------------------------------------------------------------
public void testPropertyGetDayOfMonth() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().dayOfMonth(), test.dayOfMonth().getField());
assertEquals("dayOfMonth", test.dayOfMonth().getName());
assertEquals("Property[dayOfMonth]", test.dayOfMonth().toString());
assertSame(test, test.dayOfMonth().getDateTime());
assertEquals(9, test.dayOfMonth().get());
assertEquals("9", test.dayOfMonth().getAsString());
assertEquals("9", test.dayOfMonth().getAsText());
assertEquals("9", test.dayOfMonth().getAsText(Locale.FRENCH));
assertEquals("9", test.dayOfMonth().getAsShortText());
assertEquals("9", test.dayOfMonth().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().days(), test.dayOfMonth().getDurationField());
assertEquals(test.getChronology().months(), test.dayOfMonth().getRangeDurationField());
assertEquals(2, test.dayOfMonth().getMaximumTextLength(null));
assertEquals(2, test.dayOfMonth().getMaximumShortTextLength(null));
assertEquals(1, test.dayOfMonth().getMinimumValue());
assertEquals(1, test.dayOfMonth().getMinimumValueOverall());
assertEquals(30, test.dayOfMonth().getMaximumValue());
assertEquals(31, test.dayOfMonth().getMaximumValueOverall());
assertEquals(false, test.dayOfMonth().isLeap());
assertEquals(0, test.dayOfMonth().getLeapAmount());
assertEquals(null, test.dayOfMonth().getLeapDurationField());
}
public void testPropertyGetMaxMinValuesDayOfMonth() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertEquals(1, test.dayOfMonth().getMinimumValue());
assertEquals(1, test.dayOfMonth().getMinimumValueOverall());
assertEquals(30, test.dayOfMonth().getMaximumValue());
assertEquals(31, test.dayOfMonth().getMaximumValueOverall());
test = new DateTime(2004, 7, 9, 0, 0, 0, 0);
assertEquals(31, test.dayOfMonth().getMaximumValue());
test = new DateTime(2004, 2, 9, 0, 0, 0, 0);
assertEquals(29, test.dayOfMonth().getMaximumValue());
test = new DateTime(2003, 2, 9, 0, 0, 0, 0);
assertEquals(28, test.dayOfMonth().getMaximumValue());
}
public void testPropertyAddDayOfMonth() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfMonth().addToCopy(9);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-18T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addToCopy(21);
assertEquals("2004-06-30T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addToCopy(22);
assertEquals("2004-07-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addToCopy(22 + 30);
assertEquals("2004-07-31T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addToCopy(22 + 31);
assertEquals("2004-08-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addToCopy(21 + 31 + 31 + 30 + 31 + 30 + 31);
assertEquals("2004-12-31T00:00:00.000Z", copy.toString());
copy = test.dayOfMonth().addToCopy(22 + 31 + 31 + 30 + 31 + 30 + 31);
assertEquals("2005-01-01T00:00:00.000Z", copy.toString());
copy = test.dayOfMonth().addToCopy(-8);
assertEquals("2004-06-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addToCopy(-9);
assertEquals("2004-05-31T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addToCopy(-8 - 31 - 30 - 31 - 29 - 31);
assertEquals("2004-01-01T00:00:00.000Z", copy.toString());
copy = test.dayOfMonth().addToCopy(-9 - 31 - 30 - 31 - 29 - 31);
assertEquals("2003-12-31T00:00:00.000Z", copy.toString());
}
public void testPropertyAddWrapFieldDayOfMonth() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfMonth().addWrapFieldToCopy(21);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-30T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addWrapFieldToCopy(22);
assertEquals("2004-06-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addWrapFieldToCopy(-12);
assertEquals("2004-06-27T00:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 7, 9, 0, 0, 0, 0);
copy = test.dayOfMonth().addWrapFieldToCopy(21);
assertEquals("2004-07-30T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addWrapFieldToCopy(22);
assertEquals("2004-07-31T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addWrapFieldToCopy(23);
assertEquals("2004-07-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfMonth().addWrapFieldToCopy(-12);
assertEquals("2004-07-28T00:00:00.000+01:00", copy.toString());
}
public void testPropertySetDayOfMonth() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfMonth().setCopy(12);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-12T00:00:00.000+01:00", copy.toString());
try {
test.dayOfMonth().setCopy(31);
fail();
} catch (IllegalArgumentException ex) {}
try {
test.dayOfMonth().setCopy(0);
fail();
} catch (IllegalArgumentException ex) {}
}
public void testPropertySetTextDayOfMonth() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfMonth().setCopy("12");
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-12T00:00:00.000+01:00", copy.toString());
}
public void testPropertyWithMaximumValueDayOfMonth() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfMonth().withMaximumValue();
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-30T00:00:00.000+01:00", copy.toString());
}
public void testPropertyWithMaximumValueMillisOfDayDSTGap() {
DateTimeZone paris = DateTimeZone.forID("Europe/Paris");
DateTime dt = new DateTime(1926, 4, 17, 18, 0, 0, 0, paris); // DST gap 23:00 to 00:00
DateTime test = dt.millisOfDay().withMaximumValue();
assertEquals("1926-04-17T22:59:59.999Z", test.toString());
}
public void testPropertyWithMinimumValueDayOfMonth() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfMonth().withMinimumValue();
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-01T00:00:00.000+01:00", copy.toString());
}
public void testPropertyWithMinimumValueMillisOfDayDSTGap() {
DateTimeZone gaza = DateTimeZone.forID("Asia/Gaza");
DateTime dt = new DateTime(2001, 4, 20, 18, 0, 0, 0, gaza); // DST gap 00:00 to 01:00
DateTime test = dt.millisOfDay().withMinimumValue();
assertEquals("2001-04-20T01:00:00.000+03:00", test.toString());
}
public void testPropertyCompareToDayOfMonth() {
DateTime test1 = new DateTime(TEST_TIME1);
DateTime test2 = new DateTime(TEST_TIME2);
assertEquals(true, test1.dayOfMonth().compareTo(test2) < 0);
assertEquals(true, test2.dayOfMonth().compareTo(test1) > 0);
assertEquals(true, test1.dayOfMonth().compareTo(test1) == 0);
try {
test1.dayOfMonth().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
DateTime dt1 = new DateTime(TEST_TIME1);
DateTime dt2 = new DateTime(TEST_TIME2);
assertEquals(true, test1.dayOfMonth().compareTo(dt2) < 0);
assertEquals(true, test2.dayOfMonth().compareTo(dt1) > 0);
assertEquals(true, test1.dayOfMonth().compareTo(dt1) == 0);
try {
test1.dayOfMonth().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
}
//-----------------------------------------------------------------------
public void testPropertyGetDayOfYear() {
// 31+29+31+30+31+9 = 161
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().dayOfYear(), test.dayOfYear().getField());
assertEquals("dayOfYear", test.dayOfYear().getName());
assertEquals("Property[dayOfYear]", test.dayOfYear().toString());
assertSame(test, test.dayOfYear().getDateTime());
assertEquals(161, test.dayOfYear().get());
assertEquals("161", test.dayOfYear().getAsString());
assertEquals("161", test.dayOfYear().getAsText());
assertEquals("161", test.dayOfYear().getAsText(Locale.FRENCH));
assertEquals("161", test.dayOfYear().getAsShortText());
assertEquals("161", test.dayOfYear().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().days(), test.dayOfYear().getDurationField());
assertEquals(test.getChronology().years(), test.dayOfYear().getRangeDurationField());
assertEquals(3, test.dayOfYear().getMaximumTextLength(null));
assertEquals(3, test.dayOfYear().getMaximumShortTextLength(null));
assertEquals(false, test.dayOfYear().isLeap());
assertEquals(0, test.dayOfYear().getLeapAmount());
assertEquals(null, test.dayOfYear().getLeapDurationField());
}
public void testPropertyGetMaxMinValuesDayOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertEquals(1, test.dayOfYear().getMinimumValue());
assertEquals(1, test.dayOfYear().getMinimumValueOverall());
assertEquals(366, test.dayOfYear().getMaximumValue());
assertEquals(366, test.dayOfYear().getMaximumValueOverall());
test = new DateTime(2002, 6, 9, 0, 0, 0, 0);
assertEquals(365, test.dayOfYear().getMaximumValue());
assertEquals(366, test.dayOfYear().getMaximumValueOverall());
}
public void testPropertyAddDayOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfYear().addToCopy(9);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-18T00:00:00.000+01:00", copy.toString());
copy = test.dayOfYear().addToCopy(21);
assertEquals("2004-06-30T00:00:00.000+01:00", copy.toString());
copy = test.dayOfYear().addToCopy(22);
assertEquals("2004-07-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfYear().addToCopy(21 + 31 + 31 + 30 + 31 + 30 + 31);
assertEquals("2004-12-31T00:00:00.000Z", copy.toString());
copy = test.dayOfYear().addToCopy(22 + 31 + 31 + 30 + 31 + 30 + 31);
assertEquals("2005-01-01T00:00:00.000Z", copy.toString());
copy = test.dayOfYear().addToCopy(-8);
assertEquals("2004-06-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfYear().addToCopy(-9);
assertEquals("2004-05-31T00:00:00.000+01:00", copy.toString());
copy = test.dayOfYear().addToCopy(-8 - 31 - 30 - 31 - 29 - 31);
assertEquals("2004-01-01T00:00:00.000Z", copy.toString());
copy = test.dayOfYear().addToCopy(-9 - 31 - 30 - 31 - 29 - 31);
assertEquals("2003-12-31T00:00:00.000Z", copy.toString());
}
public void testPropertyAddWrapFieldDayOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfYear().addWrapFieldToCopy(21);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-30T00:00:00.000+01:00", copy.toString());
copy = test.dayOfYear().addWrapFieldToCopy(22);
assertEquals("2004-07-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfYear().addWrapFieldToCopy(-12);
assertEquals("2004-05-28T00:00:00.000+01:00", copy.toString());
copy = test.dayOfYear().addWrapFieldToCopy(205);
assertEquals("2004-12-31T00:00:00.000Z", copy.toString());
copy = test.dayOfYear().addWrapFieldToCopy(206);
assertEquals("2004-01-01T00:00:00.000Z", copy.toString());
copy = test.dayOfYear().addWrapFieldToCopy(-160);
assertEquals("2004-01-01T00:00:00.000Z", copy.toString());
copy = test.dayOfYear().addWrapFieldToCopy(-161);
assertEquals("2004-12-31T00:00:00.000Z", copy.toString());
}
public void testPropertySetDayOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfYear().setCopy(12);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-01-12T00:00:00.000Z", copy.toString());
try {
test.dayOfYear().setCopy(367);
fail();
} catch (IllegalArgumentException ex) {}
try {
test.dayOfYear().setCopy(0);
fail();
} catch (IllegalArgumentException ex) {}
}
public void testPropertySetTextDayOfYear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfYear().setCopy("12");
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-01-12T00:00:00.000Z", copy.toString());
}
public void testPropertyCompareToDayOfYear() {
DateTime test1 = new DateTime(TEST_TIME1);
DateTime test2 = new DateTime(TEST_TIME2);
assertEquals(true, test1.dayOfYear().compareTo(test2) < 0);
assertEquals(true, test2.dayOfYear().compareTo(test1) > 0);
assertEquals(true, test1.dayOfYear().compareTo(test1) == 0);
try {
test1.dayOfYear().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
DateTime dt1 = new DateTime(TEST_TIME1);
DateTime dt2 = new DateTime(TEST_TIME2);
assertEquals(true, test1.dayOfYear().compareTo(dt2) < 0);
assertEquals(true, test2.dayOfYear().compareTo(dt1) > 0);
assertEquals(true, test1.dayOfYear().compareTo(dt1) == 0);
try {
test1.dayOfYear().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
}
//-----------------------------------------------------------------------
public void testPropertyGetWeekOfWeekyear() {
// 2002-01-01 = Thu
// 2002-12-31 = Thu (+364 days)
// 2003-12-30 = Thu (+364 days)
// 2004-01-03 = Mon W1
// 2004-01-31 = Mon (+28 days) W5
// 2004-02-28 = Mon (+28 days) W9
// 2004-03-27 = Mon (+28 days) W13
// 2004-04-24 = Mon (+28 days) W17
// 2004-05-23 = Mon (+28 days) W21
// 2004-06-05 = Mon (+14 days) W23
// 2004-06-09 = Fri
// 2004-12-25 = Mon W52
// 2005-01-01 = Mon W1
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().weekOfWeekyear(), test.weekOfWeekyear().getField());
assertEquals("weekOfWeekyear", test.weekOfWeekyear().getName());
assertEquals("Property[weekOfWeekyear]", test.weekOfWeekyear().toString());
assertSame(test, test.weekOfWeekyear().getDateTime());
assertEquals(24, test.weekOfWeekyear().get());
assertEquals("24", test.weekOfWeekyear().getAsString());
assertEquals("24", test.weekOfWeekyear().getAsText());
assertEquals("24", test.weekOfWeekyear().getAsText(Locale.FRENCH));
assertEquals("24", test.weekOfWeekyear().getAsShortText());
assertEquals("24", test.weekOfWeekyear().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().weeks(), test.weekOfWeekyear().getDurationField());
assertEquals(test.getChronology().weekyears(), test.weekOfWeekyear().getRangeDurationField());
assertEquals(2, test.weekOfWeekyear().getMaximumTextLength(null));
assertEquals(2, test.weekOfWeekyear().getMaximumShortTextLength(null));
assertEquals(false, test.weekOfWeekyear().isLeap());
assertEquals(0, test.weekOfWeekyear().getLeapAmount());
assertEquals(null, test.weekOfWeekyear().getLeapDurationField());
}
public void testPropertyGetMaxMinValuesWeekOfWeekyear() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertEquals(1, test.weekOfWeekyear().getMinimumValue());
assertEquals(1, test.weekOfWeekyear().getMinimumValueOverall());
assertEquals(53, test.weekOfWeekyear().getMaximumValue());
assertEquals(53, test.weekOfWeekyear().getMaximumValueOverall());
test = new DateTime(2005, 6, 9, 0, 0, 0, 0);
assertEquals(52, test.weekOfWeekyear().getMaximumValue());
assertEquals(53, test.weekOfWeekyear().getMaximumValueOverall());
}
public void testPropertyAddWeekOfWeekyear() {
DateTime test = new DateTime(2004, 6, 7, 0, 0, 0, 0);
DateTime copy = test.weekOfWeekyear().addToCopy(1);
assertEquals("2004-06-07T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-14T00:00:00.000+01:00", copy.toString());
copy = test.weekOfWeekyear().addToCopy(29);
assertEquals("2004-12-27T00:00:00.000Z", copy.toString());
copy = test.weekOfWeekyear().addToCopy(30);
assertEquals("2005-01-03T00:00:00.000Z", copy.toString());
copy = test.weekOfWeekyear().addToCopy(-22);
assertEquals("2004-01-05T00:00:00.000Z", copy.toString());
copy = test.weekOfWeekyear().addToCopy(-23);
assertEquals("2003-12-29T00:00:00.000Z", copy.toString());
}
public void testPropertyAddWrapFieldWeekOfWeekyear() {
DateTime test = new DateTime(2004, 6, 7, 0, 0, 0, 0);
DateTime copy = test.weekOfWeekyear().addWrapFieldToCopy(1);
assertEquals("2004-06-07T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-14T00:00:00.000+01:00", copy.toString());
copy = test.weekOfWeekyear().addWrapFieldToCopy(29);
assertEquals("2004-12-27T00:00:00.000Z", copy.toString());
copy = test.weekOfWeekyear().addWrapFieldToCopy(30);
assertEquals("2003-12-29T00:00:00.000Z", copy.toString());
copy = test.weekOfWeekyear().addWrapFieldToCopy(-23);
assertEquals("2003-12-29T00:00:00.000Z", copy.toString());
}
public void testPropertySetWeekOfWeekyear() {
DateTime test = new DateTime(2004, 6, 7, 0, 0, 0, 0);
DateTime copy = test.weekOfWeekyear().setCopy(4);
assertEquals("2004-06-07T00:00:00.000+01:00", test.toString());
assertEquals("2004-01-19T00:00:00.000Z", copy.toString());
try {
test.weekOfWeekyear().setCopy(54);
fail();
} catch (IllegalArgumentException ex) {}
try {
test.weekOfWeekyear().setCopy(0);
fail();
} catch (IllegalArgumentException ex) {}
}
public void testPropertySetTextWeekOfWeekyear() {
DateTime test = new DateTime(2004, 6, 7, 0, 0, 0, 0);
DateTime copy = test.weekOfWeekyear().setCopy("4");
assertEquals("2004-06-07T00:00:00.000+01:00", test.toString());
assertEquals("2004-01-19T00:00:00.000Z", copy.toString());
}
public void testPropertyCompareToWeekOfWeekyear() {
DateTime test1 = new DateTime(TEST_TIME1);
DateTime test2 = new DateTime(TEST_TIME2);
assertEquals(true, test1.weekOfWeekyear().compareTo(test2) < 0);
assertEquals(true, test2.weekOfWeekyear().compareTo(test1) > 0);
assertEquals(true, test1.weekOfWeekyear().compareTo(test1) == 0);
try {
test1.weekOfWeekyear().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
DateTime dt1 = new DateTime(TEST_TIME1);
DateTime dt2 = new DateTime(TEST_TIME2);
assertEquals(true, test1.weekOfWeekyear().compareTo(dt2) < 0);
assertEquals(true, test2.weekOfWeekyear().compareTo(dt1) > 0);
assertEquals(true, test1.weekOfWeekyear().compareTo(dt1) == 0);
try {
test1.weekOfWeekyear().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
}
//-----------------------------------------------------------------------
public void testPropertyGetDayOfWeek() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
assertSame(test.getChronology().dayOfWeek(), test.dayOfWeek().getField());
assertEquals("dayOfWeek", test.dayOfWeek().getName());
assertEquals("Property[dayOfWeek]", test.dayOfWeek().toString());
assertSame(test, test.dayOfWeek().getDateTime());
assertEquals(3, test.dayOfWeek().get());
assertEquals("3", test.dayOfWeek().getAsString());
assertEquals("Wednesday", test.dayOfWeek().getAsText());
assertEquals("Wednesday", test.dayOfWeek().getField().getAsText(3, Locale.ENGLISH));
assertEquals("mercredi", test.dayOfWeek().getAsText(Locale.FRENCH));
assertEquals("mercredi", test.dayOfWeek().getField().getAsText(3, Locale.FRENCH));
assertEquals("Wed", test.dayOfWeek().getAsShortText());
assertEquals("Wed", test.dayOfWeek().getField().getAsShortText(3, Locale.ENGLISH));
assertEquals("mer.", test.dayOfWeek().getAsShortText(Locale.FRENCH));
assertEquals("mer.", test.dayOfWeek().getField().getAsShortText(3, Locale.FRENCH));
assertEquals(test.getChronology().days(), test.dayOfWeek().getDurationField());
assertEquals(test.getChronology().weeks(), test.dayOfWeek().getRangeDurationField());
assertEquals(9, test.dayOfWeek().getMaximumTextLength(null));
assertEquals(8, test.dayOfWeek().getMaximumTextLength(Locale.FRENCH));
assertEquals(3, test.dayOfWeek().getMaximumShortTextLength(null));
assertEquals(4, test.dayOfWeek().getMaximumShortTextLength(Locale.FRENCH));
assertEquals(1, test.dayOfWeek().getMinimumValue());
assertEquals(1, test.dayOfWeek().getMinimumValueOverall());
assertEquals(7, test.dayOfWeek().getMaximumValue());
assertEquals(7, test.dayOfWeek().getMaximumValueOverall());
assertEquals(false, test.dayOfWeek().isLeap());
assertEquals(0, test.dayOfWeek().getLeapAmount());
assertEquals(null, test.dayOfWeek().getLeapDurationField());
}
public void testPropertyAddDayOfWeek() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfWeek().addToCopy(1);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-10T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().addToCopy(21);
assertEquals("2004-06-30T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().addToCopy(22);
assertEquals("2004-07-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().addToCopy(21 + 31 + 31 + 30 + 31 + 30 + 31);
assertEquals("2004-12-31T00:00:00.000Z", copy.toString());
copy = test.dayOfWeek().addToCopy(22 + 31 + 31 + 30 + 31 + 30 + 31);
assertEquals("2005-01-01T00:00:00.000Z", copy.toString());
copy = test.dayOfWeek().addToCopy(-8);
assertEquals("2004-06-01T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().addToCopy(-9);
assertEquals("2004-05-31T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().addToCopy(-8 - 31 - 30 - 31 - 29 - 31);
assertEquals("2004-01-01T00:00:00.000Z", copy.toString());
copy = test.dayOfWeek().addToCopy(-9 - 31 - 30 - 31 - 29 - 31);
assertEquals("2003-12-31T00:00:00.000Z", copy.toString());
}
public void testPropertyAddLongDayOfWeek() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfWeek().addToCopy(1L);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-10T00:00:00.000+01:00", copy.toString());
}
public void testPropertyAddWrapFieldDayOfWeek() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0); // Wed
DateTime copy = test.dayOfWeek().addWrapFieldToCopy(1);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-10T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().addWrapFieldToCopy(5);
assertEquals("2004-06-07T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().addWrapFieldToCopy(-10);
assertEquals("2004-06-13T00:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 6, 2, 0, 0, 0, 0);
copy = test.dayOfWeek().addWrapFieldToCopy(5);
assertEquals("2004-06-02T00:00:00.000+01:00", test.toString());
assertEquals("2004-05-31T00:00:00.000+01:00", copy.toString());
}
public void testPropertySetDayOfWeek() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfWeek().setCopy(4);
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-10T00:00:00.000+01:00", copy.toString());
try {
test.dayOfWeek().setCopy(8);
fail();
} catch (IllegalArgumentException ex) {}
try {
test.dayOfWeek().setCopy(0);
fail();
} catch (IllegalArgumentException ex) {}
}
public void testPropertySetTextDayOfWeek() {
DateTime test = new DateTime(2004, 6, 9, 0, 0, 0, 0);
DateTime copy = test.dayOfWeek().setCopy("4");
assertEquals("2004-06-09T00:00:00.000+01:00", test.toString());
assertEquals("2004-06-10T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().setCopy("Mon");
assertEquals("2004-06-07T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().setCopy("Tuesday");
assertEquals("2004-06-08T00:00:00.000+01:00", copy.toString());
copy = test.dayOfWeek().setCopy("lundi", Locale.FRENCH);
assertEquals("2004-06-07T00:00:00.000+01:00", copy.toString());
}
public void testPropertyCompareToDayOfWeek() {
DateTime test1 = new DateTime(TEST_TIME1);
DateTime test2 = new DateTime(TEST_TIME2);
assertEquals(true, test2.dayOfWeek().compareTo(test1) < 0);
assertEquals(true, test1.dayOfWeek().compareTo(test2) > 0);
assertEquals(true, test1.dayOfWeek().compareTo(test1) == 0);
try {
test1.dayOfWeek().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
DateTime dt1 = new DateTime(TEST_TIME1);
DateTime dt2 = new DateTime(TEST_TIME2);
assertEquals(true, test2.dayOfWeek().compareTo(dt1) < 0);
assertEquals(true, test1.dayOfWeek().compareTo(dt2) > 0);
assertEquals(true, test1.dayOfWeek().compareTo(dt1) == 0);
try {
test1.dayOfWeek().compareTo((ReadableInstant) null);
fail();
} catch (IllegalArgumentException ex) {}
}
//-----------------------------------------------------------------------
public void testPropertyGetHourOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
assertSame(test.getChronology().hourOfDay(), test.hourOfDay().getField());
assertEquals("hourOfDay", test.hourOfDay().getName());
assertEquals("Property[hourOfDay]", test.hourOfDay().toString());
assertSame(test, test.hourOfDay().getDateTime());
assertEquals(13, test.hourOfDay().get());
assertEquals("13", test.hourOfDay().getAsString());
assertEquals("13", test.hourOfDay().getAsText());
assertEquals("13", test.hourOfDay().getAsText(Locale.FRENCH));
assertEquals("13", test.hourOfDay().getAsShortText());
assertEquals("13", test.hourOfDay().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().hours(), test.hourOfDay().getDurationField());
assertEquals(test.getChronology().days(), test.hourOfDay().getRangeDurationField());
assertEquals(2, test.hourOfDay().getMaximumTextLength(null));
assertEquals(2, test.hourOfDay().getMaximumShortTextLength(null));
}
public void testPropertyGetDifferenceHourOfDay() {
DateTime test1 = new DateTime(2004, 6, 9, 13, 30, 0, 0);
DateTime test2 = new DateTime(2004, 6, 9, 15, 30, 0, 0);
assertEquals(-2, test1.hourOfDay().getDifference(test2));
assertEquals(2, test2.hourOfDay().getDifference(test1));
assertEquals(-2L, test1.hourOfDay().getDifferenceAsLong(test2));
assertEquals(2L, test2.hourOfDay().getDifferenceAsLong(test1));
DateTime test = new DateTime(TEST_TIME_NOW + (13L * DateTimeConstants.MILLIS_PER_HOUR));
assertEquals(13, test.hourOfDay().getDifference(null));
assertEquals(13L, test.hourOfDay().getDifferenceAsLong(null));
}
public void testPropertyRoundFloorHourOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 30, 0, 0);
DateTime copy = test.hourOfDay().roundFloorCopy();
assertEquals("2004-06-09T13:00:00.000+01:00", copy.toString());
}
public void testPropertyRoundCeilingHourOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 30, 0, 0);
DateTime copy = test.hourOfDay().roundCeilingCopy();
assertEquals("2004-06-09T14:00:00.000+01:00", copy.toString());
}
public void testPropertyRoundHalfFloorHourOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 30, 0, 0);
DateTime copy = test.hourOfDay().roundHalfFloorCopy();
assertEquals("2004-06-09T13:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 6, 9, 13, 30, 0, 1);
copy = test.hourOfDay().roundHalfFloorCopy();
assertEquals("2004-06-09T14:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 6, 9, 13, 29, 59, 999);
copy = test.hourOfDay().roundHalfFloorCopy();
assertEquals("2004-06-09T13:00:00.000+01:00", copy.toString());
}
public void testPropertyRoundHalfCeilingHourOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 30, 0, 0);
DateTime copy = test.hourOfDay().roundHalfCeilingCopy();
assertEquals("2004-06-09T14:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 6, 9, 13, 30, 0, 1);
copy = test.hourOfDay().roundHalfCeilingCopy();
assertEquals("2004-06-09T14:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 6, 9, 13, 29, 59, 999);
copy = test.hourOfDay().roundHalfCeilingCopy();
assertEquals("2004-06-09T13:00:00.000+01:00", copy.toString());
}
public void testPropertyRoundHalfEvenHourOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 30, 0, 0);
DateTime copy = test.hourOfDay().roundHalfEvenCopy();
assertEquals("2004-06-09T14:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 6, 9, 14, 30, 0, 0);
copy = test.hourOfDay().roundHalfEvenCopy();
assertEquals("2004-06-09T14:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 6, 9, 13, 30, 0, 1);
copy = test.hourOfDay().roundHalfEvenCopy();
assertEquals("2004-06-09T14:00:00.000+01:00", copy.toString());
test = new DateTime(2004, 6, 9, 13, 29, 59, 999);
copy = test.hourOfDay().roundHalfEvenCopy();
assertEquals("2004-06-09T13:00:00.000+01:00", copy.toString());
}
public void testPropertyRemainderHourOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 30, 0, 0);
assertEquals(30L * DateTimeConstants.MILLIS_PER_MINUTE, test.hourOfDay().remainder());
}
//-----------------------------------------------------------------------
public void testPropertyGetMinuteOfHour() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
assertSame(test.getChronology().minuteOfHour(), test.minuteOfHour().getField());
assertEquals("minuteOfHour", test.minuteOfHour().getName());
assertEquals("Property[minuteOfHour]", test.minuteOfHour().toString());
assertSame(test, test.minuteOfHour().getDateTime());
assertEquals(23, test.minuteOfHour().get());
assertEquals("23", test.minuteOfHour().getAsString());
assertEquals("23", test.minuteOfHour().getAsText());
assertEquals("23", test.minuteOfHour().getAsText(Locale.FRENCH));
assertEquals("23", test.minuteOfHour().getAsShortText());
assertEquals("23", test.minuteOfHour().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().minutes(), test.minuteOfHour().getDurationField());
assertEquals(test.getChronology().hours(), test.minuteOfHour().getRangeDurationField());
assertEquals(2, test.minuteOfHour().getMaximumTextLength(null));
assertEquals(2, test.minuteOfHour().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyGetMinuteOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
assertSame(test.getChronology().minuteOfDay(), test.minuteOfDay().getField());
assertEquals("minuteOfDay", test.minuteOfDay().getName());
assertEquals("Property[minuteOfDay]", test.minuteOfDay().toString());
assertSame(test, test.minuteOfDay().getDateTime());
assertEquals(803, test.minuteOfDay().get());
assertEquals("803", test.minuteOfDay().getAsString());
assertEquals("803", test.minuteOfDay().getAsText());
assertEquals("803", test.minuteOfDay().getAsText(Locale.FRENCH));
assertEquals("803", test.minuteOfDay().getAsShortText());
assertEquals("803", test.minuteOfDay().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().minutes(), test.minuteOfDay().getDurationField());
assertEquals(test.getChronology().days(), test.minuteOfDay().getRangeDurationField());
assertEquals(4, test.minuteOfDay().getMaximumTextLength(null));
assertEquals(4, test.minuteOfDay().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyGetSecondOfMinute() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
assertSame(test.getChronology().secondOfMinute(), test.secondOfMinute().getField());
assertEquals("secondOfMinute", test.secondOfMinute().getName());
assertEquals("Property[secondOfMinute]", test.secondOfMinute().toString());
assertSame(test, test.secondOfMinute().getDateTime());
assertEquals(43, test.secondOfMinute().get());
assertEquals("43", test.secondOfMinute().getAsString());
assertEquals("43", test.secondOfMinute().getAsText());
assertEquals("43", test.secondOfMinute().getAsText(Locale.FRENCH));
assertEquals("43", test.secondOfMinute().getAsShortText());
assertEquals("43", test.secondOfMinute().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().seconds(), test.secondOfMinute().getDurationField());
assertEquals(test.getChronology().minutes(), test.secondOfMinute().getRangeDurationField());
assertEquals(2, test.secondOfMinute().getMaximumTextLength(null));
assertEquals(2, test.secondOfMinute().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyGetSecondOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
assertSame(test.getChronology().secondOfDay(), test.secondOfDay().getField());
assertEquals("secondOfDay", test.secondOfDay().getName());
assertEquals("Property[secondOfDay]", test.secondOfDay().toString());
assertSame(test, test.secondOfDay().getDateTime());
assertEquals(48223, test.secondOfDay().get());
assertEquals("48223", test.secondOfDay().getAsString());
assertEquals("48223", test.secondOfDay().getAsText());
assertEquals("48223", test.secondOfDay().getAsText(Locale.FRENCH));
assertEquals("48223", test.secondOfDay().getAsShortText());
assertEquals("48223", test.secondOfDay().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().seconds(), test.secondOfDay().getDurationField());
assertEquals(test.getChronology().days(), test.secondOfDay().getRangeDurationField());
assertEquals(5, test.secondOfDay().getMaximumTextLength(null));
assertEquals(5, test.secondOfDay().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyGetMillisOfSecond() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
assertSame(test.getChronology().millisOfSecond(), test.millisOfSecond().getField());
assertEquals("millisOfSecond", test.millisOfSecond().getName());
assertEquals("Property[millisOfSecond]", test.millisOfSecond().toString());
assertSame(test, test.millisOfSecond().getDateTime());
assertEquals(53, test.millisOfSecond().get());
assertEquals("53", test.millisOfSecond().getAsString());
assertEquals("53", test.millisOfSecond().getAsText());
assertEquals("53", test.millisOfSecond().getAsText(Locale.FRENCH));
assertEquals("53", test.millisOfSecond().getAsShortText());
assertEquals("53", test.millisOfSecond().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().millis(), test.millisOfSecond().getDurationField());
assertEquals(test.getChronology().seconds(), test.millisOfSecond().getRangeDurationField());
assertEquals(3, test.millisOfSecond().getMaximumTextLength(null));
assertEquals(3, test.millisOfSecond().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyGetMillisOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
assertSame(test.getChronology().millisOfDay(), test.millisOfDay().getField());
assertEquals("millisOfDay", test.millisOfDay().getName());
assertEquals("Property[millisOfDay]", test.millisOfDay().toString());
assertSame(test, test.millisOfDay().getDateTime());
assertEquals(48223053, test.millisOfDay().get());
assertEquals("48223053", test.millisOfDay().getAsString());
assertEquals("48223053", test.millisOfDay().getAsText());
assertEquals("48223053", test.millisOfDay().getAsText(Locale.FRENCH));
assertEquals("48223053", test.millisOfDay().getAsShortText());
assertEquals("48223053", test.millisOfDay().getAsShortText(Locale.FRENCH));
assertEquals(test.getChronology().millis(), test.millisOfDay().getDurationField());
assertEquals(test.getChronology().days(), test.millisOfDay().getRangeDurationField());
assertEquals(8, test.millisOfDay().getMaximumTextLength(null));
assertEquals(8, test.millisOfDay().getMaximumShortTextLength(null));
}
//-----------------------------------------------------------------------
public void testPropertyToIntervalYearOfEra() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
Interval testInterval = test.yearOfEra().toInterval();
assertEquals(new DateTime(2004, 1, 1, 0, 0, 0, 0), testInterval.getStart());
assertEquals(new DateTime(2005, 1, 1, 0, 0, 0, 0), testInterval.getEnd());
}
public void testPropertyToIntervalYearOfCentury() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
Interval testInterval = test.yearOfCentury().toInterval();
assertEquals(new DateTime(2004, 1, 1, 0, 0, 0, 0), testInterval.getStart());
assertEquals(new DateTime(2005, 1, 1, 0, 0, 0, 0), testInterval.getEnd());
}
public void testPropertyToIntervalYear() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
Interval testInterval = test.year().toInterval();
assertEquals(new DateTime(2004, 1, 1, 0, 0, 0, 0), testInterval.getStart());
assertEquals(new DateTime(2005, 1, 1, 0, 0, 0, 0), testInterval.getEnd());
}
public void testPropertyToIntervalMonthOfYear() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
Interval testInterval = test.monthOfYear().toInterval();
assertEquals(new DateTime(2004, 6, 1, 0, 0, 0, 0), testInterval.getStart());
assertEquals(new DateTime(2004, 7, 1, 0, 0, 0, 0), testInterval.getEnd());
}
public void testPropertyToIntervalDayOfMonth() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
Interval testInterval = test.dayOfMonth().toInterval();
assertEquals(new DateTime(2004, 6, 9, 0, 0, 0, 0), testInterval.getStart());
assertEquals(new DateTime(2004, 6, 10, 0, 0, 0, 0), testInterval.getEnd());
DateTime febTest = new DateTime(2004, 2, 29, 13, 23, 43, 53);
Interval febTestInterval = febTest.dayOfMonth().toInterval();
assertEquals(new DateTime(2004, 2, 29, 0, 0, 0, 0), febTestInterval.getStart());
assertEquals(new DateTime(2004, 3, 1, 0, 0, 0, 0), febTestInterval.getEnd());
}
public void testPropertyToIntervalHourOfDay() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
Interval testInterval = test.hourOfDay().toInterval();
assertEquals(new DateTime(2004, 6, 9, 13, 0, 0, 0), testInterval.getStart());
assertEquals(new DateTime(2004, 6, 9, 14, 0, 0, 0), testInterval.getEnd());
DateTime midnightTest = new DateTime(2004, 6, 9, 23, 23, 43, 53);
Interval midnightTestInterval = midnightTest.hourOfDay().toInterval();
assertEquals(new DateTime(2004, 6, 9, 23, 0, 0, 0), midnightTestInterval.getStart());
assertEquals(new DateTime(2004, 6, 10, 0, 0, 0, 0), midnightTestInterval.getEnd());
}
public void testPropertyToIntervalMinuteOfHour() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
Interval testInterval = test.minuteOfHour().toInterval();
assertEquals(new DateTime(2004, 6, 9, 13, 23, 0, 0), testInterval.getStart());
assertEquals(new DateTime(2004, 6, 9, 13, 24, 0, 0), testInterval.getEnd());
}
public void testPropertyToIntervalSecondOfMinute() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
Interval testInterval = test.secondOfMinute().toInterval();
assertEquals(new DateTime(2004, 6, 9, 13, 23, 43, 0), testInterval.getStart());
assertEquals(new DateTime(2004, 6, 9, 13, 23, 44, 0), testInterval.getEnd());
}
public void testPropertyToIntervalMillisOfSecond() {
DateTime test = new DateTime(2004, 6, 9, 13, 23, 43, 53);
Interval testInterval = test.millisOfSecond().toInterval();
assertEquals(new DateTime(2004, 6, 9, 13, 23, 43, 53), testInterval.getStart());
assertEquals(new DateTime(2004, 6, 9, 13, 23, 43, 54), testInterval.getEnd());
}
public void testPropertyEqualsHashCodeLenient() {
DateTime test1 = new DateTime(1970, 6, 9, 0, 0, 0, 0, LenientChronology.getInstance(COPTIC_PARIS));
DateTime test2 = new DateTime(1970, 6, 9, 0, 0, 0, 0, LenientChronology.getInstance(COPTIC_PARIS));
assertEquals(true, test1.dayOfMonth().equals(test2.dayOfMonth()));
assertEquals(true, test2.dayOfMonth().equals(test1.dayOfMonth()));
assertEquals(true, test1.dayOfMonth().equals(test1.dayOfMonth()));
assertEquals(true, test2.dayOfMonth().equals(test2.dayOfMonth()));
assertEquals(true, test1.dayOfMonth().hashCode() == test2.dayOfMonth().hashCode());
assertEquals(true, test1.dayOfMonth().hashCode() == test1.dayOfMonth().hashCode());
assertEquals(true, test2.dayOfMonth().hashCode() == test2.dayOfMonth().hashCode());
}
public void testPropertyEqualsHashCodeStrict() {
DateTime test1 = new DateTime(1970, 6, 9, 0, 0, 0, 0, StrictChronology.getInstance(COPTIC_PARIS));
DateTime test2 = new DateTime(1970, 6, 9, 0, 0, 0, 0, StrictChronology.getInstance(COPTIC_PARIS));
assertEquals(true, test1.dayOfMonth().equals(test2.dayOfMonth()));
assertEquals(true, test2.dayOfMonth().equals(test1.dayOfMonth()));
assertEquals(true, test1.dayOfMonth().equals(test1.dayOfMonth()));
assertEquals(true, test2.dayOfMonth().equals(test2.dayOfMonth()));
assertEquals(true, test1.dayOfMonth().hashCode() == test2.dayOfMonth().hashCode());
assertEquals(true, test1.dayOfMonth().hashCode() == test1.dayOfMonth().hashCode());
assertEquals(true, test2.dayOfMonth().hashCode() == test2.dayOfMonth().hashCode());
}
}