fix(接口测试): 修复全部匹配文案错误的缺陷
--bug=1038824 --user=王孝刚 【场景】-后置参数提取,jsonpath快捷提取界面,结果匹配规则,全部匹配的提示信息有误 https://www.tapd.cn/55049933/s/1491327
This commit is contained in:
parent
0501d1b9df
commit
af6689835f
|
@ -109,9 +109,6 @@ public class MsLoopControllerConverter extends AbstractJmeterElementConverter<Ms
|
|||
loopController.setProperty(TestElement.TEST_CLASS, LoopController.class.getName());
|
||||
loopController.setProperty(TestElement.GUI_CLASS, SaveService.aliasToClass("LoopControlPanel"));
|
||||
loopController.setLoops(element.getMsCountController().getLoops());
|
||||
if (StringUtils.isNotEmpty(element.getMsCountController().getLoops())) {
|
||||
loopController.setContinueForever(true);
|
||||
}
|
||||
return loopController;
|
||||
}
|
||||
|
||||
|
|
|
@ -172,7 +172,7 @@ public class ApiScenarioLogService {
|
|||
apiScenario.getId(),
|
||||
null,
|
||||
OperationLogType.DELETE.name(),
|
||||
OperationLogModule.API_SCENARIO_MANAGEMENT_SCENARIO,
|
||||
OperationLogModule.API_TEST_SCENARIO_RECYCLE,
|
||||
apiScenario.getName());
|
||||
dto.setOriginalValue(JSON.toJSONBytes(apiScenario));
|
||||
return dto;
|
||||
|
@ -186,7 +186,7 @@ public class ApiScenarioLogService {
|
|||
apiScenario.getId(),
|
||||
null,
|
||||
OperationLogType.DELETE.name(),
|
||||
OperationLogModule.API_TEST_SCENARIO_RECYCLE,
|
||||
OperationLogModule.API_SCENARIO_MANAGEMENT_SCENARIO,
|
||||
apiScenario.getName());
|
||||
dto.setOriginalValue(JSON.toJSONBytes(apiScenario));
|
||||
return dto;
|
||||
|
|
|
@ -158,7 +158,7 @@ export default {
|
|||
'apiTestDebug.specifyMatchTip':
|
||||
'The Nth matching result needs to be specified. If it exceeds the specified number, it will return empty.',
|
||||
'apiTestDebug.allMatch': 'Match all',
|
||||
'apiTestDebug.allMatchTip': 'The regular return is an array of matching results.',
|
||||
'apiTestDebug.allMatchTip': 'The return is an array of matching results.',
|
||||
'apiTestDebug.contentType': 'Response content format',
|
||||
'apiTestDebug.responseTime': 'Response time',
|
||||
'apiTestDebug.responseStage': 'Stage',
|
||||
|
|
|
@ -147,7 +147,7 @@ export default {
|
|||
'apiTestDebug.unit': '条',
|
||||
'apiTestDebug.specifyMatchTip': '需要指定匹配的第N条结果,如果超出指定则返回为空',
|
||||
'apiTestDebug.allMatch': '全部匹配',
|
||||
'apiTestDebug.allMatchTip': '正则返回的是一个匹配结果数组',
|
||||
'apiTestDebug.allMatchTip': '返回的是一个匹配结果数组',
|
||||
'apiTestDebug.contentType': '响应内容格式',
|
||||
'apiTestDebug.responseTime': '响应时间',
|
||||
'apiTestDebug.responseStage': '阶段',
|
||||
|
|
Loading…
Reference in New Issue