feat: 接口测试首页优化

接口测试首页优化
This commit is contained in:
song.tianyang 2021-01-05 17:43:55 +08:00
parent 3cb27580b7
commit 9a32e83a01
32 changed files with 1551 additions and 1137 deletions

View File

@ -285,17 +285,17 @@ public class APITestController {
long taskCountInThisWeek = scheduleService.countTaskByProjectIdInThisWeek(projectId); long taskCountInThisWeek = scheduleService.countTaskByProjectIdInThisWeek(projectId);
apiCountResult.setThisWeekAddedCount(taskCountInThisWeek); apiCountResult.setThisWeekAddedCount(taskCountInThisWeek);
long api_executedInThisWeekCountNumber = apiReportService.countByProjectIdAndCreateInThisWeek(projectId); // long api_executedInThisWeekCountNumber = apiReportService.countByProjectIdAndCreateInThisWeek(projectId);
long scene_executedInThisWeekCountNumber = apiScenarioReportService.countByProjectIdAndCreateAndByScheduleInThisWeek(projectId); long executedInThisWeekCountNumber = apiScenarioReportService.countByProjectIdAndCreateAndByScheduleInThisWeek(projectId);
long executedInThisWeekCountNumber = api_executedInThisWeekCountNumber+scene_executedInThisWeekCountNumber; // long executedInThisWeekCountNumber = api_executedInThisWeekCountNumber+scene_executedInThisWeekCountNumber;
apiCountResult.setThisWeekExecutedCount(executedInThisWeekCountNumber); apiCountResult.setThisWeekExecutedCount(executedInThisWeekCountNumber);
//统计 失败 成功 以及总数 //统计 失败 成功 以及总数
List<ApiDataCountResult> api_allExecuteResult = apiReportService.countByProjectIdGroupByExecuteResult(projectId); // List<ApiDataCountResult> api_allExecuteResult = apiReportService.countByProjectIdGroupByExecuteResult(projectId);
List<ApiDataCountResult> scene_allExecuteResult = apiScenarioReportService.countByProjectIdGroupByExecuteResult(projectId); List<ApiDataCountResult> allExecuteResult = apiScenarioReportService.countByProjectIdGroupByExecuteResult(projectId);
List<ApiDataCountResult> allExecuteResult = new ArrayList<>(); // List<ApiDataCountResult> allExecuteResult = new ArrayList<>();
allExecuteResult.addAll(api_allExecuteResult); // allExecuteResult.addAll(api_allExecuteResult);
allExecuteResult.addAll(scene_allExecuteResult); // allExecuteResult.addAll(scene_allExecuteResult);
apiCountResult.countScheduleExecute(allExecuteResult); apiCountResult.countScheduleExecute(allExecuteResult);
long allCount = apiCountResult.getExecutedCount(); long allCount = apiCountResult.getExecutedCount();
@ -322,11 +322,12 @@ public class APITestController {
if(dataIndex<selectDataList.size()){ if(dataIndex<selectDataList.size()){
ExecutedCaseInfoResult selectData = selectDataList.get(dataIndex); ExecutedCaseInfoResult selectData = selectDataList.get(dataIndex);
dataDTO.setCaseID(selectData.getTestCaseID());
dataDTO.setCaseName(selectData.getCaseName()); dataDTO.setCaseName(selectData.getCaseName());
dataDTO.setTestPlan(selectData.getTestPlan()); dataDTO.setTestPlan(selectData.getTestPlan());
dataDTO.setFailureTimes(selectData.getFailureTimes()); dataDTO.setFailureTimes(selectData.getFailureTimes());
dataDTO.setCaseType(selectData.getCaseType()); dataDTO.setCaseType(selectData.getCaseType());
dataDTO.setTestPlanDTOList(selectData.getTestPlanDTOList());
}else { }else {
dataDTO.setCaseName(""); dataDTO.setCaseName("");
dataDTO.setTestPlan(""); dataDTO.setTestPlan("");

View File

@ -24,4 +24,7 @@ public class ApiScenarioRequest {
private List<String> filters; private List<String> filters;
private Map<String, Object> combine; private Map<String, Object> combine;
private List<String> ids; private List<String> ids;
private boolean isSelectThisWeedData;
private long createTime = 0;
private String executeStatus;
} }

View File

@ -1,14 +1,18 @@
package io.metersphere.api.dto.datacount; package io.metersphere.api.dto.datacount;
import io.metersphere.track.dto.TestPlanDTO;
import lombok.Getter; import lombok.Getter;
import lombok.Setter; import lombok.Setter;
import java.util.List;
/** /**
* 已执行的案例 * 已执行的案例
*/ */
@Getter @Getter
@Setter @Setter
public class ExecutedCaseInfoResult { public class ExecutedCaseInfoResult {
private String testCaseID;
//案例名称 //案例名称
private String caseName; private String caseName;
//所属测试计划 //所属测试计划
@ -17,4 +21,5 @@ public class ExecutedCaseInfoResult {
private Long failureTimes; private Long failureTimes;
//案例类型 //案例类型
private String caseType; private String caseType;
private List<TestPlanDTO> testPlanDTOList;
} }

View File

@ -1,8 +1,11 @@
package io.metersphere.api.dto.datacount.response; package io.metersphere.api.dto.datacount.response;
import io.metersphere.track.dto.TestPlanDTO;
import lombok.Getter; import lombok.Getter;
import lombok.Setter; import lombok.Setter;
import java.util.List;
/** /**
* 已执行的案例 * 已执行的案例
*/ */
@ -19,4 +22,8 @@ public class ExecutedCaseInfoDTO {
private Long failureTimes; private Long failureTimes;
//案例类型 //案例类型
private String caseType; private String caseType;
//案例ID
private String caseID;
//测试计划集合
private List<TestPlanDTO> testPlanDTOList;
} }

View File

@ -15,6 +15,8 @@ public class TaskInfoResult {
private String taskID; private String taskID;
//场景名称 //场景名称
private String scenario; private String scenario;
//场景ID
private String scenarioId;
//规则 //规则
private String rule; private String rule;
//任务状态 //任务状态

View File

@ -26,4 +26,8 @@ public class ApiDefinitionRequest {
private List<String> filters; private List<String> filters;
private Map<String, Object> combine; private Map<String, Object> combine;
private List<String> ids; private List<String> ids;
private boolean isSelectThisWeedData = false;
private long createTime = 0;
private String status;
private String apiCaseCoverage;
} }

View File

@ -24,4 +24,6 @@ public class ApiTestCaseRequest {
private List<String> moduleIds; private List<String> moduleIds;
private List<OrderRequest> orders; private List<OrderRequest> orders;
private Map<String, List<String>> filters; private Map<String, List<String>> filters;
private boolean isSelectThisWeedData;
private long createTime = 0;
} }

View File

@ -75,6 +75,13 @@ public class ApiAutomationService {
public List<ApiScenarioDTO> list(ApiScenarioRequest request) { public List<ApiScenarioDTO> list(ApiScenarioRequest request) {
request.setOrders(ServiceUtils.getDefaultOrder(request.getOrders())); request.setOrders(ServiceUtils.getDefaultOrder(request.getOrders()));
if(request.isSelectThisWeedData()){
Map<String, Date> weekFirstTimeAndLastTime = DateUtils.getWeedFirstTimeAndLastTime(new Date());
Date weekFirstTime = weekFirstTimeAndLastTime.get("firstTime");
if(weekFirstTime!=null){
request.setCreateTime(weekFirstTime.getTime());
}
}
List<ApiScenarioDTO> list = extApiScenarioMapper.list(request); List<ApiScenarioDTO> list = extApiScenarioMapper.list(request);
return list; return list;
} }

View File

@ -10,7 +10,10 @@ import io.metersphere.base.mapper.ext.ExtApiDefinitionExecResultMapper;
import io.metersphere.commons.constants.ApiRunMode; import io.metersphere.commons.constants.ApiRunMode;
import io.metersphere.commons.utils.DateUtils; import io.metersphere.commons.utils.DateUtils;
import io.metersphere.commons.utils.SessionUtils; import io.metersphere.commons.utils.SessionUtils;
import io.metersphere.track.dto.TestPlanDTO;
import io.metersphere.track.request.testcase.QueryTestPlanRequest;
import io.metersphere.track.service.TestPlanApiCaseService; import io.metersphere.track.service.TestPlanApiCaseService;
import io.metersphere.track.service.TestPlanService;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@ -30,6 +33,8 @@ public class ApiDefinitionExecResultService {
private ExtApiDefinitionExecResultMapper extApiDefinitionExecResultMapper; private ExtApiDefinitionExecResultMapper extApiDefinitionExecResultMapper;
@Resource @Resource
private TestPlanApiCaseService testPlanApiCaseService; private TestPlanApiCaseService testPlanApiCaseService;
@Resource
private TestPlanService testPlanService;
public void saveApiResult(TestResult result, String type) { public void saveApiResult(TestResult result, String type) {
@ -100,9 +105,22 @@ public class ApiDefinitionExecResultService {
List<ExecutedCaseInfoResult>list = extApiDefinitionExecResultMapper.findFaliureCaseInfoByProjectIDAndExecuteTimeAndLimitNumber(projectId, startTime.getTime()); List<ExecutedCaseInfoResult>list = extApiDefinitionExecResultMapper.findFaliureCaseInfoByProjectIDAndExecuteTimeAndLimitNumber(projectId, startTime.getTime());
List<ExecutedCaseInfoResult> returnList = new ArrayList<>(limitNumber); List<ExecutedCaseInfoResult> returnList = new ArrayList<>(limitNumber);
for(int i = 0;i<list.size();i++){ for(int i = 0;i<list.size();i++){
if(i<limitNumber){ if(i<limitNumber){
returnList.add(list.get(i)); //开始遍历查询TestPlan信息 --> 提供前台做超链接
ExecutedCaseInfoResult item = list.get(i);
QueryTestPlanRequest planRequest = new QueryTestPlanRequest();
planRequest.setProjectId(projectId);
if("scenario".equals(item.getCaseType())){
planRequest.setScenarioId(item.getTestCaseID());
}else if("apiCase".equals(item.getCaseType())){
planRequest.setApiId(item.getTestCaseID());
}
List<TestPlanDTO> dtoList = testPlanService.selectTestPlanByRelevancy(planRequest);
item.setTestPlanDTOList(dtoList);
returnList.add(item);
}else { }else {
break; break;
} }

View File

@ -78,6 +78,16 @@ public class ApiDefinitionService {
public List<ApiDefinitionResult> list(ApiDefinitionRequest request) { public List<ApiDefinitionResult> list(ApiDefinitionRequest request) {
request.setOrders(ServiceUtils.getDefaultOrder(request.getOrders())); request.setOrders(ServiceUtils.getDefaultOrder(request.getOrders()));
//判断是否查询本周数据
if(request.isSelectThisWeedData()){
Map<String, Date> weekFirstTimeAndLastTime = DateUtils.getWeedFirstTimeAndLastTime(new Date());
Date weekFirstTime = weekFirstTimeAndLastTime.get("firstTime");
if(weekFirstTime!=null){
request.setCreateTime(weekFirstTime.getTime());
}
}
List<ApiDefinitionResult> resList = extApiDefinitionMapper.list(request); List<ApiDefinitionResult> resList = extApiDefinitionMapper.list(request);
calculateResult(resList); calculateResult(resList);
return resList; return resList;

View File

@ -78,6 +78,13 @@ public class ApiTestCaseService {
public List<ApiTestCaseDTO> listSimple(ApiTestCaseRequest request) { public List<ApiTestCaseDTO> listSimple(ApiTestCaseRequest request) {
request.setOrders(ServiceUtils.getDefaultOrder(request.getOrders())); request.setOrders(ServiceUtils.getDefaultOrder(request.getOrders()));
if(request.isSelectThisWeedData()){
Map<String, Date> weekFirstTimeAndLastTime = DateUtils.getWeedFirstTimeAndLastTime(new Date());
Date weekFirstTime = weekFirstTimeAndLastTime.get("firstTime");
if(weekFirstTime!=null){
request.setCreateTime(weekFirstTime.getTime());
}
}
List<ApiTestCaseDTO> apiTestCases = extApiTestCaseMapper.listSimple(request); List<ApiTestCaseDTO> apiTestCases = extApiTestCaseMapper.listSimple(request);
if (CollectionUtils.isEmpty(apiTestCases)) { if (CollectionUtils.isEmpty(apiTestCases)) {
return apiTestCases; return apiTestCases;

View File

@ -34,7 +34,7 @@
<select id="findFaliureCaseInfoByProjectIDAndExecuteTimeAndLimitNumber" resultType="io.metersphere.api.dto.datacount.ExecutedCaseInfoResult"> <select id="findFaliureCaseInfoByProjectIDAndExecuteTimeAndLimitNumber" resultType="io.metersphere.api.dto.datacount.ExecutedCaseInfoResult">
SELECT * FROM ( SELECT * FROM (
SELECT testCase.testCaseName AS caseName,testCase.testPlanName AS testPlan ,caseErrorCountData.dataCountNumber AS failureTimes,'apiCase' AS caseType SELECT testCase.testCaseID,testCase.testCaseName AS caseName,testCase.testPlanName AS testPlan ,caseErrorCountData.dataCountNumber AS failureTimes,'apiCase' AS caseType
FROM ( FROM (
SELECT apiCase.id AS testCaseID,apiCase.`name` AS testCaseName,group_concat(testPlan.`name`) AS testPlanName FROM api_test_case apiCase SELECT apiCase.id AS testCaseID,apiCase.`name` AS testCaseName,group_concat(testPlan.`name`) AS testPlanName FROM api_test_case apiCase
INNER JOIN test_plan_api_case testPlanCase ON testPlanCase.api_case_id = apiCase.id INNER JOIN test_plan_api_case testPlanCase ON testPlanCase.api_case_id = apiCase.id
@ -50,17 +50,13 @@
) caseErrorCountData ON caseErrorCountData.testCaseID =testCase.testCaseID ) caseErrorCountData ON caseErrorCountData.testCaseID =testCase.testCaseID
WHERE caseErrorCountData.executeTime >= #{startTimestamp} WHERE caseErrorCountData.executeTime >= #{startTimestamp}
UNION UNION
SELECT scene.`name` AS caseName,apiScene.testPlanName AS testPlan,count(report.id) AS failureTimes,'scenario' AS caseType SELECT scene.id AS testCaseID,scene.`name` AS caseName,apiScene.testPlanName AS testPlan,count(report.id) AS failureTimes,'scenario' AS caseType
FROM api_scenario_report report FROM api_scenario_report report
INNER JOIN api_scenario_report_detail reportDetail ON report.id = reportDetail.report_id INNER JOIN api_scenario_report_detail reportDetail ON report.id = reportDetail.report_id
INNER JOIN api_scenario scene ON report.scenario_id = scene.id INNER JOIN api_scenario scene ON report.scenario_id = scene.id
INNER JOIN INNER JOIN(
( SELECT apiScene.api_scenario_id, group_concat(testPlan.`name`) AS testPlanName
SELECT FROM test_plan_api_scenario apiScene
apiScene.api_scenario_id,
group_concat(testPlan.`name`) AS testPlanName
FROM
test_plan_api_scenario apiScene
INNER JOIN test_plan testPlan ON testPlan.id = apiScene.test_plan_id INNER JOIN test_plan testPlan ON testPlan.id = apiScene.test_plan_id
GROUP BY apiScene.api_scenario_id GROUP BY apiScene.api_scenario_id
)apiScene ON apiScene.api_scenario_id = scene.id )apiScene ON apiScene.api_scenario_id = scene.id

View File

@ -227,6 +227,9 @@
<if test="request.userId != null"> <if test="request.userId != null">
AND api_definition.user_id = #{request.userId} AND api_definition.user_id = #{request.userId}
</if> </if>
<if test="request.createTime >0">
AND api_definition.create_time >= #{request.createTime}
</if>
<if test="request.moduleId != null"> <if test="request.moduleId != null">
AND api_definition.module_id = #{request.moduleId} AND api_definition.module_id = #{request.moduleId}
</if> </if>
@ -245,6 +248,16 @@
#{value} #{value}
</foreach> </foreach>
</if> </if>
<if test="request.apiCaseCoverage == 'uncoverage' ">
and api_definition.id not in
(SELECT api_definition_id FROM api_test_case)
</if>
<if test="request.apiCaseCoverage == 'coverage' ">
and api_definition.id in
(SELECT api_definition_id FROM api_test_case)
</if>
</where> </where>
<if test="request.orders != null and request.orders.size() > 0"> <if test="request.orders != null and request.orders.size() > 0">
order by order by

View File

@ -40,6 +40,9 @@
<if test="request.projectId != null"> <if test="request.projectId != null">
AND api_scenario.project_id = #{request.projectId} AND api_scenario.project_id = #{request.projectId}
</if> </if>
<if test="request.createTime >0 ">
AND api_scenario.create_time >= #{request.createTime}
</if>
<if test="request.ids != null and request.ids.size() > 0"> <if test="request.ids != null and request.ids.size() > 0">
AND api_scenario.id in AND api_scenario.id in
<foreach collection="request.ids" item="itemId" separator="," open="(" close=")"> <foreach collection="request.ids" item="itemId" separator="," open="(" close=")">
@ -58,6 +61,16 @@
#{value} #{value}
</foreach> </foreach>
</if> </if>
<if test="request.executeStatus == 'unExecute'">
and api_scenario.last_result IS NULL
</if>
<if test="request.executeStatus == 'executeFailed'">
and api_scenario.last_result = 'Fail'
</if>
<if test="request.executeStatus == 'executePass'">
and api_scenario.last_result = 'Success'
</if>
</where> </where>
<if test="request.orders != null and request.orders.size() > 0"> <if test="request.orders != null and request.orders.size() > 0">
order by order by

View File

@ -228,6 +228,9 @@
<if test="request.projectId != null and request.projectId!=''"> <if test="request.projectId != null and request.projectId!=''">
c.project_id = #{request.projectId} c.project_id = #{request.projectId}
</if> </if>
<if test="request.id != null and request.id!=''">
and c.id = #{request.id}
</if>
<if test="request.ids != null and request.ids.size() > 0"> <if test="request.ids != null and request.ids.size() > 0">
<if test="request.projectId != null and request.projectId!=''"> <if test="request.projectId != null and request.projectId!=''">
and and
@ -240,6 +243,9 @@
<if test="request.name != null and request.name!=''"> <if test="request.name != null and request.name!=''">
and c.name like CONCAT('%', #{request.name},'%') and c.name like CONCAT('%', #{request.name},'%')
</if> </if>
<if test="request.createTime > 0">
and c.create_time >= #{request.createTime}
</if>
<if test="request.moduleIds != null and request.moduleIds.size() > 0"> <if test="request.moduleIds != null and request.moduleIds.size() > 0">
and a.module_id in and a.module_id in
<foreach collection="request.moduleIds" item="nodeId" separator="," open="(" close=")"> <foreach collection="request.moduleIds" item="nodeId" separator="," open="(" close=")">

View File

@ -38,30 +38,19 @@
<select id="countTaskByProjectId" resultType="java.lang.Long"> <select id="countTaskByProjectId" resultType="java.lang.Long">
SELECT COUNT(id) AS countNumber FROM `schedule` WHERE resource_id IN ( SELECT COUNT(id) AS countNumber FROM `schedule` WHERE resource_id IN (
SELECT id FROM api_test WHERE project_id = #{0,jdbcType=VARCHAR} AND status != 'Trash'
UNION
SELECT id FROM api_scenario WHERE project_id = #{0,jdbcType=VARCHAR} AND status != 'Trash' SELECT id FROM api_scenario WHERE project_id = #{0,jdbcType=VARCHAR} AND status != 'Trash'
) )
</select> </select>
<select id="countTaskByProjectIdAndCreateTimeRange" resultType="java.lang.Long"> <select id="countTaskByProjectIdAndCreateTimeRange" resultType="java.lang.Long">
SELECT COUNT(id) AS countNumber FROM `schedule` SELECT COUNT(id) AS countNumber FROM `schedule`
WHERE resource_id IN ( WHERE resource_id IN (
SELECT atest.id FROM api_test atest
WHERE atest.project_id = #{projectId,jdbcType=VARCHAR} AND atest.status != 'Trash'
UNION
SELECT scene.id FROM api_scenario scene SELECT scene.id FROM api_scenario scene
WHERE scene.project_id = #{projectId,jdbcType=VARCHAR} AND scene.status != 'Trash' WHERE scene.project_id = #{projectId,jdbcType=VARCHAR} AND scene.status != 'Trash'
) )
AND create_time BETWEEN #{startTime} and #{endTime} AND create_time BETWEEN #{startTime} and #{endTime}
</select> </select>
<select id="findRunningTaskInfoByProjectID" resultType="io.metersphere.api.dto.datacount.response.TaskInfoResult"> <select id="findRunningTaskInfoByProjectID" resultType="io.metersphere.api.dto.datacount.response.TaskInfoResult">
SELECT apiTest.`name` AS scenario,sch.id AS taskID,sch.`value` AS rule,sch.`enable` AS `taskStatus`,u.`name` AS creator,sch.update_time AS updateTime SELECT apiScene.id AS scenarioId,apiScene.`name` AS scenario,sch.id AS taskID,sch.`value` AS rule,sch.`enable` AS `taskStatus`,u.`name` AS creator,sch.update_time AS updateTime
FROM api_test apiTest
INNER JOIN `schedule` sch ON apiTest.id = sch.resource_id
INNER JOIN `user` u ON u.id = sch.user_id
WHERE sch.`enable` = true AND apiTest.project_id = #{0,jdbcType=VARCHAR}
UNION
SELECT apiScene.`name` AS scenario,sch.id AS taskID,sch.`value` AS rule,sch.`enable` AS `taskStatus`,u.`name` AS creator,sch.update_time AS updateTime
FROM api_scenario apiScene FROM api_scenario apiScene
INNER JOIN `schedule` sch ON apiScene.id = sch.resource_id INNER JOIN `schedule` sch ON apiScene.id = sch.resource_id
INNER JOIN `user` u ON u.id = sch.user_id INNER JOIN `user` u ON u.id = sch.user_id

View File

@ -213,7 +213,7 @@
<select id="selectTestPlanByRelevancy" resultMap="BaseResultMap" parameterType="io.metersphere.track.request.testcase.QueryTestPlanRequest"> <select id="selectTestPlanByRelevancy" resultMap="BaseResultMap" parameterType="io.metersphere.track.request.testcase.QueryTestPlanRequest">
SELECT * FROM TEST_PLAN p LEFT JOIN test_plan_project t ON t.test_plan_id=p.id SELECT * FROM TEST_PLAN p LEFT JOIN test_plan_project t ON t.test_plan_id=p.id
<where> <where>
AND t.project_id = #{request.projectId} AND (t.project_id = #{request.projectId} or p.project_id = #{request.projectId})
<if test="request.scenarioId != null"> <if test="request.scenarioId != null">
AND p.id IN (SELECT test_plan_id FROM test_plan_api_scenario WHERE api_scenario_id = #{request.scenarioId} ) AND p.id IN (SELECT test_plan_id FROM test_plan_api_scenario WHERE api_scenario_id = #{request.scenarioId} )
</if> </if>

View File

@ -37,6 +37,7 @@ import io.metersphere.track.request.testcase.QueryTestPlanRequest;
import io.metersphere.track.request.testplan.AddTestPlanRequest; import io.metersphere.track.request.testplan.AddTestPlanRequest;
import io.metersphere.track.request.testplancase.QueryTestPlanCaseRequest; import io.metersphere.track.request.testplancase.QueryTestPlanCaseRequest;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.ExecutorType; import org.apache.ibatis.session.ExecutorType;
import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactory;
@ -698,4 +699,7 @@ public class TestPlanService {
} }
return issues; return issues;
} }
public List<TestPlanDTO> selectTestPlanByRelevancy(QueryTestPlanRequest params){
return extTestPlanMapper.selectTestPlanByRelevancy(params);
}
} }

View File

@ -1,5 +1,5 @@
<template> <template>
<ms-container> <ms-container v-if="renderComponent">
<ms-aside-container> <ms-aside-container>
<ms-api-scenario-module <ms-api-scenario-module
@nodeSelectEvent="nodeChange" @nodeSelectEvent="nodeChange"
@ -17,7 +17,10 @@
<ms-api-scenario-list <ms-api-scenario-list
:select-node-ids="selectNodeIds" :select-node-ids="selectNodeIds"
:trash-enable="trashEnable" :trash-enable="trashEnable"
:checkRedirectID="checkRedirectID"
:isRedirectEdit="isRedirectEdit"
@edit="editScenario" @edit="editScenario"
@changeSelectDataRangeAll="changeSelectDataRangeAll"
ref="apiScenarioList"/> ref="apiScenarioList"/>
</el-tab-pane> </el-tab-pane>
@ -28,7 +31,8 @@
:name="item.name" :name="item.name"
closable> closable>
<div class="ms-api-scenario-div"> <div class="ms-api-scenario-div">
<ms-edit-api-scenario @refresh="refresh" :currentScenario="item.currentScenario" :moduleOptions="moduleOptions"/> <ms-edit-api-scenario @refresh="refresh" :currentScenario="item.currentScenario"
:moduleOptions="moduleOptions"/>
</div> </div>
</el-tab-pane> </el-tab-pane>
@ -55,10 +59,31 @@
export default { export default {
name: "ApiAutomation", name: "ApiAutomation",
components: {MsApiScenarioModule, MsApiScenarioList, MsMainContainer, MsAsideContainer, MsContainer, MsEditApiScenario}, components: {
MsApiScenarioModule,
MsApiScenarioList,
MsMainContainer,
MsAsideContainer,
MsContainer,
MsEditApiScenario
},
comments: {}, comments: {},
computed: {
checkRedirectID: function () {
let redirectIDParam = this.$route.params.redirectID;
this.changeRedirectParam(redirectIDParam);
return redirectIDParam;
},
isRedirectEdit: function () {
let redirectParam = this.$route.params.dataSelectRange;
this.checkRedirectEditPage(redirectParam);
return redirectParam;
}
},
data() { data() {
return { return {
redirectID: '',
renderComponent: true,
isHide: true, isHide: true,
activeName: 'default', activeName: 'default',
currentModule: null, currentModule: null,
@ -68,8 +93,37 @@
selectNodeIds: [], selectNodeIds: [],
} }
}, },
watch: {}, watch: {
redirectID() {
this.renderComponent = false;
this.$nextTick(() => {
// DOM my-component
this.renderComponent = true;
});
}
},
methods: { methods: {
checkRedirectEditPage(redirectParam) {
if(redirectParam!=null){
let selectParamArr = redirectParam.split("edit:");
if (selectParamArr.length == 2) {
let scenarioId = selectParamArr[1];
let projectId = getCurrentProjectID();
//
let url = "/api/automation/list/" + 1 + "/" + 1;
this.$post(url, {id:scenarioId,projectId:projectId}, response => {
let data = response.data;
if(data!=null){
let row = data.listObject[0];
this.editScenario(row);
}
});
}
}
},
changeRedirectParam(redirectIDParam) {
this.redirectID = redirectIDParam;
},
addTab(tab) { addTab(tab) {
if (!getCurrentProjectID()) { if (!getCurrentProjectID()) {
this.$warning(this.$t('commons.check_project_tip')); this.$warning(this.$t('commons.check_project_tip'));
@ -125,6 +179,9 @@
setModuleOptions(data) { setModuleOptions(data) {
this.moduleOptions = data; this.moduleOptions = data;
}, },
changeSelectDataRangeAll(tableType) {
this.$route.params.dataSelectRange = 'all';
},
enableTrash(data) { enableTrash(data) {
this.trashEnable = data; this.trashEnable = data;
} }

View File

@ -2,7 +2,7 @@
<div> <div>
<el-card class="table-card" v-loading="loading"> <el-card class="table-card" v-loading="loading">
<template v-slot:header> <template v-slot:header>
<ms-table-header :condition.sync="condition" @search="search" title="" <ms-table-header :condition.sync="condition" @search="selectByParam" title=""
:show-create="false"/> :show-create="false"/>
</template> </template>
@ -143,6 +143,7 @@ export default {
schedule: {}, schedule: {},
selection: [], selection: [],
tableData: [], tableData: [],
selectDataRange: 'all',
currentPage: 1, currentPage: 1,
pageSize: 10, pageSize: 10,
total: 0, total: 0,
@ -193,8 +194,11 @@ export default {
} }
}, },
methods: { methods: {
selectByParam() {
this.changeSelectDataRangeAll();
this.search();
},
search() { search() {
this.condition.filters = ["Prepare", "Underway", "Completed"]; this.condition.filters = ["Prepare", "Underway", "Completed"];
this.condition.moduleIds = this.selectNodeIds; this.condition.moduleIds = this.selectNodeIds;
if (this.trashEnable) { if (this.trashEnable) {
@ -205,6 +209,25 @@ export default {
if (this.projectId != null) { if (this.projectId != null) {
this.condition.projectId = this.projectId; this.condition.projectId = this.projectId;
} }
//
this.condition.selectThisWeedData = false;
this.condition.executeStatus = null;
this.isSelectThissWeekData();
switch (this.selectDataRange){
case 'thisWeek':
this.condition.selectThisWeedData = true;
break;
case 'unExecute':
this.condition.executeStatus = 'unExecute';
break;
case 'executeFailed':
this.condition.executeStatus = 'executeFailed';
break;
case 'executePass':
this.condition.executeStatus = 'executePass';
break;
}
this.selection = []; this.selection = [];
this.selectAll = false; this.selectAll = false;
@ -366,6 +389,14 @@ export default {
this.selectDataCounts = this.selection.length; this.selectDataCounts = this.selection.length;
} }
}, },
//
isSelectThissWeekData() {
let dataRange = this.$route.params.dataSelectRange;
this.selectDataRange = dataRange;
},
changeSelectDataRangeAll() {
this.$emit("changeSelectDataRangeAll");
},
remove(row) { remove(row) {
if (this.trashEnable) { if (this.trashEnable) {
this.$get('/api/automation/delete/' + row.id, () => { this.$get('/api/automation/delete/' + row.id, () => {

View File

@ -1,5 +1,5 @@
<template> <template>
<ms-container> <ms-container v-if="renderComponent">
<ms-aside-container> <ms-aside-container>
<ms-api-module <ms-api-module
@nodeSelectEvent="nodeChange" @nodeSelectEvent="nodeChange"
@ -22,7 +22,8 @@
<el-dropdown-menu slot="dropdown"> <el-dropdown-menu slot="dropdown">
<el-dropdown-item command="debug">{{ $t('api_test.definition.request.fast_debug') }}</el-dropdown-item> <el-dropdown-item command="debug">{{ $t('api_test.definition.request.fast_debug') }}</el-dropdown-item>
<el-dropdown-item command="ADD">{{ $t('api_test.definition.request.title') }}</el-dropdown-item> <el-dropdown-item command="ADD">{{ $t('api_test.definition.request.title') }}</el-dropdown-item>
<el-dropdown-item command="CLOSE_ALL">{{$t('api_test.definition.request.close_all_label')}}</el-dropdown-item> <el-dropdown-item command="CLOSE_ALL">{{ $t('api_test.definition.request.close_all_label') }}
</el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
</el-dropdown> </el-dropdown>
@ -42,6 +43,9 @@
:select-node-ids="selectNodeIds" :select-node-ids="selectNodeIds"
:trash-enable="trashEnable" :trash-enable="trashEnable"
:is-api-list-enable="isApiListEnable" :is-api-list-enable="isApiListEnable"
:queryDataType="queryDataType"
:selectDataRange="selectDataRange"
@changeSelectDataRangeAll="changeSelectDataRangeAll"
@editApi="editApi" @editApi="editApi"
@handleCase="handleCase" @handleCase="handleCase"
@showExecResult="showExecResult" @showExecResult="showExecResult"
@ -56,6 +60,8 @@
:select-node-ids="selectNodeIds" :select-node-ids="selectNodeIds"
:trash-enable="trashEnable" :trash-enable="trashEnable"
:is-api-list-enable="isApiListEnable" :is-api-list-enable="isApiListEnable"
:queryDataType="queryDataType"
@changeSelectDataRangeAll="changeSelectDataRangeAll"
@isApiListEnableChange="isApiListEnableChange" @isApiListEnableChange="isApiListEnableChange"
@handleCase="handleCase" @handleCase="handleCase"
@showExecResult="showExecResult" @showExecResult="showExecResult"
@ -70,18 +76,26 @@
</div> </div>
<!-- 快捷调试 --> <!-- 快捷调试 -->
<div v-else-if="item.type=== 'debug'" class="ms-api-div"> <div v-else-if="item.type=== 'debug'" class="ms-api-div">
<ms-debug-http-page :currentProtocol="currentProtocol" :testCase="item.api" @saveAs="editApi" v-if="currentProtocol==='HTTP'"/> <ms-debug-http-page :currentProtocol="currentProtocol" :testCase="item.api" @saveAs="editApi"
<ms-debug-jdbc-page :currentProtocol="currentProtocol" :testCase="item.api" @saveAs="editApi" v-if="currentProtocol==='SQL'"/> v-if="currentProtocol==='HTTP'"/>
<ms-debug-tcp-page :currentProtocol="currentProtocol" :testCase="item.api" @saveAs="editApi" v-if="currentProtocol==='TCP'"/> <ms-debug-jdbc-page :currentProtocol="currentProtocol" :testCase="item.api" @saveAs="editApi"
<ms-debug-dubbo-page :currentProtocol="currentProtocol" :testCase="item.api" @saveAs="editApi" v-if="currentProtocol==='DUBBO'"/> v-if="currentProtocol==='SQL'"/>
<ms-debug-tcp-page :currentProtocol="currentProtocol" :testCase="item.api" @saveAs="editApi"
v-if="currentProtocol==='TCP'"/>
<ms-debug-dubbo-page :currentProtocol="currentProtocol" :testCase="item.api" @saveAs="editApi"
v-if="currentProtocol==='DUBBO'"/>
</div> </div>
<!-- 测试--> <!-- 测试-->
<div v-else-if="item.type=== 'TEST'" class="ms-api-div"> <div v-else-if="item.type=== 'TEST'" class="ms-api-div">
<ms-run-test-http-page :currentProtocol="currentProtocol" :api-data="item.api" @saveAsApi="editApi" @refresh="refresh" v-if="currentProtocol==='HTTP'"/> <ms-run-test-http-page :currentProtocol="currentProtocol" :api-data="item.api" @saveAsApi="editApi"
<ms-run-test-tcp-page :currentProtocol="currentProtocol" :api-data="item.api" @saveAsApi="editApi" @refresh="refresh" v-if="currentProtocol==='TCP'"/> @refresh="refresh" v-if="currentProtocol==='HTTP'"/>
<ms-run-test-sql-page :currentProtocol="currentProtocol" :api-data="item.api" @saveAsApi="editApi" @refresh="refresh" v-if="currentProtocol==='SQL'"/> <ms-run-test-tcp-page :currentProtocol="currentProtocol" :api-data="item.api" @saveAsApi="editApi"
<ms-run-test-dubbo-page :currentProtocol="currentProtocol" :api-data="item.api" @saveAsApi="editApi" @refresh="refresh" v-if="currentProtocol==='DUBBO'"/> @refresh="refresh" v-if="currentProtocol==='TCP'"/>
<ms-run-test-sql-page :currentProtocol="currentProtocol" :api-data="item.api" @saveAsApi="editApi"
@refresh="refresh" v-if="currentProtocol==='SQL'"/>
<ms-run-test-dubbo-page :currentProtocol="currentProtocol" :api-data="item.api" @saveAsApi="editApi"
@refresh="refresh" v-if="currentProtocol==='DUBBO'"/>
</div> </div>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
@ -110,6 +124,19 @@
export default { export default {
name: "ApiDefinition", name: "ApiDefinition",
computed: {
queryDataType: function () {
let routeParam = this.$route.params.dataType;
let redirectIDParam = this.$route.params.redirectID;
this.changeRedirectParam(redirectIDParam);
if (routeParam === 'apiTestCase') {
this.isApiListEnableChange(false);
} else {
this.isApiListEnableChange(true);
}
return routeParam;
},
},
components: { components: {
ApiCaseSimpleList, ApiCaseSimpleList,
MsApiModule, MsApiModule,
@ -138,6 +165,9 @@
}, },
data() { data() {
return { return {
redirectID: '',
renderComponent: true,
selectDataRange: 'all',
showCasePage: true, showCasePage: true,
apiDefaultTab: 'default', apiDefaultTab: 'default',
currentProtocol: null, currentProtocol: null,
@ -158,9 +188,19 @@
watch: { watch: {
currentProtocol() { currentProtocol() {
this.handleCommand("CLOSE_ALL"); this.handleCommand("CLOSE_ALL");
},
redirectID() {
this.renderComponent = false;
this.$nextTick(() => {
// DOM my-component
this.renderComponent = true;
});
} }
}, },
methods: { methods: {
changeRedirectParam(redirectIDParam) {
this.redirectID = redirectIDParam;
},
isApiListEnableChange(data) { isApiListEnableChange(data) {
this.isApiListEnable = data; this.isApiListEnable = data;
}, },
@ -310,7 +350,6 @@
showExecResult(row) { showExecResult(row) {
this.debug(row); this.debug(row);
}, },
nodeChange(node, nodeIds, pNodes) { nodeChange(node, nodeIds, pNodes) {
this.selectNodeIds = nodeIds; this.selectNodeIds = nodeIds;
}, },
@ -320,6 +359,9 @@
setModuleOptions(data) { setModuleOptions(data) {
this.moduleOptions = data; this.moduleOptions = data;
}, },
changeSelectDataRangeAll(tableType) {
this.$route.params.dataSelectRange = 'all';
},
enableTrash(data) { enableTrash(data) {
this.trashEnable = data; this.trashEnable = data;
} }

View File

@ -4,7 +4,8 @@
:is-api-list-enable="isApiListEnable" :is-api-list-enable="isApiListEnable"
@isApiListEnableChange="isApiListEnableChange"> @isApiListEnableChange="isApiListEnableChange">
<el-input placeholder="搜索" @blur="search" @keyup.enter.native="search" class="search-input" size="small" v-model="condition.name"/> <el-input placeholder="搜索" @blur="search" @keyup.enter.native="search" class="search-input" size="small"
v-model="condition.name"/>
<el-table v-loading="result.loading" <el-table v-loading="result.loading"
ref="caseTable" ref="caseTable"
@ -72,8 +73,10 @@
<el-table-column v-if="!isReadOnly" :label="$t('commons.operating')" min-width="130" align="center"> <el-table-column v-if="!isReadOnly" :label="$t('commons.operating')" min-width="130" align="center">
<template v-slot:default="scope"> <template v-slot:default="scope">
<!--<el-button type="text" @click="reductionApi(scope.row)" v-if="trashEnable">{{$t('commons.reduction')}}</el-button>--> <!--<el-button type="text" @click="reductionApi(scope.row)" v-if="trashEnable">{{$t('commons.reduction')}}</el-button>-->
<el-button type="text" @click="handleTestCase(scope.row)" v-if="!trashEnable">{{$t('commons.edit')}}</el-button> <el-button type="text" @click="handleTestCase(scope.row)" v-if="!trashEnable">{{ $t('commons.edit') }}
<el-button type="text" @click="handleDelete(scope.row)" style="color: #F56C6C">{{$t('commons.delete')}}</el-button> </el-button>
<el-button type="text" @click="handleDelete(scope.row)" style="color: #F56C6C">{{ $t('commons.delete') }}
</el-button>
</template> </template>
</el-table-column> </el-table-column>
@ -133,6 +136,7 @@
selectCase: {}, selectCase: {},
result: {}, result: {},
moduleId: "", moduleId: "",
selectDataRange: "all",
deletePath: "/test/case/delete", deletePath: "/test/case/delete",
selectRows: new Set(), selectRows: new Set(),
buttons: [ buttons: [
@ -241,6 +245,21 @@
if (this.currentProtocol != null) { if (this.currentProtocol != null) {
this.condition.protocol = this.currentProtocol; this.condition.protocol = this.currentProtocol;
} }
//
this.isSelectThissWeekData();
this.condition.selectThisWeedData = false;
this.condition.id = null;
if (this.selectDataRange == 'thisWeekCount') {
this.condition.selectThisWeedData = true;
} else if (this.selectDataRange != null) {
let selectParamArr = this.selectDataRange.split("single:");
if (selectParamArr.length == 2) {
this.condition.id = selectParamArr[1];
}
}
if (this.condition.projectId) { if (this.condition.projectId) {
this.result = this.$post('/api/testcase/list/' + this.currentPage + "/" + this.pageSize, this.condition, response => { this.result = this.$post('/api/testcase/list/' + this.currentPage + "/" + this.pageSize, this.condition, response => {
this.total = response.data.itemCount; this.total = response.data.itemCount;
@ -280,6 +299,7 @@
this.selectRowsCount(this.selectRows) this.selectRowsCount(this.selectRows)
}, },
search() { search() {
this.changeSelectDataRangeAll();
this.initTable(); this.initTable();
}, },
buildPagePath(path) { buildPagePath(path) {
@ -409,6 +429,18 @@
this.$refs.caseTable.toggleAllSelection(true); this.$refs.caseTable.toggleAllSelection(true);
} }
}, },
//
isSelectThissWeekData() {
this.selectDataRange = "all";
let routeParam = this.$route.params.dataSelectRange;
let dataType = this.$route.params.dataType;
if (dataType === 'apiTestCase') {
this.selectDataRange = routeParam;
}
},
changeSelectDataRangeAll() {
this.$emit("changeSelectDataRangeAll", "testCase");
},
getIds(rowSets) { getIds(rowSets) {
let rowArray = Array.from(rowSets) let rowArray = Array.from(rowSets)
let ids = rowArray.map(s => s.id); let ids = rowArray.map(s => s.id);

View File

@ -4,7 +4,8 @@
:is-api-list-enable="isApiListEnable" :is-api-list-enable="isApiListEnable"
@isApiListEnableChange="isApiListEnableChange"> @isApiListEnableChange="isApiListEnableChange">
<el-input placeholder="搜索" @blur="search" class="search-input" size="small" @keyup.enter.native="search" v-model="condition.name"/> <el-input placeholder="搜索" @blur="search" class="search-input" size="small" @keyup.enter.native="search"
v-model="condition.name"/>
<el-table v-loading="result.loading" <el-table v-loading="result.loading"
ref="apiDefinitionTable" ref="apiDefinitionTable"
@ -41,9 +42,12 @@
:label="$t('api_test.definition.api_status')" :label="$t('api_test.definition.api_status')"
show-overflow-tooltip> show-overflow-tooltip>
<template v-slot:default="scope"> <template v-slot:default="scope">
<ms-tag v-if="scope.row.status == 'Prepare'" type="info" effect="plain" :content="$t('test_track.plan.plan_status_prepare')"/> <ms-tag v-if="scope.row.status == 'Prepare'" type="info" effect="plain"
<ms-tag v-if="scope.row.status == 'Underway'" type="warning" effect="plain" :content="$t('test_track.plan.plan_status_running')"/> :content="$t('test_track.plan.plan_status_prepare')"/>
<ms-tag v-if="scope.row.status == 'Completed'" type="success" effect="plain" :content="$t('test_track.plan.plan_status_completed')"/> <ms-tag v-if="scope.row.status == 'Underway'" type="warning" effect="plain"
:content="$t('test_track.plan.plan_status_running')"/>
<ms-tag v-if="scope.row.status == 'Completed'" type="success" effect="plain"
:content="$t('test_track.plan.plan_status_completed')"/>
<ms-tag v-if="scope.row.status == 'Trash'" type="danger" effect="plain" content="废弃"/> <ms-tag v-if="scope.row.status == 'Trash'" type="danger" effect="plain" content="废弃"/>
</template> </template>
</el-table-column> </el-table-column>
@ -53,7 +57,9 @@
:label="$t('api_test.definition.api_type')" :label="$t('api_test.definition.api_type')"
show-overflow-tooltip> show-overflow-tooltip>
<template v-slot:default="scope" class="request-method"> <template v-slot:default="scope" class="request-method">
<el-tag size="mini" :style="{'background-color': getColor(true, scope.row.method), border: getColor(true, scope.row.method)}" class="api-el-tag"> <el-tag size="mini"
:style="{'background-color': getColor(true, scope.row.method), border: getColor(true, scope.row.method)}"
class="api-el-tag">
{{ scope.row.method }} {{ scope.row.method }}
</el-tag> </el-tag>
</template> </template>
@ -92,10 +98,15 @@
<el-table-column v-if="!isReadOnly" :label="$t('commons.operating')" min-width="130" align="center"> <el-table-column v-if="!isReadOnly" :label="$t('commons.operating')" min-width="130" align="center">
<template v-slot:default="scope"> <template v-slot:default="scope">
<el-button type="text" @click="reductionApi(scope.row)" v-if="trashEnable" v-tester>{{$t('commons.reduction')}}</el-button> <el-button type="text" @click="reductionApi(scope.row)" v-if="trashEnable" v-tester>
{{ $t('commons.reduction') }}
</el-button>
<el-button type="text" @click="editApi(scope.row)" v-else v-tester>{{ $t('commons.edit') }}</el-button> <el-button type="text" @click="editApi(scope.row)" v-else v-tester>{{ $t('commons.edit') }}</el-button>
<el-button type="text" @click="handleTestCase(scope.row)">{{$t('api_test.definition.request.case')}}</el-button> <el-button type="text" @click="handleTestCase(scope.row)">{{ $t('api_test.definition.request.case') }}
<el-button type="text" @click="handleDelete(scope.row)" style="color: #F56C6C" v-tester>{{$t('commons.delete')}}</el-button> </el-button>
<el-button type="text" @click="handleDelete(scope.row)" style="color: #F56C6C" v-tester>
{{ $t('commons.delete') }}
</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -150,6 +161,7 @@
selectApi: {}, selectApi: {},
result: {}, result: {},
moduleId: "", moduleId: "",
selectDataRange: "all",
deletePath: "/test/case/delete", deletePath: "/test/case/delete",
selectRows: new Set(), selectRows: new Set(),
buttons: [ buttons: [
@ -181,6 +193,7 @@
props: { props: {
currentProtocol: String, currentProtocol: String,
selectNodeIds: Array, selectNodeIds: Array,
isSelectThisWeek: String,
visible: { visible: {
type: Boolean, type: Boolean,
default: false, default: false,
@ -199,6 +212,9 @@
default: false default: false
}, },
}, },
mounted: function () {
this.initTable();
},
created: function () { created: function () {
this.initTable(); this.initTable();
this.getMaintainerOptions(); this.getMaintainerOptions();
@ -239,6 +255,31 @@
if (this.currentProtocol != null) { if (this.currentProtocol != null) {
this.condition.protocol = this.currentProtocol; this.condition.protocol = this.currentProtocol;
} }
//
this.getSelectDataRange();
this.condition.selectThisWeedData = false;
this.condition.apiCaseCoverage = null;
switch (this.selectDataRange){
case 'thisWeekCount':
this.condition.selectThisWeedData = true;
break;
case 'Prepare':
this.condition.filters = [this.selectDataRange];
break;
case 'Completed':
this.condition.filters = [this.selectDataRange];
break;
case 'Underway':
this.condition.filters = [this.selectDataRange];
break;
case 'uncoverage':
this.condition.apiCaseCoverage = 'uncoverage';
break;
case 'coverage':
this.condition.apiCaseCoverage = 'coverage';
break;
}
if (this.condition.projectId) { if (this.condition.projectId) {
this.result = this.$post("/api/definition/list/" + this.currentPage + "/" + this.pageSize, this.condition, response => { this.result = this.$post("/api/definition/list/" + this.currentPage + "/" + this.pageSize, this.condition, response => {
this.total = response.data.itemCount; this.total = response.data.itemCount;
@ -294,6 +335,7 @@
this.selectRowsCount(this.selectRows) this.selectRowsCount(this.selectRows)
}, },
search() { search() {
this.changeSelectDataRangeAll();
this.initTable(); this.initTable();
}, },
buildPagePath(path) { buildPagePath(path) {
@ -440,6 +482,19 @@
this.$refs.apiDefinitionTable.toggleAllSelection(true); this.$refs.apiDefinitionTable.toggleAllSelection(true);
} }
}, },
//
getSelectDataRange() {
let dataRange = this.$route.params.dataSelectRange;
let dataType = this.$route.params.dataType;
if (dataType === 'api') {
this.selectDataRange = dataRange;
} else {
this.selectDataRange = 'all';
}
},
changeSelectDataRangeAll() {
this.$emit("changeSelectDataRangeAll", "api");
},
getIds(rowSets) { getIds(rowSets) {
let rowArray = Array.from(rowSets) let rowArray = Array.from(rowSets)
let ids = rowArray.map(s => s.id); let ids = rowArray.map(s => s.id);
@ -491,6 +546,7 @@
padding: 5px; padding: 5px;
width: 30px; width: 30px;
} }
.api-list >>> th:nth-child(2) > .cell { .api-list >>> th:nth-child(2) > .cell {
/*background-color: black;*/ /*background-color: black;*/
} }

View File

@ -28,13 +28,13 @@
<el-row :gutter="0"></el-row> <el-row :gutter="0"></el-row>
<el-row :gutter="10"> <el-row :gutter="10">
<el-col :span="6"> <el-col :span="6">
<ms-api-info-card :api-count-data="apiCountData"/> <ms-api-info-card @redirectPage="redirectPage" :api-count-data="apiCountData"/>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<ms-test-case-info-card :test-case-count-data="testCaseCountData"/> <ms-test-case-info-card @redirectPage="redirectPage" :test-case-count-data="testCaseCountData"/>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<ms-scene-info-card :scene-count-data="sceneCountData"/> <ms-scene-info-card @redirectPage="redirectPage" :scene-count-data="sceneCountData"/>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<ms-schedule-task-info-card :schedule-task-count-data="scheduleTaskCountData"/> <ms-schedule-task-info-card :schedule-task-count-data="scheduleTaskCountData"/>
@ -43,10 +43,10 @@
<el-row :gutter="10"> <el-row :gutter="10">
<el-col :span="12"> <el-col :span="12">
<ms-failure-test-case-list/> <ms-failure-test-case-list @redirectPage="redirectPage"/>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<ms-running-task-list/> <ms-running-task-list @redirectPage="redirectPage"/>
</el-col> </el-col>
</el-row> </el-row>
@ -64,7 +64,7 @@ import MsTestCaseInfoCard from "./components/TestCaseInfoCard";
import MsFailureTestCaseList from "./components/FailureTestCaseList"; import MsFailureTestCaseList from "./components/FailureTestCaseList";
import MsRunningTaskList from "./components/RunningTaskList" import MsRunningTaskList from "./components/RunningTaskList"
import {getCurrentProjectID} from "@/common/js/utils"; import {getCurrentProjectID,getUUID} from "@/common/js/utils";
export default { export default {
name: "ApiTestHomePage", name: "ApiTestHomePage",
@ -117,6 +117,22 @@ export default {
this.scheduleTaskCountData = response.data; this.scheduleTaskCountData = response.data;
}); });
}, },
redirectPage(page,dataType,selectType){
//api
//UUID
let uuid = getUUID();
switch (page){
case "api":
this.$router.push({name:'ApiDefinition',params:{redirectID:uuid,dataType:dataType,dataSelectRange:selectType}});
break;
case "scenario":
this.$router.push({name:'ApiAutomation',params:{redirectID:uuid,dataType:dataType,dataSelectRange:selectType}});
break;
case "testPlanEdit":
this.$router.push('/track/plan/view/'+selectType)
break;
}
}
} }
} }
</script> </script>

View File

@ -54,7 +54,10 @@
<el-header style="height:20px;padding: 0px;margin-bottom: 10px;"> <el-header style="height:20px;padding: 0px;margin-bottom: 10px;">
<el-row> <el-row>
<el-col> <el-col>
{{$t('api_test.home_page.api_details_card.this_week_add',[apiCountData.thisWeekAddedCount])}} {{$t('api_test.home_page.api_details_card.this_week_add')}}
<el-link type="info" @click="redirectPage('thisWeekCount')" target="_blank" style="color: #000000">{{apiCountData.thisWeekAddedCount}}
</el-link>
{{$t('api_test.home_page.unit_of_measurement')}}
</el-col> </el-col>
</el-row> </el-row>
</el-header> </el-header>
@ -80,21 +83,27 @@
<span class="default-property"> <span class="default-property">
{{$t('api_test.home_page.detail_card.running')}} {{$t('api_test.home_page.detail_card.running')}}
{{"\xa0\xa0"}} {{"\xa0\xa0"}}
<el-link type="info" @click="redirectPage('Underway')" target="_blank" style="color: #000000">
{{apiCountData.runningCount}} {{apiCountData.runningCount}}
</el-link>
</span> </span>
</el-col> </el-col>
<el-col style="margin-top: 5px;"> <el-col style="margin-top: 5px;">
<span class="default-property"> <span class="default-property">
{{$t('api_test.home_page.detail_card.not_started')}} {{$t('api_test.home_page.detail_card.not_started')}}
{{"\xa0\xa0"}} {{"\xa0\xa0"}}
<el-link type="info" @click="redirectPage('Prepare')" target="_blank" style="color: #000000">
{{apiCountData.notStartedCount}} {{apiCountData.notStartedCount}}
</el-link>
</span> </span>
</el-col> </el-col>
<el-col style="margin-top: 5px;"> <el-col style="margin-top: 5px;">
<span class="main-property"> <span class="main-property">
{{$t('api_test.home_page.detail_card.finished')}} {{$t('api_test.home_page.detail_card.finished')}}
{{"\xa0\xa0"}} {{"\xa0\xa0"}}
<el-link type="info" @click="redirectPage('Completed')" target="_blank" style="color: #000000">
{{apiCountData.finishedCount}} {{apiCountData.finishedCount}}
</el-link>
</span> </span>
</el-col> </el-col>
</el-row> </el-row>
@ -123,6 +132,11 @@ export default {
props:{ props:{
apiCountData:{}, apiCountData:{},
}, },
methods:{
redirectPage(clickType){
this.$emit("redirectPage","api","api",clickType);
}
}
} }
</script> </script>
<style scoped> <style scoped>

View File

@ -7,7 +7,13 @@
</template> </template>
<el-table border :data="tableData" class="adjust-table table-content" height="300px"> <el-table border :data="tableData" class="adjust-table table-content" height="300px">
<el-table-column prop="sortIndex" :label="$t('api_test.home_page.failed_case_list.table_coloum.index')" width="100" show-overflow-tooltip/> <el-table-column prop="sortIndex" :label="$t('api_test.home_page.failed_case_list.table_coloum.index')" width="100" show-overflow-tooltip/>
<el-table-column prop="caseName" :label="$t('api_test.home_page.failed_case_list.table_coloum.case_name')" width="150" show-overflow-tooltip/> <el-table-column prop="caseName" :label="$t('api_test.home_page.failed_case_list.table_coloum.case_name')" width="150">
<template v-slot:default="{row}">
<el-link type="info" @click="redirect(row.caseType,row.caseID)">
{{ row.caseName }}
</el-link>
</template>
</el-table-column>
<el-table-column <el-table-column
prop="caseType" prop="caseType"
column-key="caseType" column-key="caseType"
@ -19,7 +25,15 @@
<ms-tag v-if="scope.row.caseType == 'scenario'" type="warning" effect="plain" :content="$t('api_test.home_page.failed_case_list.table_value.case_type.scene')"/> <ms-tag v-if="scope.row.caseType == 'scenario'" type="warning" effect="plain" :content="$t('api_test.home_page.failed_case_list.table_value.case_type.scene')"/>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="testPlan" :label="$t('api_test.home_page.failed_case_list.table_coloum.test_plan')" show-overflow-tooltip/> <el-table-column prop="testPlan" :label="$t('api_test.home_page.failed_case_list.table_coloum.test_plan')">
<template v-slot:default="{row}">
<div v-for="testPlan in row.testPlanDTOList" :key="testPlan.id">
<el-link type="info" @click="redirect('testPlanEdit',testPlan.id)">
{{ testPlan.name }};
</el-link>
</div>
</template>
</el-table-column>
<el-table-column prop="failureTimes" :label="$t('api_test.home_page.failed_case_list.table_coloum.failure_times')" width="100" show-overflow-tooltip/> <el-table-column prop="failureTimes" :label="$t('api_test.home_page.failed_case_list.table_coloum.failure_times')" width="100" show-overflow-tooltip/>
</el-table> </el-table>
</el-card> </el-card>
@ -51,6 +65,19 @@ export default {
this.tableData = response.data; this.tableData = response.data;
}); });
}, },
redirect(pageType,param){
switch (pageType){
case "testPlanEdit":
this.$emit('redirectPage','testPlanEdit',null, param);
break;
case "apiCase":
this.$emit('redirectPage','api','apiTestCase', 'single:'+param);
break;
case "scenario":
this.$emit('redirectPage','scenario','scenario', 'edit:'+param);
break;
}
}
}, },

View File

@ -7,7 +7,13 @@
</template> </template>
<el-table border :data="tableData" class="adjust-table table-content" height="300px"> <el-table border :data="tableData" class="adjust-table table-content" height="300px">
<el-table-column prop="index" :label="$t('api_test.home_page.running_task_list.table_coloum.index')" width="80" show-overflow-tooltip/> <el-table-column prop="index" :label="$t('api_test.home_page.running_task_list.table_coloum.index')" width="80" show-overflow-tooltip/>
<el-table-column prop="scenario" :label="$t('api_test.home_page.running_task_list.table_coloum.scenario')" width="200" show-overflow-tooltip/> <el-table-column prop="scenario" :label="$t('api_test.home_page.running_task_list.table_coloum.scenario')" width="200" >
<template v-slot:default="{row}">
<el-link type="info" @click="redirect(row.scenarioId)">
{{ row.scenario }}
</el-link>
</template>
</el-table-column>
<el-table-column prop="rule" :label="$t('api_test.home_page.running_task_list.table_coloum.run_rule')" width="120" show-overflow-tooltip/> <el-table-column prop="rule" :label="$t('api_test.home_page.running_task_list.table_coloum.run_rule')" width="120" show-overflow-tooltip/>
<el-table-column width="100" :label="$t('api_test.home_page.running_task_list.table_coloum.task_status')"> <el-table-column width="100" :label="$t('api_test.home_page.running_task_list.table_coloum.task_status')">
<template v-slot:default="scope"> <template v-slot:default="scope">
@ -80,6 +86,9 @@ export default {
this.result = this.$post('/api/schedule/updateEnableByPrimyKey', taskRow, response => { this.result = this.$post('/api/schedule/updateEnableByPrimyKey', taskRow, response => {
this.search(); this.search();
}); });
},
redirect(param){
this.$emit('redirectPage','scenario','scenario', 'edit:'+param);
} }
}, },

View File

@ -21,7 +21,10 @@
<el-header style="height:20px;padding: 0px;margin-bottom: 10px;"> <el-header style="height:20px;padding: 0px;margin-bottom: 10px;">
<el-row :gutter="20" class="hidden-lg-and-down "> <el-row :gutter="20" class="hidden-lg-and-down ">
<el-col :span="8"> <el-col :span="8">
{{$t('api_test.home_page.test_scene_details_card.this_week_add',[sceneCountData.thisWeekAddedCount])}} {{$t('api_test.home_page.test_scene_details_card.this_week_add')}}
<el-link type="info" @click="redirectPage('thisWeekCount')" target="_blank" style="color: #000000">{{sceneCountData.thisWeekAddedCount}}
</el-link>
{{$t('api_test.home_page.unit_of_measurement')}}
</el-col> </el-col>
<el-col :span="8" > <el-col :span="8" >
{{$t('api_test.home_page.test_scene_details_card.this_week_execute',[sceneCountData.thisWeekExecutedCount])}} {{$t('api_test.home_page.test_scene_details_card.this_week_execute',[sceneCountData.thisWeekExecutedCount])}}
@ -32,7 +35,11 @@
</el-row> </el-row>
<el-row :gutter="20" class="hidden-xl-only"> <el-row :gutter="20" class="hidden-xl-only">
<el-col :span="8"> <el-col :span="8">
<div class="count-info-div" v-html="$t('api_test.home_page.test_scene_details_card.this_week_add_sm',[sceneCountData.thisWeekAddedCount])"></div> {{$t('api_test.home_page.test_scene_details_card.this_week_add_sm')}}
<br/>
<el-link type="info" @click="redirectPage('thisWeekCount')" target="_blank" style="color: #000000">{{sceneCountData.thisWeekAddedCount}}
</el-link>
{{$t('api_test.home_page.unit_of_measurement')}}
</el-col> </el-col>
<el-col :span="8" > <el-col :span="8" >
<div class="count-info-div" v-html="$t('api_test.home_page.test_scene_details_card.this_week_execute_sm',[sceneCountData.thisWeekExecutedCount])"></div> <div class="count-info-div" v-html="$t('api_test.home_page.test_scene_details_card.this_week_execute_sm',[sceneCountData.thisWeekExecutedCount])"></div>
@ -64,21 +71,27 @@
<span class="defaultProperty"> <span class="defaultProperty">
{{$t('api_test.home_page.detail_card.unexecute')}} {{$t('api_test.home_page.detail_card.unexecute')}}
{{"\xa0\xa0"}} {{"\xa0\xa0"}}
<el-link type="info" @click="redirectPage('unExecute')" target="_blank" style="color: #000000">
{{sceneCountData.unexecuteCount}} {{sceneCountData.unexecuteCount}}
</el-link>
</span> </span>
</el-col> </el-col>
<el-col style="margin-top: 5px;"> <el-col style="margin-top: 5px;">
<span class="defaultProperty"> <span class="defaultProperty">
{{$t('api_test.home_page.detail_card.execution_failed')}} {{$t('api_test.home_page.detail_card.execution_failed')}}
{{"\xa0\xa0"}} {{"\xa0\xa0"}}
<el-link type="info" @click="redirectPage('executeFailed')" target="_blank" style="color: #000000">
{{sceneCountData.executionFailedCount}} {{sceneCountData.executionFailedCount}}
</el-link>
</span> </span>
</el-col> </el-col>
<el-col style="margin-top: 5px;"> <el-col style="margin-top: 5px;">
<span class="main-property"> <span class="main-property">
{{$t('api_test.home_page.detail_card.execution_pass')}} {{$t('api_test.home_page.detail_card.execution_pass')}}
{{"\xa0\xa0"}} {{"\xa0\xa0"}}
<el-link type="info" @click="redirectPage('executePass')" target="_blank" style="color: #000000">
{{sceneCountData.executionPassCount}} {{sceneCountData.executionPassCount}}
</el-link>
</span> </span>
</el-col> </el-col>
</el-row> </el-row>
@ -110,6 +123,9 @@ export default {
}, },
methods: { methods: {
redirectPage(clickType){
this.$emit("redirectPage","scenario","scenario",clickType);
}
}, },
} }
</script> </script>

View File

@ -53,7 +53,10 @@
<el-header style="height:20px;padding: 0px;margin-bottom: 10px;"> <el-header style="height:20px;padding: 0px;margin-bottom: 10px;">
<el-row :gutter="20" class="hidden-lg-and-down "> <el-row :gutter="20" class="hidden-lg-and-down ">
<el-col :span="8"> <el-col :span="8">
{{$t('api_test.home_page.test_case_details_card.this_week_add',[testCaseCountData.thisWeekAddedCount])}} {{$t('api_test.home_page.test_case_details_card.this_week_add')}}
<el-link type="info" @click="redirectPage('thisWeekCount')" target="_blank" style="color: #000000">{{testCaseCountData.thisWeekAddedCount}}
</el-link>
{{$t('api_test.home_page.unit_of_measurement')}}
</el-col> </el-col>
<el-col :span="8" > <el-col :span="8" >
{{$t('api_test.home_page.test_case_details_card.this_week_execute',[testCaseCountData.thisWeekExecutedCount])}} {{$t('api_test.home_page.test_case_details_card.this_week_execute',[testCaseCountData.thisWeekExecutedCount])}}
@ -64,7 +67,11 @@
</el-row> </el-row>
<el-row :gutter="20" class="hidden-xl-only"> <el-row :gutter="20" class="hidden-xl-only">
<el-col :span="8"> <el-col :span="8">
<div class="count-info-div" v-html="$t('api_test.home_page.test_case_details_card.this_week_add_sm',[testCaseCountData.thisWeekAddedCount])"></div> {{$t('api_test.home_page.test_case_details_card.this_week_add_sm')}}
<br/>
<el-link type="info" @click="redirectPage('thisWeekCount')" target="_blank" style="color: #000000">{{testCaseCountData.thisWeekAddedCount}}
</el-link>
{{$t('api_test.home_page.unit_of_measurement')}}
</el-col> </el-col>
<el-col :span="8" > <el-col :span="8" >
<div class="count-info-div" v-html="$t('api_test.home_page.test_case_details_card.this_week_execute_sm',[testCaseCountData.thisWeekExecutedCount])"></div> <div class="count-info-div" v-html="$t('api_test.home_page.test_case_details_card.this_week_execute_sm',[testCaseCountData.thisWeekExecutedCount])"></div>
@ -96,7 +103,9 @@
<span class="default-property"> <span class="default-property">
{{$t('api_test.home_page.detail_card.uncoverage')}} {{$t('api_test.home_page.detail_card.uncoverage')}}
{{"\xa0\xa0"}} {{"\xa0\xa0"}}
<el-link type="info" @click="redirectPage('uncoverage')" target="_blank" style="color: #000000">
{{testCaseCountData.uncoverageCount}} {{testCaseCountData.uncoverageCount}}
</el-link>
</span> </span>
</el-col> </el-col>
<el-col style=" height: 20px;margin-top: 3px;"> <el-col style=" height: 20px;margin-top: 3px;">
@ -105,7 +114,9 @@
<span class="main-property"> <span class="main-property">
{{$t('api_test.home_page.detail_card.coverage')}} {{$t('api_test.home_page.detail_card.coverage')}}
{{"\xa0\xa0"}} {{"\xa0\xa0"}}
<el-link type="info" @click="redirectPage('coverage')" target="_blank" style="color: #000000">
{{testCaseCountData.coverageCount}} {{testCaseCountData.coverageCount}}
</el-link>
</span> </span>
</el-col> </el-col>
</el-row> </el-row>
@ -135,6 +146,16 @@ export default {
testCaseCountData:{}, testCaseCountData:{},
}, },
methods: { methods: {
redirectPage(clickType){
if(clickType === 'thisWeekCount'){
//
this.$emit("redirectPage","api","apiTestCase",clickType);
}else{
//
this.$emit("redirectPage","api","api",clickType);
}
}
}, },
created() { created() {

View File

@ -808,6 +808,8 @@ export default {
}, },
home_page: { home_page: {
unit_of_measurement: "", unit_of_measurement: "",
unit_of_count: "",
unit_of_times: "times",
api_count_card: { api_count_card: {
title: "API count", title: "API count",
}, },
@ -840,23 +842,23 @@ export default {
}, },
api_details_card: { api_details_card: {
title: "API", title: "API",
this_week_add: "Added {0} this week", this_week_add: "This week add:",
}, },
test_case_details_card: { test_case_details_card: {
title: "Test case", title: "Test case",
this_week_add: "Added {0} this week", this_week_add: "This week add:",
this_week_execute: "Executed {0} this week", this_week_execute: "Executed {0} this week",
executed: "Executed {0} in history", executed: "Executed {0} in history",
this_week_add_sm: "Added {0}<br/> this week", this_week_add_sm: "This week add:",
this_week_execute_sm: "Executed {0}<br/> this week", this_week_execute_sm: "Executed {0}<br/> this week",
executed_sm: "Executed {0}<br/> in history", executed_sm: "Executed {0}<br/> in history",
}, },
test_scene_details_card: { test_scene_details_card: {
title: "Scene", title: "Scene",
this_week_add: "Added {0} this week", this_week_add: "This week add:",
this_week_execute: "Executed {0} this week", this_week_execute: "Executed {0} this week",
executed: "Executed {0} in history", executed: "Executed {0} in history",
this_week_add_sm: "Added {0}<br/> this week", this_week_add_sm: "This week add:",
this_week_execute_sm: "Executed {0}<br/> this week", this_week_execute_sm: "Executed {0}<br/> this week",
executed_sm: "Executed {0}<br/> in history", executed_sm: "Executed {0}<br/> in history",
}, },

View File

@ -809,6 +809,8 @@ export default {
}, },
home_page: { home_page: {
unit_of_measurement: "个", unit_of_measurement: "个",
unit_of_count: "个",
unit_of_times: "次",
api_count_card: { api_count_card: {
title: "接口数量统计", title: "接口数量统计",
}, },
@ -841,23 +843,23 @@ export default {
}, },
api_details_card: { api_details_card: {
title: "接口", title: "接口",
this_week_add: "本周新增: {0}个", this_week_add: "本周新增:",
}, },
test_case_details_card: { test_case_details_card: {
title: "用例", title: "用例",
this_week_add: "本周新增: {0}个", this_week_add: "本周新增:",
this_week_execute: "本周执行: {0}次", this_week_execute: "本周执行: {0}次",
executed: "历史总执行: {0}次", executed: "历史总执行: {0}次",
this_week_add_sm: "本周新增:<br/>{0}个", this_week_add_sm: "本周新增:",
this_week_execute_sm: "本周执行:<br/>{0}次", this_week_execute_sm: "本周执行:<br/>{0}次",
executed_sm: "历史总执行:<br/>{0}次", executed_sm: "历史总执行:<br/>{0}次",
}, },
test_scene_details_card: { test_scene_details_card: {
title: "场景", title: "场景",
this_week_add: "本周新增: {0}个", this_week_add: "本周新增:",
this_week_execute: "本周执行: {0}次", this_week_execute: "本周执行: {0}次",
executed: "历史总执行: {0}次", executed: "历史总执行: {0}次",
this_week_add_sm: "本周新增:<br/>{0}个", this_week_add_sm: "本周新增:",
this_week_execute_sm: "本周执行:<br/>{0}次", this_week_execute_sm: "本周执行:<br/>{0}次",
executed_sm: "历史总执行:<br/>{0}次", executed_sm: "历史总执行:<br/>{0}次",
}, },

View File

@ -808,6 +808,8 @@ export default {
}, },
home_page: { home_page: {
unit_of_measurement: "個", unit_of_measurement: "個",
unit_of_count: "個",
unit_of_times: "次",
api_count_card: { api_count_card: {
title: "接口數量統計", title: "接口數量統計",
}, },
@ -840,23 +842,23 @@ export default {
}, },
api_details_card: { api_details_card: {
title: "接口", title: "接口",
this_week_add: "本週新增: {0}个", this_week_add: "本週新增:",
}, },
test_case_details_card: { test_case_details_card: {
title: "用例", title: "用例",
this_week_add: "本週新增: {0}个", this_week_add: "本週新增:",
this_week_execute: "本週執行: {0}次", this_week_execute: "本週執行: {0}次",
executed: "歷史總執行: {0}次", executed: "歷史總執行: {0}次",
this_week_add_sm: "本週新增:<br/>{0}个", this_week_add_sm: "本週新增:",
this_week_execute_sm: "本週執行:<br/>{0}次", this_week_execute_sm: "本週執行:<br/>{0}次",
executed_sm: "歷史總執行:<br/>{0}次", executed_sm: "歷史總執行:<br/>{0}次",
}, },
test_scene_details_card: { test_scene_details_card: {
title: "場景", title: "場景",
this_week_add: "本週新增: {0}个", this_week_add: "本週新增:",
this_week_execute: "本週執行: {0}次", this_week_execute: "本週執行: {0}次",
executed: "歷史總執行: {0}次", executed: "歷史總執行: {0}次",
this_week_add_sm: "本週新增:<br/>{0}个", this_week_add_sm: "本週新增:",
this_week_execute_sm: "本週執行:<br/>{0}次", this_week_execute_sm: "本週執行:<br/>{0}次",
executed_sm: "歷史總執行:<br/>{0}次", executed_sm: "歷史總執行:<br/>{0}次",
}, },