Switch ImportsContextCustomizer to use MergedAnnotations.search #36211

Use `MergedAnnotations.search` in `ImportsContextCustomizer` rather than
needing dedicated search logic.

See gh-36211
pull/36225/head
Laurent Martelli 1 year ago committed by Phillip Webb
parent 2350d9c870
commit 4562189125

@ -16,13 +16,12 @@
package org.springframework.boot.test.context; package org.springframework.boot.test.context;
import java.lang.annotation.Annotation;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.Constructor; import java.lang.reflect.Constructor;
import java.util.Collections; import java.util.Collections;
import java.util.HashSet; import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.Set; import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import org.springframework.beans.BeansException; import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory; import org.springframework.beans.factory.BeanFactory;
@ -42,10 +41,10 @@ import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
import org.springframework.context.annotation.ImportSelector; import org.springframework.context.annotation.ImportSelector;
import org.springframework.context.support.AbstractApplicationContext; import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.core.Ordered; import org.springframework.core.Ordered;
import org.springframework.core.annotation.AnnotationUtils; import org.springframework.core.annotation.AnnotatedElementUtils;
import org.springframework.core.annotation.AnnotationFilter;
import org.springframework.core.annotation.MergedAnnotation; import org.springframework.core.annotation.MergedAnnotation;
import org.springframework.core.annotation.MergedAnnotations; import org.springframework.core.annotation.MergedAnnotations;
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
import org.springframework.core.annotation.Order; import org.springframework.core.annotation.Order;
import org.springframework.core.style.ToStringCreator; import org.springframework.core.style.ToStringCreator;
import org.springframework.core.type.AnnotationMetadata; import org.springframework.core.type.AnnotationMetadata;
@ -53,6 +52,8 @@ import org.springframework.test.context.ContextCustomizer;
import org.springframework.test.context.MergedContextConfiguration; import org.springframework.test.context.MergedContextConfiguration;
import org.springframework.util.ReflectionUtils; import org.springframework.util.ReflectionUtils;
import static org.springframework.core.annotation.AnnotationFilter.packages;
/** /**
* {@link ContextCustomizer} to allow {@code @Import} annotations to be used directly on * {@link ContextCustomizer} to allow {@code @Import} annotations to be used directly on
* test classes. * test classes.
@ -217,82 +218,41 @@ class ImportsContextCustomizer implements ContextCustomizer {
*/ */
static class ContextCustomizerKey { static class ContextCustomizerKey {
private static final Class<?>[] NO_IMPORTS = {}; private static final AnnotationFilter ANNOTATION_FILTERS = or(packages("java.lang.annotation"),
packages("org.spockframework", "spock"),
private static final Set<AnnotationFilter> ANNOTATION_FILTERS; or(isEqualTo("kotlin.Metadata"), packages("kotlin.annotation")), packages(("org.junit")));
static {
Set<AnnotationFilter> filters = new HashSet<>();
filters.add(new JavaLangAnnotationFilter());
filters.add(new KotlinAnnotationFilter());
filters.add(new SpockAnnotationFilter());
filters.add(new JUnitAnnotationFilter());
ANNOTATION_FILTERS = Collections.unmodifiableSet(filters);
}
private final Set<Object> key; private final Object key;
ContextCustomizerKey(Class<?> testClass) { ContextCustomizerKey(Class<?> testClass) {
Set<Annotation> annotations = new HashSet<>(); MergedAnnotations mergedAnnotations = MergedAnnotations
Set<Class<?>> seen = new HashSet<>(); .search(MergedAnnotations.SearchStrategy.TYPE_HIERARCHY)
collectClassAnnotations(testClass, annotations, seen); .withAnnotationFilter(ANNOTATION_FILTERS)
Set<Object> determinedImports = determineImports(annotations, testClass); .from(testClass);
this.key = Collections.unmodifiableSet((determinedImports != null) ? determinedImports : annotations); Set<Object> determinedImports = determineImports(mergedAnnotations, testClass);
} if (determinedImports != null) {
this.key = determinedImports;
private void collectClassAnnotations(Class<?> classType, Set<Annotation> annotations, Set<Class<?>> seen) {
if (seen.add(classType)) {
collectElementAnnotations(classType, annotations, seen);
for (Class<?> interfaceType : classType.getInterfaces()) {
collectClassAnnotations(interfaceType, annotations, seen);
}
if (classType.getSuperclass() != null) {
collectClassAnnotations(classType.getSuperclass(), annotations, seen);
}
} }
} else {
this.key = AnnotatedElementUtils.findAllMergedAnnotations(testClass,
private void collectElementAnnotations(AnnotatedElement element, Set<Annotation> annotations, mergedAnnotations.stream().map(MergedAnnotation::getType).collect(Collectors.toSet()));
Set<Class<?>> seen) {
for (MergedAnnotation<Annotation> mergedAnnotation : MergedAnnotations.from(element,
SearchStrategy.DIRECT)) {
Annotation annotation = mergedAnnotation.synthesize();
if (!isIgnoredAnnotation(annotation)) {
annotations.add(annotation);
collectClassAnnotations(annotation.annotationType(), annotations, seen);
}
} }
} }
private boolean isIgnoredAnnotation(Annotation annotation) { private Set<Object> determineImports(MergedAnnotations mergedAnnotations, Class<?> testClass) {
for (AnnotationFilter annotationFilter : ANNOTATION_FILTERS) {
if (annotationFilter.isIgnored(annotation)) {
return true;
}
}
return false;
}
private Set<Object> determineImports(Set<Annotation> annotations, Class<?> testClass) {
Set<Object> determinedImports = new LinkedHashSet<>();
AnnotationMetadata testClassMetadata = AnnotationMetadata.introspect(testClass); AnnotationMetadata testClassMetadata = AnnotationMetadata.introspect(testClass);
for (Annotation annotation : annotations) { return mergedAnnotations.stream(Import.class)
for (Class<?> source : getImports(annotation)) { .flatMap((ma) -> Stream.of(ma.getClassArray("value")))
Set<Object> determinedSourceImports = determineImports(source, testClassMetadata); .map((source) -> determineImports(source, testClassMetadata))
if (determinedSourceImports == null) { .reduce(new HashSet<>(), (a, b) -> {
if (a == null || b == null) {
return null; return null;
} }
determinedImports.addAll(determinedSourceImports); else {
} a.add(b);
} return a;
return determinedImports; }
} });
private Class<?>[] getImports(Annotation annotation) {
if (annotation instanceof Import importAnnotation) {
return importAnnotation.value();
}
return NO_IMPORTS;
} }
private Set<Object> determineImports(Class<?> source, AnnotationMetadata metadata) { private Set<Object> determineImports(Class<?> source, AnnotationMetadata metadata) {
@ -340,67 +300,12 @@ class ImportsContextCustomizer implements ContextCustomizer {
} }
/** static AnnotationFilter or(AnnotationFilter... filters) {
* Filter used to limit considered annotations. return typeName -> Stream.of(filters).anyMatch(filter -> filter.matches(typeName));
*/
private interface AnnotationFilter {
boolean isIgnored(Annotation annotation);
}
/**
* {@link AnnotationFilter} for {@literal java.lang} annotations.
*/
private static final class JavaLangAnnotationFilter implements AnnotationFilter {
@Override
public boolean isIgnored(Annotation annotation) {
return AnnotationUtils.isInJavaLangAnnotationPackage(annotation);
}
}
/**
* {@link AnnotationFilter} for Kotlin annotations.
*/
private static final class KotlinAnnotationFilter implements AnnotationFilter {
@Override
public boolean isIgnored(Annotation annotation) {
return "kotlin.Metadata".equals(annotation.annotationType().getName())
|| isInKotlinAnnotationPackage(annotation);
}
private boolean isInKotlinAnnotationPackage(Annotation annotation) {
return annotation.annotationType().getName().startsWith("kotlin.annotation.");
}
} }
/** static AnnotationFilter isEqualTo(String expectedTypeName) {
* {@link AnnotationFilter} for Spock annotations. return typeName -> typeName.equals(expectedTypeName);
*/
private static final class SpockAnnotationFilter implements AnnotationFilter {
@Override
public boolean isIgnored(Annotation annotation) {
return annotation.annotationType().getName().startsWith("org.spockframework.")
|| annotation.annotationType().getName().startsWith("spock.");
}
}
/**
* {@link AnnotationFilter} for JUnit annotations.
*/
private static final class JUnitAnnotationFilter implements AnnotationFilter {
@Override
public boolean isIgnored(Annotation annotation) {
return annotation.annotationType().getName().startsWith("org.junit.");
}
} }
} }

Loading…
Cancel
Save