如何清除两种单元测试方法之间的所有测试数据?

时间:2019-07-03 09:35:33

标签: java spring-boot flowable

我想为Flowable编写一些单元测试,但是不同的方法可能会有数据冲突。如何清除两种测试方法之间的测试数据?

我尝试了注释@DirtiesContext,但没有用。

@RunWith(SpringRunner.class)
@SpringBootTest
@AutoConfigureMockMvc
@ActiveProfiles("test")
@Import(TestConfig.class)
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
public class FlowableTest {
    @Autowired
    private ProcessEngine processEngine;

    @Test
    public void test() {
        IdentityService identityService = processEngine.getIdentityService();
        Group defaultGroup = identityService.newGroup("default");
        defaultGroup.setName("233333");
        identityService.saveGroup(defaultGroup);
    }

    @Test
    public void test2() {
        IdentityService identityService = processEngine.getIdentityService();
        Group defaultGroup = identityService.newGroup("default");
        defaultGroup.setName("233333");
        identityService.saveGroup(defaultGroup);
        // do some thing
    }
}

这是错误消息。

Caused by: org.h2.jdbc.JdbcSQLIntegrityConstraintViolationException: Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6B ON PUBLIC.ACT_ID_GROUP(ID_) VALUES 1"; SQL statement:
insert into ACT_ID_GROUP (ID_, REV_, NAME_, TYPE_)
    values (
      ?,
      1, 
      ?,
      ?
    ) [23505-199]

然后我想在每种方法之前手动创建表,我发现了“ flowable.h2.create.history.sql”和“ flowable.h2.create.engine.sql” 在“ flowable-engine-6.4.1.jar”中,但是当我重新运行这些单元测试时,我发现缺少很多列。

有没有简单的方法可以清除所有测试数据?

1 个答案:

答案 0 :(得分:0)

在Flowable代码库中完成测试的方式以及在其他项目中进行测试的方式是手动删除每个测试中的数据。其背后的原因是您知道要在测试中创建哪些数据。

例如,在您的特定测试中,您可以使用@After方法删除所有组。