fix(接口测试): 修复场景调试初次上传csv文件提示不存在问题
--bug=1010383 --user=赵勇 【接口自动化】首次成功上传csv文件,点击调试,提示‘csv文件不存在’ https://www.tapd.cn/55049933/s/1105607
This commit is contained in:
parent
7776565de1
commit
6ab370dbbe
|
@ -316,6 +316,8 @@ public class ApiScenarioExecuteService {
|
|||
}
|
||||
HashTree hashTree = null;
|
||||
try {
|
||||
uploadBodyFiles(request.getBodyFileRequestIds(), bodyFiles);
|
||||
FileUtils.createBodyFiles(request.getScenarioFileIds(), scenarioFiles);
|
||||
this.testElement(request);
|
||||
hashTree = request.getTestElement().generateHashTree(config);
|
||||
LogUtil.info(request.getTestElement().getJmx(hashTree));
|
||||
|
@ -350,8 +352,6 @@ public class ApiScenarioExecuteService {
|
|||
}
|
||||
apiScenarioReportMapper.insert(report);
|
||||
}
|
||||
uploadBodyFiles(request.getBodyFileRequestIds(), bodyFiles);
|
||||
FileUtils.createBodyFiles(request.getScenarioFileIds(), scenarioFiles);
|
||||
String runMode = StringUtils.isEmpty(request.getRunMode()) ? ApiRunMode.SCENARIO.name() : request.getRunMode();
|
||||
// 调用执行方法
|
||||
JmeterRunRequestDTO runRequest = new JmeterRunRequestDTO(request.getId(), request.getId(), runMode, hashTree);
|
||||
|
|
|
@ -75,6 +75,9 @@ export default {
|
|||
scenarioId: this.runData.id, testElement: testPlan, projectId: getCurrentProjectID(), environmentMap: strMapToObj(map),
|
||||
environmentType: this.environmentType, environmentGroupId: this.environmentGroupId, environmentJson: JSON.stringify(strMapToObj(map))
|
||||
};
|
||||
if (this.runData.variables) {
|
||||
reqObj.variables = this.runData.variables;
|
||||
}
|
||||
this.$emit('runRefresh', {});
|
||||
saveScenario('/api/automation/run/debug', reqObj, this.runData.hashTree, this, (response) => {
|
||||
this.runId = response.data;
|
||||
|
|
Loading…
Reference in New Issue