summaryrefslogtreecommitdiffstats
path: root/utils/test/result_collection_api/dashboard/functest2Dashboard.py
blob: 3e7eefe7e65f01081d26a9284e65c49062059cfc (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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#!/usr/bin/python
#
# Copyright (c) 2015 Orange
# morgan.richomme@orange.com
#
# This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# This script is used to build dashboard ready json results
# It may be used for all the test case of the Functest project
# a new method format_<Test_case>_for_dashboard(results)
# v0.1: basic example with methods for odl, Tempest, Rally and vPing
#


def get_functest_cases():
    """
    get the list of the supported test cases
    TODO: update the list when adding a new test case for the dashboard
    """
    return ["status", "vPing", "vIMS", "Tempest", "odl", "Rally"]


def format_functest_for_dashboard(case, results):
    """
    generic method calling the method corresponding to the test case
    check that the testcase is properly declared first
    then build the call to the specific method
    """
    if check_functest_case_exist(case):
        cmd = "format_" + case + "_for_dashboard(results)"
        res = eval(cmd)
    else:
        res = []
        print "Test cases not declared"
    return res


def check_functest_case_exist(case):
    """
    check if the testcase exists
    if the test case is not defined or not declared in the list
    return False
    """
    functest_cases = get_functest_cases()

    if (case is None or case not in functest_cases):
        return False
    else:
        return True


def format_status_for_dashboard(results):
    test_data = [{'description': 'Functest status'}]

    # define magic equation for the status....
    # 5 suites: vPing, odl, Tempest, vIMS, Rally
    # Which overall KPI make sense...

    # TODO to be done and discussed
    testcases = get_functest_cases()
    test_data.append({'nb test suite(s) run': len(testcases)-1})
    test_data.append({'vPing': '100%'})
    test_data.append({'VIM status': '82%'})
    test_data.append({'SDN Controllers': {'odl':'92%', 'onos':'95%', 'opencontrail':'93%'}})
    test_data.append({'VNF deployment': '95%'})

    return test_data


def format_vIMS_for_dashboard(results):
    """
    Post processing for the vIMS test case
    """
    test_data = [{'description': 'vIMS results for Dashboard'}]

    # Graph 1: (duration_deployment_orchestrator,
    #            duration_deployment_vnf,
    #             duration_test) = f(time)
    # ********************************
    new_element = []

    for data in results:
        new_element.append({'x': data['creation_date'],
                            'y1': data['details']['orchestrator']['duration'],
                            'y2': data['details']['vIMS']['duration'],
                            'y3': data['details']['sig_test']['duration']})

    test_data.append({'name': "Tempest nb tests/nb failures",
                      'info': {'type': "graph",
                               'xlabel': 'time',
                               'y1label': 'orchestation deployment duration',
                               'y2label': 'vIMS deployment duration',
                               'y3label': 'vIMS test duration'},
                      'data_set': new_element})

    # Graph 2: (Nb test, nb failure, nb skipped)=f(time)
    # **************************************************
    new_element = []

    for data in results:
        # Retrieve all the tests
        nbTests = 0
        nbFailures = 0
        nbSkipped = 0
        vIMS_test = data['details']['sig_test']['result']

        for data_test in vIMS_test:
            # Calculate nb of tests run and nb of tests failed
            # vIMS_results = get_vIMSresults(vIMS_test)
            # print vIMS_results
            if data_test['result'] == "Passed":
                nbTests += 1
            elif data_test['result'] == "Failed":
                nbFailures += 1
            elif data_test['result'] == "Skipped":
                nbSkipped += 1

        new_element.append({'x': data['creation_date'],
                            'y1': nbTests,
                            'y2': nbFailures,
                            'y3': nbSkipped})

    test_data.append({'name': "vIMS nb tests passed/failed/skipped",
                      'info': {'type': "graph",
                               'xlabel': 'time',
                               'y1label': 'Number of tests passed',
                               'y2label': 'Number of tests failed',
                               'y3label': 'Number of tests skipped'},
                      'data_set': new_element})

    # Graph 3: bar graph Summ(nb tests run), Sum (nb tests failed)
    # ********************************************************
    nbTests = 0
    nbFailures = 0

    for data in results:
        vIMS_test = data['details']['sig_test']['result']

        for data_test in vIMS_test:
            nbTestsOK = 0
            nbTestsKO = 0

            if data_test['result'] == "Passed":
                nbTestsOK += 1
            elif data_test['result'] == "Failed":
                nbTestsKO += 1

            nbTests += nbTestsOK + nbTestsKO
            nbFailures += nbTestsKO

    test_data.append({'name': "Total number of tests run/failure tests",
                      'info': {"type": "bar"},
                      'data_set': [{'Run': nbTests,
                                    'Failed': nbFailures}]})

    return test_data


def format_Tempest_for_dashboard(results):
    """
    Post processing for the Tempest test case
    """
    test_data = [{'description': 'Tempest results for Dashboard'}]

    # Graph 1: Test_Duration = f(time)
    # ********************************
    new_element = []
    for data in results:
        new_element.append({'x': data['creation_date'],
                            'y': data['details']['duration']})

    test_data.append({'name': "Tempest duration",
                      'info': {'type': "graph",
                               'xlabel': 'time',
                               'ylabel': 'duration (s)'},
                      'data_set': new_element})

    # Graph 2: (Nb test, nb failure)=f(time)
    # ***************************************
    new_element = []
    for data in results:
        new_element.append({'x': data['creation_date'],
                            'y1': data['details']['tests'],
                            'y2': data['details']['failures']})

    test_data.append({'name': "Tempest nb tests/nb failures",
                      'info': {'type': "graph",
                               'xlabel': 'time',
                               'y1label': 'Number of tests',
                               'y2label': 'Number of failures'},
                      'data_set': new_element})

    # Graph 3: bar graph Summ(nb tests run), Sum (nb tests failed)
    # ********************************************************
    nbTests = 0
    nbFailures = 0

    for data in results:
        nbTests += data['details']['tests']
        nbFailures += data['details']['failures']

    test_data.append({'name': "Total number of tests run/failure tests",
                      'info': {"type": "bar"},
                      'data_set': [{'Run': nbTests,
                                    'Failed': nbFailures}]})

    return test_data


def format_odl_for_dashboard(results):
    """
    Post processing for the odl test case
    """
    test_data = [{'description': 'odl results for Dashboard'}]
    return test_data


def format_Rally_for_dashboard(results):
    """
    Post processing for the Rally test case
    """
    test_data = [{'description': 'Rally results for Dashboard'}]
    return test_data


def format_vPing_for_dashboard(results):
    """
    Post processing for the vPing test case
    """
    test_data = [{'description': 'vPing results for Dashboard'}]

    # Graph 1: Test_Duration = f(time)
    # ********************************
    new_element = []
    for data in results:
        new_element.append({'x': data['creation_date'],
                            'y': data['details']['duration']})

    test_data.append({'name': "vPing duration",
                      'info': {'type': "graph",
                               'xlabel': 'time',
                               'ylabel': 'duration (s)'},
                      'data_set': new_element})

    # Graph 2: bar
    # ************
    nbTest = 0
    nbTestOk = 0

    for data in results:
        nbTest += 1
        if data['details']['status'] == "OK":
            nbTestOk += 1

    test_data.append({'name': "vPing status",
                      'info': {"type": "bar"},
                      'data_set': [{'Nb tests': nbTest,
                                    'Nb Success': nbTestOk}]})

    return test_data