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
|
#!/usr/bin/python
#
# 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
#
from urllib2 import Request, urlopen, URLError
import json
import reportingConf
def getApiResults(case, installer, scenario, version):
results = json.dumps([])
# to remove proxy (to be removed at the end for local test only)
# proxy_handler = urllib2.ProxyHandler({})
# opener = urllib2.build_opener(proxy_handler)
# urllib2.install_opener(opener)
# url = "http://127.0.0.1:8000/results?case=" + case + \
# "&period=30&installer=" + installer
url = (reportingConf.URL_BASE + "?case=" + case +
"&period=" + str(reportingConf.PERIOD) + "&installer=" + installer +
"&scenario=" + scenario + "&version=" + version)
request = Request(url)
try:
response = urlopen(request)
k = response.read()
results = json.loads(k)
except URLError, e:
print 'No kittez. Got an error code:', e
return results
def getScenarios(case, installer, version):
case = case.getName()
print case
url = (reportingConf.URL_BASE + "?case=" + case +
"&period=" + str(reportingConf.PERIOD) + "&installer=" + installer +
"&version=" + version)
request = Request(url)
try:
response = urlopen(request)
k = response.read()
results = json.loads(k)
test_results = results['results']
except URLError, e:
print 'Got an error code:', e
if test_results is not None:
test_results.reverse()
scenario_results = {}
for r in test_results:
# Retrieve all the scenarios per installer
if not r['scenario'] in scenario_results.keys():
scenario_results[r['scenario']] = []
scenario_results[r['scenario']].append(r)
return scenario_results
def getScenarioStats(scenario_results):
scenario_stats = {}
for k, v in scenario_results.iteritems():
scenario_stats[k] = len(v)
return scenario_stats
def getNbtestOk(results):
nb_test_ok = 0
for r in results:
for k, v in r.iteritems():
try:
if "PASS" in v:
nb_test_ok += 1
except:
print "Cannot retrieve test status"
return nb_test_ok
def getResult(testCase, installer, scenario, version):
# retrieve raw results
results = getApiResults(testCase, installer, scenario, version)
# let's concentrate on test results only
test_results = results['results']
# if results found, analyze them
if test_results is not None:
test_results.reverse()
scenario_results = []
# print " ---------------- "
# print test_results
# print " ---------------- "
# print "nb of results:" + str(len(test_results))
for r in test_results:
# print r["creation_date"]
# print r["criteria"]
scenario_results.append({r["start_date"]: r["criteria"]})
# sort results
scenario_results.sort()
# 4 levels for the results
# 3: 4+ consecutive runs passing the success criteria
# 2: <4 successful consecutive runs but passing the criteria
# 1: close to pass the success criteria
# 0: 0% success, not passing
test_result_indicator = 0
nbTestOk = getNbtestOk(scenario_results)
# print "Nb test OK:"+ str(nbTestOk)
# check that we have at least 4 runs
if nbTestOk < 1:
test_result_indicator = 0
elif nbTestOk < 2:
test_result_indicator = 1
else:
# Test the last 4 run
if (len(scenario_results) > 3):
last4runResults = scenario_results[-4:]
if getNbtestOk(last4runResults):
test_result_indicator = 3
else:
test_result_indicator = 2
else:
test_result_indicator = 2
return test_result_indicator
|