mockit.internal.expectations.invocation.InvocationConstraints Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit Show documentation
Show all versions of jmockit Show documentation
JMockit is a Java toolkit for automated developer testing.
It contains mocking/faking APIs and a code coverage tool, supporting both JUnit and TestNG.
The mocking APIs allow all kinds of Java code, without testability restrictions, to be tested
in isolation from selected dependencies.
/*
* Copyright (c) 2006 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.expectations.invocation;
import java.util.*;
import javax.annotation.*;
import mockit.internal.*;
public final class InvocationConstraints
{
public int minInvocations;
private int maxInvocations;
public int invocationCount;
public InvocationConstraints(boolean strictInvocation, boolean nonStrictInvocation)
{
setLimits(nonStrictInvocation ? 0 : 1, strictInvocation ? 1 : -1);
}
public void setLimits(int minInvocations, int maxInvocations)
{
this.minInvocations = minInvocations;
this.maxInvocations = maxInvocations;
}
void adjustMaxInvocations(int expectedInvocationCount)
{
if (maxInvocations > 0 && maxInvocations < expectedInvocationCount) {
maxInvocations = expectedInvocationCount;
}
}
void setUnlimitedMaxInvocations() { maxInvocations = -1; }
public void incrementInvocationCount() { invocationCount++; }
public boolean isInvocationCountAtMaximumAllowed() { return invocationCount == maxInvocations; }
public boolean isInvocationCountLessThanMinimumExpected() { return invocationCount < minInvocations; }
public boolean isInvocationCountMoreThanMaximumExpected()
{
return maxInvocations >= 0 && invocationCount > maxInvocations;
}
public boolean isInvocationCountInExpectedRange()
{
return minInvocations <= invocationCount && (invocationCount <= maxInvocations || maxInvocations < 0);
}
@Nullable
public Error verifyLowerLimit(@Nonnull ExpectedInvocation invocation, int lowerLimit)
{
if (invocationCount < lowerLimit) {
int missingInvocations = lowerLimit - invocationCount;
return invocation.errorForMissingInvocations(missingInvocations, Collections.emptyList());
}
return null;
}
@Nullable
public Error verifyUpperLimit(@Nonnull ExpectedInvocation invocation, @Nonnull Object[] replayArgs, int upperLimit)
{
if (upperLimit >= 0) {
int unexpectedInvocations = invocationCount - upperLimit;
if (unexpectedInvocations > 0) {
UnexpectedInvocation error = invocation.errorForUnexpectedInvocations(replayArgs, unexpectedInvocations);
return error;
}
}
return null;
}
@Nonnull
public Error errorForMissingExpectations(
@Nonnull ExpectedInvocation invocation, @Nonnull List nonMatchingInvocations)
{
return invocation.errorForMissingInvocations(minInvocations - invocationCount, nonMatchingInvocations);
}
}