fix(接口自动化): #1006462 使用两层事务控制器,内层事务控制器下复制或引用的场景在报告中查看不了具体内容

【【github#6014】使用两层事务控制器,内层事务控制器下复制或引用的场景在报告中查看不了具体内容】https://www.tapd.cn/55049933/bugtrace/bugs/view?bug_id=1155049933001006462
This commit is contained in:
song-tianyang 2021-09-17 17:17:34 +08:00 committed by 刘瑞斌
parent e52172186c
commit 083bcfb077
1 changed files with 97 additions and 0 deletions

View File

@ -157,10 +157,18 @@ export default {
label: nodeArray[i], label: nodeArray[i],
value: item, value: item,
}; };
if (i !== nodeArray.length) { if (i !== nodeArray.length) {
node.children = []; node.children = [];
} }
if(item.subRequestResults && item.subRequestResults.length > 0){
let itemChildren = this.deepFormatTreeNode(item.subRequestResults);
node.children = itemChildren;
if (node.label.indexOf("UUID=")) {
node.label = node.label.split("UUID=")[0];
}
}
if (children.length === 0) { if (children.length === 0) {
children.push(node); children.push(node);
} }
@ -215,6 +223,95 @@ export default {
} }
}) })
}, },
deepFormatTreeNode(array) {
let children = [];
array.map((item) => {
let key = item.name;
let nodeArray = key.split('^@~@^');
//1
//hashTreeID
let scenarioId = "";
let scenarioName = "";
if (item.scenario) {
let scenarioArr = JSON.parse(item.scenario);
if (scenarioArr.length > 1) {
let scenarioIdArr = scenarioArr[0].split("_");
scenarioId = scenarioIdArr[0];
scenarioName = scenarioIdArr[1];
}
}
//
for (let i = 0; i < nodeArray.length; i++) {
if (!nodeArray[i]) {
continue;
}
let node = {
label: nodeArray[i],
value: item,
};
if (i !== nodeArray.length) {
node.children = [];
}
if(item.subRequestResults && item.subRequestResults.length > 0){
let itemChildren = this.deepFormatTreeNode(item.subRequestResults);
node.children = itemChildren;
}
if (children.length === 0) {
children.push(node);
}
let isExist = false;
for (let j in children) {
if (children[j].label === node.label) {
let idIsPath = true;
//ID
//
if (i === nodeArray.length - 2) {
idIsPath = false;
let childId = "";
let childName = "";
if (children[j].value && children[j].value.scenario) {
let scenarioArr = JSON.parse(children[j].value.scenario);
if (scenarioArr.length > 1) {
let childArr = scenarioArr[0].split("_");
childId = childArr[0];
if (childArr.length > 1) {
childName = childArr[1];
}
}
}
if (scenarioId === "") {
idIsPath = true;
} else if (scenarioId === childId) {
idIsPath = true;
} else if (scenarioName !== childName) {
//ID
idIsPath = true;
}
}
if (idIsPath) {
if (i !== nodeArray.length - 1 && !children[j].children) {
children[j].children = [];
}
children = (i === nodeArray.length - 1 ? children : children[j].children);
isExist = true;
break;
}
}
}
if (!isExist) {
children.push(node);
if (i !== nodeArray.length - 1 && !children[children.length - 1].children) {
children[children.length - 1].children = [];
}
children = (i === nodeArray.length - 1 ? children : children[children.length - 1].children);
}
}
});
return children;
},
recursiveSorting(arr) { recursiveSorting(arr) {
for (let i in arr) { for (let i in arr) {
if (arr[i]) { if (arr[i]) {