aboutsummaryrefslogtreecommitdiffstats
path: root/3rd_party/static/onap-ui/components/results-report/resultsReportController.js
blob: 09601ad0fd2b16db86dbbc006ceabc5226e1040b (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
216
217
218
219
220
221
222
223
224
/*
 * Licensed 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.
 */

(function () {
    'use strict';

    angular
        .module('testapiApp')
        .controller('ResultsReportController', ResultsReportController);

    ResultsReportController.$inject = [
        '$scope', '$http', '$stateParams', '$window',
        'testapiApiUrl'
    ];

    /**
     * TestAPI Results Report Controller
     * This controller is for the '/results/<test run ID>' page where a user can
     * view details for a specific test run.
     */
    function ResultsReportController($scope, $http, $stateParams, $window,
        testapiApiUrl) {

        var ctrl = this;

        ctrl.testStatus = 'total';
        ctrl.case_list = [];
        ctrl.data = {};
        ctrl.statistics = {
            'total': 0, 'pass': 0, 'fail': 0,
            'mandatory': {'total': 0, 'pass': 0, 'fail': 0, 'area': 0},
            'optional': {'total': 0, 'pass': 0, 'fail': 0, 'area': 0}
        };

        ctrl.gotoDoc = gotoDoc;
        ctrl.openAll = openAll;
        ctrl.folderAll = folderAll;
        ctrl.gotoResultLog = gotoResultLog;
        ctrl.changeStatus = changeStatus;

        /** The testID extracted from the URL route. */
        ctrl.testId = $stateParams.testID;
        ctrl.innerId = $stateParams.innerID;
        ctrl.validation = '';
        ctrl.vnf_type = '';
        ctrl.vnf_checksum = '';
        ctrl.version = '';

        /** The HTML template that all accordian groups will use. */
        ctrl.detailsTemplate = 'onap-ui/components/results-report/partials/' +
                               'reportDetails.html';

        $scope.load_finish = false;

        function changeStatus(value) {
            ctrl.testStatus = value;
        }

        function extend(case_list) {
            angular.forEach(case_list, function(ele) {
                ctrl.case_list.push(ele);
            });
        }

        function strip(word) {
            return word.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
        }

        function gotoResultLog(case_name) {
            var case_area = case_name.split(".")[0];
            var log_url = "/logs/" + ctrl.testId + "/results/";
            log_url += case_area + "_logs/" + case_name + ".out";
            var is_reachable = false;

            $.ajax({
                url: log_url,
                async: false,
                success: function (response) {
                    is_reachable = true;
                },
                error: function (response) {
                    alert("Log file could not be found. Please confirm this case has been executed successfully.");
                }
            });

            if (is_reachable == true) {
                window.open(log_url);
            }
        }

        $scope.$watch('load_finish', function() {
            if ($scope.load_finish == true) {
                var case_url = 'onap-ui/components/results-report/data/' + ctrl.version + '/' + ctrl.vnf_type + '-testcases.json'
                $http.get(case_url).then(function(response) {
                    ctrl.data = response.data;

                    angular.forEach(ctrl.data.mandatory, function(value, name) {
                        ctrl.data.mandatory[name].folder = true;
                        ctrl.data.mandatory[name].pass = 0;
                        ctrl.data.mandatory[name].fail = 0;
                        angular.forEach(value.cases, function(sub_case) {
                            ctrl.statistics.total += 1;
                            ctrl.statistics.mandatory.total += 1;
                            if (ctrl.case_list.indexOf(sub_case) > -1) {
                                ctrl.data.mandatory[name].pass += 1;
                                ctrl.statistics.mandatory.pass += 1;
                                ctrl.statistics.pass += 1;
                            } else {
                                ctrl.data.mandatory[name].fail += 1;
                                ctrl.statistics.mandatory.fail += 1;
                                ctrl.statistics.fail += 1;
                            }
                        });
                    });

                    angular.forEach(ctrl.data.optional, function(value, name) {
                        ctrl.data.optional[name].folder = true;
                        ctrl.data.optional[name].pass = 0;
                        ctrl.data.optional[name].fail = 0;
                        angular.forEach(value.cases, function(sub_case) {
                            ctrl.statistics.total += 1;
                            ctrl.statistics.optional.total += 1;
                            if (ctrl.case_list.indexOf(sub_case) > -1) {
                                ctrl.data.optional[name].pass += 1;
                                ctrl.statistics.optional.pass += 1;
                                ctrl.statistics.pass += 1;
                            } else {
                                ctrl.data.optional[name].fail += 1;
                                ctrl.statistics.optional.fail += 1;
                                ctrl.statistics.fail += 1;
                            }

                        });
                    });

                    ctrl.statistics.mandatory.area = Object.keys(ctrl.data.mandatory).length;
                    ctrl.statistics.optional.area = Object.keys(ctrl.data.optional).length;
                }, function(error) {
                    alert('error to get test case info');
                });
            }
        });

        function generate_format_data() {
            var test_url = testapiApiUrl + '/onap/tests/' + ctrl.innerId;
            $http.get(test_url).then(function(test_resp) {
                ctrl.validation = test_resp.data.validation;

                angular.forEach(test_resp.data.results, function(result, index) {
                    var result_url = testapiApiUrl + '/results/' + result;
                    $http.get(result_url).then(function(result_resp) {

                        ctrl.version = result_resp.data.version;
                        ctrl.vnf_type = result_resp.data.vnf_type;

                        angular.forEach(result_resp.data.testcases_list, function(testcase, index) {
                            var sub_case_list = get_sub_case_list_2019_04(testcase);
                            extend(sub_case_list);
                        });

                        if (index == test_resp.data.results.length - 1) {
                            $scope.load_finish = true;
                        }
                    }, function(result_error) {
                        /* do nothing */
                    });
                });

            }, function(test_error) {
                alert('Error when get test record');
            });
        }

        function get_sub_case_list_2019_04(result) {
            var case_list = [];
            if (result.sub_testcase.length == 0 && result.result == "PASS") {
                case_list.push(result.name);
            } else {
                angular.forEach(result.sub_testcase, function(subtest, index) {
                    if (subtest.result == "PASS") {
                        case_list.push(subtest.name)
                    }
                });
            }
            return case_list;
        }

        function gotoDoc(sub_case) {
            /* not implemented */
        }

        function openAll() {
            angular.forEach(ctrl.data.mandatory, function(ele, id) {
                ele.folder = false;
            });
            angular.forEach(ctrl.data.optional, function(ele, id) {
                ele.folder = false;
            });
        }

        function folderAll() {
            angular.forEach(ctrl.data.mandatory, function(ele, id) {
                ele.folder = true;
            });
            angular.forEach(ctrl.data.optional, function(ele, id) {
                ele.folder = true;
            });
        }

        generate_format_data();
    }

})();