fix(接口测试): 修复引用的场景执行的时候未执行的缺陷
--bug=1019923 --user=王孝刚 【接口测试】场景引用带控制器的场景,控制器里的步骤没执行,并且再次打开场景后,控制器是禁用的 {#_orginal_url#}
This commit is contained in:
parent
3c6d3aca5d
commit
c9708dec81
|
@ -230,7 +230,7 @@ public class MsScenario extends MsTestElement {
|
||||||
orgJSONArray.forEach(obj -> {
|
orgJSONArray.forEach(obj -> {
|
||||||
JSONObject orgJsonObject = (JSONObject) obj;
|
JSONObject orgJsonObject = (JSONObject) obj;
|
||||||
hashTree.forEach(targetObj -> {
|
hashTree.forEach(targetObj -> {
|
||||||
if (StringUtils.equals(orgJsonObject.optString(MsHashTreeService.ID), targetObj.getId())) {
|
if (StringUtils.equals(orgJsonObject.optString(MsHashTreeService.RESOURCE_ID), targetObj.getResourceId())) {
|
||||||
setRefEnable(targetObj, orgJsonObject);
|
setRefEnable(targetObj, orgJsonObject);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -328,7 +328,7 @@ export default {
|
||||||
debugCode(data) {
|
debugCode(data) {
|
||||||
if (data && this.node && this.node.data) {
|
if (data && this.node && this.node.data) {
|
||||||
if (data.error > 0) {
|
if (data.error > 0) {
|
||||||
this.node.data.code = 'error';
|
this.node.data.code = 'Error';
|
||||||
} else {
|
} else {
|
||||||
this.node.data.code = this.node.data.code !== 'ERROR' ? 'Success' : 'Error';
|
this.node.data.code = this.node.data.code !== 'ERROR' ? 'Success' : 'Error';
|
||||||
}
|
}
|
||||||
|
|
|
@ -133,9 +133,9 @@ export default {
|
||||||
getCode() {
|
getCode() {
|
||||||
if (this.node && this.node.data.code && this.node.data.debug) {
|
if (this.node && this.node.data.code && this.node.data.debug) {
|
||||||
if (this.node.data.code && this.node.data.code === 'ERROR') {
|
if (this.node.data.code && this.node.data.code === 'ERROR') {
|
||||||
return 'error';
|
return 'Error';
|
||||||
} else {
|
} else {
|
||||||
return 'success';
|
return 'Success';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
|
|
Loading…
Reference in New Issue