feat(接口测试): 失败重跑接口
--task=1016918 --user=陈建星 失败重跑 https://www.tapd.cn/55049933/s/1609836
This commit is contained in:
parent
60da55b95e
commit
383ea83848
|
@ -0,0 +1,26 @@
|
||||||
|
package io.metersphere.api.service;
|
||||||
|
|
||||||
|
import io.metersphere.sdk.constants.ExecTaskType;
|
||||||
|
import io.metersphere.system.domain.ExecTask;
|
||||||
|
import io.metersphere.system.invoker.TaskRerunServiceInvoker;
|
||||||
|
import io.metersphere.system.service.TaskRerunService;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: jianxing
|
||||||
|
* @CreateTime: 2024-02-06 20:47
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public class ApiCaseRerunService implements TaskRerunService {
|
||||||
|
|
||||||
|
public ApiCaseRerunService() {
|
||||||
|
TaskRerunServiceInvoker.register(ExecTaskType.API_CASE, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void rerun(ExecTask execTask) {
|
||||||
|
// todo
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
package io.metersphere.api.service;
|
||||||
|
|
||||||
|
import io.metersphere.sdk.constants.ExecTaskType;
|
||||||
|
import io.metersphere.system.domain.ExecTask;
|
||||||
|
import io.metersphere.system.invoker.TaskRerunServiceInvoker;
|
||||||
|
import io.metersphere.system.service.TaskRerunService;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: jianxing
|
||||||
|
* @CreateTime: 2024-02-06 20:47
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public class ApiScenarioRerunService implements TaskRerunService {
|
||||||
|
|
||||||
|
public ApiScenarioRerunService() {
|
||||||
|
TaskRerunServiceInvoker.register(ExecTaskType.API_SCENARIO, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void rerun(ExecTask execTask) {
|
||||||
|
// todo
|
||||||
|
}
|
||||||
|
}
|
|
@ -97,6 +97,13 @@ public class ProjectTaskHubController {
|
||||||
baseTaskHubService.stopTask(id, SessionUtils.getUserId(), null, SessionUtils.getCurrentProjectId());
|
baseTaskHubService.stopTask(id, SessionUtils.getUserId(), null, SessionUtils.getCurrentProjectId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@GetMapping("/exec-task/rerun/{id}")
|
||||||
|
@Operation(summary = "项目-任务中心-用例执行任务-重跑任务")
|
||||||
|
@Log(type = OperationLogType.RERUN, expression = "#msClass.projectRerunLog(#id)", msClass = BaseTaskHubLogService.class)
|
||||||
|
@RequiresPermissions(PermissionConstants.PROJECT_CASE_TASK_CENTER_EXEC_STOP)
|
||||||
|
public void rerunTask(@PathVariable String id) {
|
||||||
|
baseTaskHubService.rerunTask(id, SessionUtils.getUserId(), null, SessionUtils.getCurrentProjectId());
|
||||||
|
}
|
||||||
|
|
||||||
@PostMapping("/exec-task/batch-stop")
|
@PostMapping("/exec-task/batch-stop")
|
||||||
@Operation(summary = "项目-任务中心-用例执行任务-批量停止任务")
|
@Operation(summary = "项目-任务中心-用例执行任务-批量停止任务")
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package io.metersphere.project.controller;
|
package io.metersphere.project.controller;
|
||||||
|
|
||||||
import io.metersphere.sdk.constants.ExecTaskType;
|
import io.metersphere.sdk.constants.ExecTaskType;
|
||||||
|
import io.metersphere.sdk.constants.PermissionConstants;
|
||||||
import io.metersphere.sdk.util.JSON;
|
import io.metersphere.sdk.util.JSON;
|
||||||
import io.metersphere.system.base.BaseTest;
|
import io.metersphere.system.base.BaseTest;
|
||||||
import io.metersphere.system.controller.handler.ResultHolder;
|
import io.metersphere.system.controller.handler.ResultHolder;
|
||||||
|
@ -12,6 +13,7 @@ import io.metersphere.system.dto.table.TableBatchProcessDTO;
|
||||||
import io.metersphere.system.dto.taskhub.request.ScheduleRequest;
|
import io.metersphere.system.dto.taskhub.request.ScheduleRequest;
|
||||||
import io.metersphere.system.dto.taskhub.request.TaskHubItemBatchRequest;
|
import io.metersphere.system.dto.taskhub.request.TaskHubItemBatchRequest;
|
||||||
import io.metersphere.system.dto.taskhub.request.TaskHubItemRequest;
|
import io.metersphere.system.dto.taskhub.request.TaskHubItemRequest;
|
||||||
|
import io.metersphere.system.log.constants.OperationLogType;
|
||||||
import io.metersphere.system.mapper.ExecTaskItemMapper;
|
import io.metersphere.system.mapper.ExecTaskItemMapper;
|
||||||
import jakarta.annotation.Resource;
|
import jakarta.annotation.Resource;
|
||||||
import org.junit.jupiter.api.Assertions;
|
import org.junit.jupiter.api.Assertions;
|
||||||
|
@ -44,6 +46,7 @@ public class ProjectTaskHubControllerTests extends BaseTest {
|
||||||
public static final String PROJECT_STATISTICS = "/project/task-center/exec-task/statistics";
|
public static final String PROJECT_STATISTICS = "/project/task-center/exec-task/statistics";
|
||||||
public static final String PROJECT_RESOURCE_POOL_OPTIONS = "/project/task-center/resource-pool/options";
|
public static final String PROJECT_RESOURCE_POOL_OPTIONS = "/project/task-center/resource-pool/options";
|
||||||
public static final String PROJECT_TASK_STOP = "/project/task-center/exec-task/stop/";
|
public static final String PROJECT_TASK_STOP = "/project/task-center/exec-task/stop/";
|
||||||
|
public static final String PROJECT_TASK_RERUN = "/project/task-center/exec-task/rerun/{0}";
|
||||||
public static final String PROJECT_TASK_DELETE = "/project/task-center/exec-task/delete/";
|
public static final String PROJECT_TASK_DELETE = "/project/task-center/exec-task/delete/";
|
||||||
public static final String PROJECT_TASK_BATCH_STOP = "/project/task-center/exec-task/batch-stop";
|
public static final String PROJECT_TASK_BATCH_STOP = "/project/task-center/exec-task/batch-stop";
|
||||||
public static final String PROJECT_TASK_ITEM_ORDER = "/project/task-center/exec-task/item/order";
|
public static final String PROJECT_TASK_ITEM_ORDER = "/project/task-center/exec-task/item/order";
|
||||||
|
@ -151,6 +154,20 @@ public class ProjectTaskHubControllerTests extends BaseTest {
|
||||||
this.requestGet(PROJECT_TASK_STOP + "pro_2");
|
this.requestGet(PROJECT_TASK_STOP + "pro_2");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目执行任务停止
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
@Order(6)
|
||||||
|
public void projectTaskRerun() throws Exception {
|
||||||
|
String taskId = "pro_1";
|
||||||
|
this.requestGet(PROJECT_TASK_RERUN, taskId);
|
||||||
|
// @@校验权限
|
||||||
|
requestGetPermissionTest(PermissionConstants.PROJECT_CASE_TASK_CENTER_EXEC_STOP, PROJECT_TASK_RERUN, taskId);
|
||||||
|
// @@校验日志
|
||||||
|
checkLog(taskId, OperationLogType.RERUN);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 系统执行任务停止
|
* 系统执行任务停止
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -107,6 +107,15 @@ public class OrganizationTaskHubController {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@GetMapping("/exec-task/rerun/{id}")
|
||||||
|
@Operation(summary = "组织-任务中心-用例执行任务-重跑任务")
|
||||||
|
@Log(type = OperationLogType.RERUN, expression = "#msClass.orgRerunLog(#id)", msClass = BaseTaskHubLogService.class)
|
||||||
|
@RequiresPermissions(PermissionConstants.ORGANIZATION_CASE_TASK_CENTER_EXEC_STOP)
|
||||||
|
public void rerunTask(@PathVariable String id) {
|
||||||
|
baseTaskHubService.rerunTask(id, SessionUtils.getUserId(), SessionUtils.getCurrentOrganizationId(), null);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@PostMapping("/exec-task/batch-stop")
|
@PostMapping("/exec-task/batch-stop")
|
||||||
@Operation(summary = "组织-任务中心-用例执行任务-批量停止任务")
|
@Operation(summary = "组织-任务中心-用例执行任务-批量停止任务")
|
||||||
@RequiresPermissions(PermissionConstants.ORGANIZATION_CASE_TASK_CENTER_EXEC_STOP)
|
@RequiresPermissions(PermissionConstants.ORGANIZATION_CASE_TASK_CENTER_EXEC_STOP)
|
||||||
|
|
|
@ -108,6 +108,13 @@ public class SystemTaskHubController {
|
||||||
baseTaskHubService.stopTask(id, SessionUtils.getUserId(), null, null);
|
baseTaskHubService.stopTask(id, SessionUtils.getUserId(), null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@GetMapping("/exec-task/rerun/{id}")
|
||||||
|
@Operation(summary = "系统-任务中心-用例执行任务-重跑任务")
|
||||||
|
@Log(type = OperationLogType.RERUN, expression = "#msClass.systemRerunLog(#id)", msClass = BaseTaskHubLogService.class)
|
||||||
|
@RequiresPermissions(PermissionConstants.SYSTEM_CASE_TASK_CENTER_EXEC_STOP)
|
||||||
|
public void rerunTask(@PathVariable String id) {
|
||||||
|
baseTaskHubService.rerunTask(id, SessionUtils.getUserId(), null, null);
|
||||||
|
}
|
||||||
|
|
||||||
@PostMapping("/exec-task/batch-stop")
|
@PostMapping("/exec-task/batch-stop")
|
||||||
@Operation(summary = "系统-任务中心-用例执行任务-批量停止任务")
|
@Operation(summary = "系统-任务中心-用例执行任务-批量停止任务")
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
package io.metersphere.system.invoker;
|
||||||
|
|
||||||
|
import io.metersphere.sdk.constants.ExecTaskType;
|
||||||
|
import io.metersphere.sdk.util.EnumValidator;
|
||||||
|
import io.metersphere.system.domain.ExecTask;
|
||||||
|
import io.metersphere.system.service.TaskRerunService;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: jianxing
|
||||||
|
* @CreateTime: 2024-02-06 20:48
|
||||||
|
*/
|
||||||
|
public class TaskRerunServiceInvoker {
|
||||||
|
|
||||||
|
private static final Map<ExecTaskType, TaskRerunService> taskRerunServiceMap = new HashMap<>();
|
||||||
|
|
||||||
|
public static void register(ExecTaskType execTaskType, TaskRerunService taskRerunService) {
|
||||||
|
taskRerunServiceMap.put(execTaskType, taskRerunService);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static TaskRerunService getTaskRerunService(ExecTaskType execTaskType) {
|
||||||
|
return taskRerunServiceMap.get(execTaskType);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ExecTaskType getExecTaskType(String execTaskType) {
|
||||||
|
return EnumValidator.validateEnum(ExecTaskType.class, execTaskType);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void rerun(ExecTask execTask) {
|
||||||
|
TaskRerunService taskRerunService = getTaskRerunService(getExecTaskType(execTask.getTaskType()));
|
||||||
|
if (taskRerunService != null) {
|
||||||
|
taskRerunService.rerun(execTask);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -67,7 +67,7 @@ public class OperationLogAspect {
|
||||||
private final OperationLogType[] beforeMethodNames = new OperationLogType[]{OperationLogType.UPDATE, OperationLogType.DELETE, OperationLogType.COPY
|
private final OperationLogType[] beforeMethodNames = new OperationLogType[]{OperationLogType.UPDATE, OperationLogType.DELETE, OperationLogType.COPY
|
||||||
, OperationLogType.RECOVER, OperationLogType.DISASSOCIATE,OperationLogType.ASSOCIATE, OperationLogType.ARCHIVED};
|
, OperationLogType.RECOVER, OperationLogType.DISASSOCIATE,OperationLogType.ASSOCIATE, OperationLogType.ARCHIVED};
|
||||||
// 需要后置执行合并内容的
|
// 需要后置执行合并内容的
|
||||||
private final OperationLogType[] postMethodNames = new OperationLogType[]{OperationLogType.ADD, OperationLogType.UPDATE};
|
private final OperationLogType[] postMethodNames = new OperationLogType[]{OperationLogType.ADD, OperationLogType.UPDATE, OperationLogType.RERUN};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 定义切点 @Pointcut 在注解的位置切入代码
|
* 定义切点 @Pointcut 在注解的位置切入代码
|
||||||
|
|
|
@ -20,7 +20,8 @@ public enum OperationLogType {
|
||||||
ASSOCIATE,
|
ASSOCIATE,
|
||||||
QRCODE,
|
QRCODE,
|
||||||
ARCHIVED,
|
ARCHIVED,
|
||||||
STOP;
|
STOP,
|
||||||
|
RERUN;
|
||||||
|
|
||||||
public boolean contains(OperationLogType keyword) {
|
public boolean contains(OperationLogType keyword) {
|
||||||
return this.name().contains(keyword.name());
|
return this.name().contains(keyword.name());
|
||||||
|
|
|
@ -79,7 +79,6 @@ public class BaseTaskHubLogService {
|
||||||
return dto;
|
return dto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 项目停止任务日志
|
* 项目停止任务日志
|
||||||
*
|
*
|
||||||
|
@ -102,6 +101,71 @@ public class BaseTaskHubLogService {
|
||||||
return dto;
|
return dto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 系统重跑任务日志
|
||||||
|
*
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public LogDTO systemRerunLog(String id) {
|
||||||
|
ExecTask execTask = execTaskMapper.selectByPrimaryKey(id);
|
||||||
|
LogDTO dto = null;
|
||||||
|
if (execTask != null) {
|
||||||
|
dto = new LogDTO(
|
||||||
|
OperationLogConstants.SYSTEM,
|
||||||
|
OperationLogConstants.SYSTEM,
|
||||||
|
execTask.getId(),
|
||||||
|
null,
|
||||||
|
OperationLogType.RERUN.name(),
|
||||||
|
OperationLogModule.SETTING_SYSTEM_TASK_CENTER,
|
||||||
|
execTask.getTaskName());
|
||||||
|
}
|
||||||
|
return dto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组织重跑任务日志
|
||||||
|
*
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public LogDTO orgRerunLog(String id) {
|
||||||
|
ExecTask execTask = execTaskMapper.selectByPrimaryKey(id);
|
||||||
|
LogDTO dto = null;
|
||||||
|
if (execTask != null) {
|
||||||
|
dto = new LogDTO(
|
||||||
|
OperationLogConstants.ORGANIZATION,
|
||||||
|
null,
|
||||||
|
execTask.getId(),
|
||||||
|
null,
|
||||||
|
OperationLogType.RERUN.name(),
|
||||||
|
OperationLogModule.SETTING_ORGANIZATION_TASK_CENTER,
|
||||||
|
execTask.getTaskName());
|
||||||
|
}
|
||||||
|
return dto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目重跑任务日志
|
||||||
|
*
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public LogDTO projectRerunLog(String id) {
|
||||||
|
ExecTask execTask = execTaskMapper.selectByPrimaryKey(id);
|
||||||
|
LogDTO dto = null;
|
||||||
|
if (execTask != null) {
|
||||||
|
dto = new LogDTO(
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
execTask.getId(),
|
||||||
|
null,
|
||||||
|
OperationLogType.RERUN.name(),
|
||||||
|
OperationLogModule.PROJECT_MANAGEMENT_TASK_CENTER,
|
||||||
|
execTask.getTaskName());
|
||||||
|
}
|
||||||
|
return dto;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 系统删除任务日志
|
* 系统删除任务日志
|
||||||
|
|
|
@ -10,7 +10,6 @@ import io.metersphere.engine.MsHttpClient;
|
||||||
import io.metersphere.project.domain.Project;
|
import io.metersphere.project.domain.Project;
|
||||||
import io.metersphere.project.domain.ProjectExample;
|
import io.metersphere.project.domain.ProjectExample;
|
||||||
import io.metersphere.project.mapper.ProjectMapper;
|
import io.metersphere.project.mapper.ProjectMapper;
|
||||||
import io.metersphere.project.mapper.ProjectTestResourcePoolMapper;
|
|
||||||
import io.metersphere.sdk.constants.*;
|
import io.metersphere.sdk.constants.*;
|
||||||
import io.metersphere.sdk.exception.MSException;
|
import io.metersphere.sdk.exception.MSException;
|
||||||
import io.metersphere.sdk.util.*;
|
import io.metersphere.sdk.util.*;
|
||||||
|
@ -32,6 +31,7 @@ import io.metersphere.system.dto.taskhub.request.ScheduleRequest;
|
||||||
import io.metersphere.system.dto.taskhub.request.TaskHubItemBatchRequest;
|
import io.metersphere.system.dto.taskhub.request.TaskHubItemBatchRequest;
|
||||||
import io.metersphere.system.dto.taskhub.request.TaskHubItemRequest;
|
import io.metersphere.system.dto.taskhub.request.TaskHubItemRequest;
|
||||||
import io.metersphere.system.dto.taskhub.response.TaskStatisticsResponse;
|
import io.metersphere.system.dto.taskhub.response.TaskStatisticsResponse;
|
||||||
|
import io.metersphere.system.invoker.TaskRerunServiceInvoker;
|
||||||
import io.metersphere.system.log.constants.OperationLogType;
|
import io.metersphere.system.log.constants.OperationLogType;
|
||||||
import io.metersphere.system.log.dto.LogDTO;
|
import io.metersphere.system.log.dto.LogDTO;
|
||||||
import io.metersphere.system.log.service.OperationLogService;
|
import io.metersphere.system.log.service.OperationLogService;
|
||||||
|
@ -92,8 +92,6 @@ public class BaseTaskHubService {
|
||||||
@Resource
|
@Resource
|
||||||
private ExtResourcePoolMapper extResourcePoolMapper;
|
private ExtResourcePoolMapper extResourcePoolMapper;
|
||||||
@Resource
|
@Resource
|
||||||
private ProjectTestResourcePoolMapper projectTestResourcePoolMapper;
|
|
||||||
@Resource
|
|
||||||
private NodeResourcePoolService nodeResourcePoolService;
|
private NodeResourcePoolService nodeResourcePoolService;
|
||||||
@Resource
|
@Resource
|
||||||
private ExecTaskMapper execTaskMapper;
|
private ExecTaskMapper execTaskMapper;
|
||||||
|
@ -561,6 +559,21 @@ public class BaseTaskHubService {
|
||||||
handleStopTaskAsync(List.of(id));
|
handleStopTaskAsync(List.of(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void rerunTask(String id, String userId, String orgId, String projectId) {
|
||||||
|
ExecTask execTask = execTaskMapper.selectByPrimaryKey(id);
|
||||||
|
if (projectId != null && !StringUtils.equals(projectId, execTask.getProjectId())) {
|
||||||
|
throw new MSException(Translator.get("no_permission_to_resource"));
|
||||||
|
}
|
||||||
|
if (orgId != null && !StringUtils.equals(orgId, execTask.getOrganizationId())) {
|
||||||
|
throw new MSException(Translator.get("no_permission_to_resource"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新任务状态
|
||||||
|
extExecTaskMapper.batchUpdateTaskStatus(List.of(id), userId, orgId, projectId, ExecStatus.RERUNNING.name());
|
||||||
|
|
||||||
|
TaskRerunServiceInvoker.rerun(execTask);
|
||||||
|
}
|
||||||
|
|
||||||
private void handleStopTaskAsync(List<String> ids) {
|
private void handleStopTaskAsync(List<String> ids) {
|
||||||
Thread.startVirtualThread(() -> handleStopTask(ids));
|
Thread.startVirtualThread(() -> handleStopTask(ids));
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
package io.metersphere.system.service;
|
||||||
|
|
||||||
|
import io.metersphere.system.domain.ExecTask;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: jianxing
|
||||||
|
* @CreateTime: 2024-02-06 20:47
|
||||||
|
*/
|
||||||
|
public interface TaskRerunService {
|
||||||
|
/**
|
||||||
|
* 任务重跑
|
||||||
|
*/
|
||||||
|
void rerun(ExecTask execTask);
|
||||||
|
}
|
|
@ -1,6 +1,7 @@
|
||||||
package io.metersphere.system.controller;
|
package io.metersphere.system.controller;
|
||||||
|
|
||||||
import io.metersphere.sdk.constants.ExecTaskType;
|
import io.metersphere.sdk.constants.ExecTaskType;
|
||||||
|
import io.metersphere.sdk.constants.PermissionConstants;
|
||||||
import io.metersphere.sdk.util.JSON;
|
import io.metersphere.sdk.util.JSON;
|
||||||
import io.metersphere.system.base.BaseTest;
|
import io.metersphere.system.base.BaseTest;
|
||||||
import io.metersphere.system.controller.handler.ResultHolder;
|
import io.metersphere.system.controller.handler.ResultHolder;
|
||||||
|
@ -13,6 +14,7 @@ import io.metersphere.system.dto.table.TableBatchProcessDTO;
|
||||||
import io.metersphere.system.dto.taskhub.request.ScheduleRequest;
|
import io.metersphere.system.dto.taskhub.request.ScheduleRequest;
|
||||||
import io.metersphere.system.dto.taskhub.request.TaskHubItemBatchRequest;
|
import io.metersphere.system.dto.taskhub.request.TaskHubItemBatchRequest;
|
||||||
import io.metersphere.system.dto.taskhub.request.TaskHubItemRequest;
|
import io.metersphere.system.dto.taskhub.request.TaskHubItemRequest;
|
||||||
|
import io.metersphere.system.log.constants.OperationLogType;
|
||||||
import io.metersphere.system.mapper.ExecTaskItemMapper;
|
import io.metersphere.system.mapper.ExecTaskItemMapper;
|
||||||
import io.metersphere.system.mapper.TestResourcePoolMapper;
|
import io.metersphere.system.mapper.TestResourcePoolMapper;
|
||||||
import io.metersphere.system.service.BaseTaskHubService;
|
import io.metersphere.system.service.BaseTaskHubService;
|
||||||
|
@ -56,6 +58,7 @@ public class BaseTaskHubControllerTests extends BaseTest {
|
||||||
public static final String SYSTEM_RESOURCE_POOL_OPTIONS = "/system/task-center/resource-pool/options";
|
public static final String SYSTEM_RESOURCE_POOL_OPTIONS = "/system/task-center/resource-pool/options";
|
||||||
public static final String SYSTEM_RESOURCE_POOL_STATUS = "/system/task-center/resource-pool/status";
|
public static final String SYSTEM_RESOURCE_POOL_STATUS = "/system/task-center/resource-pool/status";
|
||||||
public static final String SYSTEM_TASK_STOP = "/system/task-center/exec-task/stop/";
|
public static final String SYSTEM_TASK_STOP = "/system/task-center/exec-task/stop/";
|
||||||
|
public static final String SYSTEM_TASK_RERUN = "/system/task-center/exec-task/rerun/{0}";
|
||||||
public static final String SYSTEM_TASK_DELETE = "/system/task-center/exec-task/delete/";
|
public static final String SYSTEM_TASK_DELETE = "/system/task-center/exec-task/delete/";
|
||||||
public static final String SYSTEM_TASK_BATCH_STOP = "/system/task-center/exec-task/batch-stop";
|
public static final String SYSTEM_TASK_BATCH_STOP = "/system/task-center/exec-task/batch-stop";
|
||||||
public static final String SYSTEM_TASK_BATCH_DELETE = "/system/task-center/exec-task/batch-delete";
|
public static final String SYSTEM_TASK_BATCH_DELETE = "/system/task-center/exec-task/batch-delete";
|
||||||
|
@ -212,6 +215,18 @@ public class BaseTaskHubControllerTests extends BaseTest {
|
||||||
this.requestGet(SYSTEM_TASK_STOP + "2");
|
this.requestGet(SYSTEM_TASK_STOP + "2");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(4)
|
||||||
|
public void systemTaskRerun() throws Exception {
|
||||||
|
String taskId = "1";
|
||||||
|
this.requestGet(SYSTEM_TASK_RERUN, taskId);
|
||||||
|
// @@校验权限
|
||||||
|
requestGetPermissionTest(PermissionConstants.SYSTEM_CASE_TASK_CENTER_EXEC_STOP, SYSTEM_TASK_RERUN, taskId);
|
||||||
|
// @@校验日志
|
||||||
|
checkLog(taskId, OperationLogType.RERUN);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 系统任务项停止
|
* 系统任务项停止
|
||||||
*/
|
*/
|
||||||
|
@ -349,6 +364,7 @@ public class BaseTaskHubControllerTests extends BaseTest {
|
||||||
public static final String ORG_STATISTICS = "/organization/task-center/exec-task/statistics";
|
public static final String ORG_STATISTICS = "/organization/task-center/exec-task/statistics";
|
||||||
public static final String ORG_RESOURCE_POOL_OPTIONS = "/organization/task-center/resource-pool/options";
|
public static final String ORG_RESOURCE_POOL_OPTIONS = "/organization/task-center/resource-pool/options";
|
||||||
public static final String ORG_TASK_STOP = "/organization/task-center/exec-task/stop/";
|
public static final String ORG_TASK_STOP = "/organization/task-center/exec-task/stop/";
|
||||||
|
public static final String ORG_TASK_RERUN = "/organization/task-center/exec-task/rerun/{0}";
|
||||||
public static final String ORG_TASK_DELETE = "/organization/task-center/exec-task/delete/";
|
public static final String ORG_TASK_DELETE = "/organization/task-center/exec-task/delete/";
|
||||||
public static final String ORG_TASK_BATCH_STOP = "/organization/task-center/exec-task/batch-stop";
|
public static final String ORG_TASK_BATCH_STOP = "/organization/task-center/exec-task/batch-stop";
|
||||||
public static final String ORG_TASK_BATCH_DELETE = "/organization/task-center/exec-task/batch-delete";
|
public static final String ORG_TASK_BATCH_DELETE = "/organization/task-center/exec-task/batch-delete";
|
||||||
|
@ -489,6 +505,17 @@ public class BaseTaskHubControllerTests extends BaseTest {
|
||||||
testResourcePoolMapper.deleteByPrimaryKey("2");
|
testResourcePoolMapper.deleteByPrimaryKey("2");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Order(24)
|
||||||
|
public void orgTaskRerun() throws Exception {
|
||||||
|
String taskId = "1";
|
||||||
|
this.requestGet(ORG_TASK_RERUN, taskId);
|
||||||
|
// @@校验权限
|
||||||
|
requestGetPermissionTest(PermissionConstants.ORGANIZATION_CASE_TASK_CENTER_EXEC_STOP, ORG_TASK_RERUN, taskId);
|
||||||
|
// @@校验日志
|
||||||
|
checkLog(taskId, OperationLogType.RERUN);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 组织执行任务项停止
|
* 组织执行任务项停止
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -468,6 +468,10 @@
|
||||||
label: 'system.log.operateType.stop',
|
label: 'system.log.operateType.stop',
|
||||||
value: 'STOP',
|
value: 'STOP',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'system.log.operateType.rerun',
|
||||||
|
value: 'RERUN',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
function resetFilter() {
|
function resetFilter() {
|
||||||
|
|
|
@ -36,4 +36,5 @@ export default {
|
||||||
'system.log.time': 'Operation time',
|
'system.log.time': 'Operation time',
|
||||||
'system.log.content': 'in {module} under {range}',
|
'system.log.content': 'in {module} under {range}',
|
||||||
'system.log.operateType.stop': 'Stop',
|
'system.log.operateType.stop': 'Stop',
|
||||||
|
'system.log.operateType.rerun': 'Rerun',
|
||||||
};
|
};
|
||||||
|
|
|
@ -36,4 +36,5 @@ export default {
|
||||||
'system.log.time': '操作时间',
|
'system.log.time': '操作时间',
|
||||||
'system.log.content': '{operator} 在 {range} 下的 {module} 中 ',
|
'system.log.content': '{operator} 在 {range} 下的 {module} 中 ',
|
||||||
'system.log.operateType.stop': '停止',
|
'system.log.operateType.stop': '停止',
|
||||||
|
'system.log.operateType.rerun': '重跑',
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue