mockit.internal.injection.constructor.ConstructorInjection 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.injection.constructor;
import java.lang.reflect.*;
import java.util.*;
import javax.annotation.*;
import mockit.internal.expectations.mocking.*;
import mockit.internal.injection.*;
import mockit.internal.injection.full.*;
import mockit.internal.state.*;
import mockit.internal.util.*;
import static mockit.internal.injection.InjectionPoint.*;
import static mockit.internal.injection.InjectionProvider.NULL;
import static mockit.internal.reflection.ConstructorReflection.*;
import static mockit.internal.util.Utilities.*;
public final class ConstructorInjection extends Injector
{
@Nonnull private final Constructor> constructor;
public ConstructorInjection(
@Nonnull TestedClass testedClass, @Nonnull InjectionState injectionState, @Nullable FullInjection fullInjection,
@Nonnull Constructor> constructor)
{
super(testedClass, injectionState, fullInjection);
this.constructor = constructor;
}
@Nonnull
public Object instantiate(@Nonnull List parameterProviders)
{
Type[] parameterTypes = constructor.getGenericParameterTypes();
int n = parameterTypes.length;
List consumedInjectables = n == 0 ? null : injectionState.saveConsumedInjectionProviders();
Object[] arguments = n == 0 ? NO_ARGS : new Object[n];
boolean varArgs = constructor.isVarArgs();
if (varArgs) {
n--;
}
for (int i = 0; i < n; i++) {
@Nonnull InjectionProvider parameterProvider = parameterProviders.get(i);
Object value;
if (parameterProvider instanceof ConstructorParameter) {
value = createOrReuseArgumentValue((ConstructorParameter) parameterProvider);
}
else {
value = getArgumentValueToInject(parameterProvider, i);
}
if (value != null) {
Type parameterType = parameterTypes[i];
arguments[i] = wrapInProviderIfNeeded(parameterType, value);
}
}
if (varArgs) {
Type parameterType = parameterTypes[n];
arguments[n] = obtainInjectedVarargsArray(parameterType);
}
if (consumedInjectables != null) {
injectionState.restoreConsumedInjectionProviders(consumedInjectables);
}
return invokeConstructor(arguments);
}
@Nonnull
private Object createOrReuseArgumentValue(@Nonnull ConstructorParameter constructorParameter)
{
Object value = constructorParameter.getValue(null);
if (value != null) {
return value;
}
injectionState.setTypeOfInjectionPoint(constructorParameter.getDeclaredType());
String qualifiedName = getQualifiedName(constructorParameter.getAnnotations());
assert fullInjection != null;
value = fullInjection.createOrReuseInstance(this, constructorParameter, qualifiedName);
if (value == null) {
String parameterName = constructorParameter.getName();
String message =
"Missing @Tested or @Injectable" + missingValueDescription(parameterName) +
"\r\n when initializing " + fullInjection;
throw new IllegalStateException(message);
}
return value;
}
@Nullable
private Object getArgumentValueToInject(@Nonnull InjectionProvider injectable, int parameterIndex)
{
Object argument = injectionState.getValueToInject(injectable);
if (argument == null) {
String classDesc = getClassDesc();
String constructorDesc = getConstructorDesc();
String parameterName = ParameterNames.getName(classDesc, constructorDesc, parameterIndex);
if (parameterName == null) {
parameterName = injectable.getName();
}
throw new IllegalArgumentException("No injectable value available" + missingValueDescription(parameterName));
}
return argument == NULL ? null : argument;
}
@Nonnull
private String getClassDesc() { return mockit.external.asm.Type.getInternalName(constructor.getDeclaringClass()); }
@Nonnull
private String getConstructorDesc()
{
return "" + mockit.external.asm.Type.getConstructorDescriptor(constructor);
}
@Nonnull
private Object obtainInjectedVarargsArray(@Nonnull Type parameterType)
{
Type varargsElementType = getTypeOfInjectionPointFromVarargsParameter(parameterType);
injectionState.setTypeOfInjectionPoint(varargsElementType);
List