|
41 | 41 | import org.junit.jupiter.engine.discovery.predicates.IsTestFactoryMethod;
|
42 | 42 | import org.junit.jupiter.engine.discovery.predicates.IsTestMethod;
|
43 | 43 | import org.junit.jupiter.engine.discovery.predicates.IsTestTemplateMethod;
|
44 |
| -import org.junit.platform.commons.logging.Logger; |
45 |
| -import org.junit.platform.commons.logging.LoggerFactory; |
46 | 44 | import org.junit.platform.commons.util.ClassUtils;
|
| 45 | +import org.junit.platform.engine.DiscoveryIssue; |
| 46 | +import org.junit.platform.engine.DiscoveryIssue.Severity; |
47 | 47 | import org.junit.platform.engine.DiscoverySelector;
|
48 | 48 | import org.junit.platform.engine.TestDescriptor;
|
49 | 49 | import org.junit.platform.engine.UniqueId;
|
|
52 | 52 | import org.junit.platform.engine.discovery.MethodSelector;
|
53 | 53 | import org.junit.platform.engine.discovery.NestedMethodSelector;
|
54 | 54 | import org.junit.platform.engine.discovery.UniqueIdSelector;
|
| 55 | +import org.junit.platform.engine.support.descriptor.MethodSource; |
| 56 | +import org.junit.platform.engine.support.discovery.DiscoveryIssueReporter; |
55 | 57 | import org.junit.platform.engine.support.discovery.SelectorResolver;
|
56 | 58 |
|
57 | 59 | /**
|
58 | 60 | * @since 5.5
|
59 | 61 | */
|
60 | 62 | class MethodSelectorResolver implements SelectorResolver {
|
61 | 63 |
|
62 |
| - private static final Logger logger = LoggerFactory.getLogger(MethodSelectorResolver.class); |
63 | 64 | private static final MethodFinder methodFinder = new MethodFinder();
|
64 | 65 | private static final Predicate<Class<?>> testClassPredicate = new IsTestClassWithTests().or(
|
65 | 66 | new IsNestedTestClass());
|
66 | 67 |
|
67 |
| - protected final JupiterConfiguration configuration; |
| 68 | + private final JupiterConfiguration configuration; |
| 69 | + private final DiscoveryIssueReporter issueReporter; |
68 | 70 |
|
69 |
| - MethodSelectorResolver(JupiterConfiguration configuration) { |
| 71 | + MethodSelectorResolver(JupiterConfiguration configuration, DiscoveryIssueReporter issueReporter) { |
70 | 72 | this.configuration = configuration;
|
| 73 | + this.issueReporter = issueReporter; |
71 | 74 | }
|
72 | 75 |
|
73 | 76 | @Override
|
@@ -97,14 +100,14 @@ private Resolution resolve(Context context, List<Class<?>> enclosingClasses, Cla
|
97 | 100 | .collect(toSet());
|
98 | 101 | // @formatter:on
|
99 | 102 | if (matches.size() > 1) {
|
100 |
| - logger.warn(() -> { |
101 |
| - Stream<TestDescriptor> testDescriptors = matches.stream().map(Match::getTestDescriptor); |
102 |
| - return String.format( |
103 |
| - "Possible configuration error: method [%s] resulted in multiple TestDescriptors %s. " |
104 |
| - + "This is typically the result of annotating a method with multiple competing annotations " |
105 |
| - + "such as @Test, @RepeatedTest, @ParameterizedTest, @TestFactory, etc.", |
106 |
| - method.toGenericString(), testDescriptors.map(d -> d.getClass().getName()).collect(toList())); |
107 |
| - }); |
| 103 | + Stream<TestDescriptor> testDescriptors = matches.stream().map(Match::getTestDescriptor); |
| 104 | + String message = String.format( |
| 105 | + "Possible configuration error: method [%s] resulted in multiple TestDescriptors %s. " |
| 106 | + + "This is typically the result of annotating a method with multiple competing annotations " |
| 107 | + + "such as @Test, @RepeatedTest, @ParameterizedTest, @TestFactory, etc.", |
| 108 | + method.toGenericString(), testDescriptors.map(d -> d.getClass().getName()).collect(toList())); |
| 109 | + issueReporter.reportIssue( |
| 110 | + DiscoveryIssue.builder(Severity.WARNING, message).source(MethodSource.from(method))); |
108 | 111 | }
|
109 | 112 | return matches.isEmpty() ? unresolved() : matches(matches);
|
110 | 113 | }
|
|
0 commit comments