refactor(场景自动化): 优化执行场景前环境检查
This commit is contained in:
parent
37e99b3eee
commit
ca4900b6a0
|
@ -917,6 +917,12 @@ public class ApiAutomationService {
|
||||||
if (StringUtils.isBlank(s)) {
|
if (StringUtils.isBlank(s)) {
|
||||||
isEnv = false;
|
isEnv = false;
|
||||||
break;
|
break;
|
||||||
|
} else {
|
||||||
|
ApiTestEnvironmentWithBLOBs env = apiTestEnvironmentMapper.selectByPrimaryKey(s);
|
||||||
|
if (env == null) {
|
||||||
|
isEnv = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -933,7 +939,10 @@ public class ApiAutomationService {
|
||||||
if (!isEnv) {
|
if (!isEnv) {
|
||||||
String envId = scenario.getEnvironmentId();
|
String envId = scenario.getEnvironmentId();
|
||||||
if (StringUtils.isNotBlank(envId)) {
|
if (StringUtils.isNotBlank(envId)) {
|
||||||
isEnv = true;
|
ApiTestEnvironmentWithBLOBs env = apiTestEnvironmentMapper.selectByPrimaryKey(envId);
|
||||||
|
if (env != null) {
|
||||||
|
isEnv = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return isEnv;
|
return isEnv;
|
||||||
|
|
Loading…
Reference in New Issue