JPA单元测试

使用@TestPropertySource注解并尝试加载多个配置文件时,Spring框架并不直接支持同时加载多个属性文件。locations属性的值应为一个或多个classpath路径,但每次只会应用其中一个配置文件。

如果你希望在单元测试中合并主配置文件(application.properties)和特定于测试的配置文件(application-test.properties),你需要将特定于测试的属性覆盖到主配置文件上。可以采用以下方法:

1、按需覆盖: 在application-test.properties中仅包含那些需要在测试环境下重写的属性。

2、顺序加载: 虽然不能直接加载两个文件,但是你可以通过文件名排序来确保特定环境的配置文件优先加载。例如,将测试环境的配置文件命名为application.properties.test,然后在@TestPropertySource中指定这个文件。

bash 复制代码
@TestPropertySource(locations = "classpath:application.properties.test")

3、使用 profiles: 利用Spring Boot的profiles功能,在application.properties中定义默认值,而在application-test.properties中定义测试环境下的特定值。然后在测试类上通过@ActiveProfiles("test")激活测试环境。

java 复制代码
@SpringBootTest
@ActiveProfiles("test")
public class Test {
    // ...
}

并在你的资源目录下创建application-test.properties文件,其中包含测试环境所需的配置项。

这样,当运行带有@ActiveProfiles("test")注解的测试时,Spring Boot会自动合并application.properties和application-test.properties中的内容,并且后者中的配置项将覆盖前者中的同名配置项。

举例

java 复制代码
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
@TestPropertySource(locations = "classpath:application-dev.properties")
@Slf4j
@ActiveProfiles("dev")
public class Test {
    @Autowired
    private DataServris dataServris ;

    @BeforeEach
    public void setUp() {
    }
    @Test
    public void test() {
        String data="1233";
      Test test = dataServris.get(data);
        log.info("test ->{}",test );
    }

}
相关推荐
niuniu_6662 天前
Selenium 性能测试指南
selenium·测试工具·单元测试·测试·安全性测试
互联网杂货铺2 天前
黑盒测试、白盒测试、集成测试和系统测试的区别与联系
自动化测试·软件测试·python·功能测试·测试工具·单元测试·集成测试
佟格湾3 天前
几种常见的.NET单元测试模拟框架介绍
单元测试
niuniu_6663 天前
安全性测试(Security Testing)
测试工具·单元测试·appium·测试·安全性测试
凭君语未可3 天前
详解Maven的主要生命周期
java·log4j·maven
niuniu_6663 天前
selenium应用测试场景
python·selenium·测试工具·单元测试·测试
噔噔噔噔@3 天前
软件测试对于整个行业的重要性及必要性
python·单元测试·压力测试
俞凡4 天前
如何编写更好的单元测试
单元测试·测试
WIN赢4 天前
单元测试的编写
单元测试·log4j
测试老哥5 天前
什么是集成测试?集成的方法有哪些?
自动化测试·软件测试·python·测试工具·职场和发展·单元测试·集成测试