spring boot测试中的事务未回滚

时间:2017-10-13 12:21:59

标签: spring postgresql spring-boot junit spring-jdbc

我的UserController有一个集成测试类。以下类的内容是:

// imports...

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@RunWith(SpringRunner.class)
@Transactional
@Rollback
public class UserControllerTests {

    private static final String ENDPOINT = "/v1/users";

    @Autowired
    private TestRestTemplate restTemplate;

    @Autowired
    private ApplicationProperties applicationProperties;

    @Test
    public void test_user_create() {
        String token = login("test", "test");
        HttpEntity<UserRequest> request = createRequest(token, "admin", "admin");
        ResponseEntity<User> response = restTemplate.exchange(ENDPOINT, HttpMethod.POST, request, User.class);

        assertEquals(HttpStatus.CREATED, response.getStatusCode());
    }

    private HttpEntity createRequest(String token) {
        HttpHeaders headers = new HttpHeaders();
        headers.setAccept(Collections.singletonList(MediaType.APPLICATION_JSON));
        headers.set("Authorization", String.format("Bearer %s", token));
        return new HttpEntity(headers);
    }

    private HttpEntity<UserRequest> createRequest(String token, String username, String password) {
        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.APPLICATION_JSON);
        headers.setAccept(Collections.singletonList(MediaType.APPLICATION_JSON));
        headers.set("Authorization", String.format("Bearer %s", token));
        return new HttpEntity<>(new UserRequest(username, password), headers);
    }

    private String login(String username, String password) {
        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
        headers.setAccept(Collections.singletonList(MediaType.APPLICATION_JSON));
        headers.set("Authorization", String.format("Basic %s", Base64.getEncoder().encodeToString(String.format("%s:%s", applicationProperties.getAuth().getClientId(), applicationProperties.getAuth().getClientSecret()).getBytes())));
        MultiValueMap<String, String> body = new LinkedMultiValueMap<>();
        body.add("grant_type", "password");
        body.add("username", username);
        body.add("password", password);
        HttpEntity<MultiValueMap<String, String>> request = new HttpEntity<>(body, headers);
        ResponseEntity<OAuth2AccessToken> response = restTemplate.exchange("/oauth/token", HttpMethod.POST, request, OAuth2AccessToken.class);
        return response.getBody().getValue();
    }
}

当我执行此测试类两次时,第二次失败,因为数据库中已存在用户名为admin的用户(唯一约束)。

我正在测试postgres数据库,该数据库与我的生产环境中的数据库相同。该应用程序使用Spring的jdbcTemplate进行数据库操作。

我的日志记录产生了以下日志:

2017-10-13 14:11:31.407  INFO [iam-service,,,] 63566 --- [           main] o.s.t.c.transaction.TransactionContext   : Began transaction (1) for test context 
...
2017-10-13 14:11:32.050  INFO [iam-service,,,] 63566 --- [           main] o.s.t.c.transaction.TransactionContext   : Rolled back transaction for test context 

我的申请流程为<request> --> <controller> --> <service with jdbcTemplate>,服务是注释@Transactional

我真的很困惑。

找到的一个解决方案对我不起作用,它为测试配置创建了一个PlatformTransactionManager bean:

@Bean
public PlatformTransactionManager transactionManager(DataSource dataSource) {
    return new DataSourceTransactionManager(dataSource);
}

1 个答案:

答案 0 :(得分:8)

根据官方Spring Boot documentation db事务回滚,当您直接从&#34; web层&#34;:

应用它时,不支持回滚
  

如果您的测试是@Transactional,它将回滚该事务   默认情况下每个测试方法的结束。但是,正如使用它   隐式安排RANDOM_PORTDEFINED_PORT   提供真正的servlet环境,HTTP客户端和服务器将运行   在单独的线程中,因此单独的事务。任何交易   在这种情况下,在服务器上启动的服务器不会回滚。

我建议您考虑以下选项:

  • 在单元测试的情况下,对web controller图层和database图层使用单独的测试

  • 在&amp;之前创建/恢复表格执行集成测试后,在测试方法执行后删除/清除它们。当Db架构很大时,这种方法可能会产生很大的开销,但您可以根据需要有选择地清除/恢复数据。