feat(接口测试): 定义预览-增加请求体和响应体的schema展示
This commit is contained in:
parent
c16872babb
commit
d4bb83ff82
|
@ -65,6 +65,8 @@
|
||||||
:columns="queryRestColumns"
|
:columns="queryRestColumns"
|
||||||
:data="previewDetail.query?.filter((e) => e.key !== '') || []"
|
:data="previewDetail.query?.filter((e) => e.key !== '') || []"
|
||||||
:selectable="false"
|
:selectable="false"
|
||||||
|
:show-setting="true"
|
||||||
|
:table-key="TableKeyEnum.API_TEST_DEBUG_QUERY"
|
||||||
/>
|
/>
|
||||||
<MsCodeEditor
|
<MsCodeEditor
|
||||||
v-show="queryShowType === 'raw'"
|
v-show="queryShowType === 'raw'"
|
||||||
|
@ -103,6 +105,8 @@
|
||||||
:columns="queryRestColumns?.filter((e) => e.key !== '')"
|
:columns="queryRestColumns?.filter((e) => e.key !== '')"
|
||||||
:data="previewDetail.rest || []"
|
:data="previewDetail.rest || []"
|
||||||
:selectable="false"
|
:selectable="false"
|
||||||
|
:show-setting="true"
|
||||||
|
:table-key="TableKeyEnum.API_TEST_DEBUG_REST"
|
||||||
/>
|
/>
|
||||||
<MsCodeEditor
|
<MsCodeEditor
|
||||||
v-show="restShowType === 'raw'"
|
v-show="restShowType === 'raw'"
|
||||||
|
@ -133,15 +137,15 @@
|
||||||
<div class="detail-item-title-text">
|
<div class="detail-item-title-text">
|
||||||
{{ `${t('apiTestManagement.requestBody')}-${previewDetail.body.bodyType}` }}
|
{{ `${t('apiTestManagement.requestBody')}-${previewDetail.body.bodyType}` }}
|
||||||
</div>
|
</div>
|
||||||
<!-- <a-radio-group
|
<a-radio-group
|
||||||
v-if="previewDetail.body.bodyType !== RequestBodyFormat.NONE"
|
v-if="previewDetail.body.bodyType === RequestBodyFormat.JSON"
|
||||||
v-model:model-value="bodyShowType"
|
v-model:model-value="bodyShowType"
|
||||||
type="button"
|
type="button"
|
||||||
size="mini"
|
size="mini"
|
||||||
>
|
>
|
||||||
<a-radio value="table">Table</a-radio>
|
<a-radio value="schema">Schema</a-radio>
|
||||||
<a-radio value="code">Code</a-radio>
|
<a-radio value="json">JSON</a-radio>
|
||||||
</a-radio-group> -->
|
</a-radio-group>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div
|
<!-- <div
|
||||||
v-if="previewDetail.body.bodyType === RequestBodyFormat.NONE"
|
v-if="previewDetail.body.bodyType === RequestBodyFormat.NONE"
|
||||||
|
@ -158,13 +162,23 @@
|
||||||
:columns="bodyColumns"
|
:columns="bodyColumns"
|
||||||
:data="bodyTableData"
|
:data="bodyTableData"
|
||||||
:selectable="false"
|
:selectable="false"
|
||||||
|
:show-setting="true"
|
||||||
|
:table-key="TableKeyEnum.API_TEST_DEBUG_FORM_DATA"
|
||||||
/>
|
/>
|
||||||
<MsCodeEditor
|
<template
|
||||||
v-else-if="
|
v-else-if="
|
||||||
[RequestBodyFormat.JSON, RequestBodyFormat.RAW, RequestBodyFormat.XML].includes(
|
[RequestBodyFormat.JSON, RequestBodyFormat.RAW, RequestBodyFormat.XML].includes(
|
||||||
previewDetail.body.bodyType
|
previewDetail.body.bodyType
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
|
>
|
||||||
|
<MsJsonSchema
|
||||||
|
v-if="previewDetail.body.bodyType === RequestBodyFormat.JSON && bodyShowType === 'schema'"
|
||||||
|
:data="previewDetail.body.jsonBody.jsonSchemaTableData"
|
||||||
|
disabled
|
||||||
|
/>
|
||||||
|
<MsCodeEditor
|
||||||
|
v-show="!(previewDetail.body.bodyType === RequestBodyFormat.JSON && bodyShowType === 'schema')"
|
||||||
:model-value="bodyCode"
|
:model-value="bodyCode"
|
||||||
theme="vs"
|
theme="vs"
|
||||||
height="200px"
|
height="200px"
|
||||||
|
@ -186,6 +200,7 @@
|
||||||
</a-button>
|
</a-button>
|
||||||
</template>
|
</template>
|
||||||
</MsCodeEditor>
|
</MsCodeEditor>
|
||||||
|
</template>
|
||||||
<a-divider type="dashed" :margin="0" class="!mt-[16px] border-[var(--color-text-n8)]" />
|
<a-divider type="dashed" :margin="0" class="!mt-[16px] border-[var(--color-text-n8)]" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -272,6 +287,33 @@
|
||||||
<div class="detail-item-title-text">
|
<div class="detail-item-title-text">
|
||||||
{{ `${t('apiTestDebug.responseBody')}-${activeResponse?.body.bodyType}` }}
|
{{ `${t('apiTestDebug.responseBody')}-${activeResponse?.body.bodyType}` }}
|
||||||
</div>
|
</div>
|
||||||
|
<div v-if="activeResponse?.body.bodyType === ResponseBodyFormat.JSON" class="flex items-center gap-[8px]">
|
||||||
|
<MsButton
|
||||||
|
type="text"
|
||||||
|
class="!mr-0"
|
||||||
|
:class="
|
||||||
|
activeResponse.body.jsonBody.enableJsonSchema
|
||||||
|
? 'font-medium !text-[rgb(var(--primary-5))]'
|
||||||
|
: '!text-[var(--color-text-4)]'
|
||||||
|
"
|
||||||
|
@click="handleChangeJsonType('Schema')"
|
||||||
|
>
|
||||||
|
Schema
|
||||||
|
</MsButton>
|
||||||
|
<a-divider :margin="0" direction="vertical"></a-divider>
|
||||||
|
<MsButton
|
||||||
|
type="text"
|
||||||
|
class="!mr-0"
|
||||||
|
:class="
|
||||||
|
!activeResponse.body.jsonBody.enableJsonSchema
|
||||||
|
? 'font-medium !text-[rgb(var(--primary-5))]'
|
||||||
|
: '!text-[var(--color-text-4)]'
|
||||||
|
"
|
||||||
|
@click="handleChangeJsonType('Json')"
|
||||||
|
>
|
||||||
|
Json
|
||||||
|
</MsButton>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<MsFormTable
|
<MsFormTable
|
||||||
v-if="activeResponse?.body.bodyType === ResponseBodyFormat.BINARY"
|
v-if="activeResponse?.body.bodyType === ResponseBodyFormat.BINARY"
|
||||||
|
@ -279,6 +321,13 @@
|
||||||
:data="responseBodyTableData"
|
:data="responseBodyTableData"
|
||||||
:selectable="false"
|
:selectable="false"
|
||||||
/>
|
/>
|
||||||
|
<MsJsonSchema
|
||||||
|
v-else-if="
|
||||||
|
activeResponse?.body.bodyType === ResponseBodyFormat.JSON && activeResponse.body.jsonBody.enableJsonSchema
|
||||||
|
"
|
||||||
|
:data="activeResponse.body.jsonBody.jsonSchemaTableData"
|
||||||
|
disabled
|
||||||
|
/>
|
||||||
<MsCodeEditor
|
<MsCodeEditor
|
||||||
v-else
|
v-else
|
||||||
:model-value="responseCode"
|
:model-value="responseCode"
|
||||||
|
@ -323,7 +372,7 @@
|
||||||
"
|
"
|
||||||
class="h-full"
|
class="h-full"
|
||||||
>
|
>
|
||||||
<result
|
<Result
|
||||||
v-model:active-tab="previewDetail.responseActiveTab"
|
v-model:active-tab="previewDetail.responseActiveTab"
|
||||||
:request-result="previewDetail.response?.requestResults[0]"
|
:request-result="previewDetail.response?.requestResults[0]"
|
||||||
:console="previewDetail.response?.console"
|
:console="previewDetail.response?.console"
|
||||||
|
@ -344,21 +393,25 @@
|
||||||
import { Message } from '@arco-design/web-vue';
|
import { Message } from '@arco-design/web-vue';
|
||||||
import { cloneDeep } from 'lodash-es';
|
import { cloneDeep } from 'lodash-es';
|
||||||
|
|
||||||
|
import MsButton from '@/components/pure/ms-button/index.vue';
|
||||||
import MsCodeEditor from '@/components/pure/ms-code-editor/index.vue';
|
import MsCodeEditor from '@/components/pure/ms-code-editor/index.vue';
|
||||||
import { LanguageEnum } from '@/components/pure/ms-code-editor/types';
|
import { LanguageEnum } from '@/components/pure/ms-code-editor/types';
|
||||||
import MsEditableTab from '@/components/pure/ms-editable-tab/index.vue';
|
import MsEditableTab from '@/components/pure/ms-editable-tab/index.vue';
|
||||||
import { TabItem } from '@/components/pure/ms-editable-tab/types';
|
import { TabItem } from '@/components/pure/ms-editable-tab/types';
|
||||||
import MsFormTable, { FormTableColumn } from '@/components/pure/ms-form-table/index.vue';
|
import MsFormTable, { FormTableColumn } from '@/components/pure/ms-form-table/index.vue';
|
||||||
import MsIcon from '@/components/pure/ms-icon-font/index.vue';
|
import MsIcon from '@/components/pure/ms-icon-font/index.vue';
|
||||||
|
import MsJsonSchema from '@/components/pure/ms-json-schema/index.vue';
|
||||||
|
import { parseSchemaToJsonSchemaTableData } from '@/components/pure/ms-json-schema/utils';
|
||||||
import { ResponseItem } from '@/views/api-test/components/requestComposition/response/edit.vue';
|
import { ResponseItem } from '@/views/api-test/components/requestComposition/response/edit.vue';
|
||||||
import responseCodeTimeSize from '@/views/api-test/components/requestComposition/response/responseCodeTimeSize.vue';
|
import responseCodeTimeSize from '@/views/api-test/components/requestComposition/response/responseCodeTimeSize.vue';
|
||||||
import result from '@/views/api-test/components/requestComposition/response/result.vue';
|
import Result from '@/views/api-test/components/requestComposition/response/result.vue';
|
||||||
|
|
||||||
import { getPluginScript } from '@/api/modules/api-test/common';
|
import { getPluginScript } from '@/api/modules/api-test/common';
|
||||||
import { useI18n } from '@/hooks/useI18n';
|
import { useI18n } from '@/hooks/useI18n';
|
||||||
|
|
||||||
import { PluginConfig, ProtocolItem } from '@/models/apiTest/common';
|
import { PluginConfig, ProtocolItem } from '@/models/apiTest/common';
|
||||||
import { RequestBodyFormat, RequestParamsType, ResponseBodyFormat } from '@/enums/apiEnum';
|
import { RequestBodyFormat, RequestParamsType, ResponseBodyFormat } from '@/enums/apiEnum';
|
||||||
|
import { TableKeyEnum } from '@/enums/tableEnum';
|
||||||
|
|
||||||
import type { RequestParam } from '@/views/api-test/components/requestComposition/index.vue';
|
import type { RequestParam } from '@/views/api-test/components/requestComposition/index.vue';
|
||||||
|
|
||||||
|
@ -510,18 +563,20 @@
|
||||||
dataIndex: 'key',
|
dataIndex: 'key',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
width: 220,
|
width: 220,
|
||||||
|
columnSelectorDisabled: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'apiTestDebug.paramType',
|
title: 'apiTestDebug.paramType',
|
||||||
dataIndex: 'paramType',
|
dataIndex: 'paramType',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
width: 96,
|
width: 96,
|
||||||
|
columnSelectorDisabled: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'apiTestManagement.paramVal',
|
title: 'apiTestManagement.paramVal',
|
||||||
dataIndex: 'value',
|
dataIndex: 'value',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
width: 220,
|
columnSelectorDisabled: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'apiTestManagement.required',
|
title: 'apiTestManagement.required',
|
||||||
|
@ -538,6 +593,7 @@
|
||||||
dataIndex: 'lengthRange',
|
dataIndex: 'lengthRange',
|
||||||
slotName: 'lengthRange',
|
slotName: 'lengthRange',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
|
showInTable: false,
|
||||||
valueFormat: (record) => {
|
valueFormat: (record) => {
|
||||||
return [null, undefined].includes(record.minLength) && [null, undefined].includes(record.maxLength)
|
return [null, undefined].includes(record.minLength) && [null, undefined].includes(record.maxLength)
|
||||||
? '-'
|
? '-'
|
||||||
|
@ -550,6 +606,7 @@
|
||||||
dataIndex: 'encode',
|
dataIndex: 'encode',
|
||||||
slotName: 'encode',
|
slotName: 'encode',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
|
showInTable: false,
|
||||||
valueFormat: (record) => {
|
valueFormat: (record) => {
|
||||||
return record.encode ? t('common.yes') : t('common.no');
|
return record.encode ? t('common.yes') : t('common.no');
|
||||||
},
|
},
|
||||||
|
@ -561,6 +618,13 @@
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
showTooltip: true,
|
showTooltip: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '',
|
||||||
|
dataIndex: 'operation',
|
||||||
|
slotName: 'operation',
|
||||||
|
fixed: 'right',
|
||||||
|
width: 100,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
const queryShowType = ref('table');
|
const queryShowType = ref('table');
|
||||||
const queryRawCode = computed(() => {
|
const queryRawCode = computed(() => {
|
||||||
|
@ -582,19 +646,21 @@
|
||||||
dataIndex: 'key',
|
dataIndex: 'key',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
width: 220,
|
width: 220,
|
||||||
|
columnSelectorDisabled: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'apiTestManagement.paramsType',
|
title: 'apiTestManagement.paramsType',
|
||||||
dataIndex: 'paramType',
|
dataIndex: 'paramType',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
width: 96,
|
width: 96,
|
||||||
|
columnSelectorDisabled: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'apiTestManagement.paramVal',
|
title: 'apiTestManagement.paramVal',
|
||||||
dataIndex: 'value',
|
dataIndex: 'value',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
showTooltip: true,
|
showTooltip: true,
|
||||||
width: 220,
|
columnSelectorDisabled: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'apiTestManagement.required',
|
title: 'apiTestManagement.required',
|
||||||
|
@ -611,6 +677,7 @@
|
||||||
dataIndex: 'lengthRange',
|
dataIndex: 'lengthRange',
|
||||||
slotName: 'lengthRange',
|
slotName: 'lengthRange',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
|
showInTable: false,
|
||||||
valueFormat: (record) => {
|
valueFormat: (record) => {
|
||||||
return [null, undefined].includes(record.minLength) && [null, undefined].includes(record.maxLength)
|
return [null, undefined].includes(record.minLength) && [null, undefined].includes(record.maxLength)
|
||||||
? '-'
|
? '-'
|
||||||
|
@ -623,6 +690,7 @@
|
||||||
dataIndex: 'encode',
|
dataIndex: 'encode',
|
||||||
slotName: 'encode',
|
slotName: 'encode',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
|
showInTable: false,
|
||||||
valueFormat: (record) => {
|
valueFormat: (record) => {
|
||||||
return record.encode ? t('common.yes') : t('common.no');
|
return record.encode ? t('common.yes') : t('common.no');
|
||||||
},
|
},
|
||||||
|
@ -634,6 +702,13 @@
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
showTooltip: true,
|
showTooltip: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '',
|
||||||
|
dataIndex: 'operation',
|
||||||
|
slotName: 'operation',
|
||||||
|
fixed: 'right',
|
||||||
|
width: 100,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
return [
|
return [
|
||||||
|
@ -651,7 +726,7 @@
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
// const bodyShowType = ref('table');
|
const bodyShowType = ref('schema');
|
||||||
const bodyTableData = computed(() => {
|
const bodyTableData = computed(() => {
|
||||||
switch (previewDetail.value.body.bodyType) {
|
switch (previewDetail.value.body.bodyType) {
|
||||||
case RequestBodyFormat.FORM_DATA:
|
case RequestBodyFormat.FORM_DATA:
|
||||||
|
@ -690,6 +765,17 @@
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
watchEffect(() => {
|
||||||
|
if (previewDetail.value.body.jsonBody?.jsonSchema) {
|
||||||
|
const { result } = parseSchemaToJsonSchemaTableData(previewDetail.value.body.jsonBody.jsonSchema);
|
||||||
|
previewDetail.value.body.jsonBody.jsonSchemaTableData = result;
|
||||||
|
} else if (
|
||||||
|
!previewDetail.value.body.jsonBody.jsonSchemaTableData ||
|
||||||
|
previewDetail.value.body.jsonBody.jsonSchemaTableData.length === 0
|
||||||
|
) {
|
||||||
|
previewDetail.value.body.jsonBody.jsonSchemaTableData = [];
|
||||||
|
}
|
||||||
|
});
|
||||||
const bodyCodeLanguage = computed(() => {
|
const bodyCodeLanguage = computed(() => {
|
||||||
if (previewDetail.value.body.bodyType === RequestBodyFormat.JSON) {
|
if (previewDetail.value.body.bodyType === RequestBodyFormat.JSON) {
|
||||||
return LanguageEnum.JSON;
|
return LanguageEnum.JSON;
|
||||||
|
@ -760,6 +846,22 @@
|
||||||
]
|
]
|
||||||
: [];
|
: [];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
watchEffect(() => {
|
||||||
|
if (activeResponse.value) {
|
||||||
|
if (activeResponse.value.body.jsonBody.jsonSchema) {
|
||||||
|
const { result } = parseSchemaToJsonSchemaTableData(activeResponse.value.body.jsonBody.jsonSchema);
|
||||||
|
activeResponse.value.body.jsonBody.jsonSchemaTableData = result;
|
||||||
|
} else {
|
||||||
|
activeResponse.value.body.jsonBody.jsonSchemaTableData = [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
function handleChangeJsonType(type: 'Schema' | 'Json') {
|
||||||
|
if (activeResponse.value) {
|
||||||
|
activeResponse.value.body.jsonBody.enableJsonSchema = type === 'Schema';
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
@ -794,7 +896,7 @@
|
||||||
.detail-item {
|
.detail-item {
|
||||||
padding-top: 16px;
|
padding-top: 16px;
|
||||||
.detail-item-title {
|
.detail-item-title {
|
||||||
@apply flex items-center;
|
@apply flex items-center justify-between;
|
||||||
|
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
gap: 16px;
|
gap: 16px;
|
||||||
|
@ -821,4 +923,7 @@
|
||||||
:deep(.arco-table-td-content) {
|
:deep(.arco-table-td-content) {
|
||||||
padding: 5px 8px;
|
padding: 5px 8px;
|
||||||
}
|
}
|
||||||
|
:deep(.ms-json-schema) .arco-table-td-content {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue