summaryrefslogtreecommitdiffstats
path: root/test-scheduler/ui/src/components/testcase_content.vue
blob: 49169ceea1f4433e654dfb06890ac3594203cb03 (plain)
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<template>
  <div class="wrapper wrapper-content animated fadeIn">
    <div class="row" style="margin-bottom: 20px;">
      <div class="col-md-8">
        <ol class="breadcrumb" style="padding-left: 20px; font-size: 17px;">
          <li>
            <router-link to="/" >root</router-link>
          </li>
          <li>
            <router-link :to="{ path: '/testcase', query: { name: suitename }}" >{{this.$route.query.suiteName}}</router-link>
          </li>
          <li>
            <router-link :to="{ path: '/content', query: { suiteName: suitename, caseName: casename } }"><b>{{this.$route.query.caseName}}</b></router-link>
          </li>
        </ol>
      </div>
    </div>
    <div id="page-content" class="row">
      <div class="col-lg-12">
        <div class="ibox">
            <div class="ibox-title">
                <h5 style="font-size:26px;margin-top: -3px;">Test Case Content</h5>
                <div v-show="contentLoading || contentSaving" class="sk-spinner sk-spinner-circle" style="float: left;margin-left: 10px;">
                    <div class="sk-circle1 sk-circle"></div>
                    <div class="sk-circle2 sk-circle"></div>
                    <div class="sk-circle3 sk-circle"></div>
                    <div class="sk-circle4 sk-circle"></div>
                    <div class="sk-circle5 sk-circle"></div>
                    <div class="sk-circle6 sk-circle"></div>
                    <div class="sk-circle7 sk-circle"></div>
                    <div class="sk-circle8 sk-circle"></div>
                    <div class="sk-circle9 sk-circle"></div>
                    <div class="sk-circle10 sk-circle"></div>
                    <div class="sk-circle11 sk-circle"></div>
                    <div class="sk-circle12 sk-circle"></div>
                </div>
                <div class="ibox-tools">
                    <button class="btn btn-info btn-sm my-button-sm" type="button" v-on:click="runTestcase()">Run</button>
                    <button class="btn btn-success btn-sm my-button-sm" type="button" v-on:click="setEditable()">Edit</button>
                    <button v-show="isEditable" class="btn btn-warning btn-sm my-button-sm" v-on:click="saveTestcase()" type="button">Save</button>
                    <button v-show="isEditable" class="btn btn-danger btn-sm my-button-sm" v-on:click="cancelEdit()" type="button">Cancel</button>
                    <a class="collapse-link">
                        <i class="fa fa-chevron-up"></i>
                    </a>
                    <a class="fullscreen-link">
                        <i class="fa fa-expand"></i>
                    </a>
                </div>
            </div>
            <div class="ibox-content" style="max-height: 600px; overflow-y: auto; padding: 0; border: 1px solid #e7e7e7;">
                <div style='text-align:center;'>
                  <textarea v-show='!isEditable' v-model="content" id="tc_content" style="white-space:nowrap; overflow:scroll;max-width:2400px; width: 100%;height: 100%;min-height: 500px;font-size:16px;border:none; vertical-align: middle; padding: 30px 0 20px 40px;">
                  </textarea>
                </div><editor v-show='isEditable' v-bind:saveSignal='saveSignal' v-bind = 'editorContent' v-on:saveResponse='processSaveResponse'></editor>
            </div>
        </div>
      </div>
    </div>
    <hr />
    <div class="row">
      <div class="col-lg-12">
          <div class="ibox">
              <div class="ibox-title">
                  <h5 style="font-size:26px;margin-top: -3px;">Workflow</h5>
                  <div class="ibox-tools">
                      <a class="collapse-link">
                          <i class="fa fa-chevron-up"></i>
                      </a>
                      <a class="fullscreen-link">
                          <i class="fa fa-expand"></i>
                      </a>
                  </div>
              </div>
              <div class="ibox-content" style="padding-top: 60px;">
                  <wfresult v-bind:workflowId="workflowId" v-bind:wfloading='wfloading' v-bind:wfJson='wfJson'></wfresult>
              </div>
          </div>
      </div>
    </div>
  </div>
</template>
<script>
import editor from './editor/editor.vue'
import wfresult from './workflow_graph/wfresult.vue'
import showMessage from './message/showMessage.js'
export default {
    name: 'testcase_content',
    data () {
      return {
          content: '',
          editorContent: {'stepList': [], 'mainOrdersList': [], 'subflowList': []},
          bakContent: '',
          isEditable: false,
          contentLoading: false,
          contentSaving: false,
          suitename:this.$route.query.suiteName,
          casename:this.$route.query.caseName,
          workflowId: '',
          wfloading: false,
          wfJson: '',
          saveSignal: false
      }
    },
    created: function() {
        this.getTestcase();
    },
    methods: {
      setEditable: function(){
          this.isEditable = true;
          this.bakContent = this.content;
      },
      cancelEdit: function(){
          this.content = this.bakContent;
          this.isEditable = false;
      },
      saveTestcase: function(){
          console.log("save");
          this.saveSignal = true;
          this.contentSaving = true;
      },
      runTestcase: function(){
        var self = this;
        var msgTitle = "RUN -- TESTCASE";
        $.ajax({
            url: this.global.SERVER_ADDR + "execute/testcase",
            method: "POST",
            data: {
                "suiteName": this.$route.query.suiteName,
                "caseName": this.$route.query.caseName
            },
            beforeSend: function(XHR) {
                self.wfloading = true;
                showMessage("info", msgTitle, "start to run <strong>" + self.$route.query.caseName + "</strong>");
            },
            success: function(data) {
                if(data['code'] == 200) {
                    self.workflowId = data['result']['workflowId'];
                    showMessage(data['code'], msgTitle, "<strong>" + self.$route.query.caseName + "</strong> finished!");
                    $.ajax({
                        url: self.global.SERVER_ADDR + "story-content",
                        method: "GET",
                        data: {
                            "service":  self.$route.query.suiteName,
                            "story": self.$route.query.caseName
                        },
                        success: function(data) {
                            if(data['code'] == 200) {
                                self.wfJson = data['result']['content'];
                            } else {
                              showMessage(data['code'], msgTitle, "workflow.json get failed!");
                            }
                        },
                        error: function(obj, status, msg) {
                          showMessage(status, msgTitle, msg);
                        }
                    });
                } else {
                  self.wfloading = false;
                  showMessage(data['code'], msgTitle, "Failed to run <strong>" + self.$route.query.caseName + "</strong>", data['error']);
                }
            },
            error: function(obj, status, msg) {
                self.wfloading = false;
                showMessage(status, msgTitle, "Failed to run <strong>" + self.$route.query.caseName + "</strong>", msg);
            }
        });
      },
      getTestcase: function(){
          var self = this;
          var msgTitle = "GET -- TESTCASE";
          $.ajax({
            url: this.global.SERVER_ADDR + "testcase/content",
            method:"GET",
            data:{
              suiteName:  this.$route.query.suiteName,
              caseName: this.$route.query.caseName
            },
            beforeSend: function(XHR) {
                self.contentLoading = true;
            },
            success:function (data) {
              if(data['code'] == 200) {
                self.content = data['result']['content'];
                self.contentLoading = false;
                self.editorContent = data['result']['editorContent'];
              }
              else {
                showMessage("error", msgTitle, "fail to load testcase content!", data['error']);
                self.contentLoading = false;
              }
            },
            error: function (obj, status, msg) {
              showMessage(status, msgTitle, "fail to load testcase content!", msg);
              self.contentLoading = false;
            }
          });
      },
      async processSaveResponse(result) {
          if(result == true) {
            this.saveSignal = false;
            this.isEditable = false;
            this.contentSaving = false;
            this.getTestcase();
          } else {
            this.saveSignal = false;
            this.contentSaving = false;
          }
      }
    },
    components: {
      editor,
      wfresult
    }
}
</script>