TestMethod.vue 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
<!--
  - Licensed to the Apache Software Foundation (ASF) under one or more
  - contributor license agreements.  See the NOTICE file distributed with
  - this work for additional information regarding copyright ownership.
  - The ASF licenses this file to You under the Apache License, Version 2.0
  - (the "License"); you may not use this file except in compliance with
  - the License.  You may obtain a copy of the License at
  -
  -     http://www.apache.org/licenses/LICENSE-2.0
  -
  - Unless required by applicable law or agreed to in writing, software
  - distributed under the License is distributed on an "AS IS" BASIS,
  - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  - See the License for the specific language governing permissions and
  - limitations under the License.
  -->

<template>
  <v-container grid-list-xl fluid>
    <v-layout row wrap>
      <v-flex lg12>
        <breadcrumb title="testMethod" :items="breads"></breadcrumb>
      </v-flex>
    <v-flex class="test-form" lg12 xl6>
        <v-card>
          <v-card-title class="headline">{{$t('testMethod') + ': ' + method.signature}}</v-card-title>
          <v-card-text>
            <json-editor id="test" v-model="method.json"/>
          </v-card-text>
          <v-card-actions>
            <v-spacer></v-spacer>
            <v-btn id="execute" mt-0 color="primary" @click="executeMethod()">{{$t('execute')}}</v-btn>
          </v-card-actions>
        </v-card>
      </v-flex>
      <v-flex class="test-result" lg12 xl6>
        <v-card>
          <v-card-title class="headline">{{$t('result') }}
            <span class="green--text" v-if="success===true">{{ $t('success')}}</span>
            <span class="red--text" v-if="success===false">{{ $t('fail')}}</span>
          </v-card-title>
          <v-card-text>
            <json-editor v-model="result" name="Result" readonly></json-editor>
          </v-card-text>
        </v-card>
      </v-flex>
    </v-layout>
  </v-container>
</template>

<script>
  import JsonEditor from '@/components/public/JsonEditor'
  import Breadcrumb from '@/components/public/Breadcrumb'
  import set from 'lodash/set'
  import util from '@/util'

  export default {
    name: 'TestMethod',
    components: {
      JsonEditor,
      Breadcrumb
    },
    data () {
      return {
        success: null,
        breads: [
          {
            text: 'serviceSearch',
            href: 'test'
          },
          {
            text: 'serviceTest',
            href: '',
            strong: this.$route.query['service']
          }
        ],
        service: this.$route.query['service'],
        application: this.$route.query['application'],
        method: {
          name: null,
          signature: this.$route.query['method'],
          parameterTypes: [],
          json: [],
          jsonTypes: []
        },
        result: null
      }
    },
    methods: {
      executeMethod () {
        this.convertType(this.method.json, this.method.jsonTypes)
        let serviceTestDTO = {
          service: this.service,
          method: this.method.name,
          parameterTypes: this.method.parameterTypes,
          params: this.method.json
        }
        this.$axios.post('/test', serviceTestDTO)
          .then(response => {
            if (response && response.status === 200) {
              this.success = true
              this.result = response.data
            }
          })
          .catch(error => {
            this.success = false
            this.result = error.response.data
          })
      },

      convertType (params, types) {
        const p = util.flattenObject(params)
        const t = util.flattenObject(types)
        Object.keys(p).forEach(key => {
          if (typeof t[key] === 'string' && typeof p[key] !== 'string') {
            set(params, key, String(p[key]))
          }
        })
      }
    },
    mounted () {
      const query = this.$route.query
      const method = query['method']

      if (method) {
        const [methodName, parametersTypes] = method.split('~')
        this.method.name = methodName
        if (parametersTypes) {
          this.method.parameterTypes = parametersTypes.split(';')
        } else { // if parametersTypes === "",  "".split(";") will produce [""], which is wrong
          this.method.parameterTypes = []
        }
      }

      let url = '/test/method?' + 'application=' + this.application +
                '&service=' + this.service + '&method=' + method
      this.$axios.get(encodeURI(url))
        .then(response => {
          this.method.json = response.data.parameterTypes
          this.method.jsonTypes = response.data.parameterTypes
        })
    }
  }
</script>

<style scoped>
</style>