在 Spring Boot 应用程序中运行 JUnit 单元测试,而无需提供数据源



我正在尝试构建一个Spring Boot应用程序,试图坚持测试驱动开发。我的问题是我的项目中包含了 Spring Boot JPA,但实际上还没有设置数据源。在添加依赖项之前,我能够成功运行我的单元测试。

现在我已经添加了依赖项,即使尝试执行我的单元测试也会失败,因为它无法初始化 Spring 数据的数据源。

不过,我对JUnit,Spring Boot和Mockito相当陌生。我希望能够在没有实际数据源的情况下运行我的单元测试,而是模拟我的所有存储库。

正确的方法是什么?

第一步

。添加到pom.xml某种内存数据库。例如h2

<dependency>
  <groupId>com.h2database</groupId>
  <artifactId>h2</artifactId>
  <version>1.4.191</version>
  <scope>test</scope>
</dependency>

然后在位于 ( src/test/resources 的测试application.properties中配置测试数据源:

spring.jpa.generate-ddl=false
spring.jpa.hibernate.ddl-auto=none
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.H2Dialect
spring.datasource.platform=h2
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:test;MODE=MySQL;IGNORECASE=TRUE
spring.datasource.username=SA
spring.datasource.password=

这只是使用mysql支持模式在内存中运行h2的示例。但是您可以使用其他模式(sql 支持),甚至根本不设置此参数。

如果你定义了一些常用于测试的SQL引擎(例如HSQL,Derby或H2),Spring Boot应该将其识别为测试依赖项,并在其上配置数据源Bean。为此,只需使用测试范围定义这样的引擎:

<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>
    <scope>test</scope>
</dependency>

当您引入生产数据源(例如Postgres或MySQL)时,会出现问题。在这种状态下,您需要

  • 使用@Primary注释显式配置测试数据源
  • 或提供测试配置文件(例如 src/test/resources/application.properties ),其中将配置 H2。

相关内容

  • 没有找到相关文章

最新更新