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 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
|
#!/usr/bin/env python
#
# __COPYRIGHT__
#
# runtest.py - wrapper script for running SCons tests
#
# The SCons test suite consists of:
#
# - unit tests - included in *Tests.py files from src/ dir
# - end-to-end tests - these are *.py files in test/ directory that
# require custom SCons framework from testing/
#
# This script adds SCons/ and testing/ directories to PYTHONPATH,
# performs test discovery and processes them according to options.
#
# With -p (--package) option, script tests specified package from
# build directory and sets PYTHONPATH to reference modules unpacked
# during build process for testing purposes (build/test-*).
"""
Options:
-a --all Run all tests.
-b --baseline BASE Run test scripts against baseline BASE.
--builddir DIR Directory in which packages were built.
-d --debug Run test scripts under the Python debugger.
-D --devmode Run tests in Python's development mode (3.7+ only)
-e --external Run the script in external mode (for external Tools)
-f --file FILE Only run tests listed in FILE.
-j --jobs JOBS Run tests in JOBS parallel jobs.
-k --no-progress Suppress count and percent progress messages.
-l --list List available tests and exit.
-n --no-exec No execute, just print command lines.
--nopipefiles Do not use the "file pipe" workaround for Popen()
for starting tests. WARNING: use only when too much
file traffic is giving you trouble AND you can be
sure that none of your tests create output >65K
chars! You might run into some deadlocks else.
-o --output FILE Save the output from a test run to the log file.
-P PYTHON Use the specified Python interpreter.
-p --package PACKAGE Test against the specified PACKAGE:
deb Debian
local-tar-gz .tar.gz standalone package
local-zip .zip standalone package
rpm Red Hat
src-tar-gz .tar.gz source package
src-zip .zip source package
tar-gz .tar.gz distribution
zip .zip distribution
--passed Summarize which tests passed.
-q --quiet Don't print the test being executed.
--quit-on-failure Quit on any test failure.
--runner CLASS Alternative test runner class for unit tests.
-s --short-progress Short progress, prints only the command line.
and a percentage value, based on the total and
current number of tests.
-t --time Print test execution time.
-v VERSION Specify the SCons version.
--verbose=LEVEL Set verbose level:
1 = print executed commands,
2 = print commands and non-zero output,
3 = print commands and all output.
-X Test script is executable, don't feed to Python.
-x --exec SCRIPT Test SCRIPT.
--xml file Save results to file in SCons XML format.
--exclude-list FILE List of tests to exclude in the current selection.
Use to exclude tests when using the -a option.
Environment Variables:
PRESERVE, PRESERVE_{PASS,FAIL,NO_RESULT}: preserve test subdirs
TESTCMD_VERBOSE: turn on verbosity in TestCommand
"""
import getopt
import glob
import os
import re
import stat
import subprocess
import sys
import tempfile
import threading
import time
from abc import ABC, abstractmethod
from optparse import OptionParser, BadOptionError
from queue import Queue
cwd = os.getcwd()
baseline = None
builddir = os.path.join(cwd, 'build')
external = 0
devmode = False
debug = ''
execute_tests = True
jobs = 1
list_only = False
printcommand = True
package = None
print_passed_summary = False
scons = None
scons_exec = False
testlistfile = None
version = ''
print_times = False
python = None
sp = []
print_progress = True
catch_output = False
suppress_output = False
allow_pipe_files = True
quit_on_failure = False
excludelistfile = None
script = sys.argv[0].split("/")[-1]
usagestr = """\
Usage: %(script)s [OPTIONS] [TEST ...]
%(script)s -h|--help
""" % locals()
helpstr = usagestr + __doc__
# "Pass-through" option parsing -- an OptionParser that ignores
# unknown options and lets them pile up in the leftover argument
# list. Useful to gradually port getopt to optparse.
class PassThroughOptionParser(OptionParser):
def _process_long_opt(self, rargs, values):
try:
OptionParser._process_long_opt(self, rargs, values)
except BadOptionError as err:
self.largs.append(err.opt_str)
def _process_short_opts(self, rargs, values):
try:
OptionParser._process_short_opts(self, rargs, values)
except BadOptionError as err:
self.largs.append(err.opt_str)
parser = PassThroughOptionParser(add_help_option=False)
parser.add_option('-a', '--all', action='store_true', help="Run all tests.")
parser.add_option('-o', '--output',
help="Save the output from a test run to the log file.")
parser.add_option('--runner', metavar='class',
help="Test runner class for unit tests.")
parser.add_option('--xml', help="Save results to file in SCons XML format.")
(options, args) = parser.parse_args()
# print("options:", options)
# print("args:", args)
opts, args = getopt.getopt(
args,
"b:dDef:hj:klnP:p:qsv:Xx:t",
[
"baseline=",
"builddir=",
"debug",
"devmode",
"external",
"file=",
"help",
"no-progress",
"jobs=",
"list",
"no-exec",
"nopipefiles",
"package=",
"passed",
"python=",
"quiet",
"quit-on-failure",
"short-progress",
"time",
"version=",
"exec=",
"verbose=",
"exclude-list=",
],
)
for o, a in opts:
if o in ['-b', '--baseline']:
baseline = a
elif o in ['--builddir']:
builddir = a
if not os.path.isabs(builddir):
builddir = os.path.normpath(os.path.join(cwd, builddir))
elif o in ['-d', '--debug']:
for d in sys.path:
pdb = os.path.join(d, 'pdb.py')
if os.path.exists(pdb):
debug = pdb
break
elif o in ['-D', '--devmode']:
devmode = True
elif o in ['-e', '--external']:
external = True
elif o in ['-f', '--file']:
if not os.path.isabs(a):
a = os.path.join(cwd, a)
testlistfile = a
elif o in ['-h', '--help']:
print(helpstr)
sys.exit(0)
elif o in ['-j', '--jobs']:
jobs = int(a)
# don't let tests write stdout/stderr directly if multi-job,
# or outputs will interleave and be hard to read
catch_output = True
elif o in ['-k', '--no-progress']:
print_progress = False
elif o in ['-l', '--list']:
list_only = True
elif o in ['-n', '--no-exec']:
execute_tests = False
elif o in ['--nopipefiles']:
allow_pipe_files = False
elif o in ['-p', '--package']:
package = a
elif o in ['--passed']:
print_passed_summary = True
elif o in ['-P', '--python']:
python = a
elif o in ['-q', '--quiet']:
printcommand = False
suppress_output = catch_output = True
elif o in ['--quit-on-failure']:
quit_on_failure = True
elif o in ['-s', '--short-progress']:
print_progress = True
suppress_output = catch_output = True
elif o in ['-t', '--time']:
print_times = True
elif o in ['--verbose']:
os.environ['TESTCMD_VERBOSE'] = a
elif o in ['-v', '--version']:
version = a
elif o in ['-X']:
scons_exec = True
elif o in ['-x', '--exec']:
scons = a
elif o in ['--exclude-list']:
excludelistfile = a
class Unbuffered():
""" class to arrange for stdout/stderr to be unbuffered """
def __init__(self, file):
self.file = file
def write(self, arg):
self.file.write(arg)
self.file.flush()
def __getattr__(self, attr):
return getattr(self.file, attr)
sys.stdout = Unbuffered(sys.stdout)
sys.stderr = Unbuffered(sys.stderr)
# possible alternative: switch to using print, and:
# print = functools.partial(print, flush)
if options.output:
logfile = open(options.output, 'w')
class Tee():
def __init__(self, openfile, stream):
self.file = openfile
self.stream = stream
def write(self, data):
self.file.write(data)
self.stream.write(data)
sys.stdout = Tee(logfile, sys.stdout)
sys.stderr = Tee(logfile, sys.stderr)
# --- define helpers ----
if sys.platform in ('win32', 'cygwin'):
def whereis(file):
pathext = [''] + os.environ['PATHEXT'].split(os.pathsep)
for d in os.environ['PATH'].split(os.pathsep):
f = os.path.join(d, file)
for ext in pathext:
fext = f + ext
if os.path.isfile(fext):
return fext
return None
else:
def whereis(file):
for d in os.environ['PATH'].split(os.pathsep):
f = os.path.join(d, file)
if os.path.isfile(f):
try:
st = os.stat(f)
except OSError:
continue
if stat.S_IMODE(st[stat.ST_MODE]) & 0o111:
return f
return None
sp.append(builddir)
sp.append(cwd)
#
_ws = re.compile(r'\s')
def escape(s):
if _ws.search(s):
s = '"' + s + '"'
s = s.replace('\\', '\\\\')
return s
if not catch_output:
# Without any output suppressed, we let the subprocess
# write its stuff freely to stdout/stderr.
def spawn_it(command_args):
cp = subprocess.run(command_args, shell=False)
return cp.stdout, cp.stderr, cp.returncode
else:
# Else, we catch the output of both pipes...
if allow_pipe_files:
# The subprocess.Popen() suffers from a well-known
# problem. Data for stdout/stderr is read into a
# memory buffer of fixed size, 65K which is not very much.
# When it fills up, it simply stops letting the child process
# write to it. The child will then sit and patiently wait to
# be able to write the rest of its output. Hang!
# In order to work around this, we follow a suggestion
# by Anders Pearson in
# http://http://thraxil.org/users/anders/posts/2008/03/13/Subprocess-Hanging-PIPE-is-your-enemy/
# and pass temp file objects to Popen() instead of the ubiquitous
# subprocess.PIPE.
def spawn_it(command_args):
# Create temporary files
tmp_stdout = tempfile.TemporaryFile(mode='w+t')
tmp_stderr = tempfile.TemporaryFile(mode='w+t')
# Start subprocess...
cp = subprocess.run(command_args,
stdout=tmp_stdout,
stderr=tmp_stderr,
shell=False)
try:
# Rewind to start of files
tmp_stdout.seek(0)
tmp_stderr.seek(0)
# Read output
spawned_stdout = tmp_stdout.read()
spawned_stderr = tmp_stderr.read()
finally:
# Remove temp files by closing them
tmp_stdout.close()
tmp_stderr.close()
# Return values
return spawned_stderr, spawned_stdout, cp.returncode
else:
# We get here only if the user gave the '--nopipefiles'
# option, meaning the "temp file" approach for
# subprocess.communicate() above shouldn't be used.
# He hopefully knows what he's doing, but again we have a
# potential deadlock situation in the following code:
# If the subprocess writes a lot of data to its stderr,
# the pipe will fill up (nobody's reading it yet) and the
# subprocess will wait for someone to read it.
# But the parent process is trying to read from stdin
# (but the subprocess isn't writing anything there).
# Hence a deadlock.
# Be dragons here! Better don't use this!
def spawn_it(command_args):
cp = subprocess.run(command_args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=False)
return cp.stdout, cp.stderr, cp.returncode
class RuntestBase(ABC):
""" Base class for tests """
def __init__(self, path, num, spe=None):
self.path = path
self.num = num
self.stdout = self.stderr = self.status = None
self.abspath = os.path.abspath(path)
self.command_args = []
self.command_str = ""
self.test_time = self.total_time = 0
if spe:
for d in spe:
f = os.path.join(d, path)
if os.path.isfile(f):
self.abspath = f
break
@abstractmethod
def execute(self):
pass
class SystemExecutor(RuntestBase):
""" Test class for tests executed with spawn_it() """
def execute(self):
self.stderr, self.stdout, s = spawn_it(self.command_args)
self.status = s
if s < 0 or s > 2:
sys.stdout.write("Unexpected exit status %d\n" % s)
class PopenExecutor(RuntestBase):
""" Test class for tests executed with Popen
A bit of a misnomer as the Popen call is now wrapped
by calling subprocess.run (behind the covers uses Popen.
Very similar to SystemExecutor, but uses command_str
instead of command_args, and doesn't allow for not catching
the output.
"""
# For an explanation of the following 'if ... else'
# and the 'allow_pipe_files' option, please check out the
# definition of spawn_it() above.
if allow_pipe_files:
def execute(self):
# Create temporary files
tmp_stdout = tempfile.TemporaryFile(mode='w+t')
tmp_stderr = tempfile.TemporaryFile(mode='w+t')
# Start subprocess...
cp = subprocess.run(self.command_str.split(),
stdout=tmp_stdout,
stderr=tmp_stderr,
shell=False)
self.status = cp.returncode
try:
# Rewind to start of files
tmp_stdout.seek(0)
tmp_stderr.seek(0)
# Read output
self.stdout = tmp_stdout.read()
self.stderr = tmp_stderr.read()
finally:
# Remove temp files by closing them
tmp_stdout.close()
tmp_stderr.close()
else:
def execute(self):
cp = subprocess.run(self.command_str.split(),
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=False)
self.status = cp.returncode
self.stdout = cp.stdout
self.stderr = cp.stderr
class XML(PopenExecutor):
""" Test class for tests that will output in scons xml """
@staticmethod
def header(f):
f.write(' <results>\n')
def write(self, f):
f.write(' <test>\n')
f.write(' <file_name>%s</file_name>\n' % self.path)
f.write(' <command_line>%s</command_line>\n' % self.command_str)
f.write(' <exit_status>%s</exit_status>\n' % self.status)
f.write(' <stdout>%s</stdout>\n' % self.stdout)
f.write(' <stderr>%s</stderr>\n' % self.stderr)
f.write(' <time>%.1f</time>\n' % self.test_time)
f.write(' </test>\n')
def footer(self, f):
f.write(' <time>%.1f</time>\n' % self.total_time)
f.write(' </results>\n')
if options.xml:
Test = XML
else:
Test = SystemExecutor
# --- start processing ---
sd = None
tools_dir = None
ld = None
if not baseline or baseline == '.':
base = cwd
elif baseline == '-':
print("This logic used to checkout from svn. It's been removed. If you used this, please let us know on devel mailing list, IRC, or discord server")
sys.exit(-1)
else:
base = baseline
scons_runtest_dir = base
if not external:
scons_script_dir = sd or os.path.join(base, 'scripts')
scons_tools_dir = tools_dir or os.path.join(base, 'bin')
scons_lib_dir = ld or base
else:
scons_script_dir = sd or ''
scons_tools_dir = tools_dir or ''
scons_lib_dir = ld or ''
pythonpath_dir = scons_lib_dir
if scons:
# Let the version of SCons that the -x option pointed to find
# its own modules.
os.environ['SCONS'] = scons
elif scons_lib_dir:
# Because SCons is really aggressive about finding its modules,
# it sometimes finds SCons modules elsewhere on the system.
# This forces SCons to use the modules that are being tested.
os.environ['SCONS_LIB_DIR'] = scons_lib_dir
if scons_exec:
os.environ['SCONS_EXEC'] = '1'
if external:
os.environ['SCONS_EXTERNAL_TEST'] = '1'
os.environ['SCONS_RUNTEST_DIR'] = scons_runtest_dir
os.environ['SCONS_SCRIPT_DIR'] = scons_script_dir
os.environ['SCONS_TOOLS_DIR'] = scons_tools_dir
os.environ['SCONS_CWD'] = cwd
os.environ['SCONS_VERSION'] = version
old_pythonpath = os.environ.get('PYTHONPATH')
# Clear _JAVA_OPTIONS which java tools output to stderr when run breaking tests
if '_JAVA_OPTIONS' in os.environ:
del os.environ['_JAVA_OPTIONS']
# FIXME: the following is necessary to pull in half of the testing
# harness from $srcdir/etc. Those modules should be transfered
# to testing/, in which case this manipulation of PYTHONPATH
# should be able to go away.
pythonpaths = [pythonpath_dir]
scriptpath = os.path.dirname(os.path.realpath(__file__))
# Add path for testing framework to PYTHONPATH
pythonpaths.append(os.path.join(scriptpath, 'testing', 'framework'))
os.environ['PYTHONPATH'] = os.pathsep.join(pythonpaths)
if old_pythonpath:
os.environ['PYTHONPATH'] = os.environ['PYTHONPATH'] + \
os.pathsep + \
old_pythonpath
# ---[ test discovery ]------------------------------------
tests = []
excludetests = []
unittests = []
endtests = []
def find_unit_tests(directory):
""" Look for unit tests """
result = []
for dirpath, dirnames, filenames in os.walk(directory):
# Skip folders containing a sconstest.skip file
if 'sconstest.skip' in filenames:
continue
for fname in filenames:
if fname.endswith("Tests.py"):
result.append(os.path.join(dirpath, fname))
return sorted(result)
def find_e2e_tests(directory):
""" Look for end-to-end tests """
result = []
for dirpath, dirnames, filenames in os.walk(directory):
# Skip folders containing a sconstest.skip file
if 'sconstest.skip' in filenames:
continue
try:
with open(os.path.join(dirpath, ".exclude_tests")) as f:
excludes = [e.split("#", 1)[0].strip() for e in f.readlines()]
except EnvironmentError:
excludes = []
for fname in filenames:
if fname.endswith(".py") and fname not in excludes:
result.append(os.path.join(dirpath, fname))
return sorted(result)
if testlistfile:
with open(testlistfile, 'r') as f:
tests = f.readlines()
tests = [x for x in tests if x[0] != '#']
tests = [x[:-1] for x in tests]
tests = [x.strip() for x in tests]
tests = [x for x in tests if x]
else:
testpaths = []
# Each test path specifies a test file, or a directory to search for
# SCons tests. SCons code layout assumes that any file under the 'SCons'
# subdirectory that ends with 'Tests.py' is a unit test, and any Python
# script (*.py) under the 'test' subdirectory an end-to-end test.
# We need to track these because they are invoked differently.
#
# Note that there are some tests under 'SCons' that *begin* with
# 'test_', but they're packaging and installation tests, not
# functional tests, so we don't execute them by default. (They can
# still be executed by hand, though).
if options.all:
testpaths = ['SCons', 'test']
elif args:
testpaths = args
for tp in testpaths:
# Clean up path so it can match startswith's below
# sys.stderr.write("Changed:%s->"%tp)
# remove leading ./ or .\
if tp[0] == '.' and tp[1] in (os.sep, os.altsep):
tp = tp[2:]
# tp = os.path.normpath(tp)
# sys.stderr.write('->%s<-'%tp)
# sys.stderr.write("to:%s\n"%tp)
for path in glob.glob(tp):
if os.path.isdir(path):
if path.startswith('SCons') or path.startswith('testing'):
for p in find_unit_tests(path):
unittests.append(p)
elif path.startswith('test'):
for p in find_e2e_tests(path):
endtests.append(p)
else:
if path.endswith("Tests.py"):
unittests.append(path)
else:
endtests.append(path)
tests.extend(unittests)
tests.extend(endtests)
tests.sort()
if not tests:
sys.stderr.write(usagestr + """
runtest.py: No tests were found.
Tests can be specified on the command line, read from file
with -f option, or discovered with -a to run all tests.
""")
sys.exit(1)
if excludelistfile:
with open(excludelistfile, 'r') as f:
excludetests = f.readlines()
excludetests = [x for x in excludetests if x[0] != '#']
excludetests = [x[:-1] for x in excludetests]
excludetests = [x.strip() for x in excludetests]
excludetests = [x for x in excludetests if x]
# ---[ test processing ]-----------------------------------
tests = [t for t in tests if t not in excludetests]
tests = [Test(t, n + 1) for n, t in enumerate(tests)]
if list_only:
for t in tests:
sys.stdout.write(t.path + "\n")
sys.exit(0)
if not python:
if os.name == 'java':
python = os.path.join(sys.prefix, 'jython')
else:
python = sys.executable
os.environ["python_executable"] = python
if print_times:
def print_time(fmt, tm):
sys.stdout.write(fmt % tm)
else:
def print_time(fmt, tm):
pass
time_func = time.perf_counter
total_start_time = time_func()
total_num_tests = len(tests)
def log_result(t, io_lock=None):
""" log the result of a test.
"log" in this case means writing to stdout. Since we might be
called from from any of several different threads (multi-job run),
we need to lock access to the log to avoid interleaving. The same
would apply if output was a file.
:param t: a completed testcase
:type t: Test
:param io_lock:
:type io_lock: threading.Lock
"""
# there is no lock in single-job run, which includes
# running test/runtest tests from multi-job run, so check.
if io_lock:
io_lock.acquire()
try:
if suppress_output or catch_output:
sys.stdout.write(t.headline)
if not suppress_output:
if t.stdout:
print(t.stdout)
if t.stderr:
print(t.stderr)
print_time("Test execution time: %.1f seconds\n", t.test_time)
finally:
if io_lock:
io_lock.release()
if quit_on_failure and t.status == 1:
print("Exiting due to error")
print(t.status)
sys.exit(1)
def run_test(t, io_lock=None, run_async=True):
t.headline = ""
command_args = []
if debug:
command_args.append(debug)
if devmode and sys.version_info >= (3, 7, 0):
command_args.append('-X dev')
command_args.append(t.path)
if options.runner and t.path in unittests:
# For example --runner TestUnit.TAPTestRunner
command_args.append('--runner ' + options.runner)
t.command_args = [escape(python)] + command_args
t.command_str = " ".join([escape(python)] + command_args)
if printcommand:
if print_progress:
t.headline += "%d/%d (%.2f%s) %s\n" % (
t.num,
total_num_tests,
float(t.num) * 100.0 / float(total_num_tests),
"%",
t.command_str,
)
else:
t.headline += t.command_str + "\n"
if not suppress_output and not catch_output:
# defer printing the headline until test is done
sys.stdout.write(t.headline)
head, tail = os.path.split(t.abspath)
fixture_dirs = []
if head:
fixture_dirs.append(head)
fixture_dirs.append(os.path.join(scriptpath, 'test', 'fixture'))
os.environ['FIXTURE_DIRS'] = os.pathsep.join(fixture_dirs)
test_start_time = time_func()
if execute_tests:
t.execute()
t.test_time = time_func() - test_start_time
log_result(t, io_lock=io_lock)
class RunTest(threading.Thread):
""" Test Runner class
One instance will be created for each job thread in multi-job mode
"""
def __init__(self, queue=None, io_lock=None,
group=None, target=None, name=None, args=(), kwargs=None):
super(RunTest, self).__init__(group=group, target=target, name=name)
self.queue = queue
self.io_lock = io_lock
def run(self):
for t in iter(self.queue.get, None):
run_test(t, io_lock=self.io_lock, run_async=True)
self.queue.task_done()
if jobs > 1:
print("Running tests using %d jobs" % jobs)
testq = Queue()
for t in tests:
testq.put(t)
testlock = threading.Lock()
# Start worker threads to consume the queue
threads = [RunTest(queue=testq, io_lock=testlock) for _ in range(jobs)]
for t in threads:
t.daemon = True
t.start()
# wait on the queue rather than the individual threads
testq.join()
else:
for t in tests:
run_test(t, io_lock=None, run_async=False)
# --- all tests are complete by the time we get here ---
if tests:
tests[0].total_time = time_func() - total_start_time
print_time("Total execution time for all tests: %.1f seconds\n", tests[0].total_time)
passed = [t for t in tests if t.status == 0]
fail = [t for t in tests if t.status == 1]
no_result = [t for t in tests if t.status == 2]
if len(tests) != 1 and execute_tests:
if passed and print_passed_summary:
if len(passed) == 1:
sys.stdout.write("\nPassed the following test:\n")
else:
sys.stdout.write("\nPassed the following %d tests:\n" % len(passed))
paths = [x.path for x in passed]
sys.stdout.write("\t" + "\n\t".join(paths) + "\n")
if fail:
if len(fail) == 1:
sys.stdout.write("\nFailed the following test:\n")
else:
sys.stdout.write("\nFailed the following %d tests:\n" % len(fail))
paths = [x.path for x in fail]
sys.stdout.write("\t" + "\n\t".join(paths) + "\n")
if no_result:
if len(no_result) == 1:
sys.stdout.write("\nNO RESULT from the following test:\n")
else:
sys.stdout.write("\nNO RESULT from the following %d tests:\n" % len(no_result))
paths = [x.path for x in no_result]
sys.stdout.write("\t" + "\n\t".join(paths) + "\n")
if options.xml:
if options.xml == '-':
f = sys.stdout
else:
f = open(options.xml, 'w')
tests[0].header(f)
#f.write("test_result = [\n")
for t in tests:
t.write(f)
tests[0].footer(f)
#f.write("];\n")
if options.xml != '-':
f.close()
if options.output:
if isinstance(sys.stdout, Tee):
sys.stdout.file.close()
if isinstance(sys.stderr, Tee):
sys.stderr.file.close()
if fail:
sys.exit(1)
elif no_result:
sys.exit(2)
else:
sys.exit(0)
# Local Variables:
# tab-width:4
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=4 shiftwidth=4:
|