mockit.internal.injection.InjectionState 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;
import java.lang.reflect.*;
import java.util.*;
import java.util.Map.*;
import java.util.concurrent.*;
import javax.annotation.*;
import javax.inject.*;
import javax.servlet.*;
import mockit.internal.expectations.mocking.*;
import mockit.internal.reflection.*;
import mockit.internal.state.*;
import static mockit.internal.injection.InjectionPoint.*;
import static mockit.internal.reflection.MethodReflection.*;
import static mockit.internal.util.Utilities.getClassType;
/**
* Holds state used throughout the injection process while it's in progress for a given set of tested objects.
*/
public final class InjectionState implements BeanExporter
{
@Nonnull private static final Map globalDependencies =
new ConcurrentHashMap(2);
@Nonnull private final Map interfaceResolutionMethods;
@Nonnull private final Map testedObjects;
@Nonnull private final Map instantiatedDependencies;
@Nonnull private List injectables;
@Nonnull private List consumedInjectionProviders;
@Nonnull public final LifecycleMethods lifecycleMethods;
private GenericTypeReflection testedTypeReflection;
private Object currentTestClassInstance;
private Type typeOfInjectionPoint;
InjectionState()
{
interfaceResolutionMethods = new HashMap();
testedObjects = new LinkedHashMap();
instantiatedDependencies = new LinkedHashMap();
injectables = Collections.emptyList();
consumedInjectionProviders = new ArrayList();
lifecycleMethods = new LifecycleMethods();
}
void buildListsOfInjectables(@Nonnull Object testClassInstance, @Nonnull List injectables)
{
currentTestClassInstance = testClassInstance;
this.injectables = new ArrayList(injectables);
ParameterTypeRedefinitions paramTypeRedefs = TestRun.getExecutingTest().getParameterRedefinitions();
if (paramTypeRedefs != null) {
this.injectables.addAll(paramTypeRedefs.getInjectableParameters());
}
getServletConfigForInitMethodsIfAny(testClassInstance);
}
private void getServletConfigForInitMethodsIfAny(@Nonnull Object testClassInstance)
{
if (SERVLET_CLASS != null) {
for (InjectionProvider injectable : injectables) {
if (injectable.getDeclaredType() == ServletConfig.class) {
lifecycleMethods.servletConfig = injectable.getValue(testClassInstance);
break;
}
}
}
}
void buildListsOfInjectables(@Nonnull Object testClassInstance, @Nonnull ParameterTypeRedefinitions paramTypeRedefs)
{
currentTestClassInstance = testClassInstance;
injectables = new ArrayList(paramTypeRedefs.getInjectableParameters());
getServletConfigForInitMethodsIfAny(testClassInstance);
}
Object getCurrentTestClassInstance() { return currentTestClassInstance; }
void setTestedTypeReflection(@Nonnull GenericTypeReflection reflection) { testedTypeReflection = reflection; }
public void setTypeOfInjectionPoint(@Nonnull Type typeOfInjectionPoint)
{
this.typeOfInjectionPoint = typeOfInjectionPoint;
}
public boolean isAssignableToInjectionPoint(@Nonnull Type injectableType)
{
if (testedTypeReflection.areMatchingTypes(typeOfInjectionPoint, injectableType)) {
return true;
}
if (typeOfInjectionPoint instanceof ParameterizedType) {
ParameterizedType parameterizedType = (ParameterizedType) typeOfInjectionPoint;
Class> classOfInjectionPoint = (Class>) parameterizedType.getRawType();
if (
Iterable.class.isAssignableFrom(classOfInjectionPoint) ||
INJECT_CLASS != null && Provider.class.isAssignableFrom(classOfInjectionPoint)
) {
Type providedType = parameterizedType.getActualTypeArguments()[0];
if (providedType.equals(injectableType)) {
return true;
}
Class> injectableClass = getClassType(injectableType);
Class> providedClass = getClassType(providedType);
return providedClass.isAssignableFrom(injectableClass);
}
}
return false;
}
@Nullable
public MockedType findNextInjectableForInjectionPoint()
{
for (MockedType injectable : injectables) {
if (hasTypeAssignableToInjectionPoint(injectable) && !consumedInjectionProviders.contains(injectable)) {
return injectable;
}
}
return null;
}
private boolean hasTypeAssignableToInjectionPoint(@Nonnull InjectionProvider injectable)
{
Type declaredType = injectable.getDeclaredType();
return isAssignableToInjectionPoint(declaredType);
}
@Nonnull
List findInjectablesByType()
{
List found = new ArrayList();
for (MockedType injectable : injectables) {
if (hasTypeAssignableToInjectionPoint(injectable) && !consumedInjectionProviders.contains(injectable)) {
found.add(injectable);
}
}
return found;
}
@Nullable
public InjectionProvider getProviderByTypeAndOptionallyName(@Nonnull String nameOfInjectionPoint)
{
Type elementTypeOfIterable = getElementTypeIfIterable(typeOfInjectionPoint);
if (elementTypeOfIterable != null) {
return findInjectablesByTypeOnly(elementTypeOfIterable);
}
return findInjectableByTypeAndOptionallyName(nameOfInjectionPoint);
}
@Nullable
private static Type getElementTypeIfIterable(@Nonnull Type injectableType)
{
if (injectableType instanceof ParameterizedType) {
ParameterizedType parameterizedType = (ParameterizedType) injectableType;
Class> classOfInjectionPoint = (Class>) parameterizedType.getRawType();
if (Iterable.class.isAssignableFrom(classOfInjectionPoint)) {
return parameterizedType.getActualTypeArguments()[0];
}
}
return null;
}
@Nullable
private InjectionProvider findInjectablesByTypeOnly(@Nonnull Type elementType)
{
MultiValuedProvider found = null;
for (MockedType injectable : injectables) {
Type injectableType = injectable.getDeclaredType();
Type elementTypeOfIterable = getElementTypeIfIterable(injectableType);
if (
elementTypeOfIterable != null && testedTypeReflection.areMatchingTypes(elementType, elementTypeOfIterable)
) {
return injectable;
}
if (isAssignableToInjectionPoint(injectableType)) {
if (found == null) {
found = new MultiValuedProvider(elementType);
}
found.addInjectable(injectable);
}
}
return found;
}
@Nullable
private InjectionProvider findInjectableByTypeAndOptionallyName(@Nonnull String nameOfInjectionPoint)
{
MockedType foundInjectable = null;
for (MockedType injectable : injectables) {
if (hasTypeAssignableToInjectionPoint(injectable)) {
if (nameOfInjectionPoint.equals(injectable.getName())) {
return injectable;
}
if (foundInjectable == null) {
foundInjectable = injectable;
}
}
}
return foundInjectable;
}
@Nullable
public MockedType findInjectableByTypeAndName(@Nonnull String nameOfInjectionPoint)
{
for (MockedType injectable : injectables) {
if (hasTypeAssignableToInjectionPoint(injectable) && nameOfInjectionPoint.equals(injectable.getName())) {
return injectable;
}
}
return null;
}
@Nullable
public Object getValueToInject(@Nonnull InjectionProvider injectionProvider)
{
if (consumedInjectionProviders.contains(injectionProvider)) {
return null;
}
Object value = injectionProvider.getValue(currentTestClassInstance);
if (value != null) {
consumedInjectionProviders.add(injectionProvider);
}
return value;
}
void resetConsumedInjectionProviders() { consumedInjectionProviders.clear(); }
@Nonnull
public List saveConsumedInjectionProviders()
{
List previouslyConsumed = consumedInjectionProviders;
consumedInjectionProviders = new ArrayList();
return previouslyConsumed;
}
public void restoreConsumedInjectionProviders(@Nonnull List previouslyConsumed)
{
consumedInjectionProviders = previouslyConsumed;
}
void saveTestedObject(@Nonnull InjectionPoint key, @Nonnull Object testedObject)
{
testedObjects.put(key, testedObject);
}
@Nullable
Object getTestedInstance(@Nonnull Type testedType, @Nonnull String nameOfInjectionPoint)
{
Object testedInstance = instantiatedDependencies.isEmpty() ?
null : findPreviouslyInstantiatedDependency(testedType, nameOfInjectionPoint);
if (testedInstance == null) {
testedInstance = testedObjects.isEmpty() ?
null : getValueFromExistingTestedObject(testedType, nameOfInjectionPoint);
}
return testedInstance;
}
@Nullable
private Object findPreviouslyInstantiatedDependency(@Nonnull Type testedType, @Nonnull String nameOfInjectionPoint)
{
InjectionPoint injectionPoint = new InjectionPoint(testedType, nameOfInjectionPoint);
Object dependency = instantiatedDependencies.get(injectionPoint);
if (dependency == null) {
injectionPoint = new InjectionPoint(testedType);
dependency = instantiatedDependencies.get(injectionPoint);
if (dependency == null) {
dependency = findMatchingObject(instantiatedDependencies, null, injectionPoint);
}
}
return dependency;
}
@Nullable
private Object getValueFromExistingTestedObject(@Nonnull Type testedType, @Nonnull String nameOfInjectionPoint)
{
InjectionPoint injectionPoint = new InjectionPoint(testedType, nameOfInjectionPoint);
for (Object testedObject : testedObjects.values()) {
Object fieldValue = getValueFromFieldOfEquivalentTypeAndName(injectionPoint, testedObject);
if (fieldValue != null) {
return fieldValue;
}
}
return null;
}
@Nullable
private static Object getValueFromFieldOfEquivalentTypeAndName(
@Nonnull InjectionPoint injectionPoint, @Nonnull Object testedObject)
{
for (Field internalField : testedObject.getClass().getDeclaredFields()) {
Type fieldType = internalField.getGenericType();
String qualifiedName = getQualifiedName(internalField.getDeclaredAnnotations());
boolean qualified = qualifiedName != null;
String fieldName = qualified ? qualifiedName : internalField.getName();
InjectionPoint internalInjectionPoint = new InjectionPoint(fieldType, fieldName, qualified);
if (internalInjectionPoint.equals(injectionPoint)) {
Object fieldValue = FieldReflection.getFieldValue(internalField, testedObject);
return fieldValue;
}
}
return null;
}
@Nullable @SuppressWarnings("unchecked")
public D getGlobalDependency(@Nonnull InjectionPoint key) { return (D) globalDependencies.get(key); }
@Nullable
public Object getTestedValue(@Nonnull TestedClass testedClass, @Nonnull InjectionPoint injectionPoint)
{
Object testedValue = testedObjects.get(injectionPoint);
if (testedValue == null) {
testedValue = findMatchingObject(testedObjects, testedClass.reflection, injectionPoint);
}
return testedValue;
}
@Nullable
public Object getInstantiatedDependency(@Nonnull TestedClass testedClass, @Nonnull InjectionPoint dependencyKey)
{
Object dependency = testedObjects.get(dependencyKey);
if (dependency == null) {
dependency = findMatchingObject(testedObjects, testedClass.reflection, dependencyKey);
if (dependency == null) {
dependency = instantiatedDependencies.get(dependencyKey);
if (dependency == null) {
dependency = findMatchingObject(instantiatedDependencies, testedClass.reflection, dependencyKey);
if (dependency == null) {
dependency = findMatchingObject(globalDependencies, testedClass.reflection, dependencyKey);
}
}
}
}
return dependency;
}
@Nullable
private Object findMatchingObject(
@Nonnull Map availableObjects, @Nullable GenericTypeReflection reflection,
@Nonnull InjectionPoint injectionPoint)
{
if (availableObjects.isEmpty()) {
return null;
}
Type dependencyType = injectionPoint.type;
Object found = null;
for (Entry injectionPointAndObject : availableObjects.entrySet()) {
InjectionPoint dependencyIP = injectionPointAndObject.getKey();
Object dependencyObject = injectionPointAndObject.getValue();
if (injectionPoint.equals(dependencyIP)) {
return dependencyObject;
}
if (reflection != null && reflection.areMatchingTypes(dependencyType, dependencyIP.type)) {
if (injectionPoint.hasSameName(dependencyIP)) {
return dependencyObject;
}
if (injectionPoint.qualified) {
return null;
}
if (found == null) {
found = dependencyObject;
}
}
}
return found;
}
public void saveInstantiatedDependency(@Nonnull InjectionPoint dependencyKey, @Nonnull Object dependency)
{
instantiatedDependencies.put(dependencyKey, dependency);
}
public void saveGlobalDependency(@Nonnull InjectionPoint dependencyKey, @Nonnull Object dependency)
{
globalDependencies.put(dependencyKey, dependency);
}
void clearTestedObjectsAndInstantiatedDependencies()
{
testedObjects.clear();
instantiatedDependencies.clear();
}
@Override
public Object getBean(@Nonnull String name)
{
for (InjectionProvider injectable : injectables) {
if (name.equals(injectable.getName())) {
return injectable.getValue(currentTestClassInstance);
}
}
Object bean = findByName(testedObjects, name);
if (bean == null) {
bean = findByName(instantiatedDependencies, name);
if (bean == null) {
bean = findByName(globalDependencies, name);
}
}
return bean;
}
@Nullable
private Object findByName(@Nonnull Map injectionPointsAndObjects, @Nonnull String name)
{
for (Entry injectionPointAndObject : injectionPointsAndObjects.entrySet()) {
InjectionPoint injectionPoint = injectionPointAndObject.getKey();
if (name.equals(injectionPoint.name)) {
return injectionPointAndObject.getValue();
}
}
return null;
}
void addInterfaceResolutionMethod(@Nonnull ParameterizedType interfaceType, @Nonnull Method resolutionMethod)
{
interfaceResolutionMethods.put(interfaceType, resolutionMethod);
}
@Nullable
public Class> resolveInterface(@Nonnull Class> interfaceType)
{
if (interfaceResolutionMethods.isEmpty()) {
return null;
}
Method resolutionMethod = null;
for (Entry typeAndMethod : interfaceResolutionMethods.entrySet()) {
ParameterizedType acceptedType = typeAndMethod.getKey();
Method method = typeAndMethod.getValue();
Type targetType = acceptedType.getActualTypeArguments()[0];
if (targetType == interfaceType) {
resolutionMethod = method;
break;
}
else if (targetType instanceof WildcardType) {
resolutionMethod = method;
}
}
if (resolutionMethod != null) {
Class> implementationClass = invoke(currentTestClassInstance, resolutionMethod, interfaceType);
return implementationClass;
}
return null;
}
}