mockit.internal.injection.field.FieldInjection 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 APIs for the creation of the objects to be tested, for mocking dependencies, and for faking external
APIs; JUnit (4 & 5) and TestNG test runners are supported.
It also contains an advanced code coverage tool.
/*
* Copyright (c) 2006 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.injection.field;
import java.lang.reflect.*;
import java.util.*;
import java.util.regex.*;
import javax.annotation.*;
import javax.persistence.*;
import static java.lang.reflect.Modifier.*;
import static java.util.regex.Pattern.*;
import mockit.internal.injection.*;
import mockit.internal.injection.full.*;
import mockit.internal.reflection.*;
import mockit.internal.util.*;
import static mockit.internal.injection.InjectionPoint.*;
import static mockit.internal.injection.InjectionProvider.NULL;
public final class FieldInjection extends Injector
{
private static final Pattern TYPE_NAME = compile("class |interface |java\\.lang\\.");
public FieldInjection(@Nonnull InjectionState injectionState, @Nullable FullInjection fullInjection)
{
super(injectionState, fullInjection);
}
@Nonnull
public List findAllTargetInstanceFieldsInTestedClassHierarchy(
@Nonnull Class> actualTestedClass, @Nonnull TestedClass testedClass)
{
List targetFields = new ArrayList();
Class> classWithFields = actualTestedClass;
do {
addEligibleFields(targetFields, classWithFields);
classWithFields = classWithFields.getSuperclass();
}
while (testedClass.isClassFromSameModuleOrSystemAsTestedClass(classWithFields) || isServlet(classWithFields));
return targetFields;
}
private void addEligibleFields(@Nonnull List targetFields, @Nonnull Class> classWithFields)
{
Field[] fields = classWithFields.getDeclaredFields();
for (Field field : fields) {
if (isEligibleForInjection(field)) {
targetFields.add(field);
}
}
}
private boolean isEligibleForInjection(@Nonnull Field field)
{
int modifiers = field.getModifiers();
if (isFinal(modifiers)) {
return false;
}
if (kindOfInjectionPoint(field) != KindOfInjectionPoint.NotAnnotated) {
return true;
}
//noinspection SimplifiableIfStatement
if (PERSISTENCE_UNIT_CLASS != null && field.getType().isAnnotationPresent(Entity.class)) {
return false;
}
return !isStatic(modifiers) && !isVolatile(modifiers);
}
public void injectIntoEligibleFields(
@Nonnull List targetFields, @Nonnull Object testedObject, @Nonnull TestedClass testedClass)
{
for (Field field : targetFields) {
if (targetFieldWasNotAssignedByConstructor(testedObject, field)) {
Object injectableValue = getValueForFieldIfAvailable(targetFields, testedClass, field);
if (injectableValue != null && injectableValue != NULL) {
injectableValue = wrapInProviderIfNeeded(field.getGenericType(), injectableValue);
FieldReflection.setFieldValue(field, testedObject, injectableValue);
}
}
}
}
private boolean targetFieldWasNotAssignedByConstructor(@Nonnull Object testedObject, @Nonnull Field targetField)
{
if (kindOfInjectionPoint(targetField) != KindOfInjectionPoint.NotAnnotated) {
return true;
}
Object fieldValue = FieldReflection.getFieldValue(targetField, testedObject);
if (fieldValue == null) {
return true;
}
Class> fieldType = targetField.getType();
if (!fieldType.isPrimitive()) {
return false;
}
Object defaultValue = DefaultValues.defaultValueForPrimitiveType(fieldType);
return fieldValue.equals(defaultValue);
}
@Nullable
private Object getValueForFieldIfAvailable(
@Nonnull List targetFields, @Nonnull TestedClass testedClass, @Nonnull Field targetField)
{
@Nullable String qualifiedFieldName = getQualifiedName(targetField.getDeclaredAnnotations());
InjectionProvider injectable =
findAvailableInjectableIfAny(targetFields, qualifiedFieldName, testedClass, targetField);
if (injectable != null) {
return injectionState.getValueToInject(injectable);
}
InjectionProvider fieldToInject = new FieldToInject(targetField);
Type typeToInject = fieldToInject.getDeclaredType();
InjectionPoint injectionPoint = new InjectionPoint(typeToInject, fieldToInject.getName(), qualifiedFieldName);
TestedClass nextTestedClass = typeToInject instanceof TypeVariable> ?
testedClass : new TestedClass(typeToInject, fieldToInject.getClassOfDeclaredType(), testedClass);
Object testedValue = injectionState.getTestedValue(nextTestedClass, injectionPoint);
if (testedValue != null) {
return testedValue;
}
if (fullInjection != null) {
Object newInstance =
fullInjection.createOrReuseInstance(nextTestedClass, this, fieldToInject, qualifiedFieldName);
if (newInstance != null) {
return newInstance;
}
}
KindOfInjectionPoint kindOfInjectionPoint = kindOfInjectionPoint(targetField);
if (kindOfInjectionPoint == KindOfInjectionPoint.WithValue) {
return getValueFromAnnotation(targetField);
}
throwExceptionIfUnableToInjectRequiredTargetField(kindOfInjectionPoint, targetField);
return null;
}
@Nullable
private InjectionProvider findAvailableInjectableIfAny(
@Nonnull List targetFields, @Nullable String qualifiedTargetFieldName, @Nonnull TestedClass testedClass,
@Nonnull Field targetField)
{
injectionState.setTypeOfInjectionPoint(targetField.getGenericType());
if (qualifiedTargetFieldName != null && !qualifiedTargetFieldName.isEmpty()) {
String injectableName = convertToLegalJavaIdentifierIfNeeded(qualifiedTargetFieldName);
return injectionState.findInjectableByTypeAndName(injectableName, testedClass);
}
String targetFieldName = targetField.getName();
return withMultipleTargetFieldsOfSameType(targetFields, testedClass, targetField) ?
injectionState.findInjectableByTypeAndName(targetFieldName, testedClass) :
injectionState.getProviderByTypeAndOptionallyName(targetFieldName, testedClass);
}
private boolean withMultipleTargetFieldsOfSameType(
@Nonnull List targetFields, @Nonnull TestedClass testedClass, @Nonnull Field targetField)
{
for (Field anotherTargetField : targetFields) {
if (
anotherTargetField != targetField &&
injectionState.isAssignableToInjectionPoint(anotherTargetField.getGenericType(), testedClass)
) {
return true;
}
}
return false;
}
private void throwExceptionIfUnableToInjectRequiredTargetField(
@Nonnull KindOfInjectionPoint kindOfInjectionPoint, @Nonnull Field targetField)
{
if (kindOfInjectionPoint == KindOfInjectionPoint.Required) {
Type fieldType = targetField.getGenericType();
String fieldTypeName = fieldType.toString();
fieldTypeName = TYPE_NAME.matcher(fieldTypeName).replaceAll("");
String kindOfInjectable = "@Injectable";
if (fullInjection != null) {
if (targetField.getType().isInterface()) {
kindOfInjectable = "@Tested instance of an implementation class";
}
else {
kindOfInjectable = "@Tested object";
}
}
throw new IllegalStateException(
"Missing " + kindOfInjectable + " for field \"" + fieldTypeName + ' ' + targetField.getName() + "\" in " +
targetField.getDeclaringClass().getSimpleName());
}
}
@Override
public void fillOutDependenciesRecursively(@Nonnull Object dependency, @Nonnull TestedClass testedClass)
{
Class> dependencyClass = dependency.getClass();
List targetFields = findAllTargetInstanceFieldsInTestedClassHierarchy(dependencyClass, testedClass);
if (!targetFields.isEmpty()) {
List currentlyConsumedInjectables = injectionState.saveConsumedInjectionProviders();
injectIntoEligibleFields(targetFields, dependency, testedClass);
injectionState.restoreConsumedInjectionProviders(currentlyConsumedInjectables);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy