// 2003/10/31 is the 304th day of the year.
cal.clear();
cal.set(DAY_OF_YEAR, 1);
cal.set(2003, OCTOBER, 31);
validate(cal, "2003/10/31 DAY_OF_YEAR=1");
// 2003/10 isn't the 1st week of the year.
cal.clear();
cal.set(YEAR, 2003);
cal.set(WEEK_OF_YEAR, 1);
cal.set(MONTH, OCTOBER);
validate(cal, "2003/10 WEEK_OF_YEAR=1");
// The 1st week of 2003 doesn't have Monday.
cal.clear();
cal.set(YEAR, 2003);
cal.set(WEEK_OF_YEAR, 1);
cal.set(DAY_OF_WEEK, MONDAY);
validate(cal, "2003 WEEK_OF_YEAR=1 MONDAY.");
// America/Los_Angeles is GMT-08:00 cal.clear(); cal.set(2003,OCTOBER,31); cal.set(ZONE_OFFSET,0); validate(cal,"ZONE_OFFSET=0:00inAmerica/Los_Angeles");
// 2003/10/31 shouldn't be in DST. cal.clear(); cal.set(2003,OCTOBER,31); cal.set(DST_OFFSET,60*60*1000); validate(cal,"2003/10/31DST_OFFSET=1:00inAmerica/Los_Angeles");
*/
}
/** *4266783:java.util.GregorianCalendar:incorrectvalidationinnon-lenient
*/ publicvoid Test4266783() {
Koyomi cal = getNonLenient(); // 2003/1 has up to 5 weeks.
cal.set(YEAR, 2003);
cal.set(MONTH, JANUARY);
cal.set(WEEK_OF_MONTH, 6);
cal.set(DAY_OF_WEEK, SUNDAY);
validate(cal, "6th Sunday in Jan 2003");
}
/** *4726030:GregorianCalendardoesn'tcheckinvaliddatesinnon-lenient
*/ publicvoid Test4726030() {
Koyomi cal = getNonLenient(); // Default year is 1970 in GregorianCalendar which isn't a leap year.
cal.set(MONTH, FEBRUARY);
cal.set(DAY_OF_MONTH, 29);
validate(cal, "2/29 in the default year 1970");
}
/** *4147269:java.util.GregorianCalendar.computeTime()workswrongwhenlenientisfalse
*/ publicvoid Test4147269() {
Koyomi calendar = getNonLenient();
Date date = (new GregorianCalendar(1996, 0, 3)).getTime();
for (int field = 0; field < FIELD_COUNT; field++) {
calendar.setTime(date); int max = calendar.getActualMaximum(field); int value = max + 1;
calendar.set(field, value); try {
calendar.computeTime(); // call method under test
errln("Test failed with field " + Koyomi.getFieldName(field)
+ "\n\tdate before: " + date
+ "\n\tdate after: " + calendar.getTime()
+ "\n\tvalue: " + value + " (max = " + max + ")");
} catch (IllegalArgumentException e) {
}
}
for (int field = 0; field < FIELD_COUNT; field++) {
calendar.setTime(date); int min = calendar.getActualMinimum(field); int value = min - 1;
calendar.set(field, value); try {
calendar.computeTime(); // call method under test
errln("Test failed with field " + Koyomi.getFieldName(field)
+ "\n\tdate before: " + date
+ "\n\tdate after: " + calendar.getTime()
+ "\n\tvalue: " + value + " (min = " + min + ")");
} catch (IllegalArgumentException e) {
}
}
}
try {
cal.complete();
errln(desc + " should throw IllegalArgumentException in non-lenient.");
} catch (IllegalArgumentException e) {
}
// The code below will be executed with the -nothrow option
// In non-lenient, calendar field values that have beeb set by // user shouldn't be modified. int[] afterFields = cal.getFields(); for (int i = 0; i < FIELD_COUNT; i++) { if (cal.isSet(i) && originalFields[i] != afterFields[i]) {
errln(" complete() modified fields[" + Koyomi.getFieldName(i) + "] got "
+ afterFields[i] + ", expected " + originalFields[i]);
}
} // In non-lenient, set state of fields shouldn't be modified. int afterSetFields = cal.getSetStateFields(); if (setFields != afterSetFields) {
errln(" complate() modified set states: before 0x" + toHex(setFields)
+ ", after 0x" + toHex(afterSetFields));
}
}
static Koyomi getNonLenient() {
Koyomi cal = new Koyomi();
cal.clear();
cal.setLenient(false); return cal;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.