Revise support for JSR-330 and Jakarta @Inject for autowiring test constructors
Closes gh-29851
This commit is contained in:
@@ -1,56 +0,0 @@
|
||||
/*
|
||||
* Copyright 2002-2023 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.junit.jupiter;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Common test implementation for integration tests in order to verify support
|
||||
* for {@link jakarta.inject.Inject} and {@link javax.inject.Inject}.
|
||||
*
|
||||
* @author Florian Lehmann
|
||||
* @since 6.0.5
|
||||
*/
|
||||
@SpringJUnitConfig
|
||||
public abstract class InjectAnnotationIntegrationTests {
|
||||
|
||||
private final String foo;
|
||||
|
||||
public InjectAnnotationIntegrationTests(String foo) {
|
||||
this.foo = foo;
|
||||
}
|
||||
|
||||
@Test
|
||||
public void beanInjected() {
|
||||
assertThat(this.foo).isEqualTo("foo");
|
||||
}
|
||||
|
||||
@Configuration
|
||||
static class Config {
|
||||
|
||||
@Bean
|
||||
String foo() {
|
||||
return "foo";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
/*
|
||||
* Copyright 2002-2023 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.junit.jupiter;
|
||||
|
||||
import jakarta.inject.Inject;
|
||||
|
||||
/**
|
||||
* Integration tests which verify support for {@link jakarta.inject.Inject}.
|
||||
*
|
||||
* @author Florian Lehmann
|
||||
* @since 6.0.5
|
||||
*/
|
||||
@SpringJUnitConfig
|
||||
public class JakartaInjectAnnotationIntegrationTests extends InjectAnnotationIntegrationTests {
|
||||
|
||||
@Inject
|
||||
public JakartaInjectAnnotationIntegrationTests(String foo) {
|
||||
super(foo);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
/*
|
||||
* Copyright 2002-2023 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.junit.jupiter;
|
||||
|
||||
import javax.inject.Inject;
|
||||
|
||||
/**
|
||||
* Integration tests which verify support for {@link javax.inject.Inject}.
|
||||
*
|
||||
* @author Florian Lehmann
|
||||
* @since 6.0.5
|
||||
*/
|
||||
@SpringJUnitConfig
|
||||
public class JavaxInjectAnnotationIntegrationTests extends InjectAnnotationIntegrationTests {
|
||||
|
||||
@Inject
|
||||
public JavaxInjectAnnotationIntegrationTests(String foo) {
|
||||
super(foo);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2022 the original author or authors.
|
||||
* Copyright 2002-2023 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.
|
||||
@@ -16,6 +16,7 @@
|
||||
|
||||
package org.springframework.test.context.junit.jupiter;
|
||||
|
||||
import org.junit.jupiter.api.Nested;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@@ -28,52 +29,80 @@ import org.springframework.test.context.junit.jupiter.comics.Person;
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Integration tests which demonstrate support for {@link Autowired @Autowired}
|
||||
* test class constructors with the Spring TestContext Framework and JUnit Jupiter.
|
||||
* Integration tests which demonstrate support for <em>autowired</em> test class
|
||||
* constructors with the Spring TestContext Framework and JUnit Jupiter.
|
||||
*
|
||||
* @author Sam Brannen
|
||||
* @since 5.0
|
||||
* @see SpringExtension
|
||||
* @see SpringJUnitJupiterConstructorInjectionTests
|
||||
*/
|
||||
@SpringJUnitConfig(TestConfig.class)
|
||||
@TestPropertySource(properties = "enigma = 42")
|
||||
class SpringJUnitJupiterAutowiredConstructorInjectionTests {
|
||||
|
||||
final ApplicationContext applicationContext;
|
||||
final Person dilbert;
|
||||
final Dog dog;
|
||||
final Integer enigma;
|
||||
@Nested
|
||||
class SpringAutowiredTests extends BaseClass {
|
||||
|
||||
@Autowired
|
||||
SpringJUnitJupiterAutowiredConstructorInjectionTests(ApplicationContext applicationContext, Person dilbert, Dog dog,
|
||||
@Value("${enigma}") Integer enigma) {
|
||||
|
||||
this.applicationContext = applicationContext;
|
||||
this.dilbert = dilbert;
|
||||
this.dog = dog;
|
||||
this.enigma = enigma;
|
||||
@Autowired
|
||||
SpringAutowiredTests(ApplicationContext context, Person dilbert, Dog dog, @Value("${enigma}") Integer enigma) {
|
||||
super(context, dilbert, dog, enigma);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void applicationContextInjected() {
|
||||
assertThat(applicationContext).as("ApplicationContext should have been injected by Spring").isNotNull();
|
||||
assertThat(applicationContext.getBean("dilbert", Person.class)).isEqualTo(this.dilbert);
|
||||
@Nested
|
||||
class JakartaInjectTests extends BaseClass {
|
||||
|
||||
@jakarta.inject.Inject
|
||||
JakartaInjectTests(ApplicationContext context, Person dilbert, Dog dog, @Value("${enigma}") Integer enigma) {
|
||||
super(context, dilbert, dog, enigma);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void beansInjected() {
|
||||
assertThat(this.dilbert).as("Dilbert should have been @Autowired by Spring").isNotNull();
|
||||
assertThat(this.dilbert.getName()).as("Person's name").isEqualTo("Dilbert");
|
||||
@Nested
|
||||
class JavaxInjectTests extends BaseClass {
|
||||
|
||||
assertThat(this.dog).as("Dogbert should have been @Autowired by Spring").isNotNull();
|
||||
assertThat(this.dog.getName()).as("Dog's name").isEqualTo("Dogbert");
|
||||
@javax.inject.Inject
|
||||
JavaxInjectTests(ApplicationContext context, Person dilbert, Dog dog, @Value("${enigma}") Integer enigma) {
|
||||
super(context, dilbert, dog, enigma);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void propertyPlaceholderInjected() {
|
||||
assertThat(this.enigma).as("Enigma should have been injected via @Value by Spring").isNotNull();
|
||||
assertThat(this.enigma).as("enigma").isEqualTo(42);
|
||||
|
||||
@SpringJUnitConfig(TestConfig.class)
|
||||
@TestPropertySource(properties = "enigma = 42")
|
||||
private static abstract class BaseClass {
|
||||
|
||||
final ApplicationContext context;
|
||||
final Person dilbert;
|
||||
final Dog dog;
|
||||
final Integer enigma;
|
||||
|
||||
BaseClass(ApplicationContext context, Person dilbert, Dog dog, @Value("${enigma}") Integer enigma) {
|
||||
this.context = context;
|
||||
this.dilbert = dilbert;
|
||||
this.dog = dog;
|
||||
this.enigma = enigma;
|
||||
}
|
||||
|
||||
@Test
|
||||
void applicationContextInjected() {
|
||||
assertThat(context).as("ApplicationContext should have been injected").isNotNull();
|
||||
assertThat(context.getBean("dilbert", Person.class)).isEqualTo(this.dilbert);
|
||||
}
|
||||
|
||||
@Test
|
||||
void beansInjected() {
|
||||
assertThat(this.dilbert).as("Dilbert should have been injected").isNotNull();
|
||||
assertThat(this.dilbert.getName()).as("Person's name").isEqualTo("Dilbert");
|
||||
|
||||
assertThat(this.dog).as("Dogbert should have been injected").isNotNull();
|
||||
assertThat(this.dog.getName()).as("Dog's name").isEqualTo("Dogbert");
|
||||
}
|
||||
|
||||
@Test
|
||||
void propertyPlaceholderInjected() {
|
||||
assertThat(this.enigma).as("Enigma should have been injected via @Value").isEqualTo(42);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user