forked from couchbaselabs/TAF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestrunner.py
executable file
·731 lines (650 loc) · 28.4 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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
#!/usr/bin/env python
import base64
import glob
import logging
import logging.config
import os
import re
import sys
import threading
import time
import unittest
import urllib2
import xml.dom.minidom
from optparse import OptionParser, OptionGroup
from os.path import basename, splitext
from pprint import pprint
from threading import Thread, Event
from java.lang import System
sys.path = [".", "lib", "pytests", "pysystests", "couchbase_utils",
"platform_utils", "connections", "constants"] + sys.path
from sdk_client3 import SDKClient
from remote.remote_util import RemoteMachineShellConnection
from TestInput import TestInputParser, TestInputSingleton
from xunit import XUnitTestResult
def usage(err=None):
if err is not None:
print("Error: %s" % err)
print("""\
Syntax: testrunner [options]
Examples:
./testrunner -i tmp/local.ini -t performance.perf.DiskDrainRate
./testrunner -i tmp/local.ini -t performance.perf.DiskDrainRate.test_9M
""")
sys.exit(0)
def parse_args(argv):
parser = OptionParser()
parser.add_option("-q", action="store_false", dest="verbose")
tgroup = OptionGroup(parser, "TestCase/Runlist Options")
tgroup.add_option("-i", "--ini",
dest="ini",
help="Path to .ini file containing server "
"information,e.g -i tmp/local.ini")
tgroup.add_option("-c", "--config", dest="conf",
help="Config file name (located in the conf "
"subdirectory), e.g -c py-view.conf")
tgroup.add_option("-t", "--test",
dest="testcase",
help="Test name (multiple -t options add more "
"tests) e.g -t "
"performance.perf.DiskDrainRate")
tgroup.add_option("-m", "--mode",
dest="mode",
help="Use java for Java SDK, rest for rest APIs.")
tgroup.add_option("-d", "--include_tests", dest="include_tests",
help="Value can be 'failed' (or) 'passed' (or) "
"'failed=<junit_xml_path (or) "
"jenkins_build_url>' (or) "
"'passed=<junit_xml_path or "
"jenkins_build_url>' (or) "
"'file=<filename>' (or) '<regular "
"expression>' to include tests in the run. "
"Use -g option to search "
"entire conf files. e.g. -d 'failed' or -d "
"'failed=report.xml' or -d "
"'^2i.*nodes_init=2.*'")
tgroup.add_option("-e", "--exclude_tests", dest="exclude_tests",
help="Value can be 'failed' (or) 'passed' (or) "
"'failed=<junit_xml_path (or) "
"jenkins_build_url>' (or) "
"'passed=<junit_xml_path (or) "
"jenkins_build_url>' or 'file=<filename>' "
"(or) '<regular expression>' "
"to exclude tests in the run. Use -g "
"option to search entire conf "
"files. e.g. -e 'passed'")
tgroup.add_option("-r", "--rerun", dest="rerun",
help="Rerun fail or pass tests with given "
"=count number of times maximum. "
"\ne.g. -r 'fail=3'")
tgroup.add_option("-g", "--globalsearch", dest="globalsearch",
help="Option to get tests from given conf file "
"path pattern, "
"like conf/**/*.conf. Useful for include "
"or exclude conf files to "
"filter tests. e.g. -g 'conf/**/.conf'",
default="")
parser.add_option_group(tgroup)
parser.add_option("-p", "--params",
dest="params",
help="Optional key=value parameters, "
"comma-separated -p k=v,k2=v2,...",
default="")
parser.add_option("-n", "--noop", action="store_true",
help="NO-OP - emit test names, but don't "
"actually run them e.g -n true")
parser.add_option("-l", "--log-level",
dest="loglevel", default="INFO",
help="e.g -l debug,info,warning")
options, args = parser.parse_args()
tests = []
test_params = {}
if not options.ini:
parser.error("please specify an .ini file (-i)")
parser.print_help()
else:
test_params['ini'] = options.ini
if not os.path.exists(options.ini):
sys.exit("ini file {0} was not found".format(options.ini))
test_params['cluster_name'] = \
splitext(os.path.basename(options.ini))[0]
if not options.testcase and not options.conf and not \
options.globalsearch and not options.include_tests and \
not options.exclude_tests:
parser.error(
"Please specify a configuration file (-c) or a test case "
"(-t) or a globalsearch (-g) option.")
parser.print_help()
if options.conf and not options.globalsearch:
parse_conf_file(options.conf, tests, test_params)
if options.globalsearch:
parse_global_conf_file(options.globalsearch, tests, test_params)
if options.include_tests:
tests = process_include_or_filter_exclude_tests("include",
options.include_tests,
tests,
options)
if options.exclude_tests:
tests = process_include_or_filter_exclude_tests("exclude",
options.exclude_tests,
tests, options)
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, level):
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 append_test(tests, name):
prefix = ".".join(name.split(".")[0:-1])
"""
Some tests carry special chars, need to skip it
"""
if "test_restore_with_filter_regex" not in name and \
"test_restore_with_rbac" not in name and \
"test_backup_with_rbac" not in name and \
name.find('*') > 0:
for t in unittest.TestLoader().loadTestsFromName(name.rstrip('.*')):
tests.append(prefix + '.' + t._testMethodName)
else:
tests.append(name)
def locate_conf_file(filename):
print("Filename: %s" % filename)
if filename:
if os.path.exists(filename):
return file(filename)
if os.path.exists("conf{0}{1}".format(os.sep, filename)):
return file("conf{0}{1}".format(os.sep, filename))
return None
def parse_conf_file(filename, tests, params):
"""Parse a configuration file.
Configuration files contain information and parameters about test execution.
Should follow the following order:
Part1: Tests to execute.
Part2: Parameters to override the defaults.
@e.x:
TestModuleName1:
TestName1
TestName2
....
TestModuleName2.TestName3
TestModuleName2.TestName4
...
params:
items=4000000
num_creates=400000
....
"""
f = locate_conf_file(filename)
if not f:
usage("unable to locate configuration file: " + filename)
prefix = None
for line in f:
stripped = line.strip()
if stripped.startswith("#") or len(stripped) <= 0:
continue
if stripped.endswith(":"):
prefix = stripped.split(":")[0]
print("Prefix: %s" % prefix)
continue
name = stripped
if prefix and prefix.lower() == "params":
args = stripped.split("=", 1)
if len(args) == 2:
params[args[0]] = args[1]
continue
elif line.startswith(" ") and prefix:
name = prefix + "." + name
prefix = ".".join(name.split(",")[0].split('.')[0:-1])
append_test(tests, name)
# If spec parameter isn't defined, testrunner uses the *.conf
# filename for
# the spec value
if 'spec' not in params:
params['spec'] = splitext(basename(filename))[0]
params['conf_file'] = filename
def parse_global_conf_file(dirpath, tests, params):
print("dirpath=" + dirpath)
if os.path.isdir(dirpath):
dirpath = dirpath + os.sep + "**" + os.sep + "*.conf"
print("Global filespath=" + dirpath)
conf_files = glob.glob(dirpath)
for file in conf_files:
parse_conf_file(file, tests, params)
def process_include_or_filter_exclude_tests(filtertype, option, tests,
options):
if filtertype == 'include' or filtertype == 'exclude':
if option.startswith('failed') or option.startswith(
'passed') or option.startswith(
"http://") or option.startswith("https://"):
passfail = option.split("=")
tests_list = []
if len(passfail) == 2:
if passfail[1].startswith("http://") \
or passfail[1].startswith("https://"):
tp, tf = parse_testreport_result_xml(passfail[1])
else:
tp, tf = parse_junit_result_xml(passfail[1])
elif option.startswith("http://") or option.startswith("https://"):
tp, tf = parse_testreport_result_xml(option)
tests_list = tp + tf
else:
tp, tf = parse_junit_result_xml()
if tp is None and tf is None:
return tests
if option.startswith('failed') and tf:
tests_list = tf
elif option.startswith('passed') and tp:
tests_list = tp
if filtertype == 'include':
tests = tests_list
else:
for line in tests_list:
isexisted, t = check_if_exists_with_params(tests,
line,
options.params)
if isexisted:
tests.remove(t)
elif option.startswith("file="):
filterfile = locate_conf_file(option.split("=")[1])
if filtertype == 'include':
tests_list = []
if filterfile:
for line in filterfile:
tests_list.append(line.strip())
tests = tests_list
else:
for line in filterfile:
isexisted, t = check_if_exists_with_params(tests,
line.strip(),
options.params)
if isexisted:
tests.remove(t)
else: # pattern
if filtertype == 'include':
tests = [i for i in tests if re.search(option, i)]
else:
tests = [i for i in tests if not re.search(option, i)]
else:
print("Warning: unknown filtertype given (only include/exclude "
"supported)!")
return tests
def parse_testreport_result_xml(filepath=""):
if filepath.startswith("http://") or filepath.startswith(
"https://"):
url_path = filepath + "/testReport/api/xml?pretty=true"
jobnamebuild = filepath.split('/')
if not os.path.exists('logs'):
os.mkdir('logs')
newfilepath = 'logs' + ''.join(os.sep) + '_'.join(
jobnamebuild[-3:]) + "_testresult.xml"
print("Downloading " + url_path + " to " + newfilepath)
try:
req = urllib2.Request(url_path)
filedata = urllib2.urlopen(req)
datatowrite = filedata.read()
filepath = newfilepath
with open(filepath, 'wb') as f:
f.write(datatowrite)
except Exception as ex:
print("Error:: " + str(
ex) + "! Please check if " + url_path + " URL is "
"accessible!!")
print("Running all the tests instead for now.")
return None, None
if filepath == "":
filepath = "logs/**/*.xml"
print("Loading result data from " + filepath)
xml_files = glob.glob(filepath)
passed_tests = []
failed_tests = []
for xml_file in xml_files:
print("-- " + xml_file + " --")
doc = xml.dom.minidom.parse(xml_file)
testresultelem = doc.getElementsByTagName("testResult")
testsuitelem = testresultelem[0].getElementsByTagName("suite")
for ts in testsuitelem:
testcaseelem = ts.getElementsByTagName("case")
for tc in testcaseelem:
tcname = getNodeText(
(tc.getElementsByTagName("name")[0]).childNodes)
tcstatus = getNodeText(
(tc.getElementsByTagName("status")[0]).childNodes)
if tcstatus == 'PASSED':
passed_tests.append(tcname)
else:
failed_tests.append(tcname)
if failed_tests:
failed_tests = transform_and_write_to_file(failed_tests,
"failed_tests.conf")
if passed_tests:
passed_tests = transform_and_write_to_file(passed_tests,
"passed_tests.conf")
return passed_tests, failed_tests
def getNodeText(nodelist):
rc = []
for node in nodelist:
if node.nodeType == node.TEXT_NODE:
rc.append(node.data)
return ''.join(rc)
def parse_junit_result_xml(filepath=""):
if filepath.startswith("http://") or filepath.startswith(
"https://"):
return parse_testreport_result_xml(filepath)
if filepath == "":
filepath = "logs/**/*.xml"
print("Loading result data from " + filepath)
xml_files = glob.glob(filepath)
passed_tests = []
failed_tests = []
for xml_file in xml_files:
print("-- " + xml_file + " --")
doc = xml.dom.minidom.parse(xml_file)
testsuitelem = doc.getElementsByTagName("testsuite")
for ts in testsuitelem:
testcaseelem = ts.getElementsByTagName("testcase")
failed = False
for tc in testcaseelem:
tcname = tc.getAttribute("name")
tcerror = tc.getElementsByTagName("error")
for tce in tcerror:
failed_tests.append(tcname)
failed = True
if not failed:
passed_tests.append(tcname)
if failed_tests:
failed_tests = transform_and_write_to_file(failed_tests,
"failed_tests.conf")
if passed_tests:
passed_tests = transform_and_write_to_file(passed_tests,
"passed_tests.conf")
return passed_tests, failed_tests
def transform_and_write_to_file(tests_list, filename):
new_test_list = []
for test in tests_list:
line = filter_fields(test)
line = line.rstrip(",")
isexisted, _ = check_if_exists(new_test_list, line)
if not isexisted:
new_test_list.append(line)
file = open(filename, "w+")
for line in new_test_list:
file.writelines((line) + "\n")
file.close()
return new_test_list
def filter_fields(testname):
if "logs_folder:" in testname:
testwords = testname.split(",")
line = ""
for fw in testwords:
if not fw.startswith("logs_folder") and not fw.startswith(
"conf_file") \
and not fw.startswith("cluster_name:") \
and not fw.startswith("ini:") \
and not fw.startswith("case_number:") \
and not fw.startswith("num_nodes:") \
and not fw.startswith("spec:"):
line = line + fw.replace(":", "=", 1)
if fw != testwords[-1]:
line = line + ","
return line
else:
testwords = testname.split(",")
line = []
for fw in testwords:
if not fw.startswith("logs_folder=") and not fw.startswith("conf_file=") \
and not fw.startswith("cluster_name=") \
and not fw.startswith("ini=") \
and not fw.startswith("case_number=") \
and not fw.startswith("num_nodes=") \
and not fw.startswith("spec="):
line.append(fw)
return ",".join(line)
def check_if_exists(test_list, test_line):
new_test_line = ''.join(sorted(test_line))
for t in test_list:
t1 = ''.join(sorted(t))
if t1 == new_test_line:
return True, t
return False, ""
def check_if_exists_with_params(test_list, test_line, test_params):
new_test_line = ''.join(sorted(test_line))
for t in test_list:
if test_params:
t1 = ''.join(sorted(t + "," + test_params.strip()))
else:
t1 = ''.join(sorted(t))
if t1 == new_test_line:
return True, t
return False, ""
def create_headers(username, password):
authorization = base64.encodestring('%s:%s' % (username, password))
return {'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': 'Basic %s' % authorization,
'Accept': '*/*'}
class StoppableThreadWithResult(Thread):
"""Thread class with a stop() method. The thread itself has to check
regularly for the stopped() condition."""
def __init__(self, group=None, target=None, name=None,
args=(), kwargs=None, verbose=None):
super(StoppableThreadWithResult, self).__init__(
group=group, target=target,
name=name, args=args, kwargs=kwargs)
self._stop = Event()
def stop(self):
self._stop.set()
self._Thread__stop()
def stopped(self):
return self._stop.isSet()
def run(self):
if self._Thread__target is not None:
self._return = self._Thread__target(*self._Thread__args,
**self._Thread__kwargs)
def join(self, timeout=None):
Thread.join(self, timeout=None)
return self._return
def main():
names, runtime_test_params, arg_i, arg_p, options = parse_args(sys.argv)
# 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"])
for name in names:
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
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
# 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, options.loglevel)
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 "", arg_p or "", 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)
# test_timeout = TestInputSingleton.input.param("test_timeout",
# None)
# t = StoppableThreadWithResult(
# target=unittest.TextTestRunner(verbosity=2).run,
# name="test_thread",
# args=(suite))
# t.start()
# result = t.join(timeout=test_timeout)
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:
System.exit(1)
System.exit(0)
if __name__ == "__main__":
if sys.hexversion < 0x02060000:
usage("Testrunner requires version 2.6+ of python")
main()