使用@DataJpaTest设置自定义方案

时间:2016-12-27 10:55:31

标签: java spring-boot junit h2 jpa-2.1

我想测试一个带有Spring Boot的存储库,并希望包含TestEntityManager以检查存储库是否真的应该做它应该做的事情。

这是JUnit测试:

@RunWith(SpringRunner.class)
@DataJpaTest
public class MyRepositoryTest {

    @Autowired
    private TestEntityManager entityManager;

    @Autowired
    private MyRepository repository;

    ...

对于其他JUnit测试,我有一个application-junit.properties文件,用于设置包含一些表,索引,序列和约束的模式:

spring.datasource.url=jdbc:h2:mem:testdb;Mode=Oracle;INIT=create schema if not exists testdb\\;SET SCHEMA testdb\\;runscript from 'classpath:create.h2.sql';
spring.datasource.username=sa
spring.datasource.password=
spring.datasource.platform=h2
spring.jpa.hibernate.ddl-auto=none
spring.datasource.continue-on-error=true

#datasource config
spring.database.driver-class-name=org.h2.Driver
spring.database.jndi-name=
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.jpa.show-sql=true

现在,使用DataJpaTest似乎没有使用此配置。即使我添加@ActiveProfiles(" junit")。

如何让JUnit测试使用我的create.h2.sql文件来设置表?

提前致谢, 尼娜

1 个答案:

答案 0 :(得分:14)

这不是因为@DataJpaTest取代your configured datasource by an in-memory data source

如果您不想要,junit特殊配置文件就是这种情况,您需要指示Spring Boot不要覆盖您配置的DataSource。我在上面给出的链接中有一个示例。基本上,您的测试应该如下所示:

@RunWith(SpringRunner.class)
@DataJpaTest
@ActiveProfiles("junit")
@AutoConfigureTestDatabase(replace=Replace.NONE)
public class MyRepositoryTest {
   ...
}

你应该考虑创建一个元注释来分享最后两个(三个?)注释,这样你就不必一遍又一遍地重复这个注释。