Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to test a function that whose result will depend on current time (using Joda time's isBeforeNow()).

    public boolean isAvailable() {
    return (this.someDate.isBeforeNow());
}

Is it possible to stub/mock out the system time with Mockito so that I can reliably test the function?

share|improve this question

3 Answers

up vote 16 down vote accepted

Joda time supports setting a "fake" current time through the setCurrentMillisFixed and setCurrentMillisOffset methods of the DateTimeUtils class.

See http://joda-time.sourceforge.net/api-release/org/joda/time/DateTimeUtils.html

share|improve this answer
1  
But these are static methods - you will introduce dependencies between the unittests that way. Thus, I'd prefer Jon Skeets solution. – hstoerr Apr 2 '12 at 9:39
hstoerr: I don't see how there would be dependencies between tests, unless they were to be executed in different threads (which is probably not the case here). But even then, Joda Time provides the DateTimeUtils.setCurrentMillisProvider(DateTimeUtils.MillisProvider) method, which would certainly allow a thread-bound implementation. – Rogério Aug 3 '12 at 18:57

The best way (IMO) of making your code testable is to extract the dependency of "what's the current time" into its own interface, with an implementation which uses the current system time (used normally) and an implementation which lets you set the time, advance it as you want etc.

I've used this approach in various situations, and it's worked well. It's easy to set up - just create an interface (e.g. Clock) which has a single method to give you the current instant in whatever format you want (e.g. using Joda Time, or possibly a Date).

share|improve this answer
3  
Joda time has builtin support for that abstraction (see my answer), so you don't have to introduce it in your code. – Laurent Pireyn Apr 11 '11 at 13:48
2  
@Laurent: I don't think that's actually nearly as elegant. Fundamentally I think a service such as "getting the current time" is a dependency (just as I view random number generation as a dependency) so I think it's good to make that explicit. This means you can parallelize tests, etc too. – Jon Skeet Apr 11 '11 at 13:52
2  
Point taken. Don't get me wrong: I'm usually in favor of abstraction. However, the notion of current time can be difficult to abstract in a real-life project, especially when third-party libraries are used that don't abstract this notion. – Laurent Pireyn Apr 11 '11 at 14:39
@Laurent: Oh yes, when you're using third-party libraries it's tricky... but then you'd have the same problem with setCurrentMillisFixed unless your third party library happened to use Joda Time :( – Jon Skeet Apr 11 '11 at 14:40
That code already is testable; no need to over-engineer it by introducing an unnecessary interface, not to mention the extra "wiring" configuration that would be needed. – Rogério Aug 3 '12 at 15:26
show 9 more comments

Another solution I've found is mock object.

Here is good example http://www.lshift.net/blog/2009/12/06/testing-times-in-java

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.