mockit.internal.injection.full.FullInjection 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 JMockit developers
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.injection.full;
import java.lang.annotation.*;
import java.lang.reflect.*;
import java.util.logging.*;
import javax.annotation.*;
import javax.enterprise.context.*;
import javax.inject.*;
import javax.sql.*;
import static java.lang.reflect.Modifier.*;
import mockit.asm.jvmConstants.*;
import mockit.internal.injection.*;
import static mockit.internal.injection.InjectionPoint.*;
import static mockit.internal.reflection.ConstructorReflection.*;
import static mockit.internal.util.Utilities.*;
/**
* Responsible for recursive injection of dependencies into a @Tested(fullyInitialized = true) object.
*/
public final class FullInjection
{
private static final int INVALID_TYPES = Access.ABSTRACT + Access.ANNOTATION + Access.ENUM;
@Nonnull private final InjectionState injectionState;
@Nonnull private final String testedClassName;
@Nonnull private final String testedName;
@Nullable private final ServletDependencies servletDependencies;
@Nullable private final JPADependencies jpaDependencies;
@Nullable private Class> dependencyClass;
@Nullable private InjectionProvider parentInjectionProvider;
public FullInjection(@Nonnull InjectionState injectionState, @Nonnull Class> testedClass, @Nonnull String testedName) {
this.injectionState = injectionState;
testedClassName = testedClass.getSimpleName();
this.testedName = testedName;
servletDependencies = SERVLET_CLASS == null ? null : new ServletDependencies(injectionState);
jpaDependencies = PERSISTENCE_UNIT_CLASS == null ? null : new JPADependencies(injectionState);
}
@Nullable
public Object createOrReuseInstance(
@Nonnull TestedClass testedClass, @Nonnull Injector injector, @Nullable InjectionProvider injectionProvider,
@Nullable String qualifiedName
) {
setInjectionProvider(injectionProvider);
InjectionPoint injectionPoint = getInjectionPoint(testedClass, injectionProvider, qualifiedName);
Object dependency = injectionState.getInstantiatedDependency(testedClass, injectionPoint);
if (dependency != null) {
return dependency;
}
Class> typeToInject = dependencyClass;
if (typeToInject == Logger.class) {
return createLogger(testedClass);
}
if (typeToInject == null || !isInstantiableType(typeToInject)) {
return null;
}
Object testedInstance = createInstance(testedClass, injector, injectionProvider, injectionPoint);
return testedInstance;
}
private void setInjectionProvider(@Nullable InjectionProvider injectionProvider) {
if (injectionProvider != null) {
injectionProvider.parent = parentInjectionProvider;
}
parentInjectionProvider = injectionProvider;
}
@Nonnull
private InjectionPoint getInjectionPoint(
@Nonnull TestedClass testedClass, @Nullable InjectionProvider injectionProvider, @Nullable String qualifiedName
) {
if (injectionProvider == null) {
dependencyClass = testedClass.targetClass;
return new InjectionPoint(dependencyClass, qualifiedName, true);
}
Type dependencyType = injectionProvider.getDeclaredType();
if (dependencyType instanceof TypeVariable>) {
dependencyType = testedClass.reflection.resolveTypeVariable((TypeVariable>) dependencyType);
dependencyClass = getClassType(dependencyType);
}
else {
dependencyClass = injectionProvider.getClassOfDeclaredType();
}
if (qualifiedName != null && !qualifiedName.isEmpty()) {
return new InjectionPoint(dependencyClass, qualifiedName, true);
}
if (jpaDependencies != null && JPADependencies.isApplicable(dependencyClass)) {
for (Annotation annotation : injectionProvider.getAnnotations()) {
InjectionPoint injectionPoint = jpaDependencies.getInjectionPointIfAvailable(annotation);
if (injectionPoint != null) {
return injectionPoint;
}
}
}
return new InjectionPoint(dependencyType, injectionProvider.getName(), false);
}
@Nonnull
private static Object createLogger(@Nonnull TestedClass testedClass) {
TestedClass testedClassWithLogger = testedClass.parent;
assert testedClassWithLogger != null;
return Logger.getLogger(testedClassWithLogger.nameOfTestedClass);
}
private static boolean isInstantiableType(@Nonnull Class> type) {
if (type.isPrimitive() || type.isArray() || type.isAnnotation()) {
return false;
}
if (type.isInterface()) {
return true;
}
int typeModifiers = type.getModifiers();
if ((typeModifiers & INVALID_TYPES) != 0 || !isStatic(typeModifiers) && type.isMemberClass()) {
return false;
}
return type.getClassLoader() != null;
}
@Nullable
private Object createInstance(
@Nonnull TestedClass testedClass, @Nonnull Injector injector, @Nullable InjectionProvider injectionProvider,
@Nonnull InjectionPoint injectionPoint
) {
@SuppressWarnings("ConstantConditions") @Nonnull Class> typeToInject = dependencyClass;
Object dependency = null;
if (typeToInject.isInterface()) {
dependency = createInstanceOfSupportedInterfaceIfApplicable(testedClass, typeToInject, injectionPoint, injectionProvider);
if (dependency == null && typeToInject.getClassLoader() != null) {
Class> resolvedType = injectionState.resolveInterface(typeToInject);
if (resolvedType != null && !resolvedType.isInterface()) {
//noinspection AssignmentToMethodParameter
testedClass = new TestedClass(resolvedType, resolvedType);
typeToInject = resolvedType;
}
}
}
if (dependency == null) {
dependency = createAndRegisterNewInstance(typeToInject, testedClass, injector, injectionPoint, injectionProvider);
}
return dependency;
}
@Nullable
private Object createInstanceOfSupportedInterfaceIfApplicable(
@Nonnull TestedClass testedClass, @Nonnull Class> typeToInject, @Nonnull InjectionPoint injectionPoint,
@Nullable InjectionProvider injectionProvider
) {
Object dependency = null;
if (CommonDataSource.class.isAssignableFrom(typeToInject)) {
dependency = createAndRegisterDataSource(testedClass, injectionPoint, injectionProvider);
}
else if (INJECT_CLASS != null && typeToInject == Provider.class) {
assert injectionProvider != null;
dependency = createProviderInstance(injectionProvider);
}
else if (CONVERSATION_CLASS != null && typeToInject == Conversation.class) {
dependency = createAndRegisterConversationInstance();
}
else if (servletDependencies != null && ServletDependencies.isApplicable(typeToInject)) {
dependency = servletDependencies.createAndRegisterDependency(typeToInject);
}
else if (jpaDependencies != null && JPADependencies.isApplicable(typeToInject)) {
dependency = jpaDependencies.createAndRegisterDependency(typeToInject, injectionPoint, injectionProvider);
}
return dependency;
}
@Nullable
private Object createAndRegisterDataSource(
@Nonnull TestedClass testedClass, @Nonnull InjectionPoint injectionPoint, @Nullable InjectionProvider injectionProvider
) {
if (injectionProvider == null || !injectionProvider.hasAnnotation(Resource.class)) {
return null;
}
TestDataSource dsCreation = new TestDataSource(injectionPoint);
CommonDataSource dataSource = dsCreation.createIfDataSourceDefinitionAvailable(testedClass);
if (dataSource != null) {
injectionState.saveInstantiatedDependency(injectionPoint, dataSource);
}
return dataSource;
}
@Nonnull
private Object createProviderInstance(@Nonnull InjectionProvider injectionProvider) {
ParameterizedType genericType = (ParameterizedType) injectionProvider.getDeclaredType();
final Class> providedClass = (Class>) genericType.getActualTypeArguments()[0];
if (providedClass.isAnnotationPresent(Singleton.class)) {
return new Provider