feat(接口测试): 接口API用例列表详情交互调整
This commit is contained in:
parent
90f4f7ca4d
commit
58c01e13fd
|
@ -3,7 +3,6 @@ export enum ApiTestRouteEnum {
|
||||||
API_TEST_DEBUG_MANAGEMENT = 'apiTestDebug',
|
API_TEST_DEBUG_MANAGEMENT = 'apiTestDebug',
|
||||||
API_TEST_MANAGEMENT = 'apiTestManagement',
|
API_TEST_MANAGEMENT = 'apiTestManagement',
|
||||||
API_TEST_MANAGEMENT_RECYCLE = 'apiTestManagementRecycle',
|
API_TEST_MANAGEMENT_RECYCLE = 'apiTestManagementRecycle',
|
||||||
API_TEST_MANAGEMENT_CASE_DETAIL = 'apiTestManagementCaseDetail',
|
|
||||||
API_TEST_SCENARIO = 'apiTestScenario',
|
API_TEST_SCENARIO = 'apiTestScenario',
|
||||||
API_TEST_SCENARIO_RECYCLE = 'apiTestScenarioRecycle',
|
API_TEST_SCENARIO_RECYCLE = 'apiTestScenarioRecycle',
|
||||||
API_TEST_REPORT = 'apiTestReport',
|
API_TEST_REPORT = 'apiTestReport',
|
||||||
|
|
|
@ -64,26 +64,6 @@ const ApiTest: AppRouteRecordRaw = {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
// 接口定义-API-用例-用例列表详情
|
|
||||||
{
|
|
||||||
path: 'caseDetail',
|
|
||||||
name: ApiTestRouteEnum.API_TEST_MANAGEMENT_CASE_DETAIL,
|
|
||||||
component: () => import('@/views/api-test/management/components/management/case/apiCaseDetail.vue'),
|
|
||||||
meta: {
|
|
||||||
locale: 'case.apiCaseDetail',
|
|
||||||
roles: ['PROJECT_API_DEFINITION:READ'],
|
|
||||||
breadcrumbs: [
|
|
||||||
{
|
|
||||||
name: ApiTestRouteEnum.API_TEST_MANAGEMENT,
|
|
||||||
locale: 'case.apiCaseList',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: ApiTestRouteEnum.API_TEST_MANAGEMENT_CASE_DETAIL,
|
|
||||||
locale: 'case.apiCaseDetail',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: 'scenario',
|
path: 'scenario',
|
||||||
name: ApiTestRouteEnum.API_TEST_SCENARIO,
|
name: ApiTestRouteEnum.API_TEST_SCENARIO,
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
>
|
>
|
||||||
{{ t('apiTestDebug.serverExec') }}
|
{{ t('apiTestDebug.serverExec') }}
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-button v-else type="primary" @click="emit('stopDebug')">
|
<a-button v-else type="primary" :size="props.size" @click="emit('stopDebug')">
|
||||||
{{ t('common.stop') }}
|
{{ t('common.stop') }}
|
||||||
</a-button>
|
</a-button>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -89,6 +89,7 @@
|
||||||
:offspring-ids="props.offspringIds"
|
:offspring-ids="props.offspringIds"
|
||||||
:member-options="memberOptions"
|
:member-options="memberOptions"
|
||||||
:height-used="32"
|
:height-used="32"
|
||||||
|
@open-case-tab="openCaseTab"
|
||||||
/>
|
/>
|
||||||
<mockTable
|
<mockTable
|
||||||
v-if="activeApiTab.definitionActiveKey === 'mock'"
|
v-if="activeApiTab.definitionActiveKey === 'mock'"
|
||||||
|
@ -132,7 +133,7 @@
|
||||||
import { hasAnyPermission } from '@/utils/permission';
|
import { hasAnyPermission } from '@/utils/permission';
|
||||||
|
|
||||||
import { ProtocolItem } from '@/models/apiTest/common';
|
import { ProtocolItem } from '@/models/apiTest/common';
|
||||||
import { ApiDefinitionDetail } from '@/models/apiTest/management';
|
import { ApiCaseDetail, ApiDefinitionDetail } from '@/models/apiTest/management';
|
||||||
import { MockDetail } from '@/models/apiTest/mock';
|
import { MockDetail } from '@/models/apiTest/mock';
|
||||||
import { ModuleTreeNode } from '@/models/common';
|
import { ModuleTreeNode } from '@/models/common';
|
||||||
import {
|
import {
|
||||||
|
@ -176,6 +177,7 @@
|
||||||
const emit = defineEmits<{
|
const emit = defineEmits<{
|
||||||
(e: 'deleteApi', id: string): void;
|
(e: 'deleteApi', id: string): void;
|
||||||
(e: 'import'): void;
|
(e: 'import'): void;
|
||||||
|
(e: 'openCaseTab', apiCaseDetail: ApiCaseDetail): void;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
|
@ -278,6 +280,10 @@
|
||||||
errorMessageInfo: {},
|
errorMessageInfo: {},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function openCaseTab(record: ApiCaseDetail | string) {
|
||||||
|
emit('openCaseTab', record as ApiCaseDetail);
|
||||||
|
}
|
||||||
|
|
||||||
function addApiTab(defaultProps?: Partial<TabItem>) {
|
function addApiTab(defaultProps?: Partial<TabItem>) {
|
||||||
const id = `definition-${Date.now()}`;
|
const id = `definition-${Date.now()}`;
|
||||||
const protocol = localStorage.getItem(ProtocolKeyEnum.API_NEW_PROTOCOL);
|
const protocol = localStorage.getItem(ProtocolKeyEnum.API_NEW_PROTOCOL);
|
||||||
|
|
|
@ -1,432 +0,0 @@
|
||||||
<template>
|
|
||||||
<MsCard :header-min-width="1100" :min-width="150" auto-height hide-footer no-content-padding hide-divider hide-back>
|
|
||||||
<template #headerLeft>
|
|
||||||
<div class="flex items-center gap-4">
|
|
||||||
<caseLevel :case-level="caseDetail.priority as CaseLevel" />
|
|
||||||
<div class="one-line-text max-w-[300px] font-medium text-[var(--color-text-1)]">
|
|
||||||
{{ `[${caseDetail.num}] ${caseDetail.name}` }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<a-tooltip :content="t(caseDetail.follow ? 'common.forked' : 'common.notForked')">
|
|
||||||
<MsIcon
|
|
||||||
v-permission="['PROJECT_API_DEFINITION_CASE:READ+UPDATE']"
|
|
||||||
:loading="followLoading"
|
|
||||||
:type="caseDetail.follow ? 'icon-icon_collect_filled' : 'icon-icon_collection_outlined'"
|
|
||||||
:class="`${caseDetail.follow ? 'text-[rgb(var(--warning-6))]' : 'text-[var(--color-text-4)]'}`"
|
|
||||||
class="cursor-pointer"
|
|
||||||
:size="16"
|
|
||||||
@click="follow"
|
|
||||||
/>
|
|
||||||
</a-tooltip>
|
|
||||||
|
|
||||||
<a-tooltip :content="t('report.detail.api.copyLink')">
|
|
||||||
<MsIcon type="icon-icon_share1" class="cursor-pointer text-[var(--color-text-4)]" :size="16" @click="share" />
|
|
||||||
</a-tooltip>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<template #headerRight>
|
|
||||||
<div class="flex gap-[12px]">
|
|
||||||
<MsEnvironmentSelect :env="environmentIdByDrawer" />
|
|
||||||
<executeButton
|
|
||||||
ref="executeRef"
|
|
||||||
v-permission="['PROJECT_API_DEFINITION_CASE:READ+EXECUTE']"
|
|
||||||
:execute-loading="caseDetail.executeLoading"
|
|
||||||
@stop-debug="stopDebug"
|
|
||||||
@execute="handleExecute"
|
|
||||||
/>
|
|
||||||
<a-dropdown-button type="outline" @click="editCase">
|
|
||||||
{{ t('common.edit') }}
|
|
||||||
<template #icon>
|
|
||||||
<icon-down />
|
|
||||||
</template>
|
|
||||||
<template #content>
|
|
||||||
<a-doption
|
|
||||||
v-permission="['PROJECT_API_DEFINITION_CASE:READ+DELETE']"
|
|
||||||
value="delete"
|
|
||||||
class="error-6 text-[rgb(var(--danger-6))]"
|
|
||||||
@click="handleDelete"
|
|
||||||
>
|
|
||||||
<MsIcon type="icon-icon_delete-trash_outlined1" class="text-[rgb(var(--danger-6))]" />
|
|
||||||
{{ t('common.delete') }}
|
|
||||||
</a-doption>
|
|
||||||
</template>
|
|
||||||
</a-dropdown-button>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<createAndEditCaseDrawer
|
|
||||||
ref="createAndEditCaseDrawerRef"
|
|
||||||
v-bind="$attrs"
|
|
||||||
@load-case="(id)=>getCaseDetailInfo(id as string)"
|
|
||||||
@show-diff="showDiffDrawer"
|
|
||||||
/>
|
|
||||||
<a-divider :margin="0"></a-divider>
|
|
||||||
<MsTab
|
|
||||||
v-model:active-key="activeKey"
|
|
||||||
:show-badge="false"
|
|
||||||
:content-tab-list="tabList"
|
|
||||||
no-content
|
|
||||||
class="relative mx-[16px] border-b"
|
|
||||||
/>
|
|
||||||
</MsCard>
|
|
||||||
<MsCard class="mt-[16px]" :special-height="174" simple>
|
|
||||||
<div v-if="activeKey === 'detail'">
|
|
||||||
<MsDetailCard :title="t('common.baseInfo')" :description="description" class="mb-[8px]">
|
|
||||||
<template #type="{ value }">
|
|
||||||
<apiMethodName v-if="value" :method="value as RequestMethods" tag-size="small" is-tag />
|
|
||||||
</template>
|
|
||||||
</MsDetailCard>
|
|
||||||
<detailTab
|
|
||||||
:detail="caseDetail as RequestParam"
|
|
||||||
:protocols="protocols as ProtocolItem[]"
|
|
||||||
:is-priority-local-exec="isPriorityLocalExec"
|
|
||||||
is-case
|
|
||||||
@execute="handleExecute"
|
|
||||||
@show-diff="showDiffDrawer"
|
|
||||||
/>
|
|
||||||
<DifferentDrawer
|
|
||||||
v-model:visible="showDifferentDrawer"
|
|
||||||
:active-api-case-id="activeApiCaseId"
|
|
||||||
:active-defined-id="activeDefinedId"
|
|
||||||
@close="closeDifferent"
|
|
||||||
@clear-this-change="clearThisChangeHandler"
|
|
||||||
@sync="syncParamsHandler"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<tab-case-dependency v-else-if="activeKey === 'reference'" :source-id="caseDetail.id" />
|
|
||||||
<tab-case-execute-history
|
|
||||||
v-else-if="activeKey === 'executeHistory'"
|
|
||||||
ref="executeHistoryRef"
|
|
||||||
:source-id="caseDetail.id"
|
|
||||||
module-type="API_REPORT"
|
|
||||||
:protocol="caseDetail.protocol"
|
|
||||||
/>
|
|
||||||
<tab-case-change-history v-else :source-id="caseDetail.id" />
|
|
||||||
</MsCard>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup lang="ts">
|
|
||||||
import { ref } from 'vue';
|
|
||||||
import { useRoute, useRouter } from 'vue-router';
|
|
||||||
import { useClipboard } from '@vueuse/core';
|
|
||||||
import { Message } from '@arco-design/web-vue';
|
|
||||||
import { cloneDeep } from 'lodash-es';
|
|
||||||
|
|
||||||
import MsCard from '@/components/pure/ms-card/index.vue';
|
|
||||||
import MsDetailCard from '@/components/pure/ms-detail-card/index.vue';
|
|
||||||
import { TabItem } from '@/components/pure/ms-editable-tab/types';
|
|
||||||
import MsTab from '@/components/pure/ms-tab/index.vue';
|
|
||||||
import caseLevel from '@/components/business/ms-case-associate/caseLevel.vue';
|
|
||||||
import type { CaseLevel } from '@/components/business/ms-case-associate/types';
|
|
||||||
import MsEnvironmentSelect from '@/components/business/ms-environment-select/index.vue';
|
|
||||||
import apiMethodName from '@/views/api-test/components/apiMethodName.vue';
|
|
||||||
import executeButton from '@/views/api-test/components/executeButton.vue';
|
|
||||||
import { RequestParam } from '@/views/api-test/components/requestComposition/index.vue';
|
|
||||||
import detailTab from '@/views/api-test/management/components/management/api/preview/detail.vue';
|
|
||||||
import createAndEditCaseDrawer from '@/views/api-test/management/components/management/case/createAndEditCaseDrawer.vue';
|
|
||||||
import DifferentDrawer from '@/views/api-test/management/components/management/case/differentDrawer.vue';
|
|
||||||
import TabCaseChangeHistory from '@/views/api-test/management/components/management/case/tabContent/tabCaseChangeHistory.vue';
|
|
||||||
import TabCaseDependency from '@/views/api-test/management/components/management/case/tabContent/tabCaseDependency.vue';
|
|
||||||
import TabCaseExecuteHistory from '@/views/api-test/management/components/management/case/tabContent/tabCaseExecuteHistory.vue';
|
|
||||||
|
|
||||||
import { getProtocolList, localExecuteApiDebug, stopExecute, stopLocalExecute } from '@/api/modules/api-test/common';
|
|
||||||
import { debugCase, deleteCase, getCaseDetail, runCase, toggleFollowCase } from '@/api/modules/api-test/management';
|
|
||||||
import { getSocket } from '@/api/modules/project-management/commonScript';
|
|
||||||
import { useI18n } from '@/hooks/useI18n';
|
|
||||||
import useModal from '@/hooks/useModal';
|
|
||||||
import useAppStore from '@/store/modules/app';
|
|
||||||
import { getGenerateId } from '@/utils';
|
|
||||||
|
|
||||||
import { ProtocolItem } from '@/models/apiTest/common';
|
|
||||||
import { RequestMethods, ScenarioStepType } from '@/enums/apiEnum';
|
|
||||||
|
|
||||||
import { defaultCaseParams, defaultResponse } from '@/views/api-test/components/config';
|
|
||||||
import { parseRequestBodyFiles } from '@/views/api-test/components/utils';
|
|
||||||
|
|
||||||
const { openModal } = useModal();
|
|
||||||
const appStore = useAppStore();
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
const route = useRoute();
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
const activeKey = ref('detail');
|
|
||||||
|
|
||||||
const { copy, isSupported } = useClipboard({ legacy: true });
|
|
||||||
|
|
||||||
const caseDetail = ref<RequestParam>(cloneDeep(defaultCaseParams));
|
|
||||||
const environmentIdByDrawer = ref('');
|
|
||||||
const followLoading = ref(false);
|
|
||||||
async function follow() {
|
|
||||||
try {
|
|
||||||
followLoading.value = true;
|
|
||||||
await toggleFollowCase(caseDetail.value.id);
|
|
||||||
Message.success(caseDetail.value.follow ? t('common.unFollowSuccess') : t('common.followSuccess'));
|
|
||||||
caseDetail.value.follow = !caseDetail.value.follow;
|
|
||||||
} catch (error) {
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.log(error);
|
|
||||||
} finally {
|
|
||||||
followLoading.value = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const executeRef = ref<InstanceType<typeof executeButton>>();
|
|
||||||
const reportId = ref('');
|
|
||||||
const executeCase = ref<boolean>(false);
|
|
||||||
const websocket = ref<WebSocket>();
|
|
||||||
async function stopDebug() {
|
|
||||||
try {
|
|
||||||
if (caseDetail.value.frontendDebug) {
|
|
||||||
await stopLocalExecute(executeRef.value?.localExecuteUrl || '', reportId.value, ScenarioStepType.API_CASE);
|
|
||||||
} else {
|
|
||||||
await stopExecute(reportId.value, ScenarioStepType.API_CASE);
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.log(error);
|
|
||||||
}
|
|
||||||
websocket.value?.close();
|
|
||||||
caseDetail.value.executeLoading = false;
|
|
||||||
executeCase.value = false;
|
|
||||||
}
|
|
||||||
const temporaryResponseMap: Record<string, any> = {}; // 缓存websocket返回的报告内容,避免执行接口后切换tab导致报告丢失
|
|
||||||
const executeHistoryRef = ref<InstanceType<typeof TabCaseExecuteHistory>>();
|
|
||||||
|
|
||||||
// 开启websocket监听,接收执行结果
|
|
||||||
function debugSocket(executeType?: 'localExec' | 'serverExec') {
|
|
||||||
websocket.value = getSocket(
|
|
||||||
reportId.value,
|
|
||||||
executeType === 'localExec' ? '/ws/debug' : '',
|
|
||||||
executeType === 'localExec' ? executeRef.value?.localExecuteUrl : ''
|
|
||||||
);
|
|
||||||
websocket.value.addEventListener('message', (event) => {
|
|
||||||
const data = JSON.parse(event.data);
|
|
||||||
if (data.msgType === 'EXEC_RESULT') {
|
|
||||||
if (caseDetail.value.reportId === data.reportId) {
|
|
||||||
// 判断当前查看的tab是否是当前返回的报告的tab,是的话直接赋值
|
|
||||||
caseDetail.value.response = data.taskResult; // 渲染出用例详情和创建用例抽屉的响应数据
|
|
||||||
caseDetail.value.executeLoading = false;
|
|
||||||
executeCase.value = false;
|
|
||||||
} else {
|
|
||||||
// 不是则需要把报告缓存起来,等切换到对应的tab再赋值
|
|
||||||
temporaryResponseMap[data.reportId] = data.taskResult;
|
|
||||||
}
|
|
||||||
} else if (data.msgType === 'EXEC_END') {
|
|
||||||
// 执行结束,关闭websocket
|
|
||||||
websocket.value?.close();
|
|
||||||
caseDetail.value.executeLoading = false;
|
|
||||||
executeCase.value = false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// 执行
|
|
||||||
async function handleExecute(executeType?: 'localExec' | 'serverExec') {
|
|
||||||
try {
|
|
||||||
caseDetail.value.executeLoading = true;
|
|
||||||
caseDetail.value.response = cloneDeep(defaultResponse);
|
|
||||||
reportId.value = getGenerateId();
|
|
||||||
caseDetail.value.reportId = reportId.value; // 存储报告ID
|
|
||||||
let res;
|
|
||||||
const params = {
|
|
||||||
id: caseDetail.value.id as string,
|
|
||||||
environmentId: appStore.currentEnvConfig?.id || '',
|
|
||||||
frontendDebug: executeType === 'localExec',
|
|
||||||
reportId: reportId.value,
|
|
||||||
apiDefinitionId: caseDetail.value.apiDefinitionId,
|
|
||||||
request: caseDetail.value.request,
|
|
||||||
projectId: caseDetail.value.projectId,
|
|
||||||
linkFileIds: caseDetail.value.linkFileIds,
|
|
||||||
uploadFileIds: caseDetail.value.uploadFileIds,
|
|
||||||
};
|
|
||||||
debugSocket(executeType); // 开启websocket
|
|
||||||
if (executeType === 'serverExec') {
|
|
||||||
// 已创建的服务端
|
|
||||||
res = await runCase(params);
|
|
||||||
} else {
|
|
||||||
res = await debugCase(params);
|
|
||||||
}
|
|
||||||
if (executeType === 'localExec') {
|
|
||||||
await localExecuteApiDebug(executeRef.value?.localExecuteUrl as string, res);
|
|
||||||
}
|
|
||||||
// 执行完更新执行历史
|
|
||||||
executeHistoryRef.value?.loadExecuteList();
|
|
||||||
} catch (error) {
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.log(error);
|
|
||||||
caseDetail.value.executeLoading = false;
|
|
||||||
executeCase.value = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const createAndEditCaseDrawerRef = ref<InstanceType<typeof createAndEditCaseDrawer>>();
|
|
||||||
function editCase() {
|
|
||||||
createAndEditCaseDrawerRef.value?.open(
|
|
||||||
caseDetail.value.apiDefinitionId,
|
|
||||||
caseDetail.value as unknown as RequestParam,
|
|
||||||
false
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleDelete() {
|
|
||||||
openModal({
|
|
||||||
type: 'error',
|
|
||||||
title: t('apiTestManagement.deleteApiTipTitle', { name: caseDetail.value.name }),
|
|
||||||
content: t('case.deleteCaseTip'),
|
|
||||||
okText: t('common.confirmDelete'),
|
|
||||||
cancelText: t('common.cancel'),
|
|
||||||
okButtonProps: {
|
|
||||||
status: 'danger',
|
|
||||||
},
|
|
||||||
maskClosable: false,
|
|
||||||
onBeforeOk: async () => {
|
|
||||||
try {
|
|
||||||
await deleteCase(caseDetail.value.id as string);
|
|
||||||
// TODO 删除后这里返回原本的页面
|
|
||||||
router.back();
|
|
||||||
} catch (error) {
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.log(error);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
hideCancel: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
provide('defaultCaseParams', readonly(defaultCaseParams));
|
|
||||||
|
|
||||||
function share() {
|
|
||||||
if (isSupported) {
|
|
||||||
const url = window.location.href;
|
|
||||||
const dIdParam = `&cId=${caseDetail.value.id}`;
|
|
||||||
const copyUrl = url.includes('cId') ? url.split('&cId')[0] : url;
|
|
||||||
copy(`${copyUrl}${dIdParam}`);
|
|
||||||
Message.success(t('apiTestManagement.shareUrlCopied'));
|
|
||||||
} else {
|
|
||||||
Message.error(t('common.copyNotSupport'));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getCaseDetailInfo(id: string) {
|
|
||||||
try {
|
|
||||||
const res = await getCaseDetail(id);
|
|
||||||
let parseRequestBodyResult;
|
|
||||||
if (res.protocol === 'HTTP') {
|
|
||||||
parseRequestBodyResult = parseRequestBodyFiles(res.request.body); // 解析请求体中的文件,将详情中的文件 id 集合收集,更新时以判断文件是否删除以及是否新上传的文件
|
|
||||||
}
|
|
||||||
caseDetail.value = {
|
|
||||||
...cloneDeep(defaultCaseParams as RequestParam),
|
|
||||||
...({
|
|
||||||
...res.request,
|
|
||||||
...res,
|
|
||||||
url: res.path,
|
|
||||||
...parseRequestBodyResult,
|
|
||||||
} as Partial<TabItem>),
|
|
||||||
};
|
|
||||||
} catch (error) {
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.log(error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const description = computed(() => [
|
|
||||||
{
|
|
||||||
key: 'type',
|
|
||||||
locale: 'apiTestManagement.apiType',
|
|
||||||
value: caseDetail.value.method,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: 'name',
|
|
||||||
locale: 'case.belongingApi',
|
|
||||||
value: `[${caseDetail.value.num}] ${caseDetail.value.name}`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: 'path',
|
|
||||||
locale: 'apiTestManagement.path',
|
|
||||||
value: caseDetail.value.url || caseDetail.value.path,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: 'tags',
|
|
||||||
locale: 'common.tag',
|
|
||||||
value: caseDetail.value.tags,
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
|
|
||||||
const tabList = ref([
|
|
||||||
{
|
|
||||||
value: 'detail',
|
|
||||||
label: t('case.detail'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'reference',
|
|
||||||
label: t('apiTestManagement.reference'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'executeHistory',
|
|
||||||
label: t('apiTestManagement.executeHistory'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'changeHistory',
|
|
||||||
label: t('apiTestManagement.changeHistory'),
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
|
|
||||||
const protocols = ref<ProtocolItem[]>([]);
|
|
||||||
provide('protocols', readonly(protocols));
|
|
||||||
async function initProtocolList() {
|
|
||||||
try {
|
|
||||||
protocols.value = await getProtocolList(appStore.currentOrgId);
|
|
||||||
} catch (error) {
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.log(error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 定义id
|
|
||||||
const activeDefinedId = ref<string>('');
|
|
||||||
// 用例id
|
|
||||||
const activeApiCaseId = ref<string>('');
|
|
||||||
const showDifferentDrawer = ref<boolean>(false);
|
|
||||||
// 查看diff对比
|
|
||||||
function showDiffDrawer() {
|
|
||||||
activeApiCaseId.value = caseDetail.value.id as string;
|
|
||||||
activeDefinedId.value = caseDetail.value.apiDefinitionId;
|
|
||||||
showDifferentDrawer.value = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function closeDifferent() {
|
|
||||||
showDifferentDrawer.value = false;
|
|
||||||
activeApiCaseId.value = '';
|
|
||||||
activeDefinedId.value = '';
|
|
||||||
}
|
|
||||||
|
|
||||||
const isPriorityLocalExec = computed(() => executeRef.value?.isPriorityLocalExec ?? false);
|
|
||||||
const caseId = ref<string>(route.query.id as string);
|
|
||||||
// 忽略本次变更
|
|
||||||
async function clearThisChangeHandler(isEvery: boolean) {
|
|
||||||
getCaseDetailInfo(caseId.value);
|
|
||||||
if (isEvery) {
|
|
||||||
showDifferentDrawer.value = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 同步参数
|
|
||||||
async function syncParamsHandler(mergedRequestParam: RequestParam) {
|
|
||||||
caseDetail.value = { ...caseDetail.value, ...mergedRequestParam };
|
|
||||||
createAndEditCaseDrawerRef.value?.open(caseDetail.value.apiDefinitionId, caseDetail.value, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
onBeforeMount(() => {
|
|
||||||
initProtocolList();
|
|
||||||
getCaseDetailInfo(caseId.value);
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped lang="less">
|
|
||||||
:deep(.ms-detail-card-desc) {
|
|
||||||
gap: 16px;
|
|
||||||
flex-wrap: nowrap !important;
|
|
||||||
& > div:nth-of-type(n) {
|
|
||||||
width: auto;
|
|
||||||
max-width: 30%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -1,65 +1,84 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="h-full w-full overflow-hidden">
|
<div class="h-full w-full overflow-hidden">
|
||||||
<a-tabs v-model:active-key="activeKey" class="h-full px-[16px]" animation lazy-load @change="changeActiveKey">
|
<div class="p-[16px]">
|
||||||
|
<MsDetailCard :title="`[${caseDetail.num}] ${caseDetail.name}`" :description="description" class="mb-[8px]">
|
||||||
|
<template #titlePrefix>
|
||||||
|
<caseLevel :case-level="caseDetail.priority as CaseLevel" />
|
||||||
|
</template>
|
||||||
|
<template v-if="!props.isDrawer" #titleAppend>
|
||||||
|
<a-tooltip :content="t(caseDetail.follow ? 'common.forked' : 'common.notForked')">
|
||||||
|
<MsIcon
|
||||||
|
v-permission="['PROJECT_API_DEFINITION_CASE:READ+UPDATE']"
|
||||||
|
:loading="followLoading"
|
||||||
|
:type="caseDetail.follow ? 'icon-icon_collect_filled' : 'icon-icon_collection_outlined'"
|
||||||
|
:class="`${
|
||||||
|
caseDetail.follow
|
||||||
|
? 'text-[rgb(var(--warning-6))]'
|
||||||
|
: 'text-[var(--color-text-4)] hover:bg-[var(--color-bg-3)]'
|
||||||
|
}`"
|
||||||
|
class="cursor-pointer"
|
||||||
|
:size="16"
|
||||||
|
@click="follow"
|
||||||
|
/>
|
||||||
|
</a-tooltip>
|
||||||
|
<a-tooltip :content="t('report.detail.api.copyLink')">
|
||||||
|
<MsIcon
|
||||||
|
type="icon-icon_share1"
|
||||||
|
class="cursor-pointer text-[var(--color-text-4)] hover:bg-[var(--color-bg-3)]"
|
||||||
|
:size="16"
|
||||||
|
@click="share"
|
||||||
|
/>
|
||||||
|
</a-tooltip>
|
||||||
|
</template>
|
||||||
|
<template #titleRight>
|
||||||
|
<div class="flex gap-[8px]">
|
||||||
|
<a-button
|
||||||
|
v-permission="['PROJECT_API_DEFINITION_CASE:READ+DELETE']"
|
||||||
|
type="outline"
|
||||||
|
class="arco-btn-outline--secondary"
|
||||||
|
size="small"
|
||||||
|
@click="handleDelete"
|
||||||
|
>
|
||||||
|
{{ t('common.delete') }}
|
||||||
|
</a-button>
|
||||||
|
<a-button
|
||||||
|
v-if="!props.isDrawer"
|
||||||
|
v-permission="['PROJECT_API_DEFINITION_CASE:READ+UPDATE']"
|
||||||
|
type="outline"
|
||||||
|
size="small"
|
||||||
|
@click="editCase"
|
||||||
|
>
|
||||||
|
{{ t('common.edit') }}
|
||||||
|
</a-button>
|
||||||
|
<executeButton
|
||||||
|
ref="executeRef"
|
||||||
|
v-permission="['PROJECT_API_DEFINITION_CASE:READ+EXECUTE']"
|
||||||
|
size="small"
|
||||||
|
:execute-loading="caseDetail.executeLoading"
|
||||||
|
@stop-debug="stopDebug"
|
||||||
|
@execute="handleExecute"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template #type="{ value }">
|
||||||
|
<apiMethodName :method="value as RequestMethods" tag-size="small" is-tag />
|
||||||
|
</template>
|
||||||
|
</MsDetailCard>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a-tabs
|
||||||
|
v-model:active-key="activeKey"
|
||||||
|
class="no-left-tab h-full px-[16px]"
|
||||||
|
animation
|
||||||
|
lazy-load
|
||||||
|
@change="changeActiveKey"
|
||||||
|
>
|
||||||
<template #extra>
|
<template #extra>
|
||||||
<div class="flex gap-[12px]">
|
<div class="flex gap-[12px]">
|
||||||
<MsEnvironmentSelect v-if="props.isDrawer" :env="environmentIdByDrawer" />
|
<MsEnvironmentSelect v-if="props.isDrawer" :env="environmentIdByDrawer" />
|
||||||
<executeButton
|
|
||||||
ref="executeRef"
|
|
||||||
v-permission="['PROJECT_API_DEFINITION_CASE:READ+EXECUTE']"
|
|
||||||
:execute-loading="caseDetail.executeLoading"
|
|
||||||
@stop-debug="stopDebug"
|
|
||||||
@execute="handleExecute"
|
|
||||||
/>
|
|
||||||
<a-dropdown-button v-if="!props.isDrawer" type="outline" @click="editCase">
|
|
||||||
{{ t('common.edit') }}
|
|
||||||
<template #icon>
|
|
||||||
<icon-down />
|
|
||||||
</template>
|
|
||||||
<template #content>
|
|
||||||
<a-doption
|
|
||||||
v-permission="['PROJECT_API_DEFINITION_CASE:READ+DELETE']"
|
|
||||||
value="delete"
|
|
||||||
class="error-6 text-[rgb(var(--danger-6))]"
|
|
||||||
@click="handleDelete"
|
|
||||||
>
|
|
||||||
<MsIcon type="icon-icon_delete-trash_outlined1" class="text-[rgb(var(--danger-6))]" />
|
|
||||||
{{ t('common.delete') }}
|
|
||||||
</a-doption>
|
|
||||||
</template>
|
|
||||||
</a-dropdown-button>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<a-tab-pane key="detail" :title="t('case.detail')" class="px-[18px] py-[16px]">
|
<a-tab-pane key="detail" :title="t('case.detail')" class="px-[18px] py-[16px]">
|
||||||
<MsDetailCard :title="`【${caseDetail.num}】${caseDetail.name}`" :description="description" class="mb-[8px]">
|
|
||||||
<template v-if="!props.isDrawer" #titleAppend>
|
|
||||||
<a-tooltip :content="t(caseDetail.follow ? 'common.forked' : 'common.notForked')">
|
|
||||||
<MsIcon
|
|
||||||
v-permission="['PROJECT_API_DEFINITION_CASE:READ+UPDATE']"
|
|
||||||
:loading="followLoading"
|
|
||||||
:type="caseDetail.follow ? 'icon-icon_collect_filled' : 'icon-icon_collection_outlined'"
|
|
||||||
:class="`${caseDetail.follow ? 'text-[rgb(var(--warning-6))]' : 'text-[var(--color-text-4)]'}`"
|
|
||||||
class="cursor-pointer"
|
|
||||||
:size="16"
|
|
||||||
@click="follow"
|
|
||||||
/>
|
|
||||||
</a-tooltip>
|
|
||||||
<a-tooltip :content="t('report.detail.api.copyLink')">
|
|
||||||
<MsIcon
|
|
||||||
type="icon-icon_share1"
|
|
||||||
class="cursor-pointer text-[var(--color-text-4)]"
|
|
||||||
:size="16"
|
|
||||||
@click="share"
|
|
||||||
/>
|
|
||||||
</a-tooltip>
|
|
||||||
</template>
|
|
||||||
<template #type="{ value }">
|
|
||||||
<apiMethodName :method="value as RequestMethods" tag-size="small" is-tag />
|
|
||||||
</template>
|
|
||||||
<template #priority="{ value }">
|
|
||||||
<caseLevel :case-level="value as CaseLevel" />
|
|
||||||
</template>
|
|
||||||
</MsDetailCard>
|
|
||||||
<detailTab
|
<detailTab
|
||||||
:detail="caseDetail"
|
:detail="caseDetail"
|
||||||
:protocols="protocols as ProtocolItem[]"
|
:protocols="protocols as ProtocolItem[]"
|
||||||
|
@ -95,7 +114,7 @@
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
</a-tabs>
|
</a-tabs>
|
||||||
</div>
|
</div>
|
||||||
<createAndEditCaseDrawer ref="createAndEditCaseDrawerRef" v-bind="$attrs" @load-case="() => brashChangeHandler" />
|
<createAndEditCaseDrawer ref="createAndEditCaseDrawerRef" v-bind="$attrs" @load-case="loadCaseDetail" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
@ -159,9 +178,9 @@
|
||||||
value: caseDetail.value.method,
|
value: caseDetail.value.method,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'priority',
|
key: 'name',
|
||||||
locale: 'case.caseLevel',
|
locale: 'case.belongingApi',
|
||||||
value: caseDetail.value.priority,
|
value: `[${caseDetail.value.apiDefinitionNum}] ${caseDetail.value.apiDefinitionName}`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'path',
|
key: 'path',
|
||||||
|
@ -354,6 +373,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function loadCaseDetail() {
|
||||||
|
emit('loadCase', props.detail.id as string);
|
||||||
|
}
|
||||||
|
|
||||||
// 同步参数
|
// 同步参数
|
||||||
function syncParamsHandler(mergedRequestParam: RequestParam) {
|
function syncParamsHandler(mergedRequestParam: RequestParam) {
|
||||||
caseDetail.value = { ...caseDetail.value, ...mergedRequestParam };
|
caseDetail.value = { ...caseDetail.value, ...mergedRequestParam };
|
||||||
|
@ -407,6 +430,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
:deep(.no-left-tab) {
|
||||||
|
.arco-tabs-tab {
|
||||||
|
margin: 0 32px 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
:deep(.ms-detail-card-desc) {
|
:deep(.ms-detail-card-desc) {
|
||||||
gap: 16px;
|
gap: 16px;
|
||||||
flex-wrap: nowrap !important;
|
flex-wrap: nowrap !important;
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
</template>
|
</template>
|
||||||
<template #num="{ record }">
|
<template #num="{ record }">
|
||||||
<div class="flex items-center">
|
<div class="flex items-center">
|
||||||
<MsButton type="text" @click="isApi ? openCaseDetailDrawer(record.id) : openCaseTab(record)">
|
<MsButton type="text" @click="openCaseTab(record)">
|
||||||
{{ record.num }}
|
{{ record.num }}
|
||||||
</MsButton>
|
</MsButton>
|
||||||
<a-tooltip v-if="record.apiChange" class="ms-tooltip-white">
|
<a-tooltip v-if="record.apiChange" class="ms-tooltip-white">
|
||||||
|
@ -320,7 +320,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useRoute, useRouter } from 'vue-router';
|
|
||||||
import { FormInstance, Message } from '@arco-design/web-vue';
|
import { FormInstance, Message } from '@arco-design/web-vue';
|
||||||
import { cloneDeep } from 'lodash-es';
|
import { cloneDeep } from 'lodash-es';
|
||||||
|
|
||||||
|
@ -368,7 +367,6 @@
|
||||||
import { DragSortParams } from '@/models/common';
|
import { DragSortParams } from '@/models/common';
|
||||||
import { RequestCaseStatus } from '@/enums/apiEnum';
|
import { RequestCaseStatus } from '@/enums/apiEnum';
|
||||||
import { ReportEnum, ReportStatus } from '@/enums/reportEnum';
|
import { ReportEnum, ReportStatus } from '@/enums/reportEnum';
|
||||||
import { ApiTestRouteEnum } from '@/enums/routeEnum';
|
|
||||||
import { TableKeyEnum } from '@/enums/tableEnum';
|
import { TableKeyEnum } from '@/enums/tableEnum';
|
||||||
import { FilterRemoteMethodsEnum, FilterSlotNameEnum } from '@/enums/tableFilterEnum';
|
import { FilterRemoteMethodsEnum, FilterSlotNameEnum } from '@/enums/tableFilterEnum';
|
||||||
|
|
||||||
|
@ -394,8 +392,6 @@
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const tableStore = useTableStore();
|
const tableStore = useTableStore();
|
||||||
const { openModal } = useModal();
|
const { openModal } = useModal();
|
||||||
const route = useRoute();
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
const keyword = ref('');
|
const keyword = ref('');
|
||||||
|
|
||||||
|
@ -935,17 +931,6 @@
|
||||||
console.log(error);
|
console.log(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async function openCaseDetailDrawer(id: string) {
|
|
||||||
await getCaseDetailInfo(id);
|
|
||||||
caseExecute.value = false;
|
|
||||||
router.push({
|
|
||||||
name: ApiTestRouteEnum.API_TEST_MANAGEMENT_CASE_DETAIL,
|
|
||||||
query: {
|
|
||||||
...route.query,
|
|
||||||
id,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async function openCaseDetailDrawerAndExecute(id: string) {
|
async function openCaseDetailDrawerAndExecute(id: string) {
|
||||||
await getCaseDetailInfo(id);
|
await getCaseDetailInfo(id);
|
||||||
|
|
|
@ -54,6 +54,7 @@
|
||||||
:current-tab="currentTab"
|
:current-tab="currentTab"
|
||||||
:member-options="memberOptions"
|
:member-options="memberOptions"
|
||||||
@import="emit('import')"
|
@import="emit('import')"
|
||||||
|
@open-case-tab="(apiCaseDetail:ApiCaseDetail)=>newCaseTab(apiCaseDetail.id)"
|
||||||
@delete-api="(id) => handleDeleteApiFromModuleTree(id)"
|
@delete-api="(id) => handleDeleteApiFromModuleTree(id)"
|
||||||
/>
|
/>
|
||||||
<apiCase
|
<apiCase
|
||||||
|
@ -99,6 +100,7 @@
|
||||||
import { hasAnyPermission } from '@/utils/permission';
|
import { hasAnyPermission } from '@/utils/permission';
|
||||||
|
|
||||||
import { ProtocolItem } from '@/models/apiTest/common';
|
import { ProtocolItem } from '@/models/apiTest/common';
|
||||||
|
import { ApiCaseDetail } from '@/models/apiTest/management';
|
||||||
import { MockDetail } from '@/models/apiTest/mock';
|
import { MockDetail } from '@/models/apiTest/mock';
|
||||||
import { ModuleTreeNode } from '@/models/common';
|
import { ModuleTreeNode } from '@/models/common';
|
||||||
import {
|
import {
|
||||||
|
|
Loading…
Reference in New Issue