fix(接口测试): 解决场景导入没选模块的问题
--bug=1010016--user=郭雨琦 【ID1010016】场景导入没有选模块时应该导到未规划模块下,否则会导致导入的场景统计不正确
This commit is contained in:
parent
d350612e57
commit
493ed748f9
|
@ -5,6 +5,7 @@ import com.alibaba.fastjson.JSONArray;
|
|||
import com.alibaba.fastjson.JSONObject;
|
||||
import io.metersphere.api.dto.*;
|
||||
import io.metersphere.api.dto.automation.*;
|
||||
import io.metersphere.api.dto.automation.parse.ApiScenarioImportUtil;
|
||||
import io.metersphere.api.dto.automation.parse.ScenarioImport;
|
||||
import io.metersphere.api.dto.automation.parse.ScenarioImportParserFactory;
|
||||
import io.metersphere.api.dto.datacount.ApiDataCountResult;
|
||||
|
@ -138,6 +139,7 @@ public class ApiAutomationService {
|
|||
@Resource
|
||||
private ExtProjectVersionMapper extProjectVersionMapper;
|
||||
|
||||
|
||||
private ThreadLocal<Long> currentScenarioOrder = new ThreadLocal<>();
|
||||
|
||||
public ApiScenarioDTO getDto(String id) {
|
||||
|
@ -469,13 +471,7 @@ public class ApiAutomationService {
|
|||
}
|
||||
|
||||
if (StringUtils.isEmpty(request.getApiScenarioModuleId()) || "default-module".equals(request.getApiScenarioModuleId())) {
|
||||
ApiScenarioModuleExample example = new ApiScenarioModuleExample();
|
||||
example.createCriteria().andProjectIdEqualTo(request.getProjectId()).andNameEqualTo("未规划场景");
|
||||
List<ApiScenarioModule> modules = apiScenarioModuleMapper.selectByExample(example);
|
||||
if (CollectionUtils.isNotEmpty(modules)) {
|
||||
scenario.setApiScenarioModuleId(modules.get(0).getId());
|
||||
scenario.setModulePath(modules.get(0).getName());
|
||||
}
|
||||
replenishScenarioModuleIdPath(request.getProjectId(), apiScenarioModuleMapper, scenario);
|
||||
}
|
||||
saveFollows(scenario.getId(), request.getFollows());
|
||||
if (StringUtils.isEmpty(request.getVersionId())) {
|
||||
|
@ -1367,6 +1363,13 @@ public class ApiAutomationService {
|
|||
request.setDefaultVersion(defaultVersion);
|
||||
for (int i = 0; i < data.size(); i++) {
|
||||
ApiScenarioWithBLOBs item = data.get(i);
|
||||
if(StringUtils.isBlank(item.getApiScenarioModuleId())|| "default-module".equals(item.getApiScenarioModuleId())){
|
||||
replenishScenarioModuleIdPath(request.getProjectId(), apiScenarioModuleMapper, item);
|
||||
}
|
||||
|
||||
if(StringUtils.isBlank(item.getCreateUser())){
|
||||
item.setCreateUser(SessionUtils.getUserId());
|
||||
}
|
||||
if (item.getName().length() > 255) {
|
||||
item.setName(item.getName().substring(0, 255));
|
||||
}
|
||||
|
@ -1395,6 +1398,16 @@ public class ApiAutomationService {
|
|||
}
|
||||
}
|
||||
|
||||
private void replenishScenarioModuleIdPath(String request, ApiScenarioModuleMapper apiScenarioModuleMapper, ApiScenarioWithBLOBs item) {
|
||||
ApiScenarioModuleExample example = new ApiScenarioModuleExample();
|
||||
example.createCriteria().andProjectIdEqualTo(request).andNameEqualTo("未规划场景");
|
||||
List<ApiScenarioModule> modules = apiScenarioModuleMapper.selectByExample(example);
|
||||
if (CollectionUtils.isNotEmpty(modules)) {
|
||||
item.setApiScenarioModuleId(modules.get(0).getId());
|
||||
item.setModulePath(modules.get(0).getName());
|
||||
}
|
||||
}
|
||||
|
||||
private Long getImportNextOrder(String projectId) {
|
||||
Long order = currentScenarioOrder.get();
|
||||
if (order == null) {
|
||||
|
|
Loading…
Reference in New Issue