Package org.fest.assertions.internal
Class Dates
- java.lang.Object
-
- org.fest.assertions.internal.Dates
-
public class Dates extends java.lang.ObjectReusable assertions fors.Date- Author:
- Joel Costigliola
-
-
Constructor Summary
Constructors Constructor Description Dates(ComparisonStrategy comparisonStrategy)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidassertHasTime(AssertionInfo info, java.util.Date actual, long timestamp)Verifies that the actualDatetime is equal to the given timestamp.voidassertIsAfter(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that the actualDateis strictly after the given one.voidassertIsAfterOrEqualsTo(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that the actualDateis after or equal to the given one.voidassertIsAfterYear(AssertionInfo info, java.util.Date actual, int year)Verifies that the actualDateis strictly after the given year.voidassertIsBefore(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that the actualDateis strictly before the given one.voidassertIsBeforeOrEqualsTo(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that the actualDateis before or equal to the given one.voidassertIsBeforeYear(AssertionInfo info, java.util.Date actual, int year)Verifies that the actualDateis strictly before the given year.voidassertIsBetween(AssertionInfo info, java.util.Date actual, java.util.Date start, java.util.Date end, boolean inclusiveStart, boolean inclusiveEnd)Verifies that the actualDateis in start:end period.
start date belongs to the period if inclusiveStart is true.
end date belongs to the period if inclusiveEnd is true.voidassertIsCloseTo(AssertionInfo info, java.util.Date actual, java.util.Date other, long deltaInMilliseconds)Verifies that the actualDateis close to the other date by less than delta, if difference is equals to delta it is ok.
Note that delta expressed in milliseconds.
Use handy TimeUnit to convert a duration in milliseconds, for example you can express a delta of 5 seconds withTimeUnit.SECONDS.toMillis(5).voidassertIsInSameDayAs(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that actual and givenDateare chronologically in the same day of month (and thus in the same month and year).voidassertIsInSameHourAs(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that actual and givenDateare chronologically in the same hour (and thus in the same day of month, month and year).voidassertIsInSameMinuteAs(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that actual and givenDateare chronologically in the same minute (and thus in the same hour, day of month, month and year).voidassertIsInSameMonthAs(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that actual and givenDateare chronologically in the same month (and thus in the same year).voidassertIsInSameSecondAs(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that actual and givenDateare chronologically in the same second (and thus in the same minute, hour, day of month, month and year).voidassertIsInSameYearAs(AssertionInfo info, java.util.Date actual, java.util.Date other)Verifies that actual and givenDateare in the same year.voidassertIsInTheFuture(AssertionInfo info, java.util.Date actual)Verifies that the actualDateis strictly in the future.voidassertIsInThePast(AssertionInfo info, java.util.Date actual)Verifies that the actualDateis strictly in the past.voidassertIsNotBetween(AssertionInfo info, java.util.Date actual, java.util.Date start, java.util.Date end, boolean inclusiveStart, boolean inclusiveEnd)Verifies that the actualDateis not in start:end period..
start date belongs to the period if inclusiveStart is true.
end date belongs to the period if inclusiveEnd is true.voidassertIsToday(AssertionInfo info, java.util.Date actual)Verifies that the actualDateis today, by comparing only year, month and day of actual to today (ie.voidassertIsWithinDayOfMonth(AssertionInfo info, java.util.Date actual, int dayOfMonth)Verifies that the actualDateday of month is equal to the given day of month.voidassertIsWithinDayOfWeek(AssertionInfo info, java.util.Date actual, int dayOfWeek)Verifies that the actualDateday of week is equal to the given day of week.voidassertIsWithinHourOfDay(AssertionInfo info, java.util.Date actual, int hourOfDay)Verifies that the actualDatehour od day is equal to the given hour of day (24-hour clock).voidassertIsWithinMillisecond(AssertionInfo info, java.util.Date actual, int millisecond)Verifies that the actualDatemillisecond is equal to the given millisecond.voidassertIsWithinMinute(AssertionInfo info, java.util.Date actual, int minute)Verifies that the actualDateminute is equal to the given minute.voidassertIsWithinMonth(AssertionInfo info, java.util.Date actual, int month)Verifies that the actualDatemonth is equal to the given month, month value starting at 1 (January=1, February=2, ...).voidassertIsWithinSecond(AssertionInfo info, java.util.Date actual, int second)Verifies that the actualDatesecond is equal to the given second.voidassertIsWithinYear(AssertionInfo info, java.util.Date actual, int year)Verifies that the actualDateyear is equal to the given year.java.util.Comparator<?>getComparator()static Datesinstance()Returns the singleton instance of this class.
-
-
-
Constructor Detail
-
Dates
public Dates(ComparisonStrategy comparisonStrategy)
-
-
Method Detail
-
instance
public static Dates instance()
Returns the singleton instance of this class.- Returns:
- the singleton instance of this class.
-
getComparator
public java.util.Comparator<?> getComparator()
-
assertIsBefore
public void assertIsBefore(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that the actualDateis strictly before the given one.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the other date to compare actual with.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if the actualDateis not strictly before the given one.
-
assertIsBeforeOrEqualsTo
public void assertIsBeforeOrEqualsTo(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that the actualDateis before or equal to the given one.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the other date to compare actual with.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if the actualDateis not before or equal to the given one.
-
assertIsAfter
public void assertIsAfter(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that the actualDateis strictly after the given one.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the given Date.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if the actualDateis not strictly after the given one.
-
assertIsAfterOrEqualsTo
public void assertIsAfterOrEqualsTo(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that the actualDateis after or equal to the given one.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the given Date.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if the actualDateis not after or equal to the given one.
-
assertIsBetween
public void assertIsBetween(AssertionInfo info, java.util.Date actual, java.util.Date start, java.util.Date end, boolean inclusiveStart, boolean inclusiveEnd)
Verifies that the actualDateis in start:end period.
start date belongs to the period if inclusiveStart is true.
end date belongs to the period if inclusiveEnd is true.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.start- the period start, expected not to be null.end- the period end, expected not to be null.inclusiveStart- wether to include start date in period.inclusiveEnd- wether to include end date in period.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if startDateisnull.java.lang.NullPointerException- if endDateisnull.java.lang.AssertionError- if the actualDateis not in start:end period.
-
assertIsNotBetween
public void assertIsNotBetween(AssertionInfo info, java.util.Date actual, java.util.Date start, java.util.Date end, boolean inclusiveStart, boolean inclusiveEnd)
Verifies that the actualDateis not in start:end period..
start date belongs to the period if inclusiveStart is true.
end date belongs to the period if inclusiveEnd is true.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.start- the period start, expected not to be null.end- the period end, expected not to be null.inclusiveStart- wether to include start date in period.inclusiveEnd- wether to include end date in period.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if startDateisnull.java.lang.NullPointerException- if endDateisnull.java.lang.AssertionError- if the actualDateis in start:end period.
-
assertIsInThePast
public void assertIsInThePast(AssertionInfo info, java.util.Date actual)
Verifies that the actualDateis strictly in the past.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDateis not in the past.
-
assertIsToday
public void assertIsToday(AssertionInfo info, java.util.Date actual)
Verifies that the actualDateis today, by comparing only year, month and day of actual to today (ie. we don't check hours).- Parameters:
info- contains information about the assertion.actual- the "actual"Date.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDateis not today.
-
assertIsInTheFuture
public void assertIsInTheFuture(AssertionInfo info, java.util.Date actual)
Verifies that the actualDateis strictly in the future.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDateis not in the future.
-
assertIsBeforeYear
public void assertIsBeforeYear(AssertionInfo info, java.util.Date actual, int year)
Verifies that the actualDateis strictly before the given year.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.year- the year to compare actual year to- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDateyear is after or equal to the given year.
-
assertIsAfterYear
public void assertIsAfterYear(AssertionInfo info, java.util.Date actual, int year)
Verifies that the actualDateis strictly after the given year.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.year- the year to compare actual year to- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDateyear is before or equal to the given year.
-
assertIsWithinYear
public void assertIsWithinYear(AssertionInfo info, java.util.Date actual, int year)
Verifies that the actualDateyear is equal to the given year.- Parameters:
year- the year to compare actual year toinfo- contains information about the assertion.actual- the "actual"Date.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDateyear is not equal to the given year.
-
assertIsWithinMonth
public void assertIsWithinMonth(AssertionInfo info, java.util.Date actual, int month)
Verifies that the actualDatemonth is equal to the given month, month value starting at 1 (January=1, February=2, ...).- Parameters:
info- contains information about the assertion.actual- the "actual"Date.month- the month to compare actual month to, seeCalendar.MONTHfor valid values- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDatemonth is not equal to the given month.
-
assertIsWithinDayOfMonth
public void assertIsWithinDayOfMonth(AssertionInfo info, java.util.Date actual, int dayOfMonth)
Verifies that the actualDateday of month is equal to the given day of month.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.dayOfMonth- the day of month to compare actual day of month to- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDatemonth is not equal to the given day of month.
-
assertIsWithinDayOfWeek
public void assertIsWithinDayOfWeek(AssertionInfo info, java.util.Date actual, int dayOfWeek)
Verifies that the actualDateday of week is equal to the given day of week.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.dayOfWeek- the day of week to compare actual day of week to, seeCalendar.DAY_OF_WEEKfor valid values- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDateweek is not equal to the given day of week.
-
assertIsWithinHourOfDay
public void assertIsWithinHourOfDay(AssertionInfo info, java.util.Date actual, int hourOfDay)
Verifies that the actualDatehour od day is equal to the given hour of day (24-hour clock).- Parameters:
info- contains information about the assertion.actual- the "actual"Date.hourOfDay- the hour of day to compare actual hour of day to (24-hour clock)- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDatehour is not equal to the given hour.
-
assertIsWithinMinute
public void assertIsWithinMinute(AssertionInfo info, java.util.Date actual, int minute)
Verifies that the actualDateminute is equal to the given minute.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.minute- the minute to compare actual minute to- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDateminute is not equal to the given minute.
-
assertIsWithinSecond
public void assertIsWithinSecond(AssertionInfo info, java.util.Date actual, int second)
Verifies that the actualDatesecond is equal to the given second.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.second- the second to compare actual second to- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDatesecond is not equal to the given second.
-
assertIsWithinMillisecond
public void assertIsWithinMillisecond(AssertionInfo info, java.util.Date actual, int millisecond)
Verifies that the actualDatemillisecond is equal to the given millisecond.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.millisecond- the millisecond to compare actual millisecond to- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDatemillisecond is not equal to the given millisecond.
-
assertIsInSameYearAs
public void assertIsInSameYearAs(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that actual and givenDateare in the same year.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the givenDateto compare actualDateto.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if actual and givenDateare not in the same year.
-
assertIsInSameMonthAs
public void assertIsInSameMonthAs(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that actual and givenDateare chronologically in the same month (and thus in the same year).- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the givenDateto compare actualDateto.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if actual and givenDateare not chronologically speaking in the same month.
-
assertIsInSameDayAs
public void assertIsInSameDayAs(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that actual and givenDateare chronologically in the same day of month (and thus in the same month and year).- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the givenDateto compare actualDateto.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if actual and givenDateare not chronologically speaking in the same day of month.
-
assertIsInSameHourAs
public void assertIsInSameHourAs(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that actual and givenDateare chronologically in the same hour (and thus in the same day of month, month and year).- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the givenDateto compare actualDateto.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if actual and givenDateare not chronologically speaking in the same hour.
-
assertIsInSameMinuteAs
public void assertIsInSameMinuteAs(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that actual and givenDateare chronologically in the same minute (and thus in the same hour, day of month, month and year).- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the givenDateto compare actualDateto.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if actual and givenDateare not chronologically speaking in the same minute.
-
assertIsInSameSecondAs
public void assertIsInSameSecondAs(AssertionInfo info, java.util.Date actual, java.util.Date other)
Verifies that actual and givenDateare chronologically in the same second (and thus in the same minute, hour, day of month, month and year).- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the givenDateto compare actualDateto.- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if actual and givenDateare not chronologically speaking in the same second.
-
assertIsCloseTo
public void assertIsCloseTo(AssertionInfo info, java.util.Date actual, java.util.Date other, long deltaInMilliseconds)
Verifies that the actualDateis close to the other date by less than delta, if difference is equals to delta it is ok.
Note that delta expressed in milliseconds.
Use handy TimeUnit to convert a duration in milliseconds, for example you can express a delta of 5 seconds withTimeUnit.SECONDS.toMillis(5).- Parameters:
info- contains information about the assertion.actual- the "actual"Date.other- the givenDateto compare actualDateto.deltaInMilliseconds- the delta used for date comparison, expressed in milliseconds- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.NullPointerException- if otherDateisnull.java.lang.AssertionError- if the actualDateweek is not close to the given date by less than delta.
-
assertHasTime
public void assertHasTime(AssertionInfo info, java.util.Date actual, long timestamp)
Verifies that the actualDatetime is equal to the given timestamp.- Parameters:
info- contains information about the assertion.actual- the "actual"Date.timestamp- the timestamp to compare actual time to- Throws:
java.lang.AssertionError- ifactualisnull.java.lang.AssertionError- if the actualDatetime is not equal to the given timestamp.
-
-