Merge pull request #8789 from metersphere/pr@dev@fix_接口用例在请求内容选no_auth_报错

fix(接口测试): 接口用例在请求内容选no auth 报错
This commit is contained in:
wxg0103 2021-12-24 09:47:38 +08:00 committed by GitHub
commit 6a512ee51a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 9 deletions

View File

@ -99,18 +99,17 @@ export default {
if (this.authConfig.username == undefined && this.authConfig.password == undefined) { if (this.authConfig.username == undefined && this.authConfig.password == undefined) {
this.authConfig = authManager; this.authConfig = authManager;
} }
this.request.authManager = this.authConfig;
} else { } else {
if (this.request.hashTree) { let authManager = createComponent("AuthManager");
for (let index in this.request.hashTree) { authManager.verification = "No Auth";
if (this.request.hashTree[index].type === "AuthManager") { if (this.request.hashTree == undefined) {
this.request.hashTree.splice(index, 1); this.request.hashTree = [];
}
}
} }
this.request.authManager = {}; this.request.hashTree.push(authManager);
this.authConfig = authManager;
this.request.authManager = this.authConfig;
} }
this.request.authManager = this.authConfig;
}, },
initData() { initData() {
if (this.request.hashTree) { if (this.request.hashTree) {