All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mockit.Invocation Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.49
Show newest version
/*
 * Copyright (c) 2006-2015 Rogério Liesenfeld
 * This file is subject to the terms of the MIT license (see LICENSE.txt).
 */
package mockit;

import java.lang.reflect.*;
import javax.annotation.*;

import mockit.internal.*;

/**
 * A context object representing the current invocation to a mocked method/constructor, to be passed as the
 * first parameter of the corresponding delegate/mock method implementation.
 * 

* With the Expectations API, this parameter can appear in delegate methods implemented in {@link Delegate} * classes. * With the Mockups API, it can appear in {@link Mock @Mock} methods. * * @see #getInvokedInstance() * @see #getInvokedArguments() * @see #getInvocationCount() * @see #getInvocationIndex() * @see #getMinInvocations() * @see #getMaxInvocations() * @see #proceed(Object...) * @see Tutorial (expectations) * @see Tutorial (mockups) */ public class Invocation { @Nullable private final Object invokedInstance; private final Object[] invokedArguments; private final int invocationCount; private final int minInvocations; private final int maxInvocations; /** * For internal use only. */ protected Invocation( @Nullable Object invokedInstance, @Nonnull Object[] invokedArguments, int invocationCount, int minInvocations, int maxInvocations) { this.invokedInstance = invokedInstance; this.invokedArguments = invokedArguments; this.invocationCount = invocationCount; this.minInvocations = minInvocations; this.maxInvocations = maxInvocations; } /** * Returns the instance on which the current invocation was made, or {@code null} for a {@code static} method * invocation. */ public final T getInvokedInstance() { //noinspection unchecked,ConstantConditions return (T) invokedInstance; } /** * Returns the {@code Method} or {@code Constructor} object corresponding to the mocked method or constructor, * respectively. */ public final M getInvokedMember() { //noinspection unchecked,ClassReferencesSubclass return (M) ((BaseInvocation) this).getRealMember(); } /** * Returns the actual argument values passed in the invocation to the mocked method/constructor. */ public final Object[] getInvokedArguments() { return invokedArguments; } /** * Returns the current invocation count. The first invocation starts at 1 (one). */ public final int getInvocationCount() { return invocationCount; } /** * Returns the index for the current invocation. The first invocation starts at 0 (zero). * Note that this is equivalent to {@link #getInvocationCount()} - 1. */ public final int getInvocationIndex() { return invocationCount - 1; } /** * Returns the current value of the minimum invocation count associated with the matching expectation or mock method. *

* For an expectation, this call will return the value specified through the * {@linkplain Invocations#times times} or {@linkplain Invocations#minTimes minTimes} field, if that was the case; * if not, the value will be {@code 1} for a regular or strict expectation, or {@code 0} for a non-strict one. * For a {@code @Mock} method, it will return the value specified for the {@linkplain Mock#invocations invocations} * or {@linkplain Mock#minInvocations minInvocations} attribute, or {@code 0} if none. */ public final int getMinInvocations() { return minInvocations; } /** * Returns the current value of the maximum invocation count for the matching expectation or mock method * (-1 indicates that it's unlimited). *

* For an expectation, this call will return the value specified through the * {@linkplain Invocations#times times} or {@linkplain Invocations#maxTimes maxTimes} field, if that was the case; * if not, the value will be {@code -1} for a regular or non-strict expectation, or {@code 1} for a strict one. * For a {@code @Mock} method, it will return the value specified for the {@linkplain Mock#invocations invocations} * or {@linkplain Mock#maxInvocations maxInvocations} attribute, or {@code -1} if none. */ public final int getMaxInvocations() { return maxInvocations; } /** * Allows execution to proceed into the real implementation of the mocked method/constructor. *

* In the case of a mocked method, the real implementation is executed with the argument values originally received * or explicitly given as replacement. * Whatever comes out of that call (either a return value or a thrown exception/error, even if it is a * checked exception) becomes the result of the current invocation to the mock method. *

* In the case of a mocked constructor, the real constructor implementation code which comes after the necessary call * to "super" is executed, using the original argument values; replacement arguments are not supported. * If the execution of said code throws an exception or error, it is propagated out to the caller of the mocked * constructor (even in the case of a checked exception). * Contrary to proceeding into a mocked method, it's not possible to actually execute test code inside the delegate * method after proceeding into the real constructor, nor to proceed into it more than once. * * @param replacementArguments the argument values to be passed to the real method, as replacement for the values * received by the mock method; if those received values should be passed without * replacement, then this method should be called with no values * @param the return type of the mocked method * * @return the same value returned by the real method, if any * * @throws UnsupportedOperationException if attempting to proceed into a mocked method which does not belong to an * {@linkplain Injectable injectable mocked type} nor to a {@linkplain Expectations#Expectations(Object...) dynamic * partially mocked type}, into a {@code native} method, or into a mocked constructor while passing replacement * arguments * * @see Tutorial */ public final T proceed(Object... replacementArguments) { //noinspection ClassReferencesSubclass return ((BaseInvocation) this).doProceed(replacementArguments); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy