iptestcontroller.py
741 lines
| 25.7 KiB
| text/x-python
|
PythonLexer
Thomas Kluyver
|
r12607 | # -*- coding: utf-8 -*- | ||
"""IPython Test Process Controller | ||||
This module runs one or more subprocesses which will actually run the IPython | ||||
test suite. | ||||
""" | ||||
MinRK
|
r16509 | # Copyright (c) IPython Development Team. | ||
# Distributed under the terms of the Modified BSD License. | ||||
Thomas Kluyver
|
r12607 | from __future__ import print_function | ||
Thomas Kluyver
|
r12608 | import argparse | ||
MinRK
|
r15909 | import json | ||
Thomas Kluyver
|
r12607 | import multiprocessing.pool | ||
import os | ||||
Jeroen Demeyer
|
r19132 | import stat | ||
Jonathan Frederic
|
r18444 | import re | ||
import requests | ||||
Thomas Kluyver
|
r12612 | import shutil | ||
Thomas Kluyver
|
r12607 | import signal | ||
import sys | ||||
import subprocess | ||||
import time | ||||
MinRK
|
r18356 | from .iptest import ( | ||
have, test_group_names as py_test_group_names, test_sections, StreamCapturer, | ||||
test_for, | ||||
) | ||||
Thomas Kluyver
|
r13173 | from IPython.utils.path import compress_user | ||
Thomas Kluyver
|
r12619 | from IPython.utils.py3compat import bytes_to_str | ||
Thomas Kluyver
|
r13173 | from IPython.utils.sysinfo import get_sys_info | ||
Thomas Kluyver
|
r12607 | from IPython.utils.tempdir import TemporaryDirectory | ||
Thomas Kluyver
|
r16980 | from IPython.utils.text import strip_ansi | ||
Thomas Kluyver
|
r12607 | |||
MinRK
|
r16512 | try: | ||
# Python >= 3.3 | ||||
from subprocess import TimeoutExpired | ||||
def popen_wait(p, timeout): | ||||
return p.wait(timeout) | ||||
except ImportError: | ||||
class TimeoutExpired(Exception): | ||||
pass | ||||
def popen_wait(p, timeout): | ||||
"""backport of Popen.wait from Python 3""" | ||||
for i in range(int(10 * timeout)): | ||||
if p.poll() is not None: | ||||
return | ||||
time.sleep(0.1) | ||||
if p.poll() is None: | ||||
raise TimeoutExpired | ||||
MinRK
|
r16509 | NOTEBOOK_SHUTDOWN_TIMEOUT = 10 | ||
Thomas Kluyver
|
r12607 | |||
Thomas Kluyver
|
r12617 | class TestController(object): | ||
"""Run tests in a subprocess | ||||
Thomas Kluyver
|
r12607 | """ | ||
Thomas Kluyver
|
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
|
r12617 | #: str, process stdout+stderr | ||
stdout = None | ||||
Thomas Kluyver
|
r12607 | |||
Thomas Kluyver
|
r12617 | def __init__(self): | ||
self.cmd = [] | ||||
Thomas Kluyver
|
r12608 | self.env = {} | ||
self.dirs = [] | ||||
Thomas Kluyver
|
r15799 | def setup(self): | ||
"""Create temporary directories etc. | ||||
This is only called when we know the test group will be run. Things | ||||
created here may be cleaned up by self.cleanup(). | ||||
""" | ||||
pass | ||||
Min RK
|
r18692 | def launch(self, buffer_output=False, capture_output=False): | ||
Thomas Kluyver
|
r12608 | # print('*** ENV:', self.env) # dbg | ||
# print('*** CMD:', self.cmd) # dbg | ||||
env = os.environ.copy() | ||||
env.update(self.env) | ||||
Min RK
|
r18692 | if buffer_output: | ||
capture_output = True | ||||
self.stdout_capturer = c = StreamCapturer(echo=not buffer_output) | ||||
c.start() | ||||
stdout = c.writefd if capture_output else None | ||||
stderr = subprocess.STDOUT if capture_output else None | ||||
self.process = subprocess.Popen(self.cmd, stdout=stdout, | ||||
stderr=stderr, env=env) | ||||
Thomas Kluyver
|
r12607 | |||
Thomas Kluyver
|
r12610 | def wait(self): | ||
Min RK
|
r18692 | self.process.wait() | ||
self.stdout_capturer.halt() | ||||
self.stdout = self.stdout_capturer.get_buffer() | ||||
Thomas Kluyver
|
r12610 | return self.process.returncode | ||
Thomas Kluyver
|
r12607 | |||
Thomas Kluyver
|
r15799 | def print_extra_info(self): | ||
"""Print extra information about this test run. | ||||
If we're running in parallel and showing the concise view, this is only | ||||
called if the test group fails. Otherwise, it's called before the test | ||||
group is started. | ||||
Thomas Kluyver
|
r15795 | |||
Thomas Kluyver
|
r15799 | The base implementation does nothing, but it can be overridden by | ||
subclasses. | ||||
Thomas Kluyver
|
r15795 | """ | ||
Thomas Kluyver
|
r15799 | return | ||
Thomas Kluyver
|
r15795 | |||
Thomas Kluyver
|
r12609 | def cleanup_process(self): | ||
Thomas Kluyver
|
r12607 | """Cleanup on exit by killing any leftover processes.""" | ||
Thomas Kluyver
|
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
|
r12607 | |||
Thomas Kluyver
|
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
|
r12607 | |||
Thomas Kluyver
|
r12608 | if subp.poll() is None: | ||
# The process did not die... | ||||
print('... failed. Manual cleanup may be required.') | ||||
Thomas Kluyver
|
r13279 | |||
Thomas Kluyver
|
r12609 | def cleanup(self): | ||
"Kill process if it's still alive, and clean up temporary directories" | ||||
self.cleanup_process() | ||||
Thomas Kluyver
|
r12608 | for td in self.dirs: | ||
td.cleanup() | ||||
Thomas Kluyver
|
r13279 | |||
Thomas Kluyver
|
r12608 | __del__ = cleanup | ||
Jonathan Frederic
|
r16842 | |||
Thomas Kluyver
|
r12617 | class PyTestController(TestController): | ||
"""Run Python tests using IPython.testing.iptest""" | ||||
#: str, Python command to execute in subprocess | ||||
pycmd = None | ||||
Thomas Kluyver
|
r15967 | def __init__(self, section, options): | ||
Thomas Kluyver
|
r12617 | """Create new test runner.""" | ||
TestController.__init__(self) | ||||
self.section = section | ||||
# pycmd is put into cmd[2] in PyTestController.launch() | ||||
self.cmd = [sys.executable, '-c', None, section] | ||||
self.pycmd = "from IPython.testing.iptest import run_iptest; run_iptest()" | ||||
Thomas Kluyver
|
r15967 | self.options = options | ||
Thomas Kluyver
|
r15799 | |||
def setup(self): | ||||
Thomas Kluyver
|
r12617 | ipydir = TemporaryDirectory() | ||
self.dirs.append(ipydir) | ||||
self.env['IPYTHONDIR'] = ipydir.name | ||||
self.workingdir = workingdir = TemporaryDirectory() | ||||
self.dirs.append(workingdir) | ||||
self.env['IPTEST_WORKING_DIR'] = workingdir.name | ||||
# This means we won't get odd effects from our own matplotlib config | ||||
self.env['MPLCONFIGDIR'] = workingdir.name | ||||
Jeroen Demeyer
|
r19240 | # For security reasons (http://bugs.python.org/issue16202), use | ||
# a temporary directory to which other users have no access. | ||||
self.env['TMPDIR'] = workingdir.name | ||||
Thomas Kluyver
|
r12617 | |||
Jeroen Demeyer
|
r19132 | # Add a non-accessible directory to PATH (see gh-7053) | ||
noaccess = os.path.join(self.workingdir.name, "_no_access_") | ||||
self.noaccess = noaccess | ||||
os.mkdir(noaccess, 0) | ||||
PATH = os.environ.get('PATH', '') | ||||
if PATH: | ||||
PATH = noaccess + os.pathsep + PATH | ||||
else: | ||||
PATH = noaccess | ||||
self.env['PATH'] = PATH | ||||
Thomas Kluyver
|
r15967 | # From options: | ||
if self.options.xunit: | ||||
self.add_xunit() | ||||
if self.options.coverage: | ||||
self.add_coverage() | ||||
self.env['IPTEST_SUBPROC_STREAMS'] = self.options.subproc_streams | ||||
self.cmd.extend(self.options.extra_args) | ||||
Jeroen Demeyer
|
r19132 | def cleanup(self): | ||
""" | ||||
Make the non-accessible directory created in setup() accessible | ||||
again, otherwise deleting the workingdir will fail. | ||||
""" | ||||
os.chmod(self.noaccess, stat.S_IRWXU) | ||||
TestController.cleanup(self) | ||||
Thomas Kluyver
|
r13279 | @property | ||
def will_run(self): | ||||
try: | ||||
return test_sections[self.section].will_run | ||||
except KeyError: | ||||
return True | ||||
Thomas Kluyver
|
r12617 | 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): | ||||
Thomas Kluyver
|
r12623 | try: | ||
sources = test_sections[self.section].includes | ||||
except KeyError: | ||||
sources = ['IPython'] | ||||
Thomas Kluyver
|
r12617 | coverage_rc = ("[run]\n" | ||
"data_file = {data_file}\n" | ||||
"source =\n" | ||||
" {source}\n" | ||||
).format(data_file=os.path.abspath('.coverage.'+self.section), | ||||
Thomas Kluyver
|
r12623 | source="\n ".join(sources)) | ||
Thomas Kluyver
|
r12617 | config_file = os.path.join(self.workingdir.name, '.coveragerc') | ||
with open(config_file, 'w') as f: | ||||
f.write(coverage_rc) | ||||
self.env['COVERAGE_PROCESS_START'] = config_file | ||||
self.pycmd = "import coverage; coverage.process_startup(); " + self.pycmd | ||||
Thomas Kluyver
|
r15799 | def launch(self, buffer_output=False): | ||
Thomas Kluyver
|
r12617 | self.cmd[2] = self.pycmd | ||
Thomas Kluyver
|
r15799 | super(PyTestController, self).launch(buffer_output=buffer_output) | ||
Thomas Kluyver
|
r12617 | |||
Jonathan Frederic
|
r16842 | |||
Paul Ivanov
|
r15190 | js_prefix = 'js/' | ||
Paul Ivanov
|
r15189 | |||
Paul Ivanov
|
r15175 | def get_js_test_dir(): | ||
import IPython.html.tests as t | ||||
Jonathan Frederic
|
r15204 | return os.path.join(os.path.dirname(t.__file__), '') | ||
Paul Ivanov
|
r15175 | |||
def all_js_groups(): | ||||
import glob | ||||
Paul Ivanov
|
r15189 | test_dir = get_js_test_dir() | ||
Paul Ivanov
|
r16663 | all_subdirs = glob.glob(test_dir + '[!_]*/') | ||
return [js_prefix+os.path.relpath(x, test_dir) for x in all_subdirs] | ||||
Paul Ivanov
|
r15175 | |||
Paul Ivanov
|
r13264 | class JSController(TestController): | ||
"""Run CasperJS tests """ | ||||
Jonathan Frederic
|
r18433 | |||
Thomas Kluyver
|
r16984 | requirements = ['zmq', 'tornado', 'jinja2', 'casperjs', 'sqlite3', | ||
MinRK
|
r18243 | 'jsonschema'] | ||
Thomas Kluyver
|
r16863 | |||
Jonathan Frederic
|
r18433 | def __init__(self, section, xunit=True, engine='phantomjs', url=None): | ||
Paul Ivanov
|
r13264 | """Create new test runner.""" | ||
TestController.__init__(self) | ||||
Jonathan Frederic
|
r16828 | self.engine = engine | ||
Paul Ivanov
|
r15191 | self.section = section | ||
Thomas Kluyver
|
r16992 | self.xunit = xunit | ||
Jonathan Frederic
|
r18433 | self.url = url | ||
Jonathan Frederic
|
r16842 | self.slimer_failure = re.compile('^FAIL.*', flags=re.MULTILINE) | ||
Thomas Kluyver
|
r15800 | js_test_dir = get_js_test_dir() | ||
includes = '--includes=' + os.path.join(js_test_dir,'util.js') | ||||
test_cases = os.path.join(js_test_dir, self.section[len(js_prefix):]) | ||||
Jonathan Frederic
|
r16828 | self.cmd = ['casperjs', 'test', includes, test_cases, '--engine=%s' % self.engine] | ||
Paul Ivanov
|
r13265 | |||
Thomas Kluyver
|
r15799 | def setup(self): | ||
Paul Ivanov
|
r13269 | self.ipydir = TemporaryDirectory() | ||
Brian E. Granger
|
r15090 | self.nbdir = TemporaryDirectory() | ||
Paul Ivanov
|
r13269 | self.dirs.append(self.ipydir) | ||
Brian E. Granger
|
r15090 | self.dirs.append(self.nbdir) | ||
Thomas Kluyver
|
r15799 | os.makedirs(os.path.join(self.nbdir.name, os.path.join(u'sub ∂ir1', u'sub ∂ir 1a'))) | ||
os.makedirs(os.path.join(self.nbdir.name, os.path.join(u'sub ∂ir2', u'sub ∂ir 1b'))) | ||||
Thomas Kluyver
|
r16992 | |||
if self.xunit: | ||||
self.add_xunit() | ||||
Jonathan Frederic
|
r18433 | # If a url was specified, use that for the testing. | ||
if self.url: | ||||
Jonathan Frederic
|
r18444 | try: | ||
Jonathan Frederic
|
r18446 | alive = requests.get(self.url).status_code == 200 | ||
Jonathan Frederic
|
r18444 | except: | ||
alive = False | ||||
if alive: | ||||
self.cmd.append("--url=%s" % self.url) | ||||
else: | ||||
raise Exception('Could not reach "%s".' % self.url) | ||||
MinRK
|
r15911 | else: | ||
Jonathan Frederic
|
r18433 | # start the ipython notebook, so we get the port number | ||
self.server_port = 0 | ||||
self._init_server() | ||||
if self.server_port: | ||||
self.cmd.append("--port=%i" % self.server_port) | ||||
else: | ||||
# don't launch tests if the server didn't start | ||||
self.cmd = [sys.executable, '-c', 'raise SystemExit(1)'] | ||||
Jonathan Frederic
|
r16828 | |||
Thomas Kluyver
|
r16992 | def add_xunit(self): | ||
xunit_file = os.path.abspath(self.section.replace('/','.') + '.xunit.xml') | ||||
self.cmd.append('--xunit=%s' % xunit_file) | ||||
Jonathan Frederic
|
r16828 | def launch(self, buffer_output): | ||
# If the engine is SlimerJS, we need to buffer the output because | ||||
Thomas Kluyver
|
r16863 | # SlimerJS does not support exit codes, so CasperJS always returns 0. | ||
if self.engine == 'slimerjs' and not buffer_output: | ||||
Min RK
|
r18692 | return super(JSController, self).launch(capture_output=True) | ||
Thomas Kluyver
|
r16863 | |||
else: | ||||
return super(JSController, self).launch(buffer_output=buffer_output) | ||||
Jonathan Frederic
|
r16828 | |||
def wait(self, *pargs, **kwargs): | ||||
"""Wait for the JSController to finish""" | ||||
ret = super(JSController, self).wait(*pargs, **kwargs) | ||||
jon
|
r16861 | # If this is a SlimerJS controller, check the captured stdout for | ||
# errors. Otherwise, just return the return code. | ||||
Jonathan Frederic
|
r16828 | if self.engine == 'slimerjs': | ||
Jonathan Frederic
|
r16836 | stdout = bytes_to_str(self.stdout) | ||
Thomas Kluyver
|
r16863 | if ret != 0: | ||
# This could still happen e.g. if it's stopped by SIGINT | ||||
return ret | ||||
return bool(self.slimer_failure.search(strip_ansi(stdout))) | ||||
Jonathan Frederic
|
r16828 | else: | ||
return ret | ||||
Jonathan Frederic
|
r16842 | |||
Thomas Kluyver
|
r15799 | def print_extra_info(self): | ||
print("Running tests with notebook directory %r" % self.nbdir.name) | ||||
Thomas Kluyver
|
r13279 | |||
@property | ||||
def will_run(self): | ||||
MinRK
|
r18356 | should_run = all(have[a] for a in self.requirements + [self.engine]) | ||
return should_run | ||||
Paul Ivanov
|
r13264 | |||
Paul Ivanov
|
r13265 | def _init_server(self): | ||
"Start the notebook server in a separate process" | ||||
MinRK
|
r15909 | self.server_command = command = [sys.executable, | ||
'-m', 'IPython.html', | ||||
'--no-browser', | ||||
'--ipython-dir', self.ipydir.name, | ||||
'--notebook-dir', self.nbdir.name, | ||||
] | ||||
# ipc doesn't work on Windows, and darwin has crazy-long temp paths, | ||||
# which run afoul of ipc's maximum path length. | ||||
if sys.platform.startswith('linux'): | ||||
command.append('--KernelManager.transport=ipc') | ||||
self.stream_capturer = c = StreamCapturer() | ||||
c.start() | ||||
Min RK
|
r18737 | env = os.environ.copy() | ||
if self.engine == 'phantomjs': | ||||
env['IPYTHON_ALLOW_DRAFT_WEBSOCKETS_FOR_PHANTOMJS'] = '1' | ||||
self.server = subprocess.Popen(command, | ||||
stdout=c.writefd, | ||||
stderr=subprocess.STDOUT, | ||||
cwd=self.nbdir.name, | ||||
env=env, | ||||
) | ||||
MinRK
|
r15909 | self.server_info_file = os.path.join(self.ipydir.name, | ||
'profile_default', 'security', 'nbserver-%i.json' % self.server.pid | ||||
) | ||||
self._wait_for_server() | ||||
def _wait_for_server(self): | ||||
"""Wait 30 seconds for the notebook server to start""" | ||||
for i in range(300): | ||||
if self.server.poll() is not None: | ||||
return self._failed_to_start() | ||||
if os.path.exists(self.server_info_file): | ||||
Thomas Kluyver
|
r16669 | try: | ||
self._load_server_info() | ||||
except ValueError: | ||||
# If the server is halfway through writing the file, we may | ||||
# get invalid JSON; it should be ready next iteration. | ||||
pass | ||||
else: | ||||
Jonathan Frederic
|
r16844 | return | ||
MinRK
|
r15909 | time.sleep(0.1) | ||
print("Notebook server-info file never arrived: %s" % self.server_info_file, | ||||
file=sys.stderr | ||||
) | ||||
def _failed_to_start(self): | ||||
"""Notebook server exited prematurely""" | ||||
captured = self.stream_capturer.get_buffer().decode('utf-8', 'replace') | ||||
print("Notebook failed to start: ", file=sys.stderr) | ||||
print(self.server_command) | ||||
print(captured, file=sys.stderr) | ||||
def _load_server_info(self): | ||||
"""Notebook server started, load connection info from JSON""" | ||||
with open(self.server_info_file) as f: | ||||
info = json.load(f) | ||||
self.server_port = info['port'] | ||||
Paul Ivanov
|
r13265 | |||
def cleanup(self): | ||||
MinRK
|
r15909 | try: | ||
self.server.terminate() | ||||
except OSError: | ||||
# already dead | ||||
pass | ||||
MinRK
|
r16509 | # wait 10s for the server to shutdown | ||
try: | ||||
MinRK
|
r16512 | popen_wait(self.server, NOTEBOOK_SHUTDOWN_TIMEOUT) | ||
except TimeoutExpired: | ||||
MinRK
|
r16509 | # server didn't terminate, kill it | ||
try: | ||||
print("Failed to terminate notebook server, killing it.", | ||||
file=sys.stderr | ||||
) | ||||
self.server.kill() | ||||
except OSError: | ||||
# already dead | ||||
pass | ||||
# wait another 10s | ||||
try: | ||||
MinRK
|
r16512 | popen_wait(self.server, NOTEBOOK_SHUTDOWN_TIMEOUT) | ||
except TimeoutExpired: | ||||
MinRK
|
r16509 | print("Notebook server still running (%s)" % self.server_info_file, | ||
file=sys.stderr | ||||
) | ||||
MinRK
|
r15969 | self.stream_capturer.halt() | ||
Paul Ivanov
|
r13265 | TestController.cleanup(self) | ||
Paul Ivanov
|
r13264 | |||
def prepare_controllers(options): | ||||
Paul Ivanov
|
r13262 | """Returns two lists of TestController instances, those to run, and those | ||
not to run.""" | ||||
Paul Ivanov
|
r13264 | testgroups = options.testgroups | ||
Thomas Kluyver
|
r13279 | if testgroups: | ||
Thomas Kluyver
|
r19889 | if 'js' in testgroups: | ||
js_testgroups = all_js_groups() | ||||
else: | ||||
js_testgroups = [g for g in testgroups if g.startswith(js_prefix)] | ||||
py_testgroups = [g for g in testgroups if not g.startswith('js')] | ||||
Thomas Kluyver
|
r13279 | else: | ||
py_testgroups = py_test_group_names | ||||
Paul Ivanov
|
r13264 | if not options.all: | ||
MinRK
|
r16772 | js_testgroups = [] | ||
Paul Ivanov
|
r13262 | test_sections['parallel'].enabled = False | ||
MinRK
|
r16772 | else: | ||
js_testgroups = all_js_groups() | ||||
Paul Ivanov
|
r13262 | |||
jon
|
r16861 | engine = 'slimerjs' if options.slimerjs else 'phantomjs' | ||
Jonathan Frederic
|
r18433 | c_js = [JSController(name, xunit=options.xunit, engine=engine, url=options.url) for name in js_testgroups] | ||
Thomas Kluyver
|
r15967 | c_py = [PyTestController(name, options) for name in py_testgroups] | ||
Thomas Kluyver
|
r13279 | |||
Paul Ivanov
|
r13264 | controllers = c_py + c_js | ||
Paul Ivanov
|
r13262 | to_run = [c for c in controllers if c.will_run] | ||
not_run = [c for c in controllers if not c.will_run] | ||||
Thomas Kluyver
|
r12616 | return to_run, not_run | ||
Thomas Kluyver
|
r12608 | |||
Thomas Kluyver
|
r15799 | def do_run(controller, buffer_output=True): | ||
"""Setup and run a test controller. | ||||
If buffer_output is True, no output is displayed, to avoid it appearing | ||||
interleaved. In this case, the caller is responsible for displaying test | ||||
output on failure. | ||||
Returns | ||||
------- | ||||
controller : TestController | ||||
The same controller as passed in, as a convenience for using map() type | ||||
APIs. | ||||
exitcode : int | ||||
The exit code of the test subprocess. Non-zero indicates failure. | ||||
""" | ||||
Thomas Kluyver
|
r12608 | try: | ||
try: | ||||
Thomas Kluyver
|
r15799 | controller.setup() | ||
if not buffer_output: | ||||
controller.print_extra_info() | ||||
controller.launch(buffer_output=buffer_output) | ||||
Thomas Kluyver
|
r12608 | except Exception: | ||
import traceback | ||||
traceback.print_exc() | ||||
return controller, 1 # signal failure | ||||
Thomas Kluyver
|
r13279 | |||
Thomas Kluyver
|
r12610 | exitcode = controller.wait() | ||
Thomas Kluyver
|
r12608 | return controller, exitcode | ||
Thomas Kluyver
|
r13279 | |||
Thomas Kluyver
|
r12608 | except KeyboardInterrupt: | ||
return controller, -signal.SIGINT | ||||
Thomas Kluyver
|
r12610 | finally: | ||
controller.cleanup() | ||||
Thomas Kluyver
|
r12607 | |||
def report(): | ||||
"""Return a string with a summary report of test-related variables.""" | ||||
Thomas Kluyver
|
r13173 | inf = get_sys_info() | ||
out = [] | ||||
def _add(name, value): | ||||
out.append((name, value)) | ||||
Thomas Kluyver
|
r12607 | |||
Thomas Kluyver
|
r13173 | _add('IPython version', inf['ipython_version']) | ||
_add('IPython commit', "{} ({})".format(inf['commit_hash'], inf['commit_source'])) | ||||
_add('IPython package', compress_user(inf['ipython_path'])) | ||||
_add('Python version', inf['sys_version'].replace('\n','')) | ||||
_add('sys.executable', compress_user(inf['sys_executable'])) | ||||
_add('Platform', inf['platform']) | ||||
width = max(len(n) for (n,v) in out) | ||||
out = ["{:<{width}}: {}\n".format(n, v, width=width) for (n,v) in out] | ||||
Thomas Kluyver
|
r12607 | |||
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
|
r12623 | def run_iptestall(options): | ||
Thomas Kluyver
|
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. | ||||
Thomas Kluyver
|
r13279 | |||
Thomas Kluyver
|
r12607 | Parameters | ||
---------- | ||||
Thomas Kluyver
|
r12623 | |||
All parameters are passed as attributes of the options object. | ||||
testgroups : list of str | ||||
Run only these sections of the test suite. If empty, run all the available | ||||
sections. | ||||
fast : int or None | ||||
Run the test suite in parallel, using n simultaneous processes. If None | ||||
is passed, one process is used per CPU core. Default 1 (i.e. sequential) | ||||
inc_slow : bool | ||||
Thomas Kluyver
|
r12607 | Include slow tests, like IPython.parallel. By default, these tests aren't | ||
run. | ||||
Jonathan Frederic
|
r16828 | slimerjs : bool | ||
Use slimerjs if it's installed instead of phantomjs for casperjs tests. | ||||
Jonathan Frederic
|
r18433 | url : unicode | ||
Address:port to use when running the JS tests. | ||||
Thomas Kluyver
|
r12623 | xunit : bool | ||
Produce Xunit XML output. This is written to multiple foo.xunit.xml files. | ||||
coverage : bool or str | ||||
Measure code coverage from tests. True will store the raw coverage data, | ||||
or pass 'html' or 'xml' to get reports. | ||||
Thomas Kluyver
|
r12638 | |||
extra_args : list | ||||
Extra arguments to pass to the test subprocesses, e.g. '-v' | ||||
Thomas Kluyver
|
r12607 | """ | ||
Paul Ivanov
|
r13264 | to_run, not_run = prepare_controllers(options) | ||
Thomas Kluyver
|
r12607 | |||
Thomas Kluyver
|
r12616 | def justify(ltext, rtext, width=70, fill='-'): | ||
ltext += ' ' | ||||
rtext = (' ' + rtext).rjust(width - len(ltext), fill) | ||||
return ltext + rtext | ||||
Thomas Kluyver
|
r12607 | # Run all test runners, tracking execution time | ||
failed = [] | ||||
t_start = time.time() | ||||
Thomas Kluyver
|
r12623 | print() | ||
if options.fast == 1: | ||||
# This actually means sequential, i.e. with 1 job | ||||
Thomas Kluyver
|
r12616 | for controller in to_run: | ||
Thomas Kluyver
|
r15893 | print('Test group:', controller.section) | ||
Thomas Kluyver
|
r12783 | sys.stdout.flush() # Show in correct order when output is piped | ||
Thomas Kluyver
|
r15799 | controller, res = do_run(controller, buffer_output=False) | ||
Thomas Kluyver
|
r12610 | if res: | ||
failed.append(controller) | ||||
if res == -signal.SIGINT: | ||||
print("Interrupted") | ||||
break | ||||
print() | ||||
else: | ||||
Thomas Kluyver
|
r12623 | # Run tests concurrently | ||
Thomas Kluyver
|
r12610 | try: | ||
Thomas Kluyver
|
r12623 | pool = multiprocessing.pool.ThreadPool(options.fast) | ||
Thomas Kluyver
|
r12616 | for (controller, res) in pool.imap_unordered(do_run, to_run): | ||
res_string = 'OK' if res == 0 else 'FAILED' | ||||
Thomas Kluyver
|
r15795 | print(justify('Test group: ' + controller.section, res_string)) | ||
Thomas Kluyver
|
r12610 | if res: | ||
Thomas Kluyver
|
r15799 | controller.print_extra_info() | ||
print(bytes_to_str(controller.stdout)) | ||||
Thomas Kluyver
|
r12610 | failed.append(controller) | ||
if res == -signal.SIGINT: | ||||
print("Interrupted") | ||||
break | ||||
except KeyboardInterrupt: | ||||
return | ||||
Thomas Kluyver
|
r13279 | |||
Thomas Kluyver
|
r12616 | for controller in not_run: | ||
Thomas Kluyver
|
r15893 | print(justify('Test group: ' + controller.section, 'NOT RUN')) | ||
Thomas Kluyver
|
r12616 | |||
Thomas Kluyver
|
r12607 | t_end = time.time() | ||
t_tests = t_end - t_start | ||||
Thomas Kluyver
|
r12616 | nrunners = len(to_run) | ||
Thomas Kluyver
|
r12607 | nfail = len(failed) | ||
# summarize results | ||||
Thomas Kluyver
|
r12623 | print('_'*70) | ||
Thomas Kluyver
|
r12607 | print('Test suite completed for system with the following information:') | ||
print(report()) | ||||
Thomas Kluyver
|
r12971 | took = "Took %.3fs." % t_tests | ||
Thomas Kluyver
|
r12623 | print('Status: ', end='') | ||
Thomas Kluyver
|
r12607 | if not failed: | ||
Thomas Kluyver
|
r12972 | print('OK (%d test groups).' % nrunners, took) | ||
Thomas Kluyver
|
r12607 | else: | ||
# If anything went wrong, point out what command to rerun manually to | ||||
# see the actual errors and individual summary | ||||
Thomas Kluyver
|
r12623 | failed_sections = [c.section for c in failed] | ||
print('ERROR - {} out of {} test groups failed ({}).'.format(nfail, | ||||
Thomas Kluyver
|
r12971 | nrunners, ', '.join(failed_sections)), took) | ||
Thomas Kluyver
|
r12623 | print() | ||
print('You may wish to rerun these, with:') | ||||
print(' iptest', *failed_sections) | ||||
print() | ||||
if options.coverage: | ||||
Matthias Bussonnier
|
r19539 | from coverage import coverage, CoverageException | ||
Thomas Kluyver
|
r12612 | cov = coverage(data_file='.coverage') | ||
cov.combine() | ||||
cov.save() | ||||
# Coverage HTML report | ||||
Thomas Kluyver
|
r12623 | if options.coverage == 'html': | ||
Thomas Kluyver
|
r12612 | html_dir = 'ipy_htmlcov' | ||
shutil.rmtree(html_dir, ignore_errors=True) | ||||
print("Writing HTML coverage report to %s/ ... " % html_dir, end="") | ||||
sys.stdout.flush() | ||||
# Custom HTML reporter to clean up module names. | ||||
from coverage.html import HtmlReporter | ||||
class CustomHtmlReporter(HtmlReporter): | ||||
def find_code_units(self, morfs): | ||||
super(CustomHtmlReporter, self).find_code_units(morfs) | ||||
for cu in self.code_units: | ||||
nameparts = cu.name.split(os.sep) | ||||
if 'IPython' not in nameparts: | ||||
continue | ||||
ix = nameparts.index('IPython') | ||||
cu.name = '.'.join(nameparts[ix:]) | ||||
# Reimplement the html_report method with our custom reporter | ||||
cov._harvest_data() | ||||
Thomas Kluyver
|
r15509 | cov.config.from_args(omit='*{0}tests{0}*'.format(os.sep), html_dir=html_dir, | ||
Thomas Kluyver
|
r12612 | html_title='IPython test coverage', | ||
) | ||||
reporter = CustomHtmlReporter(cov, cov.config) | ||||
reporter.report(None) | ||||
print('done.') | ||||
# Coverage XML report | ||||
Thomas Kluyver
|
r12623 | elif options.coverage == 'xml': | ||
Matthias Bussonnier
|
r19539 | try: | ||
cov.xml_report(outfile='ipy_coverage.xml') | ||||
Matthias Bussonnier
|
r19711 | except CoverageException as e: | ||
print('Generating coverage report failed. Are you running javascript tests only?') | ||||
Matthias Bussonnier
|
r19715 | import traceback | ||
traceback.print_exc() | ||||
Thomas Kluyver
|
r12612 | |||
if failed: | ||||
Thomas Kluyver
|
r12607 | # Ensure that our exit code indicates failure | ||
sys.exit(1) | ||||
Thomas Kluyver
|
r13740 | argparser = argparse.ArgumentParser(description='Run IPython test suite') | ||
argparser.add_argument('testgroups', nargs='*', | ||||
help='Run specified groups of tests. If omitted, run ' | ||||
'all tests.') | ||||
argparser.add_argument('--all', action='store_true', | ||||
help='Include slow tests not run by default.') | ||||
Jonathan Frederic
|
r16828 | argparser.add_argument('--slimerjs', action='store_true', | ||
help="Use slimerjs if it's installed instead of phantomjs for casperjs tests.") | ||||
Jonathan Frederic
|
r18446 | argparser.add_argument('--url', help="URL to use for the JS tests.") | ||
Thomas Kluyver
|
r13740 | argparser.add_argument('-j', '--fast', nargs='?', const=None, default=1, type=int, | ||
Thomas Kluyver
|
r15894 | help='Run test sections in parallel. This starts as many ' | ||
'processes as you have cores, or you can specify a number.') | ||||
Thomas Kluyver
|
r13740 | argparser.add_argument('--xunit', action='store_true', | ||
help='Produce Xunit XML results') | ||||
argparser.add_argument('--coverage', nargs='?', const=True, default=False, | ||||
help="Measure test coverage. Specify 'html' or " | ||||
"'xml' to get reports.") | ||||
Thomas Kluyver
|
r13824 | argparser.add_argument('--subproc-streams', default='capture', | ||
help="What to do with stdout/stderr from subprocesses. " | ||||
"'capture' (default), 'show' and 'discard' are the options.") | ||||
Thomas Kluyver
|
r13740 | |||
def default_options(): | ||||
"""Get an argparse Namespace object with the default arguments, to pass to | ||||
:func:`run_iptestall`. | ||||
""" | ||||
options = argparser.parse_args([]) | ||||
options.extra_args = [] | ||||
return options | ||||
Thomas Kluyver
|
r12607 | |||
def main(): | ||||
Konrad Hinsen
|
r15295 | # iptest doesn't work correctly if the working directory is the | ||
# root of the IPython source tree. Tell the user to avoid | ||||
# frustration. | ||||
if os.path.exists(os.path.join(os.getcwd(), | ||||
'IPython', 'testing', '__main__.py')): | ||||
print("Don't run iptest from the IPython source directory", | ||||
file=sys.stderr) | ||||
sys.exit(1) | ||||
Thomas Kluyver
|
r12638 | # Arguments after -- should be passed through to nose. Argparse treats | ||
# everything after -- as regular positional arguments, so we separate them | ||||
# first. | ||||
try: | ||||
ix = sys.argv.index('--') | ||||
except ValueError: | ||||
to_parse = sys.argv[1:] | ||||
extra_args = [] | ||||
else: | ||||
to_parse = sys.argv[1:ix] | ||||
extra_args = sys.argv[ix+1:] | ||||
Thomas Kluyver
|
r13740 | options = argparser.parse_args(to_parse) | ||
Thomas Kluyver
|
r12638 | options.extra_args = extra_args | ||
Thomas Kluyver
|
r12608 | |||
Thomas Kluyver
|
r12623 | run_iptestall(options) | ||
Thomas Kluyver
|
r12607 | |||
if __name__ == '__main__': | ||||
main() | ||||