fix(接口测试): 文档结构根保护处理防止解析错误

--bug=1009952 --user=赵勇 【接口测试】文档结构断言-跟随api定义,接口响应格式错误时会报错 https://www.tapd.cn/55049933/s/1098029
This commit is contained in:
fit2-zhao 2022-01-25 13:59:57 +08:00 committed by 刘瑞斌
parent a3c6f213b6
commit d3b810c062
2 changed files with 340 additions and 329 deletions

View File

@ -17,11 +17,11 @@
</el-col>
<el-col :span="4">
<el-select v-model="pickValue.type" :disabled="disabledType" class="ms-col-type" @change="onChangeType" size="small">
<el-option :key="t" :value="t" :label="t" v-for="t in TYPE_NAME"/>
<el-option :key="t" :value="t" :label="t" v-for="t in types"/>
</el-select>
</el-col>
<el-col :span="4">
<ms-mock :disabled="pickValue.type==='object' || pickValue.type==='array' || pickValue.type==='null'" :schema="pickValue"/>
<ms-mock :disabled="pickKey ==='root' || pickValue.type==='object' || pickValue.type==='array' || pickValue.type==='null'" :schema="pickValue"/>
</el-col>
<el-col :span="4">
<el-input v-model="pickValue.description" class="ms-col-title" :placeholder="$t('schema.description')" size="small"/>
@ -71,8 +71,8 @@
</el-form-item>
</div>
</el-form>
<p class="tip">{{$t('schema.preview')}} </p>
<pre style="width:100%">{{completeNodeValue}}</pre>
<p class="tip">{{ $t('schema.preview') }} </p>
<pre style="width:100%">{{ completeNodeValue }}</pre>
<span slot="footer" class="dialog-footer">
<ms-dialog-footer
@ -83,13 +83,13 @@
</div>
</template>
<script>
import {isNull} from './util'
import {TYPE_NAME, TYPE} from './type/type'
import MsMock from './mock/MockComplete'
import MsDialogFooter from '../../../components/MsDialogFooter'
import {getUUID} from "@/common/js/utils";
import {isNull} from './util'
import {TYPE_NAME, TYPE, TYPES} from './type/type'
import MsMock from './mock/MockComplete'
import MsDialogFooter from '../../../components/MsDialogFooter'
import {getUUID} from "@/common/js/utils";
export default {
export default {
name: 'JsonSchemaEditor',
components: {MsMock, MsDialogFooter},
props: {
@ -149,6 +149,9 @@
advanced() {
return TYPE[this.pickValue.type]
},
types(){
return TYPES(this.pickKey);
},
advancedAttr() {
return TYPE[this.pickValue.type].attr
},
@ -169,7 +172,6 @@
},
data() {
return {
TYPE_NAME,
hidden: false,
countAdd: 1,
modalVisible: false,
@ -195,9 +197,9 @@
this.$set(this.parent, 'properties', p)
},
onChangeType() {
if(this.parent && this.parent.type === 'array'){
this.$emit('changeAllItemsType',this.pickValue.type);
}else{
if (this.parent && this.parent.type === 'array') {
this.$emit('changeAllItemsType', this.pickValue.type);
} else {
this.$delete(this.pickValue, 'properties')
this.$delete(this.pickValue, 'items')
this.$delete(this.pickValue, 'required')
@ -207,8 +209,8 @@
}
}
},
changeAllItemsType(changeType){
if(this.isArray && this.pickValue.items && this.pickValue.items.length > 0){
changeAllItemsType(changeType) {
if (this.isArray && this.pickValue.items && this.pickValue.items.length > 0) {
this.pickValue.items.forEach(item => {
item.type = changeType;
this.$delete(item, 'properties')
@ -254,14 +256,14 @@
const node = this.pickValue;
if (this.isArray) {
let childObj = {type: 'string', mock: {mock: ""}}
if(node.items && node.items.length > 0){
if (node.items && node.items.length > 0) {
childObj.type = node.items[0].type;
node.items.push(childObj);
}else {
} else {
this.$set(this.pickValue, 'items', [childObj]);
}
}else {
} else {
const name = this._joinName()
const type = 'string'
node.properties || this.$set(node, 'properties', {})
@ -280,7 +282,7 @@
this.customing = false
},
removeNode() {
if(this.parent.type && this.parent.type === 'object'){
if (this.parent.type && this.parent.type === 'object') {
const {properties, required} = this.parent
this.$delete(properties, this.pickKey)
if (required) {
@ -288,7 +290,7 @@
pos >= 0 && required.splice(pos, 1)
required.length === 0 && this.$delete(this.parent, 'required')
}
}else if(this.parent.type && this.parent.type === 'array'){
} else if (this.parent.type && this.parent.type === 'array') {
const {items, required} = this.parent
this.$delete(items, this.pickKey)
if (required) {
@ -326,67 +328,67 @@
this.$set(this.pickValue, item.key, item.value)
}
},
parentReloadItems(){
parentReloadItems() {
this.$emit("reloadItems");
},
reloadItems(){
reloadItems() {
this.reloadItemOver = false;
this.$nextTick(() => {
this.reloadItemOver = true;
})
}
}
}
}
</script>
<style scoped>
.json-schema-editor .row {
.json-schema-editor .row {
display: flex;
margin: 12px;
}
}
.json-schema-editor .row .ms-col-name {
.json-schema-editor .row .ms-col-name {
display: flex;
align-items: center;
}
}
.json-schema-editor .row .ms-col-name .ms-col-name-c {
.json-schema-editor .row .ms-col-name .ms-col-name-c {
display: flex;
align-items: center;
}
}
.json-schema-editor .row .ms-col-name .ms-col-name-required {
.json-schema-editor .row .ms-col-name .ms-col-name-required {
flex: 0 0 30px;
text-align: center;
}
}
.json-schema-editor .row .ms-col-type {
.json-schema-editor .row .ms-col-type {
width: 100%;
}
}
.json-schema-editor .row .ms-col-setting {
.json-schema-editor .row .ms-col-setting {
display: inline-block;
}
}
.json-schema-editor .row .setting-icon {
.json-schema-editor .row .setting-icon {
color: rgba(0, 0, 0, 0.45);
border: none;
}
}
.json-schema-editor .row .plus-icon {
.json-schema-editor .row .plus-icon {
border: none;
}
}
.json-schema-editor .row .close-icon {
.json-schema-editor .row .close-icon {
color: #888;
border: none;
}
}
.json-schema-editor-advanced-modal {
.json-schema-editor-advanced-modal {
color: rgba(0, 0, 0, 0.65);
min-width: 600px;
}
}
.json-schema-editor-advanced-modal pre {
.json-schema-editor-advanced-modal pre {
font-family: monospace;
height: 100%;
overflow-y: auto;
@ -394,29 +396,29 @@
border-radius: 4px;
padding: 12px;
width: 50%;
}
}
.json-schema-editor-advanced-modal h3 {
.json-schema-editor-advanced-modal h3 {
display: block;
border-left: 3px solid #1890ff;
padding: 0 8px;
}
}
.json-schema-editor-advanced-modal .ms-advanced-search-form {
.json-schema-editor-advanced-modal .ms-advanced-search-form {
display: flex;
}
}
.json-schema-editor-advanced-modal .ms-advanced-search-form .ms-form-item .ms-form-item-control-wrapper {
.json-schema-editor-advanced-modal .ms-advanced-search-form .ms-form-item .ms-form-item-control-wrapper {
flex: 1;
}
}
.col-item-setting {
.col-item-setting {
padding-top: 8px;
cursor: pointer;
}
}
.ms-transform {
.ms-transform {
transform: rotate(-180deg);
transition: 0ms;
}
}
</style>

View File

@ -4,7 +4,9 @@ import _array from './array'
import _boolean from './boolean'
import _integer from './integer'
import _number from './number'
const TYPE_NAME = ['string', 'number', 'integer','object', 'array', 'boolean']
import {LicenseKey} from "@/common/js/constants";
const TYPE_NAME = ['string', 'number', 'integer', 'object', 'array', 'boolean']
const TYPE = {
'object': _object,
@ -14,4 +16,11 @@ const TYPE = {
'integer': _integer,
'number': _number
}
export {TYPE ,TYPE_NAME}
export {TYPE, TYPE_NAME}
export function TYPES(key) {
if (key && key === 'root') {
return ['object', 'array'];
}
return TYPE_NAME;
}