35

I'm using mockito to test a legacy JAAS/LDAP login module.

The javax.security.auth.callback.CallbackHandler interface defines the function:

void handle(javax.security.auth.callback.Callback[] callbacks)

I'm expecting callbacks to contain a NameCallback, which is the object that needs to be manipulated to pass the test.

Is there a way to mock this effectively, or would I be better off with a stubbed implementation of CallbackHandler?

brasskazoo
  • 76,030
  • 23
  • 64
  • 76

1 Answers1

44

For functions returning void, use doAnswer()

doAnswer(...).when(mockedObject).handle(any(Callback[].class));

And an Answer that performs the interception must go in as the parameter to doAnswer, e.g. as an anonymous class:

new Answer() {
  public Object answer(InvocationOnMock invocation) {
      Object[] args = invocation.getArguments();
      Mock mock = invocation.getMock();
      return null;
  }}

In this case args will be the array Callback[]!

brasskazoo
  • 76,030
  • 23
  • 64
  • 76
  • 11
    Note for everybody who skips straight to the answers: the handle() method should be substituted with whatever method you are using on your class. I was briefly confused because I used handle() thinking it was a Mockito function. – Paul Wintz Mar 23 '18 at 04:47