mockit.internal.expectations.Expectation 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-2015 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.expectations;
import javax.annotation.*;
import mockit.internal.expectations.invocation.*;
import mockit.internal.util.*;
final class Expectation
{
@Nullable final RecordPhase recordPhase;
@Nonnull final ExpectedInvocation invocation;
@Nonnull final InvocationConstraints constraints;
@Nullable private InvocationResults results;
boolean executedRealImplementation;
Expectation(@Nonnull ExpectedInvocation invocation)
{
recordPhase = null;
this.invocation = invocation;
constraints = new InvocationConstraints(false, true);
}
Expectation(
@Nullable RecordPhase recordPhase, @Nonnull ExpectedInvocation invocation, boolean strict, boolean nonStrict)
{
this.recordPhase = recordPhase;
this.invocation = invocation;
constraints = new InvocationConstraints(strict, nonStrict);
}
@Nonnull
InvocationResults getResults()
{
if (results == null) {
results = new InvocationResults(invocation, constraints);
}
return results;
}
@Nullable
Object produceResult(@Nullable Object invokedObject, @Nonnull Object[] invocationArgs) throws Throwable
{
if (results == null) {
return invocation.getDefaultValueForReturnType(null);
}
return results.produceResult(invokedObject, invocationArgs);
}
@Nonnull
Class> getReturnType()
{
return TypeDescriptor.getReturnType(invocation.getSignatureWithResolvedReturnType());
}
void clearNextInstanceToMatchIfRecording()
{
if (recordPhase != null) {
recordPhase.setNextInstanceToMatch(null);
}
}
void addSequenceOfReturnValues(@Nullable Object firstValue, @Nullable Object[] remainingValues)
{
InvocationResults sequence = getResults();
if (remainingValues == null) {
addFirstReturnValue(firstValue);
sequence.addReturnValue(null);
}
else if (remainingValues.length == 0) {
addFirstReturnValue(firstValue);
}
else if (!new SequenceOfReturnValues(this, firstValue, remainingValues).addResultWithSequenceOfValues()) {
sequence.addReturnValue(firstValue);
sequence.addReturnValues(remainingValues);
}
}
private void addFirstReturnValue(@Nullable Object firstValue)
{
if (firstValue == null) {
getResults().addReturnValueResult(null);
}
else {
Class> returnType = getReturnType();
new ReturnTypeConversion(this, returnType, firstValue).addConvertedValueOrValues();
}
}
@SuppressWarnings("UnnecessaryFullyQualifiedName")
void addResult(@Nullable Object value)
{
if (value == null) {
getResults().addReturnValueResult(null);
}
else if (isReplacementInstance(value)) {
invocation.replacementInstance = value;
}
else if (value instanceof Throwable) {
getResults().addThrowable((Throwable) value);
}
else if (value instanceof mockit.Delegate) {
getResults().addDelegatedResult((mockit.Delegate>) value);
}
else {
Class> rt = getReturnType();
if (rt.isInstance(value)) {
clearNextInstanceToMatchIfRecording();
getResults().addReturnValueResult(value);
}
else {
new ReturnTypeConversion(this, rt, value).addConvertedValue();
}
}
}
private boolean isReplacementInstance(@Nonnull Object value)
{
return invocation.isConstructor() && value.getClass().isInstance(invocation.instance);
}
void setCustomErrorMessage(@Nullable CharSequence message) { invocation.customErrorMessage = message; }
@Nullable
Error verifyConstraints(
@Nonnull ExpectedInvocation replayInvocation, @Nonnull Object[] replayArgs,
int minInvocations, int maxInvocations)
{
Error error = verifyConstraints(minInvocations);
if (error != null) {
return error;
}
return constraints.verifyUpperLimit(replayInvocation, replayArgs, maxInvocations, invocation.customErrorMessage);
}
@Nullable
Error verifyConstraints(int minInvocations)
{
return constraints.verifyLowerLimit(invocation, minInvocations);
}
@Nullable
Object executeRealImplementation(@Nonnull Object replacementInstance, @Nonnull Object[] args) throws Throwable
{
return getResults().executeRealImplementation(replacementInstance, args);
}
}