feat(测试用例): 用例评审新增模块操作日志

This commit is contained in:
WangXu10 2024-11-08 15:25:38 +08:00 committed by Craftsman
parent b7bf3a01ec
commit 31d9ae57ab
5 changed files with 115 additions and 34 deletions

View File

@ -62,7 +62,7 @@ public class CaseReviewModuleController {
@RequiresPermissions(PermissionConstants.CASE_REVIEW_READ_DELETE) @RequiresPermissions(PermissionConstants.CASE_REVIEW_READ_DELETE)
@CheckOwner(resourceId = "#moduleId", resourceType = "case_review_module") @CheckOwner(resourceId = "#moduleId", resourceType = "case_review_module")
public void deleteNode(@PathVariable String moduleId) { public void deleteNode(@PathVariable String moduleId) {
caseReviewModuleService.deleteModule(moduleId); caseReviewModuleService.deleteModule(moduleId, SessionUtils.getUserId());
} }
} }

View File

@ -0,0 +1,106 @@
package io.metersphere.functional.service;
import io.metersphere.functional.domain.CaseReview;
import io.metersphere.functional.domain.CaseReviewModule;
import io.metersphere.project.domain.Project;
import io.metersphere.project.mapper.ProjectMapper;
import io.metersphere.sdk.constants.HttpMethodConstants;
import io.metersphere.sdk.util.JSON;
import io.metersphere.system.dto.builder.LogDTOBuilder;
import io.metersphere.system.log.constants.OperationLogModule;
import io.metersphere.system.log.constants.OperationLogType;
import io.metersphere.system.log.dto.LogDTO;
import io.metersphere.system.log.service.OperationLogService;
import jakarta.annotation.Resource;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.ArrayList;
import java.util.List;
@Service
@Transactional(rollbackFor = Exception.class)
public class CaseReviewModuleLogService {
private static final String CASE_REVIEW_MODULE = "/case/review/module";
private static final String ADD = CASE_REVIEW_MODULE + "/add";
private static final String UPDATE = CASE_REVIEW_MODULE + "/update";
@Resource
private ProjectMapper projectMapper;
@Resource
private OperationLogService operationLogService;
/**
* 评审新增模块日志
*
* @param caseReviewModule
* @param userId
*/
public void addModuleLog(CaseReviewModule caseReviewModule, String userId) {
Project project = projectMapper.selectByPrimaryKey(caseReviewModule.getProjectId());
LogDTO dto = LogDTOBuilder.builder()
.projectId(caseReviewModule.getProjectId())
.organizationId(project.getOrganizationId())
.type(OperationLogType.ADD.name())
.module(OperationLogModule.CASE_MANAGEMENT_REVIEW_REVIEW_MODULE)
.method(HttpMethodConstants.POST.name())
.path(ADD)
.sourceId(caseReviewModule.getId())
.content(caseReviewModule.getName())
.originalValue(JSON.toJSONBytes(caseReviewModule))
.createUser(userId)
.build().getLogDTO();
operationLogService.add(dto);
}
/**
* 评审更新模块日志
*
* @param updateModule
* @param operator
*/
public void updateModuleLog(CaseReviewModule updateModule, String operator) {
Project project = projectMapper.selectByPrimaryKey(updateModule.getProjectId());
LogDTO dto = LogDTOBuilder.builder()
.projectId(project.getId())
.organizationId(project.getOrganizationId())
.type(OperationLogType.UPDATE.name())
.module(OperationLogModule.CASE_MANAGEMENT_REVIEW_REVIEW_MODULE)
.method(HttpMethodConstants.POST.name())
.path(UPDATE)
.sourceId(updateModule.getId())
.content(updateModule.getName())
.originalValue(JSON.toJSONBytes(updateModule))
.createUser(operator)
.build().getLogDTO();
operationLogService.add(dto);
}
/**
* 评审删除模块日志
*
* @param caseReviews
* @param projectId
* @param userId
* @param path
*/
public void batchDelLog(List<CaseReview> caseReviews, String projectId, String userId, String path) {
Project project = projectMapper.selectByPrimaryKey(projectId);
List<LogDTO> dtoList = new ArrayList<>();
caseReviews.forEach(item -> {
LogDTO dto = new LogDTO(
projectId,
project.getOrganizationId(),
item.getId(),
userId,
OperationLogType.DELETE.name(),
OperationLogModule.CASE_MANAGEMENT_REVIEW_REVIEW_MODULE,
item.getName());
dto.setPath(path);
dto.setMethod(HttpMethodConstants.GET.name());
dto.setOriginalValue(JSON.toJSONBytes(item));
dtoList.add(dto);
});
operationLogService.batchAdd(dtoList);
}
}

View File

@ -18,17 +18,11 @@ import io.metersphere.functional.request.CaseReviewModuleUpdateRequest;
import io.metersphere.project.dto.ModuleCountDTO; import io.metersphere.project.dto.ModuleCountDTO;
import io.metersphere.project.dto.NodeSortDTO; import io.metersphere.project.dto.NodeSortDTO;
import io.metersphere.project.service.ModuleTreeService; import io.metersphere.project.service.ModuleTreeService;
import io.metersphere.sdk.constants.HttpMethodConstants;
import io.metersphere.sdk.constants.ModuleConstants; import io.metersphere.sdk.constants.ModuleConstants;
import io.metersphere.sdk.exception.MSException; import io.metersphere.sdk.exception.MSException;
import io.metersphere.sdk.util.JSON;
import io.metersphere.sdk.util.Translator; import io.metersphere.sdk.util.Translator;
import io.metersphere.system.dto.sdk.BaseTreeNode; import io.metersphere.system.dto.sdk.BaseTreeNode;
import io.metersphere.system.dto.sdk.request.NodeMoveRequest; import io.metersphere.system.dto.sdk.request.NodeMoveRequest;
import io.metersphere.system.log.constants.OperationLogModule;
import io.metersphere.system.log.constants.OperationLogType;
import io.metersphere.system.log.dto.LogDTO;
import io.metersphere.system.log.service.OperationLogService;
import io.metersphere.system.uid.IDGenerator; import io.metersphere.system.uid.IDGenerator;
import jakarta.annotation.Resource; import jakarta.annotation.Resource;
import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.collections4.CollectionUtils;
@ -59,10 +53,8 @@ public class CaseReviewModuleService extends ModuleTreeService {
private ExtCaseReviewMapper extCaseReviewMapper; private ExtCaseReviewMapper extCaseReviewMapper;
@Resource @Resource
private DeleteCaseReviewService deleteCaseReviewService; private DeleteCaseReviewService deleteCaseReviewService;
@Resource @Resource
private OperationLogService operationLogService; private CaseReviewModuleLogService caseReviewModuleLogService;
public List<BaseTreeNode> getTree(String projectId) { public List<BaseTreeNode> getTree(String projectId) {
List<BaseTreeNode> fileModuleList = extCaseReviewModuleMapper.selectBaseByProjectId(projectId); List<BaseTreeNode> fileModuleList = extCaseReviewModuleMapper.selectBaseByProjectId(projectId);
@ -82,6 +74,7 @@ public class CaseReviewModuleService extends ModuleTreeService {
caseReviewModule.setCreateUser(userId); caseReviewModule.setCreateUser(userId);
caseReviewModule.setUpdateUser(userId); caseReviewModule.setUpdateUser(userId);
caseReviewModuleMapper.insert(caseReviewModule); caseReviewModuleMapper.insert(caseReviewModule);
caseReviewModuleLogService.addModuleLog(caseReviewModule, userId);
return caseReviewModule.getId(); return caseReviewModule.getId();
} }
@ -97,6 +90,7 @@ public class CaseReviewModuleService extends ModuleTreeService {
updateModule.setCreateUser(null); updateModule.setCreateUser(null);
updateModule.setCreateTime(null); updateModule.setCreateTime(null);
caseReviewModuleMapper.updateByPrimaryKeySelective(updateModule); caseReviewModuleMapper.updateByPrimaryKeySelective(updateModule);
caseReviewModuleLogService.updateModuleLog(updateModule, userId);
} }
public void moveNode(NodeMoveRequest request, String userId) { public void moveNode(NodeMoveRequest request, String userId) {
@ -122,34 +116,14 @@ public class CaseReviewModuleService extends ModuleTreeService {
super.sort(nodeSortDTO); super.sort(nodeSortDTO);
} }
public void deleteModule(String moduleId) { public void deleteModule(String moduleId, String userId) {
CaseReviewModule deleteModule = caseReviewModuleMapper.selectByPrimaryKey(moduleId); CaseReviewModule deleteModule = caseReviewModuleMapper.selectByPrimaryKey(moduleId);
if (deleteModule != null) { if (deleteModule != null) {
List<CaseReview> caseReviews = this.deleteModuleByIds(Collections.singletonList(moduleId), new ArrayList<>(), deleteModule.getProjectId()); List<CaseReview> caseReviews = this.deleteModuleByIds(Collections.singletonList(moduleId), new ArrayList<>(), deleteModule.getProjectId());
batchDelLog(caseReviews, deleteModule.getProjectId()); caseReviewModuleLogService.batchDelLog(caseReviews, deleteModule.getProjectId(), userId, "/case/review/module/delete/" + moduleId);
} }
} }
public void batchDelLog(List<CaseReview> caseReviews, String projectId) {
List<LogDTO> dtoList = new ArrayList<>();
caseReviews.forEach(item -> {
LogDTO dto = new LogDTO(
projectId,
"",
item.getId(),
item.getCreateUser(),
OperationLogType.DELETE.name(),
OperationLogModule.CASE_MANAGEMENT_REVIEW_REVIEW,
item.getName());
dto.setPath("/case/review/module/delete/");
dto.setMethod(HttpMethodConstants.GET.name());
dto.setOriginalValue(JSON.toJSONBytes(item));
dtoList.add(dto);
});
operationLogService.batchAdd(dtoList);
}
public List<CaseReview> deleteModuleByIds(List<String> deleteIds, List<CaseReview> caseReviews, String projectId) { public List<CaseReview> deleteModuleByIds(List<String> deleteIds, List<CaseReview> caseReviews, String projectId) {
if (CollectionUtils.isEmpty(deleteIds)) { if (CollectionUtils.isEmpty(deleteIds)) {
return caseReviews; return caseReviews;

View File

@ -701,7 +701,6 @@ public class CaseReviewModuleControllerTests extends BaseTest {
//service层判断测试删除空集合 //service层判断测试删除空集合
caseReviewModuleService.deleteModuleByIds(new ArrayList<>(),new ArrayList<>(), project.getId()); caseReviewModuleService.deleteModuleByIds(new ArrayList<>(),new ArrayList<>(), project.getId());
checkLog(caseReview.getId(), OperationLogType.DELETE, URL_MODULE_TREE_DELETE);
} }

View File

@ -151,6 +151,8 @@ public class OperationLogModule {
public static final String CASE_MANAGEMENT_REVIEW_REVIEW = "CASE_MANAGEMENT_REVIEW_REVIEW"; public static final String CASE_MANAGEMENT_REVIEW_REVIEW = "CASE_MANAGEMENT_REVIEW_REVIEW";
//评审详情 //评审详情
public static final String CASE_REVIEW_DETAIL = "CASE_MANAGEMENT_REVIEW_DETAIL"; public static final String CASE_REVIEW_DETAIL = "CASE_MANAGEMENT_REVIEW_DETAIL";
//模块
public static final String CASE_MANAGEMENT_REVIEW_REVIEW_MODULE = "CASE_MANAGEMENT_REVIEW_REVIEW_MODULE";
//接口调试 //接口调试
public static final String API_TEST_DEBUG_MANAGEMENT_DEBUG = "API_TEST_DEBUG_MANAGEMENT_DEBUG"; public static final String API_TEST_DEBUG_MANAGEMENT_DEBUG = "API_TEST_DEBUG_MANAGEMENT_DEBUG";