mirror of
https://gitee.com/fit2cloud-feizhiyun/MeterSphere.git
synced 2024-11-29 10:37:53 +08:00
refactor(接口测试): 优化测试计划消费阻塞问题
This commit is contained in:
parent
7426aa5d3d
commit
fe5faf362c
@ -272,8 +272,23 @@ public class ApiExecutionQueueService {
|
||||
}
|
||||
|
||||
public void testPlanReportTestEnded(String testPlanReportId) {
|
||||
// 检查测试计划中其他队列是否结束
|
||||
kafkaTemplate.send(KafkaTopicConstants.TEST_PLAN_REPORT_TOPIC, testPlanReportId);
|
||||
ApiExecutionQueueExample executionQueueExample = new ApiExecutionQueueExample();
|
||||
executionQueueExample.createCriteria().andReportIdEqualTo(testPlanReportId);
|
||||
List<ApiExecutionQueue> queues = queueMapper.selectByExample(executionQueueExample);
|
||||
if (org.springframework.util.CollectionUtils.isEmpty(queues)) {
|
||||
LoggerUtil.info("测试计划执行结束开始发送通知:" + testPlanReportId);
|
||||
kafkaTemplate.send(KafkaTopicConstants.TEST_PLAN_REPORT_TOPIC, testPlanReportId);
|
||||
} else {
|
||||
List<String> ids = queues.stream().map(ApiExecutionQueue::getId).collect(Collectors.toList());
|
||||
ApiExecutionQueueDetailExample detailExample = new ApiExecutionQueueDetailExample();
|
||||
detailExample.createCriteria().andQueueIdIn(ids);
|
||||
long count = executionQueueDetailMapper.countByExample(detailExample);
|
||||
if (count == 0) {
|
||||
LoggerUtil.info("测试计划执行结束开始发送通知:" + testPlanReportId);
|
||||
// 检查测试计划中其他队列是否结束
|
||||
kafkaTemplate.send(KafkaTopicConstants.TEST_PLAN_REPORT_TOPIC, testPlanReportId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void queueNext(ResultDTO dto) {
|
||||
|
Loading…
Reference in New Issue
Block a user