com.fitbur.assertj.api.AbstractDateAssert Maven / Gradle / Ivy
/**
* 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.
*
* Copyright 2012-2016 the original author or authors.
*/
package com.fitbur.assertj.api;
import static java.util.concurrent.TimeUnit.HOURS;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.concurrent.TimeUnit.MINUTES;
import static java.util.concurrent.TimeUnit.SECONDS;
import static com.fitbur.assertj.util.DateUtil.newIsoDateFormat;
import static com.fitbur.assertj.util.DateUtil.newIsoDateTimeFormat;
import static com.fitbur.assertj.util.DateUtil.newIsoDateTimeWithMsFormat;
import static com.fitbur.assertj.util.DateUtil.newTimestampDateFormat;
import static com.fitbur.assertj.util.Lists.newArrayList;
import static com.fitbur.assertj.util.Preconditions.checkNotNull;
import java.sql.Timestamp;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collection;
import java.util.Comparator;
import java.util.Date;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.concurrent.TimeUnit;
import com.fitbur.assertj.internal.ComparatorBasedComparisonStrategy;
import com.fitbur.assertj.internal.Dates;
import com.fitbur.assertj.util.VisibleForTesting;
/**
* Base class for all implementations of assertions for {@link Date}s.
*
* Note that assertions with date parameter comes with two flavor, one is obviously a {@link Date} and the other is a
* {@link String} representing a Date.
* For the latter, the default format follows ISO 8901 : "yyyy-MM-dd", user can override it with a custom format by
* calling {@link #withDateFormat(DateFormat)}.
* The user custom format will then be used for all next Date assertions (i.e not limited to the current assertion) in
* the test suite.
* To turn back to default format, simply call {@link #withDefaultDateFormatsOnly()}.
*
* @param the "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation" for
* more details.
* @author Tomasz Nurkiewicz (thanks for giving assertions idea)
* @author Joel Costigliola
* @author Mikhail Mazursky
* @author William Delanoue
*/
public abstract class AbstractDateAssert> extends AbstractAssert {
/**
* the default DateFormat used to parse any String date representation.
*/
private static final List DEFAULT_DATE_FORMATS = newArrayList(newIsoDateTimeWithMsFormat(),
newTimestampDateFormat(),
newIsoDateTimeFormat(),
newIsoDateFormat());
private static final String DATE_FORMAT_PATTERN_SHOULD_NOT_BE_NULL = "Given date format pattern should not be null";
private static final String DATE_FORMAT_SHOULD_NOT_BE_NULL = "Given date format should not be null";
/**
* Used in String based Date assertions - like {@link #isAfter(String)} - to convert input date represented as string
* to Date.
* It keeps the instertion order so first format added will be first format used.
*/
@VisibleForTesting
static ThreadLocal> userDateFormats = new ThreadLocal>() {
@Override
protected LinkedHashSet initialValue() {
return new LinkedHashSet<>();
}
};
@VisibleForTesting
Dates dates = Dates.instance();
protected AbstractDateAssert(Date actual, Class> selfType) {
super(actual, selfType);
}
/**
* Same assertion as {@link AbstractAssert#isEqualTo(Object) isEqualTo(Date date)} but given date is represented as
* String either with one of the supported defaults date format or a user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isEqualTo("2002-12-18");
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isEqualTo("2002-12-19");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are not equal.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isEqualTo(String dateAsString) {
return isEqualTo(parse(dateAsString));
}
/**
* Same assertion as {@link AbstractDateAssert#isEqualToIgnoringHours(Date)} but given Date is represented as String
* either with one of the default supported date format or user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // OK : all dates fields are the same up to minutes excluded
* assertThat("2003-04-26T13:01:35").isEqualToIgnoringHours("2003-04-26T14:02:35");
*
* // KO : fail as day fields differ
* assertThat("2003-04-26T14:01:35").isEqualToIgnoringHours("2003-04-27T13:02:35");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are not equal ignoring hours, minutes,
* seconds and milliseconds.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isEqualToIgnoringHours(String dateAsString) {
return isEqualToIgnoringHours(parse(dateAsString));
}
/**
* Same assertion as {@link AbstractAssert#isEqualTo(Object)} but given Date is represented as String either with
* one of the default supported date format or user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* Date date1 = parseDatetime("2003-04-26T13:01:35");
* Date date2 = parseDatetime("2003-04-26T14:01:00");
* Date date3 = parseDatetime("2003-04-27T13:01:35");
*
* // OK : all dates fields are the same up to hours excluded
* assertThat(date1).isEqualToIgnoringHours(date2);
*
* // KO : fail as day fields differ
* assertThat(date1).isEqualToIgnoringHours(date3);
*
* @param date the given Date.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are not equal ignoring hours, minutes,
* seconds and milliseconds.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isEqualToIgnoringHours(Date date) {
dates.assertIsEqualWithPrecision(info, actual, date, HOURS);
return myself;
}
/**
* Same assertion as {@link AbstractDateAssert#isEqualToIgnoringMinutes(Date)} but given Date is represented as
* String either with one of the default supported date format or user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* withDateFormat("yyyy-MM-dd'T'HH:mm:ss");
* // OK : all dates fields are the same up to minutes excluded
* assertThat("2003-04-26T13:01:35").isEqualToIgnoringMinutes("2003-04-26T13:02:35");
*
* // KO : fail as hour fields differ
* assertThat("2003-04-26T14:01:35").isEqualToIgnoringMinutes("2003-04-26T13:02:35");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are not equal ignoring minutes, seconds and
* milliseconds.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isEqualToIgnoringMinutes(String dateAsString) {
return isEqualToIgnoringMinutes(parse(dateAsString));
}
/**
* Same assertion as {@link AbstractAssert#isEqualTo(Object)} but given Date should not take care of minutes,
* seconds and milliseconds precision.
*
* Example:
* Date date1 = parseDatetime("2003-04-26T13:01:35");
* Date date2 = parseDatetime("2003-04-26T13:02:00");
* Date date3 = parseDatetime("2003-04-26T14:02:00");
*
* // OK : all dates fields are the same up to minutes excluded
* assertThat(date1).isEqualToIgnoringMinutes(date2);
*
* // KO : fail as hour fields differ
* assertThat(date1).isEqualToIgnoringMinutes(date3);
*
* @param date the given Date.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are not equal ignoring minutes, seconds and
* milliseconds.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isEqualToIgnoringMinutes(Date date) {
dates.assertIsEqualWithPrecision(info, actual, date, MINUTES);
return myself;
}
/**
* Same assertion as {@link AbstractDateAssert#isEqualToIgnoringSeconds(Date)} but given Date is represented as
* String
* either with one of the default supported date format or user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* Date date1 = parseDatetime("2003-04-26T13:01:35");
*
* // OK : all dates fields are the same up to seconds excluded
* assertThat(date1).isEqualToIgnoringSeconds("2003-04-26T13:01:57");
*
* // KO : fail as minute fields differ
* assertThat(date1).isEqualToIgnoringMinutes("2003-04-26T13:02:00");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are not equal ignoring seconds and
* milliseconds.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isEqualToIgnoringSeconds(String dateAsString) {
return isEqualToIgnoringSeconds(parse(dateAsString));
}
/**
* Same assertion as {@link AbstractAssert#isEqualTo(Object)} but given Date should not take care of seconds and
* milliseconds precision.
*
* Example:
* Date date1 = parseDatetime("2003-04-26T13:01:35");
* Date date2 = parseDatetime("2003-04-26T13:01:36");
* Date date3 = parseDatetime("2003-04-26T14:02:00");
*
* // OK : all dates fields are the same up to seconds excluded
* assertThat(date1).isEqualToIgnoringSeconds(date2);
*
* // KO : fail as minute fields differ
* assertThat(date1).isEqualToIgnoringSeconds(date3);
*
* @param date the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are not equal ignoring seconds and
* milliseconds.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isEqualToIgnoringSeconds(Date date) {
dates.assertIsEqualWithPrecision(info, actual, date, SECONDS);
return myself;
}
/**
* Same assertion as {@link AbstractDateAssert#isEqualToIgnoringMillis(Date)} but given Date is represented as String
* either with one of the default supported date format or user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* Date date1 = parseDatetimeWithMs("2003-04-26T13:01:35.998");
*
* // OK : all dates fields are the same up to milliseconds excluded
* assertThat().isEqualToIgnoringMillis("2003-04-26T13:01:35.997");
*
* // KO : fail as seconds fields differ
* assertThat("2003-04-26T13:01:35.998").isEqualToIgnoringMinutes("2003-04-26T13:01:36.998");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are not equal ignoring milliseconds.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isEqualToIgnoringMillis(String dateAsString) {
return isEqualToIgnoringMillis(parse(dateAsString));
}
/**
* Same assertion as {@link AbstractAssert#isEqualTo(Object)} but given Date should not take care of milliseconds
* precision.
*
* Example:
* Date date1 = parseDatetimeAndMs("2003-04-26T13:01:35.001");
* Date date2 = parseDatetimeAndMs("2003-04-26T13:01:35.002");
* Date date3 = parseDatetimeAndMs("2003-04-26T14:01:36.001");
*
* // OK : all dates fields are the same up to milliseconds excluded
* assertThat(date1).isEqualToIgnoringMillis(date2);
*
* // KO : fail as second fields differ
* assertThat(date1).isEqualToIgnoringMillis(date3);
*
* @param date the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are not equal ignoring milliseconds.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isEqualToIgnoringMillis(Date date) {
dates.assertIsEqualWithPrecision(info, actual, date, MILLISECONDS);
return myself;
}
/**
* Same assertion as {@link AbstractAssert#isNotEqualTo(Object) isNotEqualTo(Date date)} but given date is
* represented as String either with one of the supported defaults date format or a user custom date format (set with
* method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isNotEqualTo("2002-12-19");
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isNotEqualTo("2002-12-18");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual and given Date represented as String are equal.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isNotEqualTo(String dateAsString) {
return isNotEqualTo(parse(dateAsString));
}
/**
* Same assertion as {@link Assert#isIn(Object...)}but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isIn("2002-12-17", "2002-12-18", "2002-12-19");
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isIn("2002-12-17", "2002-12-19", "2002-12-20");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param datesAsString the given Dates represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual is not in given Dates represented as String.
* @throws AssertionError if one of the given date as String could not be converted to a Date.
*/
public S isIn(String... datesAsString) {
Date[] dates = new Date[datesAsString.length];
for (int i = 0; i < datesAsString.length; i++) {
dates[i] = parse(datesAsString[i]);
}
return isIn((Object[]) dates);
}
/**
* Same assertion as {@link Assert#isIn(Iterable)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isInWithStringDateCollection(asList("2002-12-17", "2002-12-18", "2002-12-19"));
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isInWithStringDateCollection(asList("2002-12-17", "2002-12-19", "2002-12-20"));
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* Method signature could not be isIn(Collection<String>)
because it would be same signature as
* isIn(Collection<Date>)
since java collection type are erased at runtime.
*
* @param datesAsString the given Dates represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual is not in given Dates represented as String.
* @throws AssertionError if one of the given date as String could not be converted to a Date.
*/
public S isInWithStringDateCollection(Collection datesAsString) {
Collection dates = new ArrayList<>(datesAsString.size());
for (String dateAsString : datesAsString) {
dates.add(parse(dateAsString));
}
return isIn(dates);
}
/**
* Same assertion as {@link Assert#isNotIn(Object...)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isNotIn("2002-12-17", "2002-12-19");
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isNotIn("2002-12-17", "2002-12-18");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param datesAsString the given Dates represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual is in given Dates represented as String.
* @throws AssertionError if one of the given date as String could not be converted to a Date.
*/
public S isNotIn(String... datesAsString) {
Date[] dates = new Date[datesAsString.length];
for (int i = 0; i < datesAsString.length; i++) {
dates[i] = parse(datesAsString[i]);
}
return isNotIn((Object[]) dates);
}
/**
* Same assertion as {@link Assert#isNotIn(Iterable)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isNotInWithStringDateCollection(Arrays.asList("2002-12-17", "2002-12-19"));
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isNotInWithStringDateCollection(Arrays.asList("2002-12-17", "2002-12-18"));
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
* Method signature could not be isNotIn(Collection<String>)
because it would be same signature as
* isNotIn(Collection<Date>)
since java collection type are erased at runtime.
*
* @param datesAsString the given Dates represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if actual is in given Dates represented as String.
* @throws AssertionError if one of the given date as String could not be converted to a Date.
*/
public S isNotInWithStringDateCollection(Collection datesAsString) {
Collection dates = new ArrayList<>(datesAsString.size());
for (String dateAsString : datesAsString) {
dates.add(parse(dateAsString));
}
return isNotIn(dates);
}
/**
* Verifies that the actual {@code Date} is strictly before the given one.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isBefore(theReturnOfTheKing.getReleaseDate());
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isBefore(theFellowshipOfTheRing.getReleaseDate());
*
* @param other the given Date.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if other {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not strictly before the given one.
*/
public S isBefore(Date other) {
dates.assertIsBefore(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isBefore(Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isBefore("2002-12-19");
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isBefore("2002-12-17");
* assertThat(theTwoTowers.getReleaseDate()).isBefore("2002-12-18");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if given date as String is {@code null}.
* @throws AssertionError if the actual {@code Date} is not strictly before the given Date represented as
* String.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isBefore(String dateAsString) {
return isBefore(parse(dateAsString));
}
/**
* Verifies that the actual {@code Date} is before or equals to the given one.
*
* Example:
*
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
*
* // assertions will pass
* assertThat(dateFormat.parse("1990-12-01")).isBeforeOrEqualsTo(dateFormat.parse("2000-12-01"));
* assertThat(dateFormat.parse("2000-12-01")).isBeforeOrEqualsTo(dateFormat.parse("2000-12-01"));
*
* // assertion will fail
* assertThat(dateFormat.parse("2000-12-01")).isBeforeOrEqualsTo(dateFormat.parse("1990-12-01"));
*
* @param other the given Date.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if other {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not before or equals to the given one.
*/
public S isBeforeOrEqualsTo(Date other) {
dates.assertIsBeforeOrEqualsTo(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isBeforeOrEqualsTo(Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isBeforeOrEqualsTo("2002-12-19");
* assertThat(theTwoTowers.getReleaseDate()).isBeforeOrEqualsTo("2002-12-18");
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isBeforeOrEqualsTo("2002-12-17");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if given date as String is {@code null}.
* @throws AssertionError if the actual {@code Date} is not before or equals to the given Date represented as
* String.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isBeforeOrEqualsTo(String dateAsString) {
return isBeforeOrEqualsTo(parse(dateAsString));
}
/**
* Verifies that the actual {@code Date} is strictly after the given one.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isAfter(theFellowshipOfTheRing.getReleaseDate());
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isAfter(theReturnOfTheKing.getReleaseDate());
*
* @param other the given Date.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if other {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not strictly after the given one.
*/
public S isAfter(Date other) {
dates.assertIsAfter(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isAfter(Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isAfter("2002-12-17");
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isAfter("2002-12-18");
* assertThat(theTwoTowers.getReleaseDate()).isAfter("2002-12-19");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if given date as String is {@code null}.
* @throws AssertionError if the actual {@code Date} is not strictly after the given Date represented as
* String.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isAfter(String dateAsString) {
return isAfter(parse(dateAsString));
}
/**
* Verifies that the actual {@code Date} is after or equals to the given one.
*
* Example:
*
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
*
* // assertions will pass
* assertThat(dateFormat.parse("2000-12-01")).isAfterOrEqualsTo(dateFormat.parse("1990-12-01"));
* assertThat(dateFormat.parse("2000-12-01")).isAfterOrEqualsTo(dateFormat.parse("2000-12-01"));
*
* // assertion will fail
* assertThat(dateFormat.parse("1990-12-01")).isAfterOrEqualsTo(dateFormat.parse("2000-12-01"));
*
* @param other the given Date.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if other {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not after or equals to the given one.
*/
public S isAfterOrEqualsTo(Date other) {
dates.assertIsAfterOrEqualsTo(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isAfterOrEqualsTo(Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isAfterOrEqualsTo("2002-12-17");
* assertThat(theTwoTowers.getReleaseDate()).isAfterOrEqualsTo("2002-12-18");
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isAfterOrEqualsTo("2002-12-19");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if given date as String is {@code null}.
* @throws AssertionError if the actual {@code Date} is not after or equals to the given Date represented as
* String.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isAfterOrEqualsTo(String dateAsString) {
return isAfterOrEqualsTo(parse(dateAsString));
}
/**
* Verifies that the actual {@code Date} is in [start, end[ period (start included, end excluded).
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isBetween(theFellowshipOfTheRing.getReleaseDate(), theReturnOfTheKing.getReleaseDate());
*
* // assertion will fail
* assertThat(theFellowshipOfTheRing.getReleaseDate()).isBetween(theTwoTowers.getReleaseDate(), theReturnOfTheKing.getReleaseDate());
*
* @param start the period start (inclusive), expected not to be null.
* @param end the period end (exclusive), expected not to be null.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if start {@code Date} is {@code null}.
* @throws NullPointerException if end {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not in [start, end[ period.
*/
public S isBetween(Date start, Date end) {
return isBetween(start, end, true, false);
}
/**
* Same assertion as {@link #isBetween(Date, Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isBetween("2002-12-17", "2002-12-19");
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isBetween("2002-12-15", "2002-12-17");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param start the period start (inclusive), expected not to be null.
* @param end the period end (exclusive), expected not to be null.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if start Date as String is {@code null}.
* @throws NullPointerException if end Date as String is {@code null}.
* @throws AssertionError if the actual {@code Date} is not in [start, end[ period.
* @throws AssertionError if one of the given date as String could not be converted to a Date.
*/
public S isBetween(String start, String end) {
return isBetween(parse(start), parse(end));
}
/**
* Verifies that the actual {@code Date} is in the given period defined by start and end dates.
* To include start
* in the period set inclusiveStart parameter to true
.
* To include end in the period set inclusiveEnd
* parameter to true
.
*
* Example:
*
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
* // assertions will pass
* assertThat(format.parse("2000-01-01")).isBetween(format.parse("2000-01-01"), format.parse("2100-12-01"), true, true);
* assertThat(format.parse("2000-01-01")).isBetween(format.parse("1900-01-01"), format.parse("2000-01-01"), true, true);
* assertThat(format.parse("2000-01-01")).isBetween(format.parse("1900-01-01"), format.parse("2100-01-01"), false, false);
*
* // assertions will fail
* assertThat(format.parse("2000-01-01")).isBetween(format.parse("2000-01-01"), format.parse("2100-12-01"), false, true);
* assertThat(format.parse("2000-01-01")).isBetween(format.parse("1900-01-01"), format.parse("2000-01-01"), true, false);
*
* @param start the period start, expected not to be null.
* @param end the period end, expected not to be null.
* @param inclusiveStart whether to include start date in period.
* @param inclusiveEnd whether to include end date in period.
* @return this assertion object.
* @throws AssertionError if {@code actual} is {@code null}.
* @throws NullPointerException if start {@code Date} is {@code null}.
* @throws NullPointerException if end {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not in (start, end) period.
*/
public S isBetween(Date start, Date end, boolean inclusiveStart, boolean inclusiveEnd) {
dates.assertIsBetween(info, actual, start, end, inclusiveStart, inclusiveEnd);
return myself;
}
/**
* Same assertion as {@link #isBetween(Date, Date, boolean, boolean)}but given date is represented as String either
* with one of the supported defaults date format or a user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isBetween("2002-12-17", "2002-12-18", false, true);
* assertThat(theTwoTowers.getReleaseDate()).isBetween("2002-12-18", "2002-12-19", true, false);
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isBetween("2002-12-17", "2002-12-18", false, false);
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param start the period start, expected not to be null.
* @param end the period end, expected not to be null.
* @param inclusiveStart whether to include start date in period.
* @param inclusiveEnd whether to include end date in period.
* @return this assertion object.
* @throws AssertionError if {@code actual} is {@code null}.
* @throws NullPointerException if start Date as String is {@code null}.
* @throws NullPointerException if end Date as String is {@code null}.
* @throws AssertionError if the actual {@code Date} is not in (start, end) period.
* @throws AssertionError if one of the given date as String could not be converted to a Date.
*/
public S isBetween(String start, String end, boolean inclusiveStart, boolean inclusiveEnd) {
dates.assertIsBetween(info, actual, parse(start), parse(end), inclusiveStart, inclusiveEnd);
return myself;
}
/**
* Verifies that the actual {@code Date} is not in the given period defined by start and end dates.
* To include start in the period set inclusiveStart parameter to true
.
* To include end in the period set inclusiveEnd parameter to true
.
*
* Example:
*
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
* // assertions will pass
* assertThat(format.parse("2000-01-01")).isNotBetween(format.parse("2000-01-01"), format.parse("2100-12-01"), false, true);
* assertThat(format.parse("2000-01-01")).isNotBetween(format.parse("1900-01-01"), format.parse("2000-01-01"), true, false);
*
* // assertions will fail
* assertThat(format.parse("2000-01-01")).isNotBetween(format.parse("2000-01-01"), format.parse("2100-12-01"), true, true);
* assertThat(format.parse("2000-01-01")).isNotBetween(format.parse("1900-01-01"), format.parse("2000-01-01"), true, true);
* assertThat(format.parse("2000-01-01")).isNotBetween(format.parse("1900-01-01"), format.parse("2100-01-01"), false, false);
*
* @param start the period start (inclusive), expected not to be null.
* @param end the period end (exclusive), expected not to be null.
* @param inclusiveStart whether to include start date in period.
* @param inclusiveEnd whether to include end date in period.
* @return this assertion object.
* @throws AssertionError if {@code actual} is {@code null}.
* @throws NullPointerException if start {@code Date} is {@code null}.
* @throws NullPointerException if end {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not in (start, end) period.
*/
public S isNotBetween(Date start, Date end, boolean inclusiveStart, boolean inclusiveEnd) {
dates.assertIsNotBetween(info, actual, start, end, inclusiveStart, inclusiveEnd);
return myself;
}
/**
* Same assertion as {@link #isNotBetween(Date, Date, boolean, boolean)} but given date is represented as String
* either with one of the supported defaults date format or a user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isNotBetween("2002-12-17", "2002-12-18", false, false);
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isNotBetween("2002-12-17", "2002-12-18", false, true);
* assertThat(theTwoTowers.getReleaseDate()).isNotBetween("2002-12-18", "2002-12-19", true, false);
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param start the period start (inclusive), expected not to be null.
* @param end the period end (exclusive), expected not to be null.
* @param inclusiveStart whether to include start date in period.
* @param inclusiveEnd whether to include end date in period.
* @return this assertion object.
* @throws AssertionError if {@code actual} is {@code null}.
* @throws NullPointerException if start Date as String is {@code null}.
* @throws NullPointerException if end Date as String is {@code null}.
* @throws AssertionError if the actual {@code Date} is not in (start, end) period.
* @throws AssertionError if one of the given date as String could not be converted to a Date.
*/
public S isNotBetween(String start, String end, boolean inclusiveStart, boolean inclusiveEnd) {
return isNotBetween(parse(start), parse(end), inclusiveStart, inclusiveEnd);
}
/**
* Verifies that the actual {@code Date} is not in [start, end[ period
*
* Example:
*
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
* // assertions will pass
* assertThat(format.parse("1900-01-01")).isNotBetween(format.parse("2000-01-01"), format.parse("2100-12-01"));
* assertThat(format.parse("2200-01-01")).isNotBetween(format.parse("2000-01-01"), format.parse("2100-12-01"));
* assertThat(format.parse("2000-01-01")).isNotBetween(format.parse("1900-01-01"), format.parse("2000-01-01"));
*
* // assertions will fail
* assertThat(format.parse("2001-12-24")).isNotBetween(format.parse("2000-01-01"), format.parse("2100-01-01"));
* assertThat(format.parse("1900-01-01")).isNotBetween(format.parse("1900-01-01"), format.parse("2000-01-01"));
*
* @param start the period start (inclusive), expected not to be null.
* @param end the period end (exclusive), expected not to be null.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if start {@code Date} is {@code null}.
* @throws NullPointerException if end {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is in [start, end[ period.
* @throws AssertionError if one of the given date as String could not be converted to a Date.
*/
public S isNotBetween(Date start, Date end) {
return isNotBetween(start, end, true, false);
}
/**
* Same assertion as {@link #isNotBetween(Date, Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* // assertion will pass
* assertThat(theFellowshipOfTheRing.getReleaseDate()).isNotBetween("2002-12-01", "2002-12-10");
*
* // assertion will fail
* assertThat(theFellowshipOfTheRing.getReleaseDate()).isNotBetween("2002-12-01", "2002-12-19");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param start the period start (inclusive), expected not to be null.
* @param end the period end (exclusive), expected not to be null.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if start Date as String is {@code null}.
* @throws NullPointerException if end Date as String is {@code null}.
* @throws AssertionError if the actual {@code Date} is in [start, end[ period.
* @throws AssertionError if one of the given date as String could not be converted to a Date.
*/
public S isNotBetween(String start, String end) {
return isNotBetween(parse(start), parse(end), true, false);
}
/**
* Verifies that the actual {@code Date} is strictly in the past.
*
* Example:
* // assertion will pass
* assertThat(theTwoTowers.getReleaseDate()).isInThePast();
*
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not in the past.
*/
public S isInThePast() {
dates.assertIsInThePast(info, actual);
return myself;
}
/**
* Verifies that the actual {@code Date} is today, that is matching current year, month and day (no check on hour,
* minute, second, milliseconds).
*
* Example:
* // assertion will pass
* assertThat(new Date()).isToday();
*
* // assertion will fail
* assertThat(theFellowshipOfTheRing.getReleaseDate()).isToday();
*
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not today.
*/
public S isToday() {
dates.assertIsToday(info, actual);
return myself;
}
/**
* Verifies that the actual {@code Date} is strictly in the future.
*
* Example:
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isInTheFuture();
*
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} is not in the future.
*/
public S isInTheFuture() {
dates.assertIsInTheFuture(info, actual);
return myself;
}
/**
* Verifies that the actual {@code Date} is strictly before the given year.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isBeforeYear(2004);
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isBeforeYear(2002);
* assertThat(theTwoTowers.getReleaseDate()).isBeforeYear(2000);
*
* @param year the year to compare actual year to
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} year is after or equals to the given year.
*/
public S isBeforeYear(int year) {
dates.assertIsBeforeYear(info, actual, year);
return myself;
}
/**
* Verifies that the actual {@code Date} is strictly after the given year.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).isAfterYear(2001);
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).isAfterYear(2002);
* assertThat(theTwoTowers.getReleaseDate()).isAfterYear(2004);
*
* @param year the year to compare actual year to
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} year is before or equals to the given year.
*/
public S isAfterYear(int year) {
dates.assertIsAfterYear(info, actual, year);
return myself;
}
/**
* Verifies that the actual {@code Date} year is equal to the given year.
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).hasYear(2002);
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).hasYear(2004);
*
* @param year the year to compare actual year to
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} year is not equal to the given year.
*/
public S hasYear(int year) {
dates.assertHasYear(info, actual, year);
return myself;
}
/**
* @deprecated use {@link #hasYear(int)} instead.
*/
@Deprecated
public S isWithinYear(int year) {
dates.assertHasYear(info, actual, year);
return myself;
}
/**
* Verifies that the actual {@code Date} month is equal to the given month, month value starting at 1
* (January=1, February=2, ...).
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).hasMonth(12);
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).hasMonth(10);
*
* @param month the month to compare actual month to, month value starting at 1 (January=1, February=2, ...).
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} month is not equal to the given month.
*/
public S hasMonth(int month) {
dates.assertHasMonth(info, actual, month);
return myself;
}
/**
* @deprecated use {@link #hasMonth(int)} instead.
*/
@Deprecated
public S isWithinMonth(int month) {
dates.assertHasMonth(info, actual, month);
return myself;
}
/**
* Verifies that the actual {@code Date} day of month is equal to the given day of month.
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* Example:
* // assertion will pass
* // theTwoTowers release date : 2002-12-18
* assertThat(theTwoTowers.getReleaseDate()).hasDayOfMonth(18);
*
* // assertion will fail
* assertThat(theTwoTowers.getReleaseDate()).hasDayOfMonth(20);
*
* @param dayOfMonth the day of month to compare actual day of month to
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} month is not equal to the given day of month.
*/
public S hasDayOfMonth(int dayOfMonth) {
dates.assertHasDayOfMonth(info, actual, dayOfMonth);
return myself;
}
/**
* @deprecated use {@link #hasDayOfMonth(int)} instead.
*/
@Deprecated
public S isWithinDayOfMonth(int dayOfMonth) {
dates.assertHasDayOfMonth(info, actual, dayOfMonth);
return myself;
}
/**
* Verifies that the actual {@code Date} day of week is equal to the given day of week (see
* {@link Calendar#DAY_OF_WEEK} for valid values).
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* Example:
* // assertion will pass
* assertThat(new Date(parseDatetime("2003-04-26T13:20:35").getTime()).hasDayOfWeek(Calendar.SATURDAY);
*
* // assertion will fail
* assertThat(new Date(parseDatetime("2003-04-26T13:20:35").getTime()).hasDayOfWeek(Calendar.MONDAY);
*
* @param dayOfWeek the day of week to compare actual day of week to, see {@link Calendar#DAY_OF_WEEK} for valid
* values
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} week is not equal to the given day of week.
*/
public S hasDayOfWeek(int dayOfWeek) {
dates.assertHasDayOfWeek(info, actual, dayOfWeek);
return myself;
}
/**
* @deprecated use {@link #hasDayOfWeek(int)} instead.
*/
@Deprecated
public S isWithinDayOfWeek(int dayOfWeek) {
dates.assertHasDayOfWeek(info, actual, dayOfWeek);
return myself;
}
/**
* Verifies that the actual {@code Date} hour of day is equal to the given hour of day (24-hour clock).
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* Example:
* // assertion will pass
* assertThat(new Date(parseDatetime("2003-04-26T13:20:35").getTime()).hasHourOfDay(13);
*
* // assertion will fail
* assertThat(new Date(parseDatetime("2003-04-26T13:20:35").getTime()).hasHourOfDay(22);
*
* @param hourOfDay the hour of day to compare actual hour of day to (24-hour clock)
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} hour is not equal to the given hour.
*/
public S hasHourOfDay(int hourOfDay) {
dates.assertHasHourOfDay(info, actual, hourOfDay);
return myself;
}
/**
* @deprecated use {@link #hasHourOfDay(int)} instead.
*/
@Deprecated
public S isWithinHourOfDay(int hourOfDay) {
dates.assertHasHourOfDay(info, actual, hourOfDay);
return myself;
}
/**
* Verifies that the actual {@code Date} minute is equal to the given minute.
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* Example:
* // assertion will pass
* assertThat(new Date(parseDatetime("2003-04-26T13:20:35").getTime()).hasMinute(20);
*
* // assertion will fail
* assertThat(new Date(parseDatetime("2003-04-26T13:20:35").getTime()).hasMinute(17);
*
* @param minute the minute to compare actual minute to
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} minute is not equal to the given minute.
*/
public S hasMinute(int minute) {
dates.assertHasMinute(info, actual, minute);
return myself;
}
/**
* @deprecated use {@link #hasMinute(int)} instead.
*/
@Deprecated
public S isWithinMinute(int minute) {
dates.assertHasMinute(info, actual, minute);
return myself;
}
/**
* Verifies that the actual {@code Date} second is equal to the given second.
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* Example:
* // assertion will pass
* assertThat(new Date(parseDatetime("2003-04-26T13:20:35").getTime()).hasSecond(35);
*
* // assertion will fail
* assertThat(new Date(parseDatetime("2003-04-26T13:20:35").getTime()).hasSecond(11);
*
* @param second the second to compare actual second to
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} second is not equal to the given second.
*/
public S hasSecond(int second) {
dates.assertHasSecond(info, actual, second);
return myself;
}
/**
* @deprecated use {@link #hasSecond(int)} instead.
*/
@Deprecated
public S isWithinSecond(int second) {
dates.assertHasSecond(info, actual, second);
return myself;
}
/**
* Verifies that the actual {@code Date} millisecond is equal to the given millisecond.
*
* Examples:
* // assertion will pass
* assertThat(parseDatetimeWithMs("2003-04-26T13:20:35.017")).hasMillisecond(17);
*
* // assertion will fail
* assertThat(parseDatetimeWithMs("2003-04-26T13:20:35.017")).hasMillisecond(25);
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* @param millisecond the millisecond to compare actual millisecond to
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} millisecond is not equal to the given millisecond.
*/
public S hasMillisecond(int millisecond) {
dates.assertHasMillisecond(info, actual, millisecond);
return myself;
}
/**
* @deprecated use {@link #hasMillisecond(int)} instead.
*/
@Deprecated
public S isWithinMillisecond(int second) {
dates.assertHasMillisecond(info, actual, second);
return myself;
}
/**
* Verifies that actual and given {@code Date} are in the same year.
*
* Example:
* Date date1 = parse("2003-04-26");
* Date date2 = parse("2003-05-27");
*
* assertThat(date1).isInSameYearAs(date2);
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* @param other the given {@code Date} to compare actual {@code Date} to.
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same year.
*/
public S isInSameYearAs(Date other) {
dates.assertIsInSameYearAs(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isInSameYearAs(Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* Date date1 = parse("2003-04-26");
* assertThat(date1).isInSameYearAs("2003-05-27");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws NullPointerException if dateAsString parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given Date represented as String are not in the same year.
* @throws AssertionError if the given date as String could not be converted to a Date.
*/
public S isInSameYearAs(String dateAsString) {
return isInSameYearAs(parse(dateAsString));
}
/**
* Verifies that actual and given {@code Date} have same month and year fields.
*
* Example:
* Date date1 = parse("2003-04-26");
* Date date2 = parse("2003-04-27");
*
* assertThat(date1).isInSameMonthAs(date2);
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* @param other the given {@code Date} to compare actual {@code Date} to.
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same month.
*/
public S isInSameMonthAs(Date other) {
dates.assertIsInSameMonthAs(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isInSameMonthAs(Date)}but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* Date date1 = parse("2003-04-26");
* assertThat(date1).isInSameMonthAs("2003-04-27");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws NullPointerException if dateAsString parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same month.
*/
public S isInSameMonthAs(String dateAsString) {
return isInSameMonthAs(parse(dateAsString));
}
/**
* Verifies that actual and given {@code Date} have the same day of month, month and year fields values.
*
* Example:
* Date date1 = parseDatetime("2003-04-26T23:17:00");
* Date date2 = parseDatetime("2003-04-26T12:30:00");
*
* assertThat(date1).isInSameDayAs(date2);
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* @param other the given {@code Date} to compare actual {@code Date} to.
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same day of month.
*/
public S isInSameDayAs(Date other) {
dates.assertIsInSameDayAs(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isInSameDayAs(Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Example:
* Date date1 = parseDatetime("2003-04-26T23:17:00");
* assertThat(date1).isInSameDayAs("2003-04-26");
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws NullPointerException if dateAsString parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same day of month.
*/
public S isInSameDayAs(String dateAsString) {
return isInSameDayAs(parse(dateAsString));
}
/**
* Verifies that actual and given {@code Date} are chronologically in the same hour (i.e. their time difference <= 1
* hour).
*
* This assertion succeeds as time difference is exactly = 1h:
* Date date1 = parseDatetime("2003-04-26T13:00:00");
* Date date2 = parseDatetime("2003-04-26T14:00:00");
* assertThat(date1).isInSameHourWindowAs(date2);
*
* Two dates can have different hour fields and yet be in the same chronological hour, example:
* Date date1 = parseDatetime("2003-04-26T13:00:00");
* Date date2 = parseDatetime("2003-04-26T12:59:59");
* // succeeds as time difference == 1s
* assertThat(date1).isInSameHourWindowAs(date2);
*
* This assertion fails as time difference is more than one hour:
* Date date1 = parseDatetime("2003-04-26T13:00:00");
* Date date2 = parseDatetime("2003-04-26T14:00:01");
* assertThat(date1).isInSameHourWindowAs(date2);
*
* To compare date's hour fields only (without day, month and year), you can write :
* assertThat(myDate).isWithinHour(hourOfDayOf(otherDate));
*
* see {@link com.fitbur.assertj.util.DateUtil#hourOfDayOf(java.util.Date) hourOfDayOf} to get the hour of a given Date.
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}).
*
* @param other the given {@code Date} to compare actual {@code Date} to.
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same hour.
*/
public S isInSameHourWindowAs(Date other) {
dates.assertIsInSameHourWindowAs(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isInSameHourWindowAs(java.util.Date)} but given date is represented as String either
* with one of the supported defaults date format or a user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws NullPointerException if dateAsString parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same day of month.
*/
public S isInSameHourWindowAs(String dateAsString) {
return isInSameHourWindowAs(parse(dateAsString));
}
/**
* Verifies that actual and given {@code Date} have same hour, day, month and year fields values.
*
* Example:
* Date date1 = parseDatetime("2003-01-01T12:00:00");
* Date date2 = parseDatetime("2003-01-01T12:30:00");
*
* // succeeds
* assertThat(date1).isInSameHourAs(date2);
*
* This assertion does not make a true chronological comparison since two dates can have different hour fields
* and yet be in the same chronological hour, e.g:
*
* // dates in the same hour time window but with different hour fields
* Date date1 = parseDatetime("2003-01-01T12:00:00");
* Date date2 = parseDatetime("2003-01-01T11:59:00");
*
* If you want to assert that two dates are chronologically in the same hour time window use
* {@link #isInSameHourWindowAs(java.util.Date) isInSameHourWindowAs} assertion (note that if
* isInSameHourAs
succeeds then isInSameHourWindowAs
will succeed too).
*
* If you want to compare hour only (without day, month and year), you could write :
* assertThat(myDate).isWithinHour(hourOfDayOf(otherDate))
* see {@link com.fitbur.assertj.util.DateUtil#hourOfDayOf(Date)} to get the hour of a given Date.
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* @param other the given {@code Date} to compare actual {@code Date} to.
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same hour.
*/
public S isInSameHourAs(Date other) {
dates.assertIsInSameHourAs(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isInSameHourAs(Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws NullPointerException if dateAsString parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same hour.
*/
public S isInSameHourAs(String dateAsString) {
return isInSameHourAs(parse(dateAsString));
}
/**
* Verifies that actual and given {@code Date} are chronologically in the same minute (i.e. their time difference <= 1
* minute).
*
* Example:
* Date date1 = parseDatetime("2003-01-01T12:01:00");
* Date date2 = parseDatetime("2003-01-01T12:01:30");
*
* // succeeds because date time difference < 1 min
* assertThat(date1).isInSameMinuteWindowAs(date2);
*
* Two dates can have different minute fields and yet be in the same chronological minute, example:
* Date date1 = parseDatetime("2003-01-01T12:01:00");
* Date date3 = parseDatetime("2003-01-01T12:00:59");
*
* // succeeds as time difference == 1s even though minutes fields differ
* assertThat(date1).isInSameMinuteWindowAs(date3);
*
* This assertion fails as time difference is >= one minute:
* Date date1 = parseDatetime("2003-01-01T12:01:00");
* Date date2 = parseDatetime("2003-01-01T12:02:00");
*
* // fails, time difference should hae been < 1 min
* assertThat(date1).isInSameMinuteWindowAs(date2); // ERROR
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}).
*
* @param other the given {@code Date} to compare actual {@code Date} to.
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same minute.
*/
public S isInSameMinuteWindowAs(Date other) {
dates.assertIsInSameMinuteWindowAs(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isInSameMinuteWindowAs(Date)} but given date is represented as String either with one of
* the supported defaults date format or a user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws NullPointerException if dateAsString parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same minute.
*/
public S isInSameMinuteWindowAs(String dateAsString) {
return isInSameMinuteWindowAs(parse(dateAsString));
}
/**
* Verifies that actual and given {@code Date} have same minute, same hour, day, month and year fields values.
*
* Example:
* Date date1 = parseDatetime("2003-01-01T12:01:00");
* Date date2 = parseDatetime("2003-01-01T12:01:30");
*
* // succeeds because the all the fields up to minutes are the same
* assertThat(date1).isInSameMinuteAs(date2);
*
* It does not make a true chronological comparison since two dates can have different minute fields and yet be
* in the same chronological minute, e.g:
* // dates in the same minute time window but with different minute fields
* Date date1 = parseDatetime("2003-01-01T12:01:00");
* Date date3 = parseDatetime("2003-01-01T12:00:59");
*
* // fails because minutes fields differ even though time difference is only 1s !
* assertThat(date1).isInSameMinuteAs(date3); // ERROR
*
* If you want to assert that two dates are in the same minute time window use
* {@link #isInSameMinuteWindowAs(java.util.Date) isInSameMinuteWindowAs} assertion (note that if
* isInSameMinuteAs
succeeds then isInSameMinuteWindowAs
will succeed too).
*
* If you want to compare minute field only (without hour, day, month and year), you could write :
* assertThat(myDate).hasMinute(minuteOf(otherDate))
* using {@link com.fitbur.assertj.util.DateUtil#minuteOf(Date)} to get the minute of a given Date.
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}).
*
* @param other the given {@code Date} to compare actual {@code Date} to.
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same minute.
*/
public S isInSameMinuteAs(Date other) {
dates.assertIsInSameMinuteAs(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isInSameMinuteAs(Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @return this assertion object.
* @throws NullPointerException if dateAsString parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same minute.
*/
public S isInSameMinuteAs(String dateAsString) {
return isInSameMinuteAs(parse(dateAsString));
}
/**
* Verifies that actual and given {@code Date} are chronologically strictly in the same second (i.e. their time
* difference < 1 second).
*
* Example:
* Date date1 = parseDatetimeWithMs("2003-04-26T13:01:02.123");
* Date date2 = parseDatetimeWithMs("2003-04-26T13:01:02.456");
*
* // succeeds as time difference is < 1s
* assertThat(date1).isInSameSecondWindowAs(date2);
*
* Two dates can have different second fields and yet be in the same chronological second, example:
* Date date1 = parseDatetimeWithMs("2003-04-26T13:01:02.999");
* Date date2 = parseDatetimeWithMs("2003-04-26T13:01:03.000");
*
* // succeeds as time difference is 1ms < 1s
* assertThat(date1).isInSameSecondWindowAs(date2);
*
* Those assertions fail as time difference is greater or equal to one second:
* Date date1 = parseDatetimeWithMs("2003-04-26T13:01:01.000");
* Date date2 = parseDatetimeWithMs("2003-04-26T13:01:02.000");
*
* // fails as time difference = 1s
* assertThat(date1).isInSameSecondWindowAs(date2); // ERROR
*
* Date date3 = parseDatetimeWithMs("2003-04-26T13:01:02.001");
* // fails as time difference > 1s
* assertThat(date1).isInSameSecondWindowAs(date3); // ERROR
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* @param other the given {@code Date} to compare actual {@code Date} to.
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same second.
*/
public S isInSameSecondWindowAs(Date other) {
dates.assertIsInSameSecondWindowAs(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isInSameSecondWindowAs(Date)} but given date is represented as String either with one of
* the supported defaults date format or a user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String.
* @throws NullPointerException if dateAsString parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same second.
*/
public S isInSameSecondWindowAs(String dateAsString) {
return isInSameSecondWindowAs(parse(dateAsString));
}
/**
* Verifies that actual and given {@code Date} have same second, minute, hour, day, month and year fields values.
*
* Date date1 = parseDatetimeWithMs("2003-01-01T12:00:01.000");
* Date date2 = parseDatetimeWithMs("2003-01-01T12:00:01.250");
*
* // succeeds because the all the time fields up to seconds are the same
* assertThat(date1).isInSameSecondAs(date2);
*
* It does not make a true chronological comparison since two dates can have different second fields and yet
* be
* in the same chronological second, e.g:
* Date date1 = parseDatetimeWithMs("2003-01-01T12:00:01.000");
* Date date3 = parseDatetimeWithMs("2003-01-01T12:00:00.999");
*
* // fails because seconds fields differ even though time difference is only 1ms !
* assertThat(date1).isInSameSecondAs(date3); // ERROR
*
* If you want to assert that two dates are in the same second time window use
* {@link #isInSameSecondWindowAs(java.util.Date) isInSameSecondWindowAs} assertion.
*
* If you want to compare second fields only (without minute, hour, day, month and year), you could write :
* assertThat(myDate).hasSecond(secondOf(otherDate))
* using {@link com.fitbur.assertj.util.DateUtil#secondOf(Date)} to get the second of a given Date.
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}).
*
* @param other the given {@code Date} to compare actual {@code Date} to.
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if actual and given {@code Date} are not in the same second.
*/
public S isInSameSecondAs(Date other) {
dates.assertIsInSameSecondAs(info, actual, other);
return myself;
}
/**
* Same assertion as {@link #isInSameSecondAs(Date)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*/
public S isInSameSecondAs(String dateAsString) {
return isInSameSecondAs(parse(dateAsString));
}
/**
* Verifies that the actual {@code Date} is close to the other date by less than delta (expressed in milliseconds),
* if
* difference is equals to delta it's ok.
*
* One can use handy {@link TimeUnit} to convert a duration in milliseconds, for example you can express a delta of 5
* seconds with TimeUnit.SECONDS.toMillis(5)
.
*
* Note that using a custom comparator has no effect on this assertion (see {@link #usingComparator(Comparator)}.
*
* Example:
* Date date1 = new Date();
* Date date2 = new Date(date1.getTime() + 100);
*
* // assertion will pass
* assertThat(date1).isCloseTo(date2, 80);
* assertThat(date1).isCloseTo(date2, 100);
*
* // assertion will fail
* assertThat(date1).isCloseTo(date2, 101);
*
* @param other the date to compare actual to
* @param deltaInMilliseconds the delta used for date comparison, expressed in milliseconds
* @return this assertion object.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} week is not close to the given date by less than delta.
*/
public S isCloseTo(Date other, long deltaInMilliseconds) {
dates.assertIsCloseTo(info, actual, other, deltaInMilliseconds);
return myself;
}
/**
* Same assertion as {@link #isCloseTo(Date, long)} but given date is represented as String either with one of the
* supported defaults date format or a user custom date format (set with method {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local timezone.
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given Date represented as String in default or custom date format.
* @param deltaInMilliseconds the delta used for date comparison, expressed in milliseconds
* @return this assertion object.
* @throws NullPointerException if dateAsString parameter is {@code null}.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} week is not close to the given date by less than delta.
*/
public S isCloseTo(String dateAsString, long deltaInMilliseconds) {
return isCloseTo(parse(dateAsString), deltaInMilliseconds);
}
/**
* Verifies that the actual {@code Date} has the same time as the given timestamp.
*
* Both time or timestamp express a number of milliseconds since January 1, 1970, 00:00:00 GMT.
*
* Example:
* assertThat(new Date(42)).hasTime(42);
*
* @param timestamp the timestamp to compare actual time to.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} time is not equal to the given timestamp.
* @see Date#getTime()
*/
public S hasTime(long timestamp) {
dates.assertHasTime(info, actual, timestamp);
return myself;
}
/**
* Verifies that the actual {@code Date} has the same time as the given date, useful to compare {@link Date} and
* {@link Timestamp}.
*
* Example:
* Date date = new Date();
* Timestamp timestamp = new Timestamp(date.getTime());
*
* // Fail as date is not an instance of Timestamp
* assertThat(date).isEqualTo(timestamp);
*
* // Succeed as we compare date and timestamp time.
* assertThat(date).hasSameTimeAs(timestamp);
*
* @param date the date to compare actual time to.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws AssertionError if the actual {@code Date} time is not equal to the given date time.
* @throws NullPointerException if {@code Date} parameter is {@code null}.
* @see Date#getTime()
*/
public S hasSameTimeAs(Date date) {
dates.hasSameTimeAs(info, actual, date);
return myself;
}
/**
* Verifies that the actual {@code Date} represents the same time as the given date in {@code String} format.
*
* It is the same assertion as {@link #hasSameTimeAs(Date)} but given date is represented as String either with one of
* the supported default date formats or a user custom date format (set with method
* {@link #withDateFormat(DateFormat)}).
*
* Beware that the default formats are expressed in the current local time zone.
*
* Example:
*
Date date = parseDatetime("2003-04-26T12:00:00");
*
* // assertion will pass
* assertThat(date).hasSameTimeAs("2003-04-26T12:00:00");
*
* // assertion will fail
* assertThat(date).hasSameTimeAs("2003-04-26T12:00:01");
* assertThat(date).hasSameTimeAs("2003-04-27T12:00:00");
*
* Default date formats (expressed in the local time zone) are:
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @param dateAsString the given {@code Date} represented as {@code String} in default or custom date format.
* @return this assertion object.
* @throws AssertionError if the actual {@code Date} is {@code null}.
* @throws NullPointerException if given date as String is {@code null}.
* @throws AssertionError if the actual {@code Date} time is not equal to the time from date represented as
* String.
* @throws AssertionError if the given date as String could not be converted to a Date.
* @author Michal Kordas
*/
public S hasSameTimeAs(String dateAsString) {
dates.hasSameTimeAs(info, actual, parse(dateAsString));
return myself;
}
/**
* Instead of using default date formats for the date String based Date assertions like {@link #isEqualTo(String)},
* AssertJ is gonna use any date formats registered with one of these methods :
*
* - {@link #withDateFormat(String)}
* - this method
* - {@link #registerCustomDateFormat(java.text.DateFormat)}
* - {@link #registerCustomDateFormat(String)}
*
*
* Beware that :
*
* - this will be the case for all future Date assertions in the test suite
* - once a custom date format is registered, the default date formats are not used anymore
*
*
* To revert to default format, call {@link #useDefaultDateFormatsOnly()} or {@link #withDefaultDateFormatsOnly()}.
*
* @param userCustomDateFormat the new Date format used for String based Date assertions.
* @return this assertion object.
*/
public S withDateFormat(DateFormat userCustomDateFormat) {
registerCustomDateFormat(userCustomDateFormat);
return myself;
}
/**
* Instead of using default date formats for the date String based Date assertions like {@link #isEqualTo(String)},
* AssertJ is gonna use any date formats registered with one of these methods :
*
* - this method
* - {@link #withDateFormat(java.text.DateFormat)}
* - {@link #registerCustomDateFormat(java.text.DateFormat)}
* - {@link #registerCustomDateFormat(String)}
*
*
* Beware that :
*
* - this will be the case for all future Date assertions in the test suite
* - once a custom date format is registered, the default date formats are not used anymore
*
*
* To revert to default format, call {@link #useDefaultDateFormatsOnly()} or {@link #withDefaultDateFormatsOnly()}.
*
* @param userCustomDateFormatPattern the new Date format string pattern used for String based Date assertions.
* @return this assertion object.
*/
public S withDateFormat(String userCustomDateFormatPattern) {
checkNotNull(userCustomDateFormatPattern, DATE_FORMAT_PATTERN_SHOULD_NOT_BE_NULL);
return withDateFormat(new SimpleDateFormat(userCustomDateFormatPattern));
}
/**
* Instead of using default strict date/time parsing, it is possible to use lenient parsing mode for default date
* formats parser to interpret inputs that do not precisely match supported date formats (lenient parsing).
*
* With strict parsing, inputs must match exactly date/time format.
*
* Example:
*
final Date date = Dates.parse("2001-02-03");
* final Date dateTime = parseDatetime("2001-02-03T04:05:06");
* final Date dateTimeWithMs = parseDatetimeWithMs("2001-02-03T04:05:06.700");
*
* AbstractDateAssert.setLenientDateParsing(true);
*
* // assertions will pass
* assertThat(date).isEqualTo("2001-01-34");
* assertThat(date).isEqualTo("2001-02-02T24:00:00");
* assertThat(date).isEqualTo("2001-02-04T-24:00:00.000");
* assertThat(dateTime).isEqualTo("2001-02-03T04:05:05.1000");
* assertThat(dateTime).isEqualTo("2001-02-03T04:04:66");
* assertThat(dateTimeWithMs).isEqualTo("2001-02-03T04:05:07.-300");
*
* // assertions will fail
* assertThat(date).hasSameTimeAs("2001-02-04"); // different date
* assertThat(dateTime).hasSameTimeAs("2001-02-03 04:05:06"); // leniency does not help here
*
* To revert to default strict date parsing, call {@code setLenientDateParsing(false)}.
*
* @param value whether lenient parsing mode should be enabled or not
*/
public static void setLenientDateParsing(boolean value) {
for (DateFormat defaultDateFormat : DEFAULT_DATE_FORMATS) {
defaultDateFormat.setLenient(value);
}
}
/**
* Add the given date format to the ones used to parse date String in String based Date assertions like
* {@link #isEqualTo(String)}.
*
* User date formats are used before default ones in the order they have been registered (first registered, first
* used).
*
* AssertJ is gonna use any date formats registered with one of these methods :
*
* - {@link #withDateFormat(String)}
* - {@link #withDateFormat(java.text.DateFormat)}
* - this method
* - {@link #registerCustomDateFormat(String)}
*
*
* Beware that AssertJ will use the newly registered format for all remaining Date assertions in the test suite
*
* To revert to default formats only, call {@link #useDefaultDateFormatsOnly()} or
* {@link #withDefaultDateFormatsOnly()}.
*
* Code examples:
* Date date = ... // set to 2003 April the 26th
* assertThat(date).isEqualTo("2003-04-26");
*
* try {
* // date with a custom format : failure since the default formats don't match.
* assertThat(date).isEqualTo("2003/04/26");
* } catch (AssertionError e) {
* assertThat(e).hasMessage("Failed to parse 2003/04/26 with any of these date formats: " +
* "[yyyy-MM-dd'T'HH:mm:ss.SSS, yyyy-MM-dd'T'HH:mm:ss, yyyy-MM-dd]");
* }
*
* // registering a custom date format to make the assertion pass
* registerCustomDateFormat(new SimpleDateFormat("yyyy/MM/dd")); // registerCustomDateFormat("yyyy/MM/dd") would work to.
* assertThat(date).isEqualTo("2003/04/26");
*
* // the default formats are still available and should work
* assertThat(date).isEqualTo("2003-04-26");
*
* @param userCustomDateFormat the new Date format used for String based Date assertions.
*/
public static void registerCustomDateFormat(DateFormat userCustomDateFormat) {
checkNotNull(userCustomDateFormat, DATE_FORMAT_SHOULD_NOT_BE_NULL);
userDateFormats.get().add(userCustomDateFormat);
}
/**
* Add the given date format to the ones used to parse date String in String based Date assertions like
* {@link #isEqualTo(String)}.
*
* User date formats are used before default ones in the order they have been registered (first registered, first
* used).
*
* AssertJ is gonna use any date formats registered with one of these methods :
*
* - {@link #withDateFormat(String)}
* - {@link #withDateFormat(java.text.DateFormat)}
* - {@link #registerCustomDateFormat(java.text.DateFormat)}
* - this method
*
*
* Beware that AssertJ will use the newly registered format for all remaining Date assertions in the test suite
*
* To revert to default formats only, call {@link #useDefaultDateFormatsOnly()} or
* {@link #withDefaultDateFormatsOnly()}.
*
* Code examples:
* Date date = ... // set to 2003 April the 26th
* assertThat(date).isEqualTo("2003-04-26");
*
* try {
* // date with a custom format : failure since the default formats don't match.
* assertThat(date).isEqualTo("2003/04/26");
* } catch (AssertionError e) {
* assertThat(e).hasMessage("Failed to parse 2003/04/26 with any of these date formats: " +
* "[yyyy-MM-dd'T'HH:mm:ss.SSS, yyyy-MM-dd'T'HH:mm:ss, yyyy-MM-dd]");
* }
*
* // registering a custom date format to make the assertion pass
* registerCustomDateFormat("yyyy/MM/dd");
* assertThat(date).isEqualTo("2003/04/26");
*
* // the default formats are still available and should work
* assertThat(date).isEqualTo("2003-04-26");
*
* @param userCustomDateFormatPattern the new Date format pattern used for String based Date assertions.
*/
public static void registerCustomDateFormat(String userCustomDateFormatPattern) {
checkNotNull(userCustomDateFormatPattern, DATE_FORMAT_PATTERN_SHOULD_NOT_BE_NULL);
registerCustomDateFormat(new SimpleDateFormat(userCustomDateFormatPattern));
}
/**
* Remove all registered custom date formats => use only the defaults date formats to parse string as date.
*
* Beware that the default formats are expressed in the current local timezone.
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*/
public static void useDefaultDateFormatsOnly() {
userDateFormats.get().clear();
}
/**
* Remove all registered custom date formats => use only the defaults date formats to parse string as date.
*
* Beware that the default formats are expressed in the current local timezone.
*
* Defaults date format (expressed in the local time zone) are :
*
* yyyy-MM-dd'T'HH:mm:ss.SSS
* yyyy-MM-dd HH:mm:ss.SSS
* yyyy-MM-dd'T'HH:mm:ss
* yyyy-MM-dd
*
*
* Example of valid string date representations:
*
* 2003-04-26T03:01:02.999
* 2003-04-26 03:01:02.999
* 2003-04-26T13:01:02
* 2003-04-26
*
*
* @return this assertion
*/
public S withDefaultDateFormatsOnly() {
useDefaultDateFormatsOnly();
return myself;
}
/**
* Thread safe utility method to parse a Date with {@link #userDateFormats} first, then {@link #DEFAULT_DATE_FORMATS}.
*
* Returns null
if dateAsString parameter is null
.
*
* @param dateAsString the string to parse as a Date with {@link #userDateFormats}
* @return the corresponding Date, null if dateAsString parameter is null.
* @throws AssertionError if the string can't be parsed as a Date
*/
@VisibleForTesting
Date parse(String dateAsString) {
if (dateAsString == null) return null;
// parse with date format specified by user if any, otherwise use default formats
// no synchronization needed as userCustomDateFormat is thread local
Date date = parseDateWith(dateAsString, userDateFormats.get());
if (date != null) return date;
// no matching user date format, let's try default format
date = parseDateWithDefaultDateFormats(dateAsString);
if (date != null) return date;
// no matching date format, throw an error
throw new AssertionError(String.format("Failed to parse %s with any of these date formats:%n %s", dateAsString,
info.representation().toStringOf(dateFormatsInOrderOfUsage())));
}
private Date parseDateWithDefaultDateFormats(final String dateAsString) {
synchronized (DEFAULT_DATE_FORMATS) {
return parseDateWith(dateAsString, DEFAULT_DATE_FORMATS);
}
}
private List dateFormatsInOrderOfUsage() {
List allDateFormatsInOrderOfUsage = newArrayList(userDateFormats.get());
allDateFormatsInOrderOfUsage.addAll(DEFAULT_DATE_FORMATS);
return allDateFormatsInOrderOfUsage;
}
private Date parseDateWith(final String dateAsString, final Collection dateFormats) {
for (DateFormat defaultDateFormat : dateFormats) {
try {
return defaultDateFormat.parse(dateAsString);
} catch (ParseException e) {
// ignore and try next date format
}
}
return null;
}
@Override
public S usingComparator(Comparator super Date> customComparator) {
super.usingComparator(customComparator);
this.dates = new Dates(new ComparatorBasedComparisonStrategy(customComparator));
return myself;
}
@Override
public S usingDefaultComparator() {
super.usingDefaultComparator();
this.dates = Dates.instance();
return myself;
}
}