I have a method in a class:
def delete(Token, Client, Scope): Future[Int]
and this method is called elsewhere in another class inside another method as:
acr.delete(Token(token), client, scope)
where token
is a String
and client
and scope
are types of Client
and Scope
respectively:
case class Client(client: String) extends AnyVal
case class Scope(scope: String) extends AnyVal
When I try to mock the delete
method in my test, I do it as :
when(mockService
.delete(
token = any[Token],
service = any[Client],
scope = any[Scope]
)
).thenReturn(1.toFut)
which yields a Matching Exception which causes a Null Pointer Exception:
Method threw 'org.mockito.exceptions.misusing.InvalidUseOfMatchersException' exception. Cannot evaluate repositories.common.Service$MockitoMock$1804616202.toString()
mockService
is a mock[Service]
. I have another method mocked, belonging to Service
and that mock does not throw any errors
When I debug it line-by-line, the code fails on the token = any[Token]
line. I'm not sure how else I can use Matchers
and construct a mock.
What do you suggest I do?
I assume your code looks the same as:
and for this code, you can create
Token
asToken[any[String]]
this code works and doesn't throw NPE.
I have assumption: your code throws NPE because case classes extends
AnyVal
. Let's look atAnyVal
source code:it has
getClass
which returnsnull
- that sounds not null-safety. If you will removeextends AnyVal
from your case classes, your code will work. Probablyany
matcher callgetClass
inside itself, so it's a usual things for testing libraries.