blob: 05db98369172679e516a55742dc6dccaa7023d30 [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.exceptions;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.mockito.exceptions.base.MockitoAssertionError;
import org.mockito.exceptions.base.MockitoException;
import org.mockito.exceptions.misusing.CannotStubVoidMethodWithReturnValue;
import org.mockito.exceptions.misusing.CannotVerifyStubOnlyMock;
import org.mockito.exceptions.misusing.FriendlyReminderException;
import org.mockito.exceptions.misusing.InvalidUseOfMatchersException;
import org.mockito.exceptions.misusing.MissingMethodInvocationException;
import org.mockito.exceptions.misusing.NotAMockException;
import org.mockito.exceptions.misusing.NullInsteadOfMockException;
import org.mockito.exceptions.misusing.PotentialStubbingProblem;
import org.mockito.exceptions.misusing.UnfinishedStubbingException;
import org.mockito.exceptions.misusing.UnfinishedVerificationException;
import org.mockito.exceptions.misusing.UnnecessaryStubbingException;
import org.mockito.exceptions.misusing.WrongTypeOfReturnValue;
import org.mockito.exceptions.verification.NeverWantedButInvoked;
import org.mockito.exceptions.verification.NoInteractionsWanted;
import org.mockito.exceptions.verification.SmartNullPointerException;
import org.mockito.exceptions.verification.TooLittleActualInvocations;
import org.mockito.exceptions.verification.TooManyActualInvocations;
import org.mockito.exceptions.verification.VerificationInOrderFailure;
import org.mockito.exceptions.verification.WantedButNotInvoked;
import org.mockito.internal.debugging.LocationImpl;
import org.mockito.internal.exceptions.util.ScenarioPrinter;
import org.mockito.internal.junit.JUnitTool;
import org.mockito.internal.matchers.LocalizedMatcher;
import org.mockito.internal.util.MockUtil;
import org.mockito.internal.util.StringJoiner;
import org.mockito.invocation.DescribedInvocation;
import org.mockito.invocation.Invocation;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.invocation.Location;
import org.mockito.listeners.InvocationListener;
import org.mockito.mock.MockName;
import org.mockito.mock.SerializableMode;
import static org.mockito.internal.reporting.Pluralizer.pluralize;
import static org.mockito.internal.reporting.Pluralizer.were_exactly_x_interactions;
import static org.mockito.internal.util.StringJoiner.join;
/**
* Reports verification and misusing errors.
* <p>
* One of the key points of mocking library is proper verification/exception
* messages. All messages in one place makes it easier to tune and amend them.
* <p>
* Reporter can be injected and therefore is easily testable.
* <p>
* Generally, exception messages are full of line breaks to make them easy to
* read (xunit plugins take only fraction of screen on modern IDEs).
*/
public class Reporter {
private Reporter() {
}
public static MockitoException checkedExceptionInvalid(Throwable t) {
return new MockitoException(join(
"Checked exception is invalid for this method!",
"Invalid: " + t
));
}
public static MockitoException cannotStubWithNullThrowable() {
return new MockitoException(join(
"Cannot stub with null throwable!"
));
}
public static MockitoException unfinishedStubbing(Location location) {
return new UnfinishedStubbingException(join(
"Unfinished stubbing detected here:",
location,
"",
"E.g. thenReturn() may be missing.",
"Examples of correct stubbing:",
" when(mock.isOk()).thenReturn(true);",
" when(mock.isOk()).thenThrow(exception);",
" doThrow(exception).when(mock).someVoidMethod();",
"Hints:",
" 1. missing thenReturn()",
" 2. you are trying to stub a final method, which is not supported",
" 3: you are stubbing the behaviour of another mock inside before 'thenReturn' instruction if completed",
""
));
}
public static MockitoException incorrectUseOfApi() {
return new MockitoException(join(
"Incorrect use of API detected here:",
new LocationImpl(),
"",
"You probably stored a reference to OngoingStubbing returned by when() and called stubbing methods like thenReturn() on this reference more than once.",
"Examples of correct usage:",
" when(mock.isOk()).thenReturn(true).thenReturn(false).thenThrow(exception);",
" when(mock.isOk()).thenReturn(true, false).thenThrow(exception);",
""
));
}
public static MockitoException missingMethodInvocation() {
return new MissingMethodInvocationException(join(
"when() requires an argument which has to be 'a method call on a mock'.",
"For example:",
" when(mock.getArticles()).thenReturn(articles);",
"",
"Also, this error might show up because:",
"1. you stub either of: final/private/equals()/hashCode() methods.",
" Those methods *cannot* be stubbed/verified.",
" " + MockitoLimitations.NON_PUBLIC_PARENT,
"2. inside when() you don't call method on mock but on some other object.",
""
));
}
public static MockitoException unfinishedVerificationException(Location location) {
return new UnfinishedVerificationException(join(
"Missing method call for verify(mock) here:",
location,
"",
"Example of correct verification:",
" verify(mock).doSomething()",
"",
"Also, this error might show up because you verify either of: final/private/equals()/hashCode() methods.",
"Those methods *cannot* be stubbed/verified.",
MockitoLimitations.NON_PUBLIC_PARENT,
""
));
}
public static MockitoException notAMockPassedToVerify(Class<?> type) {
return new NotAMockException(join(
"Argument passed to verify() is of type " + type.getSimpleName() + " and is not a mock!",
"Make sure you place the parenthesis correctly!",
"See the examples of correct verifications:",
" verify(mock).someMethod();",
" verify(mock, times(10)).someMethod();",
" verify(mock, atLeastOnce()).someMethod();"
));
}
public static MockitoException nullPassedToVerify() {
return new NullInsteadOfMockException(join(
"Argument passed to verify() should be a mock but is null!",
"Examples of correct verifications:",
" verify(mock).someMethod();",
" verify(mock, times(10)).someMethod();",
" verify(mock, atLeastOnce()).someMethod();",
" not: verify(mock.someMethod());",
"Also, if you use @Mock annotation don't miss initMocks()"
));
}
public static MockitoException notAMockPassedToWhenMethod() {
return new NotAMockException(join(
"Argument passed to when() is not a mock!",
"Example of correct stubbing:",
" doThrow(new RuntimeException()).when(mock).someMethod();"
));
}
public static MockitoException nullPassedToWhenMethod() {
return new NullInsteadOfMockException(join(
"Argument passed to when() is null!",
"Example of correct stubbing:",
" doThrow(new RuntimeException()).when(mock).someMethod();",
"Also, if you use @Mock annotation don't miss initMocks()"
));
}
public static MockitoException mocksHaveToBePassedToVerifyNoMoreInteractions() {
return new MockitoException(join(
"Method requires argument(s)!",
"Pass mocks that should be verified, e.g:",
" verifyNoMoreInteractions(mockOne, mockTwo);",
" verifyNoInteractions(mockOne, mockTwo);",
""
));
}
public static MockitoException notAMockPassedToVerifyNoMoreInteractions() {
return new NotAMockException(join(
"Argument(s) passed is not a mock!",
"Examples of correct verifications:",
" verifyNoMoreInteractions(mockOne, mockTwo);",
" verifyNoInteractions(mockOne, mockTwo);",
""
));
}
public static MockitoException nullPassedToVerifyNoMoreInteractions() {
return new NullInsteadOfMockException(join(
"Argument(s) passed is null!",
"Examples of correct verifications:",
" verifyNoMoreInteractions(mockOne, mockTwo);",
" verifyNoInteractions(mockOne, mockTwo);"
));
}
public static MockitoException notAMockPassedWhenCreatingInOrder() {
return new NotAMockException(join(
"Argument(s) passed is not a mock!",
"Pass mocks that require verification in order.",
"For example:",
" InOrder inOrder = inOrder(mockOne, mockTwo);"
));
}
public static MockitoException nullPassedWhenCreatingInOrder() {
return new NullInsteadOfMockException(join(
"Argument(s) passed is null!",
"Pass mocks that require verification in order.",
"For example:",
" InOrder inOrder = inOrder(mockOne, mockTwo);"
));
}
public static MockitoException mocksHaveToBePassedWhenCreatingInOrder() {
return new MockitoException(join(
"Method requires argument(s)!",
"Pass mocks that require verification in order.",
"For example:",
" InOrder inOrder = inOrder(mockOne, mockTwo);"
));
}
public static MockitoException inOrderRequiresFamiliarMock() {
return new MockitoException(join(
"InOrder can only verify mocks that were passed in during creation of InOrder.",
"For example:",
" InOrder inOrder = inOrder(mockOne);",
" inOrder.verify(mockOne).doStuff();"
));
}
public static MockitoException invalidUseOfMatchers(int expectedMatchersCount, List<LocalizedMatcher> recordedMatchers) {
return new InvalidUseOfMatchersException(join(
"Invalid use of argument matchers!",
expectedMatchersCount + " matchers expected, " + recordedMatchers.size() + " recorded:" +
locationsOf(recordedMatchers),
"",
"This exception may occur if matchers are combined with raw values:",
" //incorrect:",
" someMethod(anyObject(), \"raw String\");",
"When using matchers, all arguments have to be provided by matchers.",
"For example:",
" //correct:",
" someMethod(anyObject(), eq(\"String by matcher\"));",
"",
"For more info see javadoc for Matchers class.",
""
));
}
public static MockitoException incorrectUseOfAdditionalMatchers(String additionalMatcherName, int expectedSubMatchersCount, Collection<LocalizedMatcher> matcherStack) {
return new InvalidUseOfMatchersException(join(
"Invalid use of argument matchers inside additional matcher " + additionalMatcherName + " !",
new LocationImpl(),
"",
expectedSubMatchersCount + " sub matchers expected, " + matcherStack.size() + " recorded:",
locationsOf(matcherStack),
"",
"This exception may occur if matchers are combined with raw values:",
" //incorrect:",
" someMethod(AdditionalMatchers.and(isNotNull(), \"raw String\");",
"When using matchers, all arguments have to be provided by matchers.",
"For example:",
" //correct:",
" someMethod(AdditionalMatchers.and(isNotNull(), eq(\"raw String\"));",
"",
"For more info see javadoc for Matchers and AdditionalMatchers classes.",
""
));
}
public static MockitoException stubPassedToVerify() {
return new CannotVerifyStubOnlyMock(join(
"Argument passed to verify() is a stubOnly() mock, not a full blown mock!",
"If you intend to verify invocations on a mock, don't use stubOnly() in its MockSettings."
));
}
public static MockitoException reportNoSubMatchersFound(String additionalMatcherName) {
return new InvalidUseOfMatchersException(join(
"No matchers found for additional matcher " + additionalMatcherName,
new LocationImpl(),
""
));
}
private static Object locationsOf(Collection<LocalizedMatcher> matchers) {
List<String> description = new ArrayList<String>();
for (LocalizedMatcher matcher : matchers)
description.add(matcher.getLocation().toString());
return join(description.toArray());
}
public static AssertionError argumentsAreDifferent(String wanted, String actual, Location actualLocation) {
String message = join("Argument(s) are different! Wanted:",
wanted,
new LocationImpl(),
"Actual invocation has different arguments:",
actual,
actualLocation,
""
);
return JUnitTool.createArgumentsAreDifferentException(message, wanted, actual);
}
public static MockitoAssertionError wantedButNotInvoked(DescribedInvocation wanted) {
return new WantedButNotInvoked(createWantedButNotInvokedMessage(wanted));
}
public static MockitoAssertionError wantedButNotInvoked(DescribedInvocation wanted, List<? extends DescribedInvocation> invocations) {
String allInvocations;
if (invocations.isEmpty()) {
allInvocations = "Actually, there were zero interactions with this mock.\n";
} else {
StringBuilder sb = new StringBuilder(
"\nHowever, there " + were_exactly_x_interactions(invocations.size()) + " with this mock:\n");
for (DescribedInvocation i : invocations) {
sb.append(i.toString())
.append("\n")
.append(i.getLocation())
.append("\n\n");
}
allInvocations = sb.toString();
}
String message = createWantedButNotInvokedMessage(wanted);
return new WantedButNotInvoked(message + allInvocations);
}
private static String createWantedButNotInvokedMessage(DescribedInvocation wanted) {
return join(
"Wanted but not invoked:",
wanted.toString(),
new LocationImpl(),
""
);
}
public static MockitoAssertionError wantedButNotInvokedInOrder(DescribedInvocation wanted, DescribedInvocation previous) {
return new VerificationInOrderFailure(join(
"Verification in order failure",
"Wanted but not invoked:",
wanted.toString(),
new LocationImpl(),
"Wanted anywhere AFTER following interaction:",
previous.toString(),
previous.getLocation(),
""
));
}
public static MockitoAssertionError tooManyActualInvocations(int wantedCount, int actualCount, DescribedInvocation wanted, Location firstUndesired) {
String message = createTooManyInvocationsMessage(wantedCount, actualCount, wanted, firstUndesired);
return new TooManyActualInvocations(message);
}
private static String createTooManyInvocationsMessage(int wantedCount, int actualCount, DescribedInvocation wanted,
Location firstUndesired) {
return join(
wanted.toString(),
"Wanted " + pluralize(wantedCount) + ":",
new LocationImpl(),
"But was " + pluralize(actualCount) + ". Undesired invocation:",
firstUndesired,
""
);
}
public static MockitoAssertionError neverWantedButInvoked(DescribedInvocation wanted, Location firstUndesired) {
return new NeverWantedButInvoked(join(
wanted.toString(),
"Never wanted here:",
new LocationImpl(),
"But invoked here:",
firstUndesired,
""
));
}
public static MockitoAssertionError tooManyActualInvocationsInOrder(int wantedCount, int actualCount, DescribedInvocation wanted, Location firstUndesired) {
String message = createTooManyInvocationsMessage(wantedCount, actualCount, wanted, firstUndesired);
return new VerificationInOrderFailure(join(
"Verification in order failure:" + message
));
}
private static String createTooLittleInvocationsMessage(org.mockito.internal.reporting.Discrepancy discrepancy, DescribedInvocation wanted,
Location lastActualInvocation) {
String ending =
(lastActualInvocation != null) ? lastActualInvocation + "\n" : "\n";
return join(
wanted.toString(),
"Wanted " + discrepancy.getPluralizedWantedCount() + (discrepancy.getWantedCount() == 0 ? "." : ":"),
new LocationImpl(),
"But was " + discrepancy.getPluralizedActualCount() + (discrepancy.getActualCount() == 0 ? "." : ":"),
ending
);
}
public static MockitoAssertionError tooLittleActualInvocations(org.mockito.internal.reporting.Discrepancy discrepancy, DescribedInvocation wanted, Location lastActualLocation) {
String message = createTooLittleInvocationsMessage(discrepancy, wanted, lastActualLocation);
return new TooLittleActualInvocations(message);
}
public static MockitoAssertionError tooLittleActualInvocationsInOrder(org.mockito.internal.reporting.Discrepancy discrepancy, DescribedInvocation wanted, Location lastActualLocation) {
String message = createTooLittleInvocationsMessage(discrepancy, wanted, lastActualLocation);
return new VerificationInOrderFailure(join(
"Verification in order failure:" + message
));
}
public static MockitoAssertionError noMoreInteractionsWanted(Invocation undesired, List<VerificationAwareInvocation> invocations) {
ScenarioPrinter scenarioPrinter = new ScenarioPrinter();
String scenario = scenarioPrinter.print(invocations);
return new NoInteractionsWanted(join(
"No interactions wanted here:",
new LocationImpl(),
"But found this interaction on mock '" + safelyGetMockName(undesired.getMock()) + "':",
undesired.getLocation(),
scenario
));
}
public static MockitoAssertionError noInteractionsWanted(Object mock, List<VerificationAwareInvocation> invocations) {
ScenarioPrinter scenarioPrinter = new ScenarioPrinter();
String scenario = scenarioPrinter.print(invocations);
List<Location> locations = new ArrayList<Location>();
for (VerificationAwareInvocation invocation : invocations) {
locations.add(invocation.getLocation());
}
return new NoInteractionsWanted(join(
"No interactions wanted here:",
new LocationImpl(),
"But found these interactions on mock '" + safelyGetMockName(mock) + "':",
join("", locations),
scenario
));
}
public static MockitoAssertionError noMoreInteractionsWantedInOrder(Invocation undesired) {
return new VerificationInOrderFailure(join(
"No interactions wanted here:",
new LocationImpl(),
"But found this interaction on mock '" + safelyGetMockName(undesired.getMock()) + "':",
undesired.getLocation()
));
}
public static MockitoException cannotMockClass(Class<?> clazz, String reason) {
return new MockitoException(join(
"Cannot mock/spy " + clazz.toString(),
"Mockito cannot mock/spy because :",
" - " + reason
));
}
public static MockitoException cannotStubVoidMethodWithAReturnValue(String methodName) {
return new CannotStubVoidMethodWithReturnValue(join(
"'" + methodName + "' is a *void method* and it *cannot* be stubbed with a *return value*!",
"Voids are usually stubbed with Throwables:",
" doThrow(exception).when(mock).someVoidMethod();",
"***",
"If you're unsure why you're getting above error read on.",
"Due to the nature of the syntax above problem might occur because:",
"1. The method you are trying to stub is *overloaded*. Make sure you are calling the right overloaded version.",
"2. Somewhere in your test you are stubbing *final methods*. Sorry, Mockito does not verify/stub final methods.",
"3. A spy is stubbed using when(spy.foo()).then() syntax. It is safer to stub spies - ",
" - with doReturn|Throw() family of methods. More in javadocs for Mockito.spy() method.",
"4. " + MockitoLimitations.NON_PUBLIC_PARENT,
""
));
}
public static MockitoException onlyVoidMethodsCanBeSetToDoNothing() {
return new MockitoException(join(
"Only void methods can doNothing()!",
"Example of correct use of doNothing():",
" doNothing().",
" doThrow(new RuntimeException())",
" .when(mock).someVoidMethod();",
"Above means:",
"someVoidMethod() does nothing the 1st time but throws an exception the 2nd time is called"
));
}
public static MockitoException wrongTypeOfReturnValue(String expectedType, String actualType, String methodName) {
return new WrongTypeOfReturnValue(join(
actualType + " cannot be returned by " + methodName + "()",
methodName + "() should return " + expectedType,
"***",
"If you're unsure why you're getting above error read on.",
"Due to the nature of the syntax above problem might occur because:",
"1. This exception *might* occur in wrongly written multi-threaded tests.",
" Please refer to Mockito FAQ on limitations of concurrency testing.",
"2. A spy is stubbed using when(spy.foo()).then() syntax. It is safer to stub spies - ",
" - with doReturn|Throw() family of methods. More in javadocs for Mockito.spy() method.",
""
));
}
public static MockitoException wrongTypeReturnedByDefaultAnswer(Object mock, String expectedType, String actualType, String methodName) {
return new WrongTypeOfReturnValue(join(
"Default answer returned a result with the wrong type:",
actualType + " cannot be returned by " + methodName + "()",
methodName + "() should return " + expectedType,
"",
"The default answer of " + safelyGetMockName(mock) + " that was configured on the mock is probably incorrectly implemented.",
""
));
}
public static MockitoAssertionError wantedAtMostX(int maxNumberOfInvocations, int foundSize) {
return new MockitoAssertionError(join("Wanted at most " + pluralize(maxNumberOfInvocations) + " but was " + foundSize));
}
public static MockitoException misplacedArgumentMatcher(List<LocalizedMatcher> lastMatchers) {
return new InvalidUseOfMatchersException(join(
"Misplaced or misused argument matcher detected here:",
locationsOf(lastMatchers),
"",
"You cannot use argument matchers outside of verification or stubbing.",
"Examples of correct usage of argument matchers:",
" when(mock.get(anyInt())).thenReturn(null);",
" doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());",
" verify(mock).someMethod(contains(\"foo\"))",
"",
"This message may appear after an NullPointerException if the last matcher is returning an object ",
"like any() but the stubbed method signature expect a primitive argument, in this case,",
"use primitive alternatives.",
" when(mock.get(any())); // bad use, will raise NPE",
" when(mock.get(anyInt())); // correct usage use",
"",
"Also, this error might show up because you use argument matchers with methods that cannot be mocked.",
"Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().",
MockitoLimitations.NON_PUBLIC_PARENT,
""
));
}
public static MockitoException smartNullPointerException(String invocation, Location location) {
return new SmartNullPointerException(join(
"You have a NullPointerException here:",
new LocationImpl(),
"because this method call was *not* stubbed correctly:",
location,
invocation,
""
));
}
public static MockitoException noArgumentValueWasCaptured() {
return new MockitoException(join(
"No argument value was captured!",
"You might have forgotten to use argument.capture() in verify()...",
"...or you used capture() in stubbing but stubbed method was not called.",
"Be aware that it is recommended to use capture() only with verify()",
"",
"Examples of correct argument capturing:",
" ArgumentCaptor<Person> argument = ArgumentCaptor.forClass(Person.class);",
" verify(mock).doSomething(argument.capture());",
" assertEquals(\"John\", argument.getValue().getName());",
""
));
}
public static MockitoException extraInterfacesDoesNotAcceptNullParameters() {
return new MockitoException(join(
"extraInterfaces() does not accept null parameters."
));
}
public static MockitoException extraInterfacesAcceptsOnlyInterfaces(Class<?> wrongType) {
return new MockitoException(join(
"extraInterfaces() accepts only interfaces.",
"You passed following type: " + wrongType.getSimpleName() + " which is not an interface."
));
}
public static MockitoException extraInterfacesCannotContainMockedType(Class<?> wrongType) {
return new MockitoException(join(
"extraInterfaces() does not accept the same type as the mocked type.",
"You mocked following type: " + wrongType.getSimpleName(),
"and you passed the same very interface to the extraInterfaces()"
));
}
public static MockitoException extraInterfacesRequiresAtLeastOneInterface() {
return new MockitoException(join(
"extraInterfaces() requires at least one interface."
));
}
public static MockitoException mockedTypeIsInconsistentWithSpiedInstanceType(Class<?> mockedType, Object spiedInstance) {
return new MockitoException(join(
"Mocked type must be the same as the type of your spied instance.",
"Mocked type must be: " + spiedInstance.getClass().getSimpleName() + ", but is: " + mockedType.getSimpleName(),
" //correct spying:",
" spy = mock( ->ArrayList.class<- , withSettings().spiedInstance( ->new ArrayList()<- );",
" //incorrect - types don't match:",
" spy = mock( ->List.class<- , withSettings().spiedInstance( ->new ArrayList()<- );"
));
}
public static MockitoException cannotCallAbstractRealMethod() {
return new MockitoException(join(
"Cannot call abstract real method on java object!",
"Calling real methods is only possible when mocking non abstract method.",
" //correct example:",
" when(mockOfConcreteClass.nonAbstractMethod()).thenCallRealMethod();"
));
}
public static MockitoException cannotVerifyToString() {
return new MockitoException(join(
"Mockito cannot verify toString()",
"toString() is too often used behind of scenes (i.e. during String concatenation, in IDE debugging views). " +
"Verifying it may give inconsistent or hard to understand results. " +
"Not to mention that verifying toString() most likely hints awkward design (hard to explain in a short exception message. Trust me...)",
"However, it is possible to stub toString(). Stubbing toString() smells a bit funny but there are rare, legitimate use cases."
));
}
public static MockitoException moreThanOneAnnotationNotAllowed(String fieldName) {
return new MockitoException("You cannot have more than one Mockito annotation on a field!\n" +
"The field '" + fieldName + "' has multiple Mockito annotations.\n" +
"For info how to use annotations see examples in javadoc for MockitoAnnotations class.");
}
public static MockitoException unsupportedCombinationOfAnnotations(String undesiredAnnotationOne, String undesiredAnnotationTwo) {
return new MockitoException("This combination of annotations is not permitted on a single field:\n" +
"@" + undesiredAnnotationOne + " and @" + undesiredAnnotationTwo);
}
public static MockitoException cannotInitializeForSpyAnnotation(String fieldName, Exception details) {
return new MockitoException(join("Cannot instantiate a @Spy for '" + fieldName + "' field.",
"You haven't provided the instance for spying at field declaration so I tried to construct the instance.",
"However, I failed because: " + details.getMessage(),
"Examples of correct usage of @Spy:",
" @Spy List mock = new LinkedList();",
" @Spy Foo foo; //only if Foo has parameterless constructor",
" //also, don't forget about MockitoAnnotations.initMocks();",
""), details);
}
public static MockitoException cannotInitializeForInjectMocksAnnotation(String fieldName, String causeMessage) {
return new MockitoException(join("Cannot instantiate @InjectMocks field named '" + fieldName + "'! Cause: "+causeMessage,
"You haven't provided the instance at field declaration so I tried to construct the instance.",
"Examples of correct usage of @InjectMocks:",
" @InjectMocks Service service = new Service();",
" @InjectMocks Service service;",
" //and... don't forget about some @Mocks for injection :)",
""));
}
public static MockitoException atMostAndNeverShouldNotBeUsedWithTimeout() {
return new FriendlyReminderException(join("",
"Don't panic! I'm just a friendly reminder!",
"timeout() should not be used with atMost() or never() because...",
"...it does not make much sense - the test would have passed immediately in concurency",
"We kept this method only to avoid compilation errors when upgrading Mockito.",
"In future release we will remove timeout(x).atMost(y) from the API.",
"If you want to find out more please refer to issue 235",
""));
}
public static MockitoException fieldInitialisationThrewException(Field field, Throwable details) {
return new MockitoException(join(
"Cannot instantiate @InjectMocks field named '" + field.getName() + "' of type '" + field.getType() + "'.",
"You haven't provided the instance at field declaration so I tried to construct the instance.",
"However the constructor or the initialization block threw an exception : " + details.getMessage(),
""), details);
}
public static MockitoException invocationListenerDoesNotAcceptNullParameters() {
return new MockitoException("invocationListeners() does not accept null parameters");
}
public static MockitoException invocationListenersRequiresAtLeastOneListener() {
return new MockitoException("invocationListeners() requires at least one listener");
}
public static MockitoException invocationListenerThrewException(InvocationListener listener, Throwable listenerThrowable) {
return new MockitoException(StringJoiner.join(
"The invocation listener with type " + listener.getClass().getName(),
"threw an exception : " + listenerThrowable.getClass().getName() + listenerThrowable.getMessage()), listenerThrowable);
}
public static MockitoException cannotInjectDependency(Field field, Object matchingMock, Exception details) {
return new MockitoException(join(
"Mockito couldn't inject mock dependency '" + safelyGetMockName(matchingMock) + "' on field ",
"'" + field + "'",
"whose type '" + field.getDeclaringClass().getCanonicalName() + "' was annotated by @InjectMocks in your test.",
"Also I failed because: " + exceptionCauseMessageIfAvailable(details),
""
), details);
}
private static String exceptionCauseMessageIfAvailable(Exception details) {
if (details.getCause() == null) {
return details.getMessage();
}
return details.getCause().getMessage();
}
public static MockitoException mockedTypeIsInconsistentWithDelegatedInstanceType(Class<?> mockedType, Object delegatedInstance) {
return new MockitoException(join(
"Mocked type must be the same as the type of your delegated instance.",
"Mocked type must be: " + delegatedInstance.getClass().getSimpleName() + ", but is: " + mockedType.getSimpleName(),
" //correct delegate:",
" spy = mock( ->List.class<- , withSettings().delegatedInstance( ->new ArrayList()<- );",
" //incorrect - types don't match:",
" spy = mock( ->List.class<- , withSettings().delegatedInstance( ->new HashSet()<- );"
));
}
public static MockitoException spyAndDelegateAreMutuallyExclusive() {
return new MockitoException(join(
"Settings should not define a spy instance and a delegated instance at the same time."
));
}
public static MockitoException invalidArgumentRangeAtIdentityAnswerCreationTime() {
return new MockitoException(join(
"Invalid argument index.",
"The index need to be a positive number that indicates the position of the argument to return.",
"However it is possible to use the -1 value to indicates that the last argument should be",
"returned."));
}
public static MockitoException invalidArgumentPositionRangeAtInvocationTime(InvocationOnMock invocation, boolean willReturnLastParameter, int argumentIndex) {
return new MockitoException(join(
"Invalid argument index for the current invocation of method : ",
" -> " + safelyGetMockName(invocation.getMock()) + "." + invocation.getMethod().getName() + "()",
"",
(willReturnLastParameter ?
"Last parameter wanted" :
"Wanted parameter at position " + argumentIndex) + " but " + possibleArgumentTypesOf(invocation),
"The index need to be a positive number that indicates a valid position of the argument in the invocation.",
"However it is possible to use the -1 value to indicates that the last argument should be returned.",
""
));
}
private static StringBuilder possibleArgumentTypesOf(InvocationOnMock invocation) {
Class<?>[] parameterTypes = invocation.getMethod().getParameterTypes();
if (parameterTypes.length == 0) {
return new StringBuilder("the method has no arguments.\n");
}
StringBuilder stringBuilder = new StringBuilder("the possible argument indexes for this method are :\n");
for (int i = 0, parameterTypesLength = parameterTypes.length; i < parameterTypesLength; i++) {
stringBuilder.append(" [").append(i);
if (invocation.getMethod().isVarArgs() && i == parameterTypesLength - 1) {
stringBuilder.append("+] ").append(parameterTypes[i].getComponentType().getSimpleName()).append(" <- Vararg").append("\n");
} else {
stringBuilder.append("] ").append(parameterTypes[i].getSimpleName()).append("\n");
}
}
return stringBuilder;
}
public static MockitoException wrongTypeOfArgumentToReturn(InvocationOnMock invocation, String expectedType, Class<?> actualType, int argumentIndex) {
return new WrongTypeOfReturnValue(join(
"The argument of type '" + actualType.getSimpleName() + "' cannot be returned because the following ",
"method should return the type '" + expectedType + "'",
" -> " + safelyGetMockName(invocation.getMock()) + "." + invocation.getMethod().getName() + "()",
"",
"The reason for this error can be :",
"1. The wanted argument position is incorrect.",
"2. The answer is used on the wrong interaction.",
"",
"Position of the wanted argument is " + argumentIndex + " and " + possibleArgumentTypesOf(invocation),
"***",
"However if you're still unsure why you're getting above error read on.",
"Due to the nature of the syntax above problem might occur because:",
"1. This exception *might* occur in wrongly written multi-threaded tests.",
" Please refer to Mockito FAQ on limitations of concurrency testing.",
"2. A spy is stubbed using when(spy.foo()).then() syntax. It is safer to stub spies - ",
" - with doReturn|Throw() family of methods. More in javadocs for Mockito.spy() method.",
""
));
}
public static MockitoException defaultAnswerDoesNotAcceptNullParameter() {
return new MockitoException("defaultAnswer() does not accept null parameter");
}
public static MockitoException serializableWontWorkForObjectsThatDontImplementSerializable(Class<?> classToMock) {
return new MockitoException(join(
"You are using the setting 'withSettings().serializable()' however the type you are trying to mock '" + classToMock.getSimpleName() + "'",
"do not implement Serializable AND do not have a no-arg constructor.",
"This combination is requested, otherwise you will get an 'java.io.InvalidClassException' when the mock will be serialized",
"",
"Also note that as requested by the Java serialization specification, the whole hierarchy need to implements Serializable,",
"i.e. the top-most superclass has to implements Serializable.",
""
));
}
public static MockitoException delegatedMethodHasWrongReturnType(Method mockMethod, Method delegateMethod, Object mock, Object delegate) {
return new MockitoException(join(
"Methods called on delegated instance must have compatible return types with the mock.",
"When calling: " + mockMethod + " on mock: " + safelyGetMockName(mock),
"return type should be: " + mockMethod.getReturnType().getSimpleName() + ", but was: " + delegateMethod.getReturnType().getSimpleName(),
"Check that the instance passed to delegatesTo() is of the correct type or contains compatible methods",
"(delegate instance had type: " + delegate.getClass().getSimpleName() + ")"
));
}
public static MockitoException delegatedMethodDoesNotExistOnDelegate(Method mockMethod, Object mock, Object delegate) {
return new MockitoException(join(
"Methods called on mock must exist in delegated instance.",
"When calling: " + mockMethod + " on mock: " + safelyGetMockName(mock),
"no such method was found.",
"Check that the instance passed to delegatesTo() is of the correct type or contains compatible methods",
"(delegate instance had type: " + delegate.getClass().getSimpleName() + ")"
));
}
public static MockitoException usingConstructorWithFancySerializable(SerializableMode mode) {
return new MockitoException("Mocks instantiated with constructor cannot be combined with " + mode + " serialization mode.");
}
public static MockitoException cannotCreateTimerWithNegativeDurationTime(long durationMillis) {
return new FriendlyReminderException(join(
"",
"Don't panic! I'm just a friendly reminder!",
"It is impossible for time to go backward, therefore...",
"You cannot put negative value of duration: (" + durationMillis + ")",
"as argument of timer methods (after(), timeout())",
""
));
}
public static MockitoException notAnException() {
return new MockitoException(join(
"Exception type cannot be null.",
"This may happen with doThrow(Class)|thenThrow(Class) family of methods if passing null parameter."));
}
private static MockName safelyGetMockName(Object mock) {
return MockUtil.getMockName(mock);
}
public static UnnecessaryStubbingException formatUnncessaryStubbingException(Class<?> testClass, Collection<Invocation> unnecessaryStubbings) {
StringBuilder stubbings = new StringBuilder();
int count = 1;
for (Invocation u : unnecessaryStubbings) {
stubbings.append("\n ").append(count++).append(". ").append(u.getLocation());
}
String heading = (testClass != null)?
"Unnecessary stubbings detected in test class: " + testClass.getSimpleName() :
"Unnecessary stubbings detected.";
return new UnnecessaryStubbingException(join(
heading,
"Clean & maintainable test code requires zero unnecessary code.",
"Following stubbings are unnecessary (click to navigate to relevant line of code):" + stubbings,
"Please remove unnecessary stubbings or use 'silent' option. More info: javadoc for UnnecessaryStubbingException class."
));
}
public static void unncessaryStubbingException(List<Invocation> unused) {
throw formatUnncessaryStubbingException(null, unused);
}
public static void potentialStubbingProblemByJUnitRule(
Invocation actualInvocation, Collection<Invocation> argMismatchStubbings) {
StringBuilder stubbings = new StringBuilder();
int count = 1;
for (Invocation s : argMismatchStubbings) {
stubbings.append(" ").append(count++).append(". ").append(s);
stubbings.append("\n ").append(s.getLocation()).append("\n");
}
stubbings.deleteCharAt(stubbings.length()-1); //remove trailing end of line
throw new PotentialStubbingProblem(join(
"Strict JUnit rule detected stubbing argument mismatch.",
"This invocation of '" + actualInvocation.getMethod().getName() + "' method:",
" " + actualInvocation,
" " + actualInvocation.getLocation(),
"Has following stubbing(s) with different arguments:",
stubbings,
"Typically, stubbing argument mismatch indicates user mistake when writing tests.",
"In order to streamline debugging tests Mockito fails early in this scenario.",
"However, there are legit scenarios when this exception generates false negative signal:",
" - stubbing the same method multiple times using 'given().will()' or 'when().then()' API",
" Please use 'will().given()' or 'doReturn().when()' API for stubbing",
" - stubbed method is intentionally invoked with different arguments by code under test",
" Please use 'default' or 'silent' JUnit Rule.",
"For more information see javadoc for PotentialStubbingProblem class."));
}
}