Browse Source

Introduce TestClassScanner to locate Spring test classes for AOT processing

This commit introduces the TestClassScanner which scans provided
classpath roots for Spring integration test classes using the JUnit
Platform Launcher API which allows all registered TestEngines to
discover tests according to their own rules.

The scanner currently detects the following categories of Spring
integration test classes.

- JUnit Jupiter: classes that register the SpringExtension via
  @ExtendWith.
- JUnit 4: classes that register the SpringJUnit4ClassRunner or
  SpringRunner via @RunWith.
- Generic: classes that are annotated with @ContextConfiguration or
  @BootstrapWith.

The scanner has been tested with the following TestEngine
implementations for the JUnit Platform.

- JUnit Jupiter
- JUnit Vintage
- JUnit Platform Suite Engine
- TestNG Engine for the JUnit Platform

Closes gh-28824
pull/28834/head
Sam Brannen 4 years ago
parent
commit
9962aa00a0
  1. 1
      spring-test/spring-test.gradle
  2. 198
      spring-test/src/main/java/org/springframework/test/context/aot/TestClassScanner.java
  3. 9
      spring-test/src/main/java/org/springframework/test/context/aot/package-info.java
  4. 101
      spring-test/src/test/java/org/springframework/test/context/aot/TestClassScannerTests.java
  5. 49
      spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicJupiterTests.java
  6. 61
      spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicSpringJupiterTests.java
  7. 41
      spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicSpringTestNGTests.java
  8. 44
      spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicSpringVintageTests.java
  9. 36
      spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicTestConfiguration.java
  10. 37
      spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicTestNGTests.java
  11. 38
      spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicVintageTests.java
  12. 30
      spring-test/src/test/java/org/springframework/test/context/aot/samples/common/DefaultMessageService.java
  13. 27
      spring-test/src/test/java/org/springframework/test/context/aot/samples/common/MessageService.java
  14. 29
      spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/all/AllEnginesTestSuite.java
  15. 31
      spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/jupiter/JupiterTestSuite.java
  16. 34
      spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/nested/NestedTestSuite.java
  17. 31
      spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/testng/TestNGTestSuite.java
  18. 31
      spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/vintage/VintageTestSuite.java
  19. 1
      spring-test/src/test/resources/log4j2-test.xml
  20. 4
      src/checkstyle/checkstyle-suppressions.xml

1
spring-test/spring-test.gradle

@ -24,6 +24,7 @@ dependencies { @@ -24,6 +24,7 @@ dependencies {
optional("jakarta.websocket:jakarta.websocket-api")
optional("junit:junit")
optional("org.apache.tomcat.embed:tomcat-embed-core")
optional("org.junit.platform:junit-platform-launcher") // for AOT processing
optional("org.junit.jupiter:junit-jupiter-api")
optional("org.testng:testng")
optional("org.aspectj:aspectjweaver")

198
spring-test/src/main/java/org/springframework/test/context/aot/TestClassScanner.java

@ -0,0 +1,198 @@ @@ -0,0 +1,198 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot;
import java.lang.annotation.Annotation;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Stream;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.platform.engine.support.descriptor.ClassSource;
import org.junit.platform.launcher.Launcher;
import org.junit.platform.launcher.LauncherDiscoveryRequest;
import org.junit.platform.launcher.TestIdentifier;
import org.junit.platform.launcher.TestPlan;
import org.junit.platform.launcher.core.LauncherDiscoveryRequestBuilder;
import org.junit.platform.launcher.core.LauncherFactory;
import org.springframework.core.annotation.MergedAnnotation;
import org.springframework.core.annotation.MergedAnnotations;
import org.springframework.test.context.BootstrapWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.TestContextAnnotationUtils;
import org.springframework.util.Assert;
import static org.junit.platform.engine.discovery.DiscoverySelectors.selectClasspathRoots;
import static org.junit.platform.engine.discovery.PackageNameFilter.includePackageNames;
import static org.springframework.core.annotation.MergedAnnotation.VALUE;
import static org.springframework.core.annotation.MergedAnnotations.SearchStrategy.INHERITED_ANNOTATIONS;
import static org.springframework.core.annotation.MergedAnnotations.SearchStrategy.TYPE_HIERARCHY;
/**
* {@code TestClassScanner} scans provided classpath roots for Spring integration
* test classes using the JUnit Platform {@link Launcher} API which allows all
* registered {@link org.junit.platform.engine.TestEngine TestEngines} to discover
* tests according to their own rules.
*
* <p>The scanner currently detects the following categories of Spring integration
* test classes.
*
* <ul>
* <li>JUnit Jupiter: classes that register the {@code SpringExtension} via
* {@code @ExtendWith}.</li>
* <li>JUnit 4: classes that register the {@code SpringJUnit4ClassRunner} or
* {@code SpringRunner} via {@code @RunWith}.</li>
* <li>Generic: classes that are annotated with {@code @ContextConfiguration} or
* {@code @BootstrapWith}.</li>
* </ul>
*
* <p>The scanner has been tested with the following
* {@link org.junit.platform.engine.TestEngine TestEngines}.
*
* <ul>
* <li>JUnit Jupiter</li>
* <li>JUnit Vintage</li>
* <li>JUnit Platform Suite Engine</li>
* <li>TestNG Engine for the JUnit Platform</li>
* </ul>
*
* @author Sam Brannen
* @since 6.0
*/
class TestClassScanner {
// JUnit 4
private static final String RUN_WITH_ANNOTATION_NAME = "org.junit.runner.RunWith";
private static final String SPRING_JUNIT4_CLASS_RUNNER_NAME = "org.springframework.test.context.junit4.SpringJUnit4ClassRunner";
private static final String SPRING_RUNNER_NAME = "org.springframework.test.context.junit4.SpringRunner";
// JUnit Jupiter
private static final String EXTEND_WITH_ANNOTATION_NAME = "org.junit.jupiter.api.extension.ExtendWith";
private static final String SPRING_EXTENSION_NAME = "org.springframework.test.context.junit.jupiter.SpringExtension";
private final Log logger = LogFactory.getLog(TestClassScanner.class);
private final Set<Path> classpathRoots;
TestClassScanner(Set<Path> classpathRoots) {
Assert.notEmpty(classpathRoots, "'classpathRoots' must not be null or empty");
Assert.noNullElements(classpathRoots, "'classpathRoots' must not contain null elements");
this.classpathRoots = classpathRoots;
}
/**
* Scan the configured classpath roots for Spring integration test classes.
*/
Stream<Class<?>> scan() {
return scan(new String[0]);
}
/**
* Scan the configured classpath roots for Spring integration test classes
* in the given packages.
*/
Stream<Class<?>> scan(String... packageNames) {
Assert.notEmpty(packageNames, "'packageNames' must not be null or empty");
Assert.noNullElements(packageNames, "'packageNames' must not contain null elements");
if (logger.isInfoEnabled()) {
if (packageNames.length > 0) {
logger.info("Scanning for Spring test classes in packages %s in classpath roots %s"
.formatted(Arrays.toString(packageNames), this.classpathRoots));
}
else {
logger.info("Scanning for Spring test classes in all packages in classpath roots %s"
.formatted(this.classpathRoots));
}
}
LauncherDiscoveryRequestBuilder builder = LauncherDiscoveryRequestBuilder.request();
builder.selectors(selectClasspathRoots(this.classpathRoots));
if (packageNames.length > 0) {
builder.filters(includePackageNames(packageNames));
}
LauncherDiscoveryRequest request = builder.build();
Launcher launcher = LauncherFactory.create();
TestPlan testPlan = launcher.discover(request);
return testPlan.getRoots().stream()
.map(testPlan::getDescendants)
.flatMap(Set::stream)
.map(TestIdentifier::getSource)
.flatMap(Optional::stream)
.filter(ClassSource.class::isInstance)
.map(ClassSource.class::cast)
.map(this::getJavaClass)
.flatMap(Optional::stream)
.filter(this::isSpringTestClass)
.distinct();
}
private Optional<Class<?>> getJavaClass(ClassSource classSource) {
try {
return Optional.of(classSource.getJavaClass());
}
catch (Exception ex) {
// ignore exception
return Optional.empty();
}
}
private boolean isSpringTestClass(Class<?> clazz) {
boolean isSpringTestClass = (isJupiterSpringTestClass(clazz) || isJUnit4SpringTestClass(clazz) ||
isGenericSpringTestClass(clazz));
if (isSpringTestClass && logger.isTraceEnabled()) {
logger.trace("Found Spring test class: " + clazz.getName());
}
return isSpringTestClass;
}
private static boolean isJupiterSpringTestClass(Class<?> clazz) {
return MergedAnnotations.search(TYPE_HIERARCHY)
.withEnclosingClasses(TestContextAnnotationUtils::searchEnclosingClass)
.from(clazz)
.stream(EXTEND_WITH_ANNOTATION_NAME)
.map(annotation -> annotation.getClassArray(VALUE))
.flatMap(Arrays::stream)
.map(Class::getName)
.anyMatch(SPRING_EXTENSION_NAME::equals);
}
private static boolean isJUnit4SpringTestClass(Class<?> clazz) {
MergedAnnotation<Annotation> mergedAnnotation =
MergedAnnotations.from(clazz, INHERITED_ANNOTATIONS).get(RUN_WITH_ANNOTATION_NAME);
if (mergedAnnotation.isPresent()) {
String name = mergedAnnotation.getClass(VALUE).getName();
return (SPRING_JUNIT4_CLASS_RUNNER_NAME.equals(name) || SPRING_RUNNER_NAME.equals(name));
}
return false;
}
private static boolean isGenericSpringTestClass(Class<?> clazz) {
MergedAnnotations mergedAnnotations = MergedAnnotations.from(clazz, TYPE_HIERARCHY);
return (mergedAnnotations.isPresent(ContextConfiguration.class) ||
mergedAnnotations.isPresent(BootstrapWith.class));
}
}

9
spring-test/src/main/java/org/springframework/test/context/aot/package-info.java

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
/**
* Ahead-of-time (AOT) support for the <em>Spring TestContext Framework</em>.
*/
@NonNullApi
@NonNullFields
package org.springframework.test.context.aot;
import org.springframework.lang.NonNullApi;
import org.springframework.lang.NonNullFields;

101
spring-test/src/test/java/org/springframework/test/context/aot/TestClassScannerTests.java

@ -0,0 +1,101 @@ @@ -0,0 +1,101 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Set;
import java.util.stream.Stream;
import org.junit.jupiter.api.Test;
import org.springframework.test.context.aot.samples.basic.BasicSpringJupiterTests;
import org.springframework.test.context.aot.samples.basic.BasicSpringTestNGTests;
import org.springframework.test.context.aot.samples.basic.BasicSpringVintageTests;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link TestClassScanner}.
*
* @author Sam Brannen
* @since 6.0
*/
class TestClassScannerTests {
@Test
void scanBasicTestClasses() {
assertThat(scan("org.springframework.test.context.aot.samples.basic"))
.containsExactlyInAnyOrder(
BasicSpringJupiterTests.class,
BasicSpringJupiterTests.NestedTests.class,
BasicSpringVintageTests.class,
BasicSpringTestNGTests.class
);
}
@Test
void scanTestSuitesForJupiter() {
assertThat(scan("org.springframework.test.context.aot.samples.suites.jupiter"))
.containsExactlyInAnyOrder(BasicSpringJupiterTests.class, BasicSpringJupiterTests.NestedTests.class);
}
@Test
void scanTestSuitesForVintage() {
assertThat(scan("org.springframework.test.context.aot.samples.suites.vintage"))
.containsExactly(BasicSpringVintageTests.class);
}
@Test
void scanTestSuitesForTestNG() {
assertThat(scan("org.springframework.test.context.aot.samples.suites.testng"))
.containsExactly(BasicSpringTestNGTests.class);
}
@Test
void scanTestSuitesForAllTestEngines() {
assertThat(scan("org.springframework.test.context.aot.samples.suites.all"))
.containsExactlyInAnyOrder(
BasicSpringJupiterTests.class,
BasicSpringJupiterTests.NestedTests.class,
BasicSpringVintageTests.class,
BasicSpringTestNGTests.class
);
}
@Test
void scanTestSuitesWithNestedSuites() {
assertThat(scan("org.springframework.test.context.aot.samples.suites.nested"))
.containsExactlyInAnyOrder(
BasicSpringJupiterTests.class,
BasicSpringJupiterTests.NestedTests.class,
BasicSpringVintageTests.class
);
}
private Stream<Class<?>> scan(String... packageNames) {
try {
Set<Path> classpathRoots = Set.of(
Paths.get(getClass().getProtectionDomain().getCodeSource().getLocation().toURI()));
return new TestClassScanner(classpathRoots).scan(packageNames);
}
catch (Exception ex) {
throw new RuntimeException(ex);
}
}
}

49
spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicJupiterTests.java

@ -0,0 +1,49 @@ @@ -0,0 +1,49 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.basic;
import org.junit.jupiter.api.Nested;
import org.springframework.test.context.aot.samples.common.DefaultMessageService;
import org.springframework.test.context.aot.samples.common.MessageService;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Sam Brannen
* @since 6.0
*/
class BasicJupiterTests {
private final MessageService messageService = new DefaultMessageService();
@org.junit.jupiter.api.Test
void test() {
assertThat(messageService.generateMessage()).isEqualTo("Hello, AOT!");
}
@Nested
class NestedTests {
@org.junit.jupiter.api.Test
void test() {
assertThat(messageService.generateMessage()).isEqualTo("Hello, AOT!");
}
}
}

61
spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicSpringJupiterTests.java

@ -0,0 +1,61 @@ @@ -0,0 +1,61 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.basic;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.api.extension.Extension;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.aot.samples.common.MessageService;
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Sam Brannen
* @since 6.0
*/
// Register an extension other than the SpringExtension to verify proper lookups
// for repeated annotations.
@ExtendWith(DummyExtension.class)
@SpringJUnitConfig(BasicTestConfiguration.class)
public class BasicSpringJupiterTests {
@org.junit.jupiter.api.Test
void test(@Autowired MessageService messageService) {
assertThat(messageService.generateMessage()).isEqualTo("Hello, AOT!");
}
@Nested
@TestPropertySource(properties = "foo=bar")
public class NestedTests {
@org.junit.jupiter.api.Test
void test(@Autowired MessageService messageService, @Value("${foo}") String foo) {
assertThat(messageService.generateMessage()).isEqualTo("Hello, AOT!");
assertThat(foo).isEqualTo("bar");
}
}
}
class DummyExtension implements Extension {
}

41
spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicSpringTestNGTests.java

@ -0,0 +1,41 @@ @@ -0,0 +1,41 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.basic;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.aot.samples.common.MessageService;
import org.springframework.test.context.testng.AbstractTestNGSpringContextTests;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Sam Brannen
* @since 6.0
*/
@ContextConfiguration(classes = BasicTestConfiguration.class)
public class BasicSpringTestNGTests extends AbstractTestNGSpringContextTests {
@Autowired
MessageService messageService;
@org.testng.annotations.Test
public void test() {
assertThat(messageService.generateMessage()).isEqualTo("Hello, AOT!");
}
}

44
spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicSpringVintageTests.java

@ -0,0 +1,44 @@ @@ -0,0 +1,44 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.basic;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.aot.samples.common.MessageService;
import org.springframework.test.context.junit4.SpringRunner;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Sam Brannen
* @since 6.0
*/
@RunWith(SpringRunner.class)
@ContextConfiguration(classes = BasicTestConfiguration.class)
public class BasicSpringVintageTests {
@Autowired
MessageService messageService;
@org.junit.Test
public void test() {
assertThat(messageService.generateMessage()).isEqualTo("Hello, AOT!");
}
}

36
spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicTestConfiguration.java

@ -0,0 +1,36 @@ @@ -0,0 +1,36 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.basic;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.test.context.aot.samples.common.DefaultMessageService;
import org.springframework.test.context.aot.samples.common.MessageService;
/**
* @author Sam Brannen
* @since 6.0
*/
@Configuration(proxyBeanMethods = false)
class BasicTestConfiguration {
@Bean
MessageService messageService() {
return new DefaultMessageService();
}
}

37
spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicTestNGTests.java

@ -0,0 +1,37 @@ @@ -0,0 +1,37 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.basic;
import org.springframework.test.context.aot.samples.common.DefaultMessageService;
import org.springframework.test.context.aot.samples.common.MessageService;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Sam Brannen
* @since 6.0
*/
public class BasicTestNGTests {
private final MessageService messageService = new DefaultMessageService();
@org.testng.annotations.Test
public void test() {
assertThat(messageService.generateMessage()).isEqualTo("Hello, AOT!");
}
}

38
spring-test/src/test/java/org/springframework/test/context/aot/samples/basic/BasicVintageTests.java

@ -0,0 +1,38 @@ @@ -0,0 +1,38 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.basic;
import org.springframework.test.context.aot.samples.common.DefaultMessageService;
import org.springframework.test.context.aot.samples.common.MessageService;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Sam Brannen
* @since 6.0
*/
public class BasicVintageTests {
private final MessageService messageService = new DefaultMessageService();
@org.junit.Test
public void test() {
assertThat(messageService.generateMessage()).isEqualTo("Hello, AOT!");
}
}

30
spring-test/src/test/java/org/springframework/test/context/aot/samples/common/DefaultMessageService.java

@ -0,0 +1,30 @@ @@ -0,0 +1,30 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.common;
/**
* @author Sam Brannen
* @since 6.0
*/
public class DefaultMessageService implements MessageService {
@Override
public String generateMessage() {
return "Hello, AOT!";
}
}

27
spring-test/src/test/java/org/springframework/test/context/aot/samples/common/MessageService.java

@ -0,0 +1,27 @@ @@ -0,0 +1,27 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.common;
/**
* @author Sam Brannen
* @since 6.0
*/
public interface MessageService {
String generateMessage();
}

29
spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/all/AllEnginesTestSuite.java

@ -0,0 +1,29 @@ @@ -0,0 +1,29 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.suites.all;
import org.junit.platform.suite.api.SelectPackages;
import org.junit.platform.suite.api.Suite;
/**
* @author Sam Brannen
* @since 6.0
*/
@Suite
@SelectPackages("org.springframework.test.context.aot.samples.basic")
public class AllEnginesTestSuite {
}

31
spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/jupiter/JupiterTestSuite.java

@ -0,0 +1,31 @@ @@ -0,0 +1,31 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.suites.jupiter;
import org.junit.platform.suite.api.IncludeEngines;
import org.junit.platform.suite.api.SelectPackages;
import org.junit.platform.suite.api.Suite;
/**
* @author Sam Brannen
* @since 6.0
*/
@Suite
@IncludeEngines("junit-jupiter")
@SelectPackages("org.springframework.test.context.aot.samples.basic")
public class JupiterTestSuite {
}

34
spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/nested/NestedTestSuite.java

@ -0,0 +1,34 @@ @@ -0,0 +1,34 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.suites.nested;
import org.junit.platform.suite.api.IncludeClassNamePatterns;
import org.junit.platform.suite.api.SelectPackages;
import org.junit.platform.suite.api.Suite;
/**
* @author Sam Brannen
* @since 6.0
*/
@Suite
@IncludeClassNamePatterns(".*Suite$")
@SelectPackages({
"org.springframework.test.context.aot.samples.suites.jupiter",
"org.springframework.test.context.aot.samples.suites.vintage"
})
public class NestedTestSuite {
}

31
spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/testng/TestNGTestSuite.java

@ -0,0 +1,31 @@ @@ -0,0 +1,31 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.suites.testng;
import org.junit.platform.suite.api.IncludeEngines;
import org.junit.platform.suite.api.SelectPackages;
import org.junit.platform.suite.api.Suite;
/**
* @author Sam Brannen
* @since 6.0
*/
@Suite
@IncludeEngines("testng")
@SelectPackages("org.springframework.test.context.aot.samples.basic")
public class TestNGTestSuite {
}

31
spring-test/src/test/java/org/springframework/test/context/aot/samples/suites/vintage/VintageTestSuite.java

@ -0,0 +1,31 @@ @@ -0,0 +1,31 @@
/*
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.test.context.aot.samples.suites.vintage;
import org.junit.platform.suite.api.IncludeEngines;
import org.junit.platform.suite.api.SelectPackages;
import org.junit.platform.suite.api.Suite;
/**
* @author Sam Brannen
* @since 6.0
*/
@Suite
@IncludeEngines("junit-vintage")
@SelectPackages("org.springframework.test.context.aot.samples.basic")
public class VintageTestSuite {
}

1
spring-test/src/test/resources/log4j2-test.xml

@ -14,6 +14,7 @@ @@ -14,6 +14,7 @@
<Logger name="org.springframework.test.context.TestContext" level="warn" />
<Logger name="org.springframework.test.context.TestContextManager" level="warn" />
<Logger name="org.springframework.test.context.ContextLoaderUtils" level="warn" />
<Logger name="org.springframework.test.context.aot" level="trace" />
<Logger name="org.springframework.test.context.cache" level="warn" />
<Logger name="org.springframework.test.context.junit4.rules" level="warn" />
<Logger name="org.springframework.test.context.transaction.TransactionalTestExecutionListener" level="warn" />

4
src/checkstyle/checkstyle-suppressions.xml

@ -77,7 +77,7 @@ @@ -77,7 +77,7 @@
<suppress files="TransactionTemplate" checks="EqualsHashCode"/>
<!-- spring-test - main and test -->
<suppress files="org[\\/]springframework[\\/]test[\\/]context[\\/]junit4[\\/].+" checks="IllegalImport" id="bannedJUnit4Imports"/>
<suppress files="org[\\/]springframework[\\/]test[\\/]context[\\/](aot|junit4)[\\/].+" checks="IllegalImport" id="bannedJUnit4Imports"/>
<suppress files="org[\\/]springframework[\\/]test[\\/]context[\\/]junit[\\/]jupiter[\\/].+" checks="IllegalImport" id="bannedJUnitJupiterImports"/>
<suppress files="org[\\/]springframework[\\/]test[\\/]context[\\/]testng[\\/].+" checks="IllegalImport" id="bannedTestNGImports"/>
<!-- spring-test - main -->
@ -90,7 +90,7 @@ @@ -90,7 +90,7 @@
<suppress files="src[\\/]test[\\/]java[\\/]org[\\/]springframework[\\/]test[\\/]context[\\/]junit[\\/]jupiter[\\/]web[\\/].+Tests" checks="IllegalImport" id="bannedHamcrestImports"/>
<suppress files="src[\\/]test[\\/]java[\\/]org[\\/]springframework[\\/]test[\\/]util[\\/].+Tests" checks="IllegalImport" id="bannedHamcrestImports"/>
<suppress files="src[\\/]test[\\/]java[\\/]org[\\/]springframework[\\/]test[\\/]web[\\/](client|reactive|servlet)[\\/].+Tests" checks="IllegalImport" id="bannedHamcrestImports"/>
<suppress files="src[\\/]test[\\/]java[\\/]org[\\/]springframework[\\/]test[\\/]context[\\/]junit4" checks="SpringJUnit5"/>
<suppress files="src[\\/]test[\\/]java[\\/]org[\\/]springframework[\\/]test[\\/]context[\\/](aot|junit4)" checks="SpringJUnit5"/>
<suppress files="ContextHierarchyDirtiesContextTests|ClassLevelDirtiesContextTests|ContextConfigurationWithPropertiesExtendingPropertiesAndInheritedLoaderTests|ContextConfigurationWithPropertiesExtendingPropertiesTests|DirtiesContextInterfaceTests|.+WacTests|JUnit4SpringContextWebTests" checks="SpringJUnit5"/>
<suppress files=".+TestSuite|ContextHierarchyDirtiesContextTests|ClassLevelDirtiesContextTests|ContextConfigurationWithPropertiesExtendingPropertiesAndInheritedLoaderTests|ContextConfigurationWithPropertiesExtendingPropertiesTests|DirtiesContextInterfaceTests|.+WacTests|JUnit4SpringContextWebTests" checks="IllegalImport" id="bannedJUnit4Imports"/>
<suppress files="org[\\/]springframework[\\/]test[\\/]context[\\/].+[\\/](ExpectedExceptionSpringRunnerTests|StandardJUnit4FeaturesTests|ProgrammaticTxMgmtTestNGTests)" checks="RegexpSinglelineJava" id="expectedExceptionAnnotation"/>

Loading…
Cancel
Save