43.3.10 自动配置的Data JPA测试

你可以使用@DataJpaTest测试JPA应用。它默认配置一个内存型的内嵌数据库,扫描@Entity类,并配置Spring Data JPA仓库。其他常规的@Component beans不会加载进ApplicationContext

Data JPA测试类是事务型的,默认在每个测试结束时回滚,具体查看Spring参考文档的相关章节。如果这不是你想要的结果,你可以按如下方式对一个测试或是整个类禁用事务管理:

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

@RunWith(SpringRunner.class)
@DataJpaTest
@Transactional(propagation = Propagation.NOT_SUPPORTED)
public class ExampleNonTransactionalTests {

}

Data JPA测试类可能会注入一个专为测试设计的TestEntityManagerbean以替换标准的JPA EntityManager。如果想在@DataJpaTests外使用TestEntityManager,你可以使用@AutoConfigureTestEntityManager注解。如果需要,JdbcTemplate也是可用的。下面的例子展示了使用中的@DataJpaTest注解:

import org.junit.*;
import org.junit.runner.*;
import org.springframework.boot.test.autoconfigure.orm.jpa.*;

import static org.assertj.core.api.Assertions.*;

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

    @Autowired
    private TestEntityManager entityManager;

    @Autowired
    private UserRepository repository;

    @Test
    public void testExample() throws Exception {
        this.entityManager.persist(new User("sboot", "1234"));
        User user = this.repository.findByUsername("sboot");
        assertThat(user.getUsername()).isEqualTo("sboot");
        assertThat(user.getVin()).isEqualTo("1234");
    }

}

对于测试来说,内存型的内嵌数据库通常是足够的,因为它们既快又不需要任何安装。如果比较喜欢在真实数据库上运行测试,你可以使用@AutoConfigureTestDatabase注解。如下所示:

@RunWith(SpringRunner.class)
@DataJpaTest
@AutoConfigureTestDatabase(replace=Replace.NONE)
public class ExampleRepositoryTests {

    // ...

}

附录中可以查看@DataJpaTest开启的自动配置列表。

最后更新于