forked from spring-projects/spring-framework
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] Allow test classes to provide runtime hints via declarative mec…
…hanisms Closes spring-projectsgh-29455
- Loading branch information
Showing
3 changed files
with
166 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
...test/src/test/java/org/springframework/test/context/aot/DeclarativeRuntimeHintsTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* 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.util.Set; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.aot.generate.InMemoryGeneratedFiles; | ||
import org.springframework.aot.hint.MemberCategory; | ||
import org.springframework.aot.hint.RuntimeHints; | ||
import org.springframework.test.context.aot.samples.hints.DeclarativeRuntimeHintsSpringJupiterTests; | ||
|
||
import static java.util.Comparator.comparing; | ||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.springframework.aot.hint.predicate.RuntimeHintsPredicates.reflection; | ||
import static org.springframework.aot.hint.predicate.RuntimeHintsPredicates.resource; | ||
|
||
/** | ||
* Tests for declarative support for registering run-time hints for tests, tested | ||
* via the {@link TestContextAotGenerator} | ||
* | ||
* @author Sam Brannen | ||
* @since 6.0 | ||
*/ | ||
class DeclarativeRuntimeHintsTests extends AbstractAotTests { | ||
|
||
@Test | ||
void declarativeRuntimeHints() { | ||
Set<Class<?>> testClasses = Set.of(DeclarativeRuntimeHintsSpringJupiterTests.class); | ||
TestContextAotGenerator generator = new TestContextAotGenerator(new InMemoryGeneratedFiles()); | ||
RuntimeHints runtimeHints = generator.getRuntimeHints(); | ||
|
||
generator.processAheadOfTime(testClasses.stream().sorted(comparing(Class::getName))); | ||
|
||
// @Reflective | ||
assertReflectionRegistered(runtimeHints, DeclarativeRuntimeHintsSpringJupiterTests.class); | ||
|
||
// @ImportRuntimeHints | ||
assertThat(resource().forResource("org/example/config/enigma.txt")).accepts(runtimeHints); | ||
assertThat(resource().forResource("org/example/config/level2/foo.txt")).accepts(runtimeHints); | ||
} | ||
|
||
private static void assertReflectionRegistered(RuntimeHints runtimeHints, Class<?> type) { | ||
assertThat(reflection().onType(type)) | ||
.as("Reflection hint for %s", type.getSimpleName()) | ||
.accepts(runtimeHints); | ||
} | ||
|
||
private static void assertReflectionRegistered(RuntimeHints runtimeHints, Class<?> type, MemberCategory memberCategory) { | ||
assertThat(reflection().onType(type).withMemberCategory(memberCategory)) | ||
.as("Reflection hint for %s with category %s", type.getSimpleName(), memberCategory) | ||
.accepts(runtimeHints); | ||
} | ||
|
||
} |
66 changes: 66 additions & 0 deletions
66
...ngframework/test/context/aot/samples/hints/DeclarativeRuntimeHintsSpringJupiterTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* 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.hints; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.springframework.aot.hint.RuntimeHints; | ||
import org.springframework.aot.hint.RuntimeHintsRegistrar; | ||
import org.springframework.aot.hint.annotation.Reflective; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.ImportRuntimeHints; | ||
import org.springframework.test.context.aot.samples.hints.DeclarativeRuntimeHintsSpringJupiterTests.DemoHints; | ||
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* @author Sam Brannen | ||
* @since 6.0 | ||
*/ | ||
@SpringJUnitConfig | ||
@Reflective | ||
@ImportRuntimeHints(DemoHints.class) | ||
public class DeclarativeRuntimeHintsSpringJupiterTests { | ||
|
||
@Test | ||
void test(@Autowired String foo) { | ||
assertThat(foo).isEqualTo("bar"); | ||
} | ||
|
||
|
||
@Configuration(proxyBeanMethods = false) | ||
static class Config { | ||
|
||
@Bean | ||
String foo() { | ||
return "bar"; | ||
} | ||
} | ||
|
||
static class DemoHints implements RuntimeHintsRegistrar { | ||
|
||
@Override | ||
public void registerHints(RuntimeHints hints, ClassLoader classLoader) { | ||
hints.resources().registerPattern("org/example/config/*.txt"); | ||
} | ||
|
||
} | ||
|
||
} |