# Conflicts:
#	frontend/src/business/components/api/automation/scenario/EditApiScenario.vue
This commit is contained in:
fit2-zhao 2020-12-23 18:52:10 +08:00
parent 0665359d60
commit e54c956781
1 changed files with 96 additions and 135 deletions

View File

@ -2,8 +2,14 @@
<el-card class="card-content"> <el-card class="card-content">
<div> <div>
<div class="ms-main-div" @click="showAll"> <div class="ms-main-div" @click="showAll">
<el-button type="primary" size="small" @click="editScenario" style="float: right;margin: 0px 20px 10px">{{$t('commons.save')}}</el-button> <el-row>
<el-col>
<!--操作按钮-->
<div class="ms-opt-btn">
<el-button type="primary" size="small" @click="editScenario">{{$t('commons.save')}}</el-button>
</div>
</el-col>
</el-row>
<div class="tip">{{$t('test_track.plan_view.base_info')}}</div> <div class="tip">{{$t('test_track.plan_view.base_info')}}</div>
<el-form :model="currentScenario" label-position="right" label-width="80px" size="small" :rules="rules" ref="currentScenario" style="margin-right: 20px"> <el-form :model="currentScenario" label-position="right" label-width="80px" size="small" :rules="rules" ref="currentScenario" style="margin-right: 20px">
<!-- 基础信息 --> <!-- 基础信息 -->
@ -99,11 +105,9 @@
<el-col :span="21"> <el-col :span="21">
<!-- 调试部分 --> <!-- 调试部分 -->
<div class="ms-debug-div" @click="showAll"> <div class="ms-debug-div" @click="showAll">
<el-row style="margin:5px"> <el-row style="margin: 5px">
<el-col :span="5" class="ms-col-one ms-font"> <el-col :span="6" class="ms-col-one ms-font">
<span style="margin-left: 5px;"> {{currentScenario.name ===undefined || ''? $t('api_test.scenario.name') : currentScenario.name}}
{{currentScenario.name}}
</span>
</el-col> </el-col>
<el-col :span="3" class="ms-col-one ms-font"> <el-col :span="3" class="ms-col-one ms-font">
{{$t('api_test.automation.step_total')}}{{scenarioDefinition.length}} {{$t('api_test.automation.step_total')}}{{scenarioDefinition.length}}
@ -115,7 +119,7 @@
<el-col :span="3" class="ms-col-one ms-font"> <el-col :span="3" class="ms-col-one ms-font">
<el-checkbox v-model="enableCookieShare">共享cookie</el-checkbox> <el-checkbox v-model="enableCookieShare">共享cookie</el-checkbox>
</el-col> </el-col>
<el-col :span="8" class="ms-font"> <el-col :span="7" class="ms-font">
{{$t('api_test.definition.request.run_env')}} {{$t('api_test.definition.request.run_env')}}
<el-select v-model="currentEnvironmentId" size="small" class="ms-htt-width" <el-select v-model="currentEnvironmentId" size="small" class="ms-htt-width"
:placeholder="$t('api_test.definition.request.run_env')" :placeholder="$t('api_test.definition.request.run_env')"
@ -178,42 +182,19 @@
</el-col> </el-col>
<!-- 按钮列表 --> <!-- 按钮列表 -->
<div> <div>
<el-col :span="3" class="ms-left-cell"> <el-col :span="3">
<el-button type="primary" icon="el-icon-refresh" size="small" @click="showAll">{{$t('commons.show_all')}}</el-button> <vue-fab id="fab" mainBtnColor="#783887" :click-auto-close="false">
<br/> <fab-item
<div v-if="operatingElements.indexOf('HTTPSamplerProxy')!=-1 || operatingElements.indexOf('DubboSampler')!=-1 || operatingElements.indexOf('JDBCSampler')!=-1 || operatingElements.indexOf('TCPSampler')!=-1 "> v-for="(item, index) in buttons"
<el-button class="ms-right-buttion ms-btn-1" size="small" @click="apiListImport">+{{$t('api_test.automation.api_list_import')}}</el-button> :key="index"
</div> :idx="getIdx(index)"
<div v-if="operatingElements.indexOf('OT_IMPORT')!=-1"> :title="item.title"
<el-button class="ms-right-buttion" size="small" style="color: #409EFF;background-color: #EEF5FE" @click="addComponent('OT_IMPORT')">+{{$t('api_test.automation.external_import')}}</el-button> :title-bg-color="item.titleBgColor"
</div> :title-color="item.titleColor"
<div v-if="operatingElements.indexOf('ConstantTimer')!=-1"> :color="item.titleColor"
<el-button class="ms-right-buttion ms-btn-3" size="small" @click="addComponent('ConstantTimer')">+{{$t('api_test.automation.wait_controller')}}</el-button> :icon="item.icon"
</div> @clickItem="item.click"/>
<div v-if="operatingElements.indexOf('IfController')!=-1"> </vue-fab>
<el-button class="ms-right-buttion ms-btn-4" size="small" @click="addComponent('IfController')">+{{$t('api_test.automation.if_controller')}}</el-button>
</div>
<div v-if="operatingElements.indexOf('scenario')===0">
<el-button class="ms-right-buttion ms-btn-5" size="small" @click="addComponent('scenario')">+{{$t('api_test.automation.scenario_import')}}</el-button>
</div>
<div v-if="operatingElements.indexOf('JSR223Processor')!=-1">
<el-button class="ms-right-buttion ms-btn-6" size="small" @click="addComponent('JSR223Processor')">+{{$t('api_test.automation.customize_script')}}</el-button>
</div>
<div v-if="operatingElements.indexOf('CustomizeReq')!=-1">
<el-button class="ms-right-buttion ms-btn-7" size="small" @click="addComponent('CustomizeReq')">+{{$t('api_test.automation.customize_req')}}</el-button>
</div>
<div v-if="operatingElements.indexOf('JSR223PreProcessor')!=-1">
<el-button class="ms-right-buttion ms-btn-8" size="small" @click="addComponent('JSR223PreProcessor')">+{{$t('api_test.definition.request.pre_script')}}</el-button>
</div>
<div v-if="operatingElements.indexOf('JSR223PostProcessor')!=-1">
<el-button class="ms-right-buttion ms-btn-9" size="small" @click="addComponent('JSR223PostProcessor')">+{{$t('api_test.definition.request.post_script')}}</el-button>
</div>
<div v-if="operatingElements.indexOf('Assertions')!=-1">
<el-button class="ms-right-buttion ms-btn-10" size="small" @click="addComponent('Assertions')">+{{$t('api_test.definition.request.assertions_rule')}}</el-button>
</div>
<div v-if="operatingElements.indexOf('Extract')!=-1">
<el-button class="ms-right-buttion ms-btn-11" size="small" @click="addComponent('Extract')">+{{$t('api_test.definition.request.extract_param')}}</el-button>
</div>
</el-col> </el-col>
</div> </div>
</el-row> </el-row>
@ -278,6 +259,7 @@
import MsScenarioParameters from "./ScenarioParameters"; import MsScenarioParameters from "./ScenarioParameters";
import ApiImport from "../../definition/components/import/ApiImport"; import ApiImport from "../../definition/components/import/ApiImport";
import InputTag from 'vue-input-tag' import InputTag from 'vue-input-tag'
import "@/common/css/material-icons.css"
export default { export default {
name: "EditApiScenario", name: "EditApiScenario",
@ -359,7 +341,7 @@
, ,
watch: {} watch: {}
, ,
computed:{ computed: {
buttons() { buttons() {
let buttons = [ let buttons = [
{ {
@ -465,7 +447,7 @@
} }
}, },
methods: { methods: {
getIdx(index){ getIdx(index) {
return -1 * index - 2.25; // return -1 * index - 2.25; //
}, },
showButton(...names) { showButton(...names) {
@ -519,7 +501,8 @@
} }
this.sort(); this.sort();
this.reload(); this.reload();
}, }
,
nodeClick(e) { nodeClick(e) {
if (e.referenced != 'REF' && e.referenced != 'Deleted') { if (e.referenced != 'REF' && e.referenced != 'Deleted') {
this.operatingElements = ELEMENTS.get(e.type); this.operatingElements = ELEMENTS.get(e.type);
@ -527,16 +510,19 @@
this.operatingElements = []; this.operatingElements = [];
} }
this.selectedTreeNode = e; this.selectedTreeNode = e;
}, }
,
showAll() { showAll() {
this.operatingElements = ELEMENTS.get("ALL"); this.operatingElements = ELEMENTS.get("ALL");
this.selectedTreeNode = undefined; this.selectedTreeNode = undefined;
this.reload(); this.reload();
}, }
,
apiListImport() { apiListImport() {
this.visibleRef = getUUID(); this.visibleRef = getUUID();
this.apiListVisible = true; this.apiListVisible = true;
}, }
,
recursiveSorting(arr) { recursiveSorting(arr) {
for (let i in arr) { for (let i in arr) {
arr[i].index = Number(i) + 1; arr[i].index = Number(i) + 1;
@ -544,7 +530,8 @@
this.recursiveSorting(arr[i].hashTree); this.recursiveSorting(arr[i].hashTree);
} }
} }
}, }
,
sort() { sort() {
for (let i in this.scenarioDefinition) { for (let i in this.scenarioDefinition) {
this.scenarioDefinition[i].index = Number(i) + 1; this.scenarioDefinition[i].index = Number(i) + 1;
@ -552,7 +539,8 @@
this.recursiveSorting(this.scenarioDefinition[i].hashTree); this.recursiveSorting(this.scenarioDefinition[i].hashTree);
} }
} }
}, }
,
addCustomizeApi(request) { addCustomizeApi(request) {
this.customizeVisible = false; this.customizeVisible = false;
request.enable === undefined ? request.enable = true : request.enable; request.enable === undefined ? request.enable = true : request.enable;
@ -564,7 +552,8 @@
this.customizeRequest = {}; this.customizeRequest = {};
this.sort(); this.sort();
this.reload(); this.reload();
}, }
,
addScenario(arr) { addScenario(arr) {
if (arr && arr.length > 0) { if (arr && arr.length > 0) {
arr.forEach(item => { arr.forEach(item => {
@ -579,7 +568,8 @@
this.sort(); this.sort();
this.reload(); this.reload();
this.scenarioVisible = false; this.scenarioVisible = false;
}, }
,
setApiParameter(item, refType, referenced) { setApiParameter(item, refType, referenced) {
let request = {}; let request = {};
if (Object.prototype.toString.call(item.request).indexOf("String") > 0) { if (Object.prototype.toString.call(item.request).indexOf("String") > 0) {
@ -608,7 +598,8 @@
} else { } else {
this.scenarioDefinition.push(request); this.scenarioDefinition.push(request);
} }
}, }
,
pushApiOrCase(referenced) { pushApiOrCase(referenced) {
if (this.currentRow.cases.length === 0 && this.currentRow.apis.length === 0) { if (this.currentRow.cases.length === 0 && this.currentRow.apis.length === 0) {
this.$warning(this.$t('api_test.automation.reference_info')); this.$warning(this.$t('api_test.automation.reference_info'));
@ -625,13 +616,15 @@
this.currentRow.apis = []; this.currentRow.apis = [];
this.sort(); this.sort();
this.reload(); this.reload();
}, }
,
getMaintainerOptions() { getMaintainerOptions() {
let workspaceId = localStorage.getItem(WORKSPACE_ID); let workspaceId = localStorage.getItem(WORKSPACE_ID);
this.$post('/user/ws/member/tester/list', {workspaceId: workspaceId}, response => { this.$post('/user/ws/member/tester/list', {workspaceId: workspaceId}, response => {
this.maintainerOptions = response.data; this.maintainerOptions = response.data;
}); });
}, }
,
openTagConfig() { openTagConfig() {
if (!this.projectId) { if (!this.projectId) {
this.$error(this.$t('api_test.select_project')); this.$error(this.$t('api_test.select_project'));
@ -646,7 +639,8 @@
hashTree.splice(index, 1); hashTree.splice(index, 1);
this.sort(); this.sort();
this.reload(); this.reload();
}, }
,
copyRow(row, node) { copyRow(row, node) {
const parent = node.parent const parent = node.parent
const hashTree = parent.data.hashTree || parent.data; const hashTree = parent.data.hashTree || parent.data;
@ -656,13 +650,15 @@
hashTree.push(obj); hashTree.push(obj);
this.sort(); this.sort();
this.reload(); this.reload();
}, }
,
reload() { reload() {
this.loading = true this.loading = true
this.$nextTick(() => { this.$nextTick(() => {
this.loading = false this.loading = false
}) })
}, }
,
runDebug() { runDebug() {
/*触发执行操作*/ /*触发执行操作*/
if (!this.currentEnvironmentId) { if (!this.currentEnvironmentId) {
@ -675,7 +671,8 @@
environmentId: this.currentEnvironmentId, hashTree: this.scenarioDefinition environmentId: this.currentEnvironmentId, hashTree: this.scenarioDefinition
}; };
this.reportId = getUUID().substring(0, 8); this.reportId = getUUID().substring(0, 8);
}, }
,
getEnvironments() { getEnvironments() {
if (this.projectId) { if (this.projectId) {
this.$get('/api/environment/list/' + this.projectId, response => { this.$get('/api/environment/list/' + this.projectId, response => {
@ -685,17 +682,20 @@
}); });
}); });
} }
}, }
,
openEnvironmentConfig() { openEnvironmentConfig() {
if (!this.projectId) { if (!this.projectId) {
this.$error(this.$t('api_test.select_project')); this.$error(this.$t('api_test.select_project'));
return; return;
} }
this.$refs.environmentConfig.open(this.projectId); this.$refs.environmentConfig.open(this.projectId);
}, }
,
environmentConfigClose() { environmentConfigClose() {
this.getEnvironments(); this.getEnvironments();
}, }
,
allowDrop(draggingNode, dropNode, dropType) { allowDrop(draggingNode, dropNode, dropType) {
if (dropType != "inner") { if (dropType != "inner") {
return true; return true;
@ -705,21 +705,25 @@
return true; return true;
} }
return false; return false;
}, }
,
allowDrag(draggingNode, dropNode, dropType) { allowDrag(draggingNode, dropNode, dropType) {
this.sort(); this.sort();
this.reload(); this.reload();
}, }
,
nodeExpand(data) { nodeExpand(data) {
if (data.resourceId) { if (data.resourceId) {
this.expandedNode.push(data.resourceId); this.expandedNode.push(data.resourceId);
} }
}, }
,
nodeCollapse(data) { nodeCollapse(data) {
if (data.resourceId) { if (data.resourceId) {
this.expandedNode.splice(this.expandedNode.indexOf(data.resourceId), 1); this.expandedNode.splice(this.expandedNode.indexOf(data.resourceId), 1);
} }
}, }
,
getPath(id) { getPath(id) {
if (id === null) { if (id === null) {
return null; return null;
@ -728,7 +732,8 @@
return item.id === id ? item.path : ""; return item.id === id ? item.path : "";
}); });
return path[0].path; return path[0].path;
}, }
,
setFiles(item, bodyUploadFiles, obj) { setFiles(item, bodyUploadFiles, obj) {
if (item.body) { if (item.body) {
if (item.body.kvs) { if (item.body.kvs) {
@ -766,7 +771,8 @@
}); });
} }
} }
}, }
,
recursiveFile(arr, bodyUploadFiles, obj) { recursiveFile(arr, bodyUploadFiles, obj) {
arr.forEach(item => { arr.forEach(item => {
this.setFiles(item, bodyUploadFiles, obj); this.setFiles(item, bodyUploadFiles, obj);
@ -774,7 +780,8 @@
this.recursiveFile(item.hashTree, bodyUploadFiles, obj); this.recursiveFile(item.hashTree, bodyUploadFiles, obj);
} }
}); });
}, }
,
getBodyUploadFiles(obj) { getBodyUploadFiles(obj) {
let bodyUploadFiles = []; let bodyUploadFiles = [];
obj.bodyUploadIds = []; obj.bodyUploadIds = [];
@ -785,7 +792,8 @@
} }
}) })
return bodyUploadFiles; return bodyUploadFiles;
}, }
,
editScenario() { editScenario() {
this.$refs['currentScenario'].validate((valid) => { this.$refs['currentScenario'].validate((valid) => {
if (valid) { if (valid) {
@ -804,7 +812,8 @@
}) })
} }
}) })
}, }
,
getApiScenario() { getApiScenario() {
if (this.currentScenario.tags != undefined && !(this.currentScenario.tags instanceof Array)) { if (this.currentScenario.tags != undefined && !(this.currentScenario.tags instanceof Array)) {
this.currentScenario.tags = JSON.parse(this.currentScenario.tags); this.currentScenario.tags = JSON.parse(this.currentScenario.tags);
@ -828,7 +837,8 @@
} }
}) })
} }
}, }
,
setParameter() { setParameter() {
this.currentScenario.stepTotal = this.scenarioDefinition.length; this.currentScenario.stepTotal = this.scenarioDefinition.length;
this.currentScenario.projectId = getCurrentProjectID(); this.currentScenario.projectId = getCurrentProjectID();
@ -847,18 +857,22 @@
this.currentScenario.apiScenarioModuleId = this.currentModule.id; this.currentScenario.apiScenarioModuleId = this.currentModule.id;
} }
this.currentScenario.projectId = this.projectId; this.currentScenario.projectId = this.projectId;
}, }
,
runRefresh() { runRefresh() {
this.debugVisible = true; this.debugVisible = true;
this.loading = false; this.loading = false;
}, }
,
showScenarioParameters() { showScenarioParameters() {
this.$refs.scenarioParameters.open(this.currentScenario.variables); this.$refs.scenarioParameters.open(this.currentScenario.variables);
}, }
,
addParameters(data) { addParameters(data) {
this.currentScenario.variables = data; this.currentScenario.variables = data;
this.reload(); this.reload();
}, }
,
apiImport(importData) { apiImport(importData) {
if (importData && importData.data) { if (importData && importData.data) {
importData.data.forEach(item => { importData.data.forEach(item => {
@ -922,63 +936,10 @@
margin-top: 5px; margin-top: 5px;
} }
.ms-right-buttion { #fab {
margin-top: 10px; bottom: unset;
} right: 90px;
z-index: 5;
.ms-btn-1 {
color: #F56C6C;
background-color: #FCF1F1
}
.ms-btn-2 {
color: #F56C6C;
background-color: #FCF1F1
}
.ms-btn-3 {
color: #67C23A;
background-color: #F2F9EE
}
.ms-btn-4 {
color: #E6A23C;
background-color: #FCF6EE
}
.ms-btn-5 {
color: #606266;
background-color: #F4F4F5
}
.ms-btn-6 {
color: #7B4D12;
background-color: #F1EEE9
}
.ms-btn-7 {
color: #008080;
background-color: #EBF2F2
}
.ms-btn-8 {
color: #B8741A;
background-color: #F9F1EA
}
.ms-btn-9 {
color: #783887;
background-color: #F2ECF3
}
.ms-btn-10 {
color: #A30014;
background-color: #F7E6E9
}
.ms-btn-11 {
color: #015478;
background-color: #E6EEF2
} }
/deep/ .el-tree-node__content { /deep/ .el-tree-node__content {