我有一个Spring-Boot应用程序,其中在应用程序中设置了默认属性。属性文件在类路径(src/main/resources/application.properties)。
我想用测试中声明的属性覆盖JUnit测试中的一些默认设置。属性文件(src/test/resources/test. Properties)
我通常为我的Junit测试有一个专用的配置类,例如。
package foo.bar.test;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
@Configuration
@Import(CoreConfig.class)
@EnableAutoConfiguration
public class TestConfig {
}
我最初认为在TestConfig类中使用@PropertySource("classpath:test.properties")可以达到目的,但是这些属性不会覆盖应用程序。属性设置(参见Spring-Boot参考文档- 23。外部化配置)。
然后我尝试使用-Dspring.config.location=classpath:test。属性。这是成功的——但是我不想为每次测试执行都设置这个系统属性。因此我把它放在代码中
@Configuration
@Import(CoreConfig.class)
@EnableAutoConfiguration
public class TestConfig {
static {
System.setProperty("spring.config.location", "classpath:test.properties");
}
}
不幸的是,这次也没有成功。
必须有一个简单的解决方案如何覆盖应用程序。使用test在JUnit测试中设置属性。我一定是忽略了这些特性
这对我来说很管用:
我的测试:
@SpringBootTest
@TestPropertySource(properties = "spring.config.additional-location=classpath:application-test.yml")
class EngineApplicationTests {
@Test
void contextLoads() {
}
}
我的版本:
plugins {
id 'org.springframework.boot' version '2.7.1'
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
id 'java'
}
group = 'com.kubemachine'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2021.0.3")
}
我的gradle文件中唯一的测试依赖项:
testImplementation 'org.springframework.boot:spring-boot-starter-test'
我的身材里也有这个。gradle文件:
test {
useJUnitPlatform()
}
和两个属性文件:
src / main /资源/ application.yml
src /测试/资源/ application-test.yml
在这个设置中,应用程序测试。yml绝对只覆盖application.yml中的值。我不需要重复应用程序中的属性值。在application-test.yml。应用程序测试。Yml确实扩展了application.yml。
这对我来说很管用:
我的测试:
@SpringBootTest
@TestPropertySource(properties = "spring.config.additional-location=classpath:application-test.yml")
class EngineApplicationTests {
@Test
void contextLoads() {
}
}
我的版本:
plugins {
id 'org.springframework.boot' version '2.7.1'
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
id 'java'
}
group = 'com.kubemachine'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2021.0.3")
}
我的gradle文件中唯一的测试依赖项:
testImplementation 'org.springframework.boot:spring-boot-starter-test'
我的身材里也有这个。gradle文件:
test {
useJUnitPlatform()
}
和两个属性文件:
src / main /资源/ application.yml
src /测试/资源/ application-test.yml
在这个设置中,应用程序测试。yml绝对只覆盖application.yml中的值。我不需要重复应用程序中的属性值。在application-test.yml。应用程序测试。Yml确实扩展了application.yml。
Spring Boot自动加载src/test/resources/application。属性,如果使用以下注释
@RunWith(SpringRunner.class)
@SpringBootTest
重命名test。应用程序的属性。属性来利用自动配置。
如果您只需要加载属性文件(到环境中),您也可以使用下面的方法,如下所述
@RunWith(SpringRunner.class)
@ContextConfiguration(initializers = ConfigFileApplicationContextInitializer.class)
[更新:覆盖测试的某些属性]
添加src /主/资源/ application-test.properties。
用@ActiveProfiles(“test”)注释测试类。
这将加载应用程序。属性,然后应用程序测试。根据这里定义的规则,将属性放入测试用例的应用程序上下文中。
演示- https://github.com/mohnish82/so-spring-boot-testprops