javaspringbddconcordion

How can i create good repeatable date tests in BDD?


When i insert my business object in the database (with spring/hibernate), there are some date fields that are updated with the current date.

This is an important feature so i want to validate it in my testable specification.

The problem is that i want to see the field with the correct date, but as it's the current date, it changes every time.

I have a solution that could work but it's so hacky that i can't do it in good conscience.

It would be like this :

@Service
public class DateService {
  private Date fixedDate;

  public Date getCurrentDate() {
    if (fixedDate != null)
      return fixedDate;
    return new Date();
  }

  // setter / reset
}

And I @autowired it every time i need a new Date(). Then, when it's testing time, i fix the date so i know every "new" date would be this date.

How do you create good repeatable date based tests in your projects ?

Thanks


Solution

  • In cases when you can alter the underlying system, injecting an alternate clock implementation works well. For example, this answer shows various solutions, including Java 8's java.time.Clock interface.

    For system tests, where you want to test the real implementation, instrument a Concordion spec such as:

    <p>The invoice date is set to <span c:assertEquals=getInvoiceDate()>today</span></p>

    Return a String value from the fixture method, containing either:

    Note: with this approach, be cautious of running your tests across midnight, since you run the risk of the date changing between retrieving the date and testing it.