refactor (接口测试): 优化场景步骤初始化方法
This commit is contained in:
parent
36a1bfe8b9
commit
64b6b6a9ca
|
@ -1174,7 +1174,7 @@ public class ApiDefinitionService {
|
|||
.build();
|
||||
noticeSendService.send(NoticeConstants.Mode.SCHEDULE, "", noticeModel);
|
||||
}
|
||||
}catch (Exception e){
|
||||
} catch (Exception e) {
|
||||
LogUtil.error(e);
|
||||
MSException.throwException(Translator.get("user_import_format_wrong"));
|
||||
}
|
||||
|
@ -1809,13 +1809,14 @@ public class ApiDefinitionService {
|
|||
public ApiDefinitionResult getById(String id) {
|
||||
ApiDefinitionRequest request = new ApiDefinitionRequest();
|
||||
request.setId(id);
|
||||
List<ApiDefinitionResult> list = list(request);
|
||||
List<ApiDefinitionResult> list = extApiDefinitionMapper.list(request);
|
||||
if (CollectionUtils.isNotEmpty(list)) {
|
||||
return list.get(0);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
public long countEffectiveByProjectId(String projectId) {
|
||||
if (StringUtils.isEmpty(projectId)) {
|
||||
return 0;
|
||||
|
|
|
@ -201,11 +201,13 @@ public class MsHashTreeService {
|
|||
this.setElement(element, apiTestCase.getNum(), enable, apiTestCase.getVersionName(), apiTestCase.getVersionEnable());
|
||||
}
|
||||
} else {
|
||||
ApiDefinitionResult definitionWithBLOBs = apiDefinitionService.getById(element.getString(ID));
|
||||
if (definitionWithBLOBs != null) {
|
||||
element.put(ID, definitionWithBLOBs.getId());
|
||||
this.setElement(element, definitionWithBLOBs.getNum(), enable, definitionWithBLOBs.getVersionName(), definitionWithBLOBs.getVersionEnable());
|
||||
isExist = true;
|
||||
if (StringUtils.equalsIgnoreCase(element.getString(REFERENCED), "Copy")) {
|
||||
ApiDefinitionResult definitionWithBLOBs = apiDefinitionService.getById(element.getString(ID));
|
||||
if (definitionWithBLOBs != null) {
|
||||
element.put(ID, definitionWithBLOBs.getId());
|
||||
this.setElement(element, definitionWithBLOBs.getNum(), enable, definitionWithBLOBs.getVersionName(), definitionWithBLOBs.getVersionEnable());
|
||||
isExist = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!isExist) {
|
||||
|
|
Loading…
Reference in New Issue