fix(Jenkins执行一直running #1005282): 修改Jenkins调用参数-失败是否停止-为false,解决Jenkins调用一直running的问题
--bug=1005282 --user=宋天阳 【jenkins插件】执行方式选测试计划,问题汇总 https://www.tapd.cn/55049933/s/1033599
This commit is contained in:
parent
b29ba907e9
commit
69712bfb27
|
@ -156,7 +156,7 @@ public class TestPlanController {
|
||||||
ApiRunConfigDTO api = new ApiRunConfigDTO();
|
ApiRunConfigDTO api = new ApiRunConfigDTO();
|
||||||
api.setMode(testplanRunRequest.getMode());
|
api.setMode(testplanRunRequest.getMode());
|
||||||
api.setResourcePoolId(testplanRunRequest.getResourcePoolId());
|
api.setResourcePoolId(testplanRunRequest.getResourcePoolId());
|
||||||
api.setOnSampleError(true);
|
api.setOnSampleError(false);
|
||||||
api.setReportType("iddReport");
|
api.setReportType("iddReport");
|
||||||
String apiRunConfig = JSONObject.toJSONString(api);
|
String apiRunConfig = JSONObject.toJSONString(api);
|
||||||
return testPlanService.run(testplanRunRequest.getTestPlanId(), testplanRunRequest.getProjectId(), testplanRunRequest.getUserId(), testplanRunRequest.getTriggerMode(), apiRunConfig);
|
return testPlanService.run(testplanRunRequest.getTestPlanId(), testplanRunRequest.getProjectId(), testplanRunRequest.getUserId(), testplanRunRequest.getTriggerMode(), apiRunConfig);
|
||||||
|
|
|
@ -1144,7 +1144,7 @@ public class TestPlanReportService {
|
||||||
|
|
||||||
public synchronized TestPlanReport updateExecuteApis(String planReportId, Map<String, String> executeApiCaseIdMap, Map<String, String> executeScenarioCaseIdMap, Map<String, String> executePerformanceIdMap) {
|
public synchronized TestPlanReport updateExecuteApis(String planReportId, Map<String, String> executeApiCaseIdMap, Map<String, String> executeScenarioCaseIdMap, Map<String, String> executePerformanceIdMap) {
|
||||||
TestPlanReportDataExample example = new TestPlanReportDataExample();
|
TestPlanReportDataExample example = new TestPlanReportDataExample();
|
||||||
List<String> resourceIdList = new ArrayList<>();
|
// List<String> resourceIdList = new ArrayList<>();
|
||||||
if(executeApiCaseIdMap == null){
|
if(executeApiCaseIdMap == null){
|
||||||
executeApiCaseIdMap = new HashMap<>();
|
executeApiCaseIdMap = new HashMap<>();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1019,7 +1019,7 @@ public class TestPlanService {
|
||||||
|
|
||||||
String planReportId = testPlanReport.getId();
|
String planReportId = testPlanReport.getId();
|
||||||
|
|
||||||
testPlanLog.info("ReportId[" + planReportId + "] created. TestPlanID:[" + testPlanID + "]. ");
|
testPlanLog.info("ReportId[" + planReportId + "] created. TestPlanID:[" + testPlanID + "]. "+"API Run Config:【"+apiRunConfig+"】");
|
||||||
|
|
||||||
//不同任务的执行ID
|
//不同任务的执行ID
|
||||||
Map<String, String> executePerformanceIdMap = new HashMap<>();
|
Map<String, String> executePerformanceIdMap = new HashMap<>();
|
||||||
|
|
Loading…
Reference in New Issue