-
Notifications
You must be signed in to change notification settings - Fork 21
/
testrunner.py
executable file
·279 lines (252 loc) · 11.6 KB
/
testrunner.py
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#!/usr/bin/env python
import logging
import logging.config
import os
import re
import sys
import threading
import time
import unittest
from os.path import splitext
from pprint import pprint
sys.path = [".", "lib", "pytests", "pysystests", "couchbase_utils",
"platform_utils", "connections", "constants"] + sys.path
from framework_lib.framework import HelperLib
from java_lib import java_lang_lib
from sdk_client3 import SDKClient
from remote.remote_util import RemoteMachineShellConnection
from TestInput import TestInputParser, TestInputSingleton
from xunit import XUnitTestResult
def parse_args():
framework_helper = HelperLib()
options = framework_helper.parse_cmd_line_options()
tests = list()
test_params = {
"ini": options.ini,
"cluster_name": splitext(os.path.basename(options.ini))[0]
}
if options.conf and not options.globalsearch:
framework_helper.parse_conf_file(options.conf, tests, test_params)
if options.globalsearch:
framework_helper.parse_global_conf_file(options.globalsearch,
tests, test_params)
try:
if options.include_tests:
tests = framework_helper.process_include_or_filter_exclude_tests(
"include", options.include_tests, tests, options)
if options.exclude_tests:
tests = framework_helper.process_include_or_filter_exclude_tests(
"exclude", options.exclude_tests, tests, options)
except Exception as e:
print("Failed to get the test xml to include or exclude the tests. Running all the tests instead.")
if options.testcase:
tests.append(options.testcase)
if options.noop:
print(("---\n" + "\n".join(tests) + "\n---\nTotal=" + str(
len(tests))))
sys.exit(0)
return tests, test_params, options.ini, options.params, options
def create_log_file(log_config_file_name, log_file_name):
tmpl_log_file = open("jython.logging.conf")
log_file = open(log_config_file_name, "w")
log_file.truncate()
for line in tmpl_log_file:
line = line.replace("@@FILENAME@@", log_file_name.replace('\\', '/'))
log_file.write(line)
log_file.close()
tmpl_log_file.close()
def main():
names, runtime_test_params, arg_i, arg_p, options = parse_args()
# get params from command line
TestInputSingleton.input = TestInputParser.get_test_input(sys.argv)
# ensure command line params get higher priority
runtime_test_params.update(TestInputSingleton.input.test_params)
TestInputSingleton.input.test_params = runtime_test_params
print("Global Test input params:")
pprint(TestInputSingleton.input.test_params)
import mode
if options.mode == "java":
mode.java = True
elif options.mode == "cli":
mode.cli = True
else:
mode.rest = True
xunit = XUnitTestResult()
# Create root logs directory
abs_path = os.path.dirname(os.path.abspath(sys.argv[0]))
# Create testrunner logs subdirectory
str_time = time.strftime("%y-%b-%d_%H-%M-%S", time.localtime())
root_log_dir = os.path.join(abs_path,
"logs%stestrunner-%s" % (os.sep, str_time))
if not os.path.exists(root_log_dir):
os.makedirs(root_log_dir)
results = []
case_number = 1
if "GROUP" in runtime_test_params:
print("Only cases in GROUPs '%s' will be executed"
% runtime_test_params["GROUP"])
if "EXCLUDE_GROUP" in runtime_test_params:
print("Cases from GROUPs '%s' will be excluded"
% runtime_test_params["EXCLUDE_GROUP"])
test_to_be_exec = []
for name in names:
argument_split = [a.strip()
for a in re.split("[,]?([^,=]+)=", name)[1:]]
params = dict(zip(argument_split[::2], argument_split[1::2]))
if "GROUP" in runtime_test_params \
and "ALL" not in runtime_test_params["GROUP"].split(";"):
# Params is the .conf file parameters.
if 'GROUP' not in params:
# this test is not in any groups, so we do not run it
print("Test '%s' skipped, group requested but test has no group"
% name)
continue
else:
skip_test = False
tc_groups = params["GROUP"].split(";")
for run_group in runtime_test_params["GROUP"].split(";"):
if run_group not in tc_groups:
skip_test = True
break
if skip_test:
print("Test '{0}' skipped, GROUP not satisfied"
.format(name))
continue
if "EXCLUDE_GROUP" in runtime_test_params:
if 'GROUP' in params and \
len(set(runtime_test_params["EXCLUDE_GROUP"].split(";"))
& set(params["GROUP"].split(";"))) > 0:
print("Test '%s' skipped, is in an excluded group" % name)
continue
test_to_be_exec.append(name)
TestInputSingleton.input.test_params["no_of_test_identified"] = len(test_to_be_exec)
for name in test_to_be_exec:
start_time = time.time()
# Reset SDK/Shell connection counters
RemoteMachineShellConnection.connections = 0
RemoteMachineShellConnection.disconnections = 0
SDKClient.sdk_connections = 0
SDKClient.sdk_disconnections = 0
argument_split = [a.strip()
for a in re.split("[,]?([^,=]+)=", name)[1:]]
params = dict(zip(argument_split[::2], argument_split[1::2]))
# Note that if ALL is specified at runtime then tests
# which have no groups are still run - just being explicit on this
# Create Log Directory
logs_folder = os.path.join(root_log_dir, "test_%s" % case_number)
os.mkdir(logs_folder)
test_log_file = os.path.join(logs_folder, "test.log")
log_config_filename = r'{0}'.format(os.path.join(logs_folder,
"test.logging.conf"))
create_log_file(log_config_filename, test_log_file)
logging.config.fileConfig(log_config_filename)
print("Logs will be stored at %s" % logs_folder)
print("\nguides/gradlew --refresh-dependencies testrunner "
"-P jython=/opt/jython/bin/jython -P 'args=-i {0} {1} -t {2}'\n"
.format(arg_i or "", ("-p " + arg_p if arg_p else ""), name))
name = name.split(",")[0]
# Update the test params for each test
TestInputSingleton.input.test_params = params
TestInputSingleton.input.test_params.update(runtime_test_params)
TestInputSingleton.input.test_params["case_number"] = case_number
TestInputSingleton.input.test_params["logs_folder"] = logs_folder
if "rerun" not in TestInputSingleton.input.test_params:
TestInputSingleton.input.test_params["rerun"] = False
print("Test Input params:\n%s"
% TestInputSingleton.input.test_params)
try:
suite = unittest.TestLoader().loadTestsFromName(name)
except AttributeError as e:
print("Test %s was not found: %s" % (name, e))
result = unittest.TextTestRunner(verbosity=2)._makeResult()
result.errors = [(name, e.message)]
except SyntaxError as e:
print("SyntaxError in %s: %s" % (name, e))
result = unittest.TextTestRunner(verbosity=2)._makeResult()
result.errors = [(name, e.message)]
else:
result = unittest.TextTestRunner(verbosity=2).run(suite)
if TestInputSingleton.input.param("rerun") \
and (result.failures or result.errors):
print("#" * 60, "\n",
"## \tTest Failed: Rerunning it one more time",
"\n", "#" * 60)
print("####### Running test with trace logs enabled #######")
TestInputSingleton.input.test_params["log_level"] = "debug"
result = unittest.TextTestRunner(verbosity=2).run(suite)
if not result:
for t in threading.enumerate():
if t != threading.current_thread():
t._Thread__stop()
result = unittest.TextTestRunner(verbosity=2)._makeResult()
case_number += 1000
print("========TEST WAS STOPPED DUE TO TIMEOUT=========")
result.errors = [(name, "Test was stopped due to timeout")]
time_taken = time.time() - start_time
connection_status_msg = \
"During the test,\n" \
"Remote Connections: %s, Disconnections: %s\n" \
"SDK Connections: %s, Disconnections: %s" \
% (RemoteMachineShellConnection.connections,
RemoteMachineShellConnection.disconnections,
SDKClient.sdk_connections, SDKClient.sdk_disconnections)
if RemoteMachineShellConnection.connections \
!= RemoteMachineShellConnection.disconnections:
connection_status_msg += \
"\n!!!!!! CRITICAL :: Shell disconnection mismatch !!!!!"
if SDKClient.sdk_connections != SDKClient.sdk_disconnections:
connection_status_msg += \
"\n!!!!!! CRITICAL :: SDK disconnection mismatch !!!!!"
print(connection_status_msg)
# Concat params to test name
# To make tests more readable
params = ''
if TestInputSingleton.input.test_params:
for key, value in TestInputSingleton.input.test_params.items():
if key and value:
params += "," + str(key) + "=" + str(value)
if result.failures or result.errors:
errors = []
for failure in result.failures:
test_case, failure_string = failure
errors.append(failure_string)
break
for error in result.errors:
test_case, error_string = error
errors.append(error_string)
break
xunit.add_test(name=name, status='fail', time=time_taken,
errorType='membase.error', errorMessage=str(errors),
params=params)
results.append({"result": "fail", "name": name})
else:
xunit.add_test(name=name, time=time_taken, params=params)
results.append({"result": "pass",
"name": name,
"time": time_taken})
xunit.write("%s%sreport-%s"
% (os.path.dirname(logs_folder), os.sep, str_time))
xunit.print_summary()
print("testrunner logs, diags and results are available under %s"
% logs_folder)
case_number += 1
if (result.failures or result.errors) and \
TestInputSingleton.input.param("stop-on-failure", False):
print("Test fails, all of the following tests will be skipped!!!")
break
if "makefile" in TestInputSingleton.input.test_params:
# Print fail for those tests which failed and do sys.exit() error code
fail_count = 0
for result in results:
if result["result"] == "fail":
test_run_result = result["name"] + " fail"
fail_count += 1
else:
test_run_result = result["name"] + " pass"
print(test_run_result)
if fail_count > 0:
java_lang_lib.system_exit(1)
java_lang_lib.system_exit(0)
if __name__ == "__main__":
assert HelperLib.validate_python_version(sys.version_info)
main()