##// END OF EJS Templates
Allow xunit and coverage output
Allow xunit and coverage output

File last commit:

r12611:5c274c66
r12611:5c274c66
Show More
iptestcontroller.py
292 lines | 9.5 KiB | text/x-python | PythonLexer
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 # -*- coding: utf-8 -*-
"""IPython Test Process Controller
This module runs one or more subprocesses which will actually run the IPython
test suite.
"""
#-----------------------------------------------------------------------------
# Copyright (C) 2009-2011 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from __future__ import print_function
Thomas Kluyver
Start refactoring test machinery
r12608 import argparse
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 import multiprocessing.pool
import os
import signal
import sys
import subprocess
import time
Thomas Kluyver
Start refactoring test machinery
r12608 from .iptest import have, test_group_names, test_sections
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 from IPython.utils import py3compat
from IPython.utils.sysinfo import sys_info
from IPython.utils.tempdir import TemporaryDirectory
Thomas Kluyver
Start refactoring test machinery
r12608 class IPTestController(object):
"""Run iptest in a subprocess
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 """
Thomas Kluyver
Start refactoring test machinery
r12608 #: str, IPython test suite to be executed.
section = None
#: list, command line arguments to be executed
cmd = None
#: dict, extra environment variables to set for the subprocess
env = None
#: list, TemporaryDirectory instances to clear up when the process finishes
dirs = None
#: subprocess.Popen instance
process = None
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 buffer_output = False
Thomas Kluyver
Start refactoring test machinery
r12608 def __init__(self, section):
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 """Create new test runner."""
Thomas Kluyver
Start refactoring test machinery
r12608 self.section = section
self.cmd = [sys.executable, '-m', 'IPython.testing.iptest', section]
self.env = {}
self.dirs = []
ipydir = TemporaryDirectory()
self.dirs.append(ipydir)
self.env['IPYTHONDIR'] = ipydir.name
workingdir = TemporaryDirectory()
self.dirs.append(workingdir)
self.env['IPTEST_WORKING_DIR'] = workingdir.name
def add_xunit(self):
xunit_file = os.path.abspath(self.section + '.xunit.xml')
self.cmd.extend(['--with-xunit', '--xunit-file', xunit_file])
def add_coverage(self, xml=True):
Thomas Kluyver
Allow xunit and coverage output
r12611 self.cmd.append('--with-coverage')
for include in test_sections[self.section].includes:
self.cmd.extend(['--cover-package', include])
Thomas Kluyver
Start refactoring test machinery
r12608 if xml:
coverage_xml = os.path.abspath(self.section + ".coverage.xml")
self.cmd.extend(['--cover-xml', '--cover-xml-file', coverage_xml])
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
Thomas Kluyver
Start refactoring test machinery
r12608
def launch(self):
# print('*** ENV:', self.env) # dbg
# print('*** CMD:', self.cmd) # dbg
env = os.environ.copy()
env.update(self.env)
output = subprocess.PIPE if self.buffer_output else None
Thomas Kluyver
Improve test output
r12610 stdout = subprocess.STDOUT if self.buffer_output else None
Thomas Kluyver
Start refactoring test machinery
r12608 self.process = subprocess.Popen(self.cmd, stdout=output,
Thomas Kluyver
Improve test output
r12610 stderr=stdout, env=env)
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
Thomas Kluyver
Improve test output
r12610 def wait(self):
self.stdout, _ = self.process.communicate()
return self.process.returncode
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
Thomas Kluyver
Fix cleanup of test controller
r12609 def cleanup_process(self):
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 """Cleanup on exit by killing any leftover processes."""
Thomas Kluyver
Start refactoring test machinery
r12608 subp = self.process
if subp is None or (subp.poll() is not None):
return # Process doesn't exist, or is already dead.
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
Thomas Kluyver
Start refactoring test machinery
r12608 try:
print('Cleaning up stale PID: %d' % subp.pid)
subp.kill()
except: # (OSError, WindowsError) ?
# This is just a best effort, if we fail or the process was
# really gone, ignore it.
pass
else:
for i in range(10):
if subp.poll() is None:
time.sleep(0.1)
else:
break
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
Thomas Kluyver
Start refactoring test machinery
r12608 if subp.poll() is None:
# The process did not die...
print('... failed. Manual cleanup may be required.')
Thomas Kluyver
Fix cleanup of test controller
r12609
def cleanup(self):
"Kill process if it's still alive, and clean up temporary directories"
self.cleanup_process()
Thomas Kluyver
Start refactoring test machinery
r12608 for td in self.dirs:
td.cleanup()
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
Thomas Kluyver
Start refactoring test machinery
r12608 __del__ = cleanup
Thomas Kluyver
Allow xunit and coverage output
r12611 def test_controllers_to_run(inc_slow=False, xunit=False, coverage=False):
Thomas Kluyver
Start refactoring test machinery
r12608 """Returns an ordered list of IPTestController instances to be run."""
res = []
if not inc_slow:
test_sections['parallel'].enabled = False
Thomas Kluyver
Improve test output
r12610
Thomas Kluyver
Start refactoring test machinery
r12608 for name in test_group_names:
if test_sections[name].will_run:
Thomas Kluyver
Allow xunit and coverage output
r12611 controller = IPTestController(name)
if xunit:
controller.add_xunit()
if coverage:
controller.add_coverage(xml=True)
res.append(controller)
Thomas Kluyver
Start refactoring test machinery
r12608 return res
def do_run(controller):
try:
try:
controller.launch()
except Exception:
import traceback
traceback.print_exc()
return controller, 1 # signal failure
Thomas Kluyver
Improve test output
r12610 exitcode = controller.wait()
Thomas Kluyver
Start refactoring test machinery
r12608 return controller, exitcode
except KeyboardInterrupt:
return controller, -signal.SIGINT
Thomas Kluyver
Improve test output
r12610 finally:
controller.cleanup()
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
def report():
"""Return a string with a summary report of test-related variables."""
out = [ sys_info(), '\n']
avail = []
not_avail = []
for k, is_avail in have.items():
if is_avail:
avail.append(k)
else:
not_avail.append(k)
if avail:
out.append('\nTools and libraries available at test time:\n')
avail.sort()
out.append(' ' + ' '.join(avail)+'\n')
if not_avail:
out.append('\nTools and libraries NOT available at test time:\n')
not_avail.sort()
out.append(' ' + ' '.join(not_avail)+'\n')
return ''.join(out)
Thomas Kluyver
Start refactoring test machinery
r12608 def run_iptestall(inc_slow=False, jobs=1, xunit=False, coverage=False):
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 """Run the entire IPython test suite by calling nose and trial.
This function constructs :class:`IPTester` instances for all IPython
modules and package and then runs each of them. This causes the modules
and packages of IPython to be tested each in their own subprocess using
nose.
Parameters
----------
inc_slow : bool, optional
Include slow tests, like IPython.parallel. By default, these tests aren't
run.
fast : bool, option
Run the test suite in parallel, if True, using as many threads as there
are processors
"""
Thomas Kluyver
Start refactoring test machinery
r12608 if jobs != 1:
IPTestController.buffer_output = True
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
Thomas Kluyver
Allow xunit and coverage output
r12611 controllers = test_controllers_to_run(inc_slow=inc_slow, xunit=xunit,
coverage=coverage)
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
# Run all test runners, tracking execution time
failed = []
t_start = time.time()
Thomas Kluyver
Start refactoring test machinery
r12608 print('*'*70)
Thomas Kluyver
Improve test output
r12610 if jobs == 1:
for controller in controllers:
print('IPython test group:', controller.section)
controller, res = do_run(controller)
if res:
failed.append(controller)
if res == -signal.SIGINT:
print("Interrupted")
break
print()
else:
try:
pool = multiprocessing.pool.ThreadPool(jobs)
for (controller, res) in pool.imap_unordered(do_run, controllers):
tgroup = 'IPython test group: ' + controller.section + ' '
res_string = ' OK' if res == 0 else ' FAILED'
res_string = res_string.rjust(70 - len(tgroup), '.')
print(tgroup + res_string)
if res:
print(controller.stdout)
failed.append(controller)
if res == -signal.SIGINT:
print("Interrupted")
break
except KeyboardInterrupt:
return
Thomas Kluyver
Start refactoring test machinery
r12608
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 t_end = time.time()
t_tests = t_end - t_start
Thomas Kluyver
Start refactoring test machinery
r12608 nrunners = len(controllers)
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 nfail = len(failed)
# summarize results
print('*'*70)
print('Test suite completed for system with the following information:')
print(report())
print('Ran %s test groups in %.3fs' % (nrunners, t_tests))
print()
print('Status:')
if not failed:
print('OK')
else:
# If anything went wrong, point out what command to rerun manually to
# see the actual errors and individual summary
print('ERROR - %s out of %s test groups failed.' % (nfail, nrunners))
Thomas Kluyver
Start refactoring test machinery
r12608 for controller in failed:
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 print('-'*40)
Thomas Kluyver
Start refactoring test machinery
r12608 print('Runner failed:', controller.section)
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 print('You may wish to rerun this one individually, with:')
Thomas Kluyver
Start refactoring test machinery
r12608 failed_call_args = [py3compat.cast_unicode(x) for x in controller.cmd]
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 print(u' '.join(failed_call_args))
print()
# Ensure that our exit code indicates failure
sys.exit(1)
def main():
Thomas Kluyver
Start refactoring test machinery
r12608 if len(sys.argv) > 1 and (sys.argv[1] in test_sections):
from .iptest import run_iptest
# This is in-process
run_iptest()
return
parser = argparse.ArgumentParser(description='Run IPython test suite')
parser.add_argument('--all', action='store_true',
help='Include slow tests not run by default.')
parser.add_argument('-j', '--fast', nargs='?', const=None, default=1,
help='Run test sections in parallel.')
parser.add_argument('--xunit', action='store_true',
help='Produce Xunit XML results')
parser.add_argument('--coverage', action='store_true',
help='Measure test coverage.')
options = parser.parse_args()
# This starts subprocesses
run_iptestall(inc_slow=options.all, jobs=options.fast,
xunit=options.xunit, coverage=options.coverage)
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607
if __name__ == '__main__':
main()