Skip to content
Advertisement

How deal with testing in Java for long time?

I want to test this method:

JavaScript

And this is the test (yes, longer test than methods 🙂 ):

JavaScript

But, I have a small clock shift.

For example:

JavaScript

So, the time it is the same, only about 798 of difference.

Edit 1

For the moment, I solved with:

JavaScript

Is there a more elegant method?

Advertisement

Answer

In general, when you work with temporal data types it’s a good idea to pass a java.time.Clock so u can set the time and control the environment.

The problem in the implementation https://github.com/bezkoder/spring-boot-spring-security-jwt-authentication/blob/master/src/main/java/com/bezkoder/springjwt/security/jwt/JwtUtils.java is with new Date(). A suggestion: Clone this implementation and make a better generateJwtToken and accept a Clock so u can control the timestamp.

Advertisement