use of org.mockito.invocation.Invocation in project mockito by mockito.
the class Times method verifyInOrder.
@Override
public void verifyInOrder(VerificationDataInOrder data) {
List<Invocation> allInvocations = data.getAllInvocations();
MatchableInvocation wanted = data.getWanted();
if (wantedCount > 0) {
checkMissingInvocation(allInvocations, wanted, data.getOrderingContext());
}
checkNumberOfInvocations(allInvocations, wanted, wantedCount, data.getOrderingContext());
}
use of org.mockito.invocation.Invocation in project mockito by mockito.
the class AtLeastXNumberOfInvocationsChecker method checkAtLeastNumberOfInvocations.
public static void checkAtLeastNumberOfInvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount, InOrderContext orderingContext) {
List<Invocation> chunk = findAllMatchingUnverifiedChunks(invocations, wanted, orderingContext);
int actualCount = chunk.size();
if (wantedCount > actualCount) {
Location lastLocation = getLastLocation(chunk);
throw tooLittleActualInvocationsInOrder(new AtLeastDiscrepancy(wantedCount, actualCount), wanted, lastLocation);
}
markVerifiedInOrder(chunk, wanted, orderingContext);
}
use of org.mockito.invocation.Invocation in project mockito by mockito.
the class MissingInvocationChecker method checkMissingInvocation.
public static void checkMissingInvocation(List<Invocation> invocations, MatchableInvocation wanted, InOrderContext context) {
List<Invocation> chunk = findAllMatchingUnverifiedChunks(invocations, wanted, context);
if (!chunk.isEmpty()) {
return;
}
Invocation previousInOrder = findPreviousVerifiedInOrder(invocations, context);
if (previousInOrder != null) {
throw wantedButNotInvokedInOrder(wanted, previousInOrder);
}
checkMissingInvocation(invocations, wanted);
}
use of org.mockito.invocation.Invocation in project mockito by mockito.
the class NumberOfInvocationsChecker method checkNumberOfInvocations.
public static void checkNumberOfInvocations(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount) {
List<Invocation> actualInvocations = findInvocations(invocations, wanted);
int actualCount = actualInvocations.size();
if (wantedCount > actualCount) {
Location lastInvocation = getLastLocation(actualInvocations);
throw tooLittleActualInvocations(new Discrepancy(wantedCount, actualCount), wanted, lastInvocation);
}
if (wantedCount == 0 && actualCount > 0) {
Location firstUndesired = actualInvocations.get(wantedCount).getLocation();
throw neverWantedButInvoked(wanted, firstUndesired);
}
if (wantedCount < actualCount) {
Location firstUndesired = actualInvocations.get(wantedCount).getLocation();
throw tooManyActualInvocations(wantedCount, actualCount, wanted, firstUndesired);
}
markVerified(actualInvocations, wanted);
}
use of org.mockito.invocation.Invocation in project mockito by mockito.
the class NumberOfInvocationsChecker method checkNumberOfInvocationsNonGreedy.
public static void checkNumberOfInvocationsNonGreedy(List<Invocation> invocations, MatchableInvocation wanted, int wantedCount, InOrderContext context) {
int actualCount = 0;
Location lastLocation = null;
while (actualCount < wantedCount) {
Invocation next = findFirstMatchingUnverifiedInvocation(invocations, wanted, context);
if (next == null) {
throw tooLittleActualInvocationsInOrder(new Discrepancy(wantedCount, actualCount), wanted, lastLocation);
}
markVerified(next, wanted);
context.markVerified(next);
lastLocation = next.getLocation();
actualCount++;
}
}
Aggregations