perf(接口测试): 优化接口测试回收站批量删除方法

This commit is contained in:
guoyuqi 2022-10-15 21:43:46 +08:00 committed by fit2-zhao
parent 26573638f2
commit 6b6cf1a86a
1 changed files with 19 additions and 16 deletions

View File

@ -1961,15 +1961,19 @@ public class ApiDefinitionService {
if (CollectionUtils.isEmpty(ids)) {
return;
}
this.deleteApiByIds(ids);
}
ids.forEach(id -> {
// 把所有版本的api移到回收站
ApiDefinitionWithBLOBs api = apiDefinitionMapper.selectByPrimaryKey(id);
if (api == null) {
private void deleteApiByIds(List<String> ids) {
ApiDefinitionExample example = new ApiDefinitionExample();
example.createCriteria().andIdIn(ids);
List<ApiDefinition> apiDefinitionList = apiDefinitionMapper.selectByExample(example);
if (CollectionUtils.isEmpty(apiDefinitionList)){
return;
}
ApiDefinitionExample example = new ApiDefinitionExample();
example.createCriteria().andRefIdEqualTo(api.getRefId());
List<String> refIds = apiDefinitionList.stream().map(ApiDefinition::getRefId).collect(Collectors.toList());
example = new ApiDefinitionExample();
example.createCriteria().andRefIdIn(refIds);
List<ApiDefinition> apiDefinitions = apiDefinitionMapper.selectByExample(example);
List<String> apiIds = apiDefinitions.stream().map(ApiDefinition::getId).collect(Collectors.toList());
//删除ApiApiCase中resourceID被删除了的执行记录
@ -1977,7 +1981,6 @@ public class ApiDefinitionService {
apiCaseExecutionInfoService.deleteByApiDefeinitionIdList(apiIds);
apiTestCaseService.deleteBatchByDefinitionId(apiIds);
apiDefinitionMapper.deleteByExample(example);
});
}
public ApiDefinitionExample getBatchExample(ApiBatchRequest request) {