mockit.internal.expectations.mocking.MockedBridge 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.mocking;
import java.lang.reflect.*;
import javax.annotation.*;
import mockit.internal.*;
import mockit.internal.expectations.*;
import mockit.internal.state.*;
import mockit.internal.util.*;
import static mockit.internal.expectations.RecordAndReplayExecution.*;
public final class MockedBridge extends MockingBridge
{
@Nonnull public static final MockingBridge MB = new MockedBridge();
private MockedBridge() { super("$MB"); }
@Nullable @Override
public Object invoke(@Nullable Object mocked, Method method, @Nonnull Object[] args) throws Throwable
{
String mockedClassDesc = (String) args[1];
if (calledFromSpecialThread() || notToBeMocked(mocked, mockedClassDesc)) {
return Void.class;
}
String mockName = (String) args[2];
String mockDesc = (String) args[3];
String mockNameAndDesc = mockName + mockDesc;
Integer executionMode = (Integer) args[5];
Object[] mockArgs = extractMockArguments(6, args);
boolean regularExecutionWithRecordReplayLock =
executionMode == ExecutionMode.Regular.ordinal() && RECORD_OR_REPLAY_LOCK.isHeldByCurrentThread();
Object rv;
if (regularExecutionWithRecordReplayLock && mocked != null) {
rv = ObjectMethods.evaluateOverride(mocked, mockNameAndDesc, args);
if (rv != null) {
return rv;
}
}
if (
TestRun.getExecutingTest().isProceedingIntoRealImplementation() ||
regularExecutionWithRecordReplayLock ||
TestRun.isInsideNoMockingZone()
) {
return Void.class;
}
TestRun.enterNoMockingZone();
try {
int mockAccess = (Integer) args[0];
String genericSignature = (String) args[4];
rv = recordOrReplay(
mocked, mockAccess, mockedClassDesc, mockNameAndDesc, genericSignature, executionMode, mockArgs);
}
finally {
TestRun.exitNoMockingZone();
}
return rv;
}
}