fix(接口测试): 修复未执行的用例没有状态的缺陷
This commit is contained in:
parent
635f011c3a
commit
b29d261c58
|
@ -1,5 +1,6 @@
|
||||||
package io.metersphere.api.dto.definition;
|
package io.metersphere.api.dto.definition;
|
||||||
|
|
||||||
|
import io.metersphere.sdk.constants.ApiReportStatus;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
@ -21,7 +22,7 @@ public class ApiReportStepDTO {
|
||||||
private String stepType;
|
private String stepType;
|
||||||
|
|
||||||
@Schema(description = "结果状态")
|
@Schema(description = "结果状态")
|
||||||
private String status;
|
private String status = ApiReportStatus.PENDING.name();
|
||||||
|
|
||||||
@Schema(description = "误报编号/误报状态独有")
|
@Schema(description = "误报编号/误报状态独有")
|
||||||
private String fakeCode;
|
private String fakeCode;
|
||||||
|
|
|
@ -140,7 +140,7 @@ public class ApiReportService {
|
||||||
|
|
||||||
private ApiReport checkResource(String id) {
|
private ApiReport checkResource(String id) {
|
||||||
ApiReportExample example = new ApiReportExample();
|
ApiReportExample example = new ApiReportExample();
|
||||||
example.createCriteria().andIdEqualTo(id).andDeletedEqualTo(false);
|
example.createCriteria().andIdEqualTo(id);
|
||||||
List<ApiReport> apiReport = apiReportMapper.selectByExample(example);
|
List<ApiReport> apiReport = apiReportMapper.selectByExample(example);
|
||||||
if (CollectionUtils.isEmpty(apiReport)) {
|
if (CollectionUtils.isEmpty(apiReport)) {
|
||||||
throw new MSException(Translator.get("api_case_report_not_exist"));
|
throw new MSException(Translator.get("api_case_report_not_exist"));
|
||||||
|
|
|
@ -94,14 +94,10 @@
|
||||||
value: `${key}-PENDING`,
|
value: `${key}-PENDING`,
|
||||||
label: t(`report.detail.pendingCount`),
|
label: t(`report.detail.pendingCount`),
|
||||||
},
|
},
|
||||||
...(key === ScenarioStepType.API_SCENARIO
|
|
||||||
? []
|
|
||||||
: [
|
|
||||||
{
|
{
|
||||||
value: `${key}-scriptIdentifier`,
|
value: `${key}-scriptIdentifier`,
|
||||||
label: t(`report.detail.api.scriptError`),
|
label: t(`report.detail.api.scriptError`),
|
||||||
},
|
},
|
||||||
]),
|
|
||||||
];
|
];
|
||||||
const cascaderOptions = ref<CascaderOption[]>([
|
const cascaderOptions = ref<CascaderOption[]>([
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue