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
|
# -*- coding: utf-8 -*-
# vispy: testskip
# Copyright (c) Vispy Development Team. All Rights Reserved.
# Distributed under the (new) BSD License. See LICENSE.txt for more info.
"""Test running functions."""
from __future__ import print_function
import sys
import os
import warnings
from os import path as op
from copy import deepcopy
from functools import partial
from ..util import use_log_level, run_subprocess
from ..util.ptime import time
from ._testing import has_application, nottest
_line_sep = '-' * 70
class VispySkipSuite(Exception):
"""Class we use to internally signal skipping a test suite."""
def __init__(self, msg=''):
if msg:
print(msg)
super(VispySkipSuite, self).__init__(msg)
def _get_import_dir():
import_dir = op.abspath(op.join(op.dirname(__file__), '..'))
up_dir = op.join(import_dir, '..')
if (op.isfile(op.join(up_dir, 'setup.py')) and
op.isdir(op.join(up_dir, 'vispy')) and
op.isdir(op.join(up_dir, 'examples'))):
dev = True
else:
dev = False
return import_dir, dev
def _unit(mode, extra_arg_string='', coverage=False):
"""Run unit tests using a particular mode"""
if isinstance(extra_arg_string, str):
if len(extra_arg_string):
extra_args = extra_arg_string.split(' ')
else:
extra_args = ()
else:
extra_args = extra_arg_string
del extra_arg_string
assert isinstance(extra_args, (list, tuple))
assert all(isinstance(e, str) for e in extra_args)
import_dir = _get_import_dir()[0]
cwd = op.abspath(op.join(import_dir, '..'))
extra_args = list(extra_args)
try:
import pytest # noqa, analysis:ignore
except ImportError:
raise VispySkipSuite('Skipping unit tests, pytest not installed')
if mode == 'nobackend':
msg = 'Running tests with no backend'
extra_args += ['-m', 'not vispy_app_test']
else:
# check to make sure we actually have the backend of interest
stdout, stderr, invalid = run_subprocess(
[sys.executable, '-c',
'import vispy.app; vispy.app.use_app("%s"); exit(0)' % mode],
return_code=True)
if invalid:
stdout = stdout + '\n' + stderr
stdout = '\n'.join(' ' + x for x in stdout.split('\n'))
raise VispySkipSuite(
'\n%s\n%s\n%s' % (_line_sep, 'Skipping backend %s, not '
'installed or working properly:\n%s'
% (mode, stdout), _line_sep))
msg = 'Running tests with %s backend' % mode
extra_args += ['-m', 'vispy_app_test']
if coverage:
# Don't actually print the coverage because it's way too long
extra_args += ['--cov', 'vispy', '--cov-report=']
if not any(e.startswith('-r') for e in extra_args):
extra_args.append('-ra')
# make a call to "python" so that it inherits whatever the system
# thinks is "python" (e.g., virtualenvs)
extra_args += [import_dir] # positional argument
cmd = [sys.executable, '-m', 'pytest'] + extra_args
env = deepcopy(os.environ)
# We want to set this for all app backends plus "nobackend" to
# help ensure that app tests are appropriately decorated
env.update(dict(_VISPY_TESTING_APP=mode, VISPY_IGNORE_OLD_VERSION='true'))
env_str = '_VISPY_TESTING_APP=%s ' % mode
if len(msg) > 0:
cmd_string = ' '.join(cmd)
msg = ('%s\n%s:\n%s%s'
% (_line_sep, 'msg', env_str, cmd_string))
print(msg)
sys.stdout.flush()
return_code = run_subprocess(cmd, return_code=True, cwd=cwd,
env=env, stdout=None, stderr=None)[2]
if return_code:
raise RuntimeError('unit failure (%s)' % return_code)
if coverage:
# Running a py.test with coverage will wipe out any files that
# exist as .coverage or .coverage.*. It should work to pass
# COVERAGE_FILE env var when doing run_subprocess above, but
# it does not. Therefore we instead use our own naming scheme,
# and in Travis when we combine them, use COVERAGE_FILE with the
# `coverage combine` command.
out_name = op.join(cwd, '.vispy-coverage.%s' % mode)
if op.isfile(out_name):
os.remove(out_name)
os.rename(op.join(cwd, '.coverage'), out_name)
def _docs():
"""test docstring parameters
using vispy/utils/tests/test_docstring_parameters.py"""
dev = _get_import_dir()[1]
if not dev:
warnings.warn("Docstring test imports Vispy from"
" Vispy's installation. It is"
" recommended to setup Vispy using"
" 'python setup.py develop'"
" so that the latest sources are used automatically")
try:
# this should always be importable
from ..util.tests import test_docstring_parameters
print("Running docstring test...")
test_docstring_parameters.test_docstring_parameters()
except AssertionError as docstring_violations:
# the test harness expects runtime errors,
# not AssertionError. So wrap the AssertionError
# that is thrown by test_docstring_parameters()
# with a RuntimeError
raise RuntimeError(docstring_violations)
def _flake():
"""Test flake8"""
orig_dir = os.getcwd()
import_dir, dev = _get_import_dir()
os.chdir(op.join(import_dir, '..'))
if dev:
sys.argv[1:] = ['vispy', 'examples', 'make']
else:
sys.argv[1:] = [op.basename(import_dir)]
try:
try:
from flake8.main import main
except ImportError:
from flake8.main.cli import main
except ImportError:
print('Skipping flake8 test, flake8 not installed')
else:
print('Running flake8... ') # if end='', first error gets ugly
sys.stdout.flush()
try:
main()
except SystemExit as ex:
if ex.code in (None, 0):
pass # do not exit yet, we want to print a success msg
else:
raise RuntimeError('flake8 failed')
finally:
os.chdir(orig_dir)
def _check_line_endings():
"""Check all files in the repository for CR characters"""
if sys.platform == 'win32':
print('Skipping line endings check on Windows')
sys.stdout.flush()
return
print('Running line endings check... ')
sys.stdout.flush()
report = []
import_dir, dev = _get_import_dir()
for dirpath, dirnames, filenames in os.walk(import_dir):
for fname in filenames:
if op.splitext(fname)[1] in ('.pyc', '.pyo', '.so', '.dll'):
continue
# Get filename
filename = op.join(dirpath, fname)
relfilename = op.relpath(filename, import_dir)
# Open and check
try:
with open(filename, 'rb') as fid:
text = fid.read().decode('utf-8')
except UnicodeDecodeError:
continue # Probably a binary file
crcount = text.count('\r')
if crcount:
lfcount = text.count('\n')
report.append('In %s found %i/%i CR/LF' %
(relfilename, crcount, lfcount))
# Process result
if len(report) > 0:
raise RuntimeError('Found %s files with incorrect endings:\n%s'
% (len(report), '\n'.join(report)))
_script = """
import sys
import time
import warnings
import os
try:
import faulthandler
faulthandler.enable()
except Exception:
pass
os.environ['VISPY_IGNORE_OLD_VERSION'] = 'true'
import {0}
if hasattr({0}, 'canvas'):
canvas = {0}.canvas
elif hasattr({0}, 'Canvas'):
canvas = {0}.Canvas()
elif hasattr({0}, 'fig'):
canvas = {0}.fig
else:
raise RuntimeError('Bad example formatting: fix or add `# vispy: testskip`'
' to the top of the file.')
with canvas as c:
for _ in range(5):
c.update()
c.app.process_events()
time.sleep(1./60.)
"""
bad_examples = []
if os.getenv('TRAVIS', 'false') == 'true' and sys.platform == 'darwin':
# example scripts that contain non-ascii text
# seem to fail on Travis OSX
bad_examples = [
'examples/basics/plotting/colorbar.py',
'examples/basics/plotting/plot.py',
'examples/demo/gloo/high_frequency.py',
'examples/basics/scene/shared_context.py',
]
elif os.getenv('TRAVIS', 'false') == 'true' and 'linux' in sys.platform:
# example scripts that contain non-ascii text
# seem to fail on Travis OSX
bad_examples = [
'examples/basics/scene/shared_context.py',
]
if os.getenv('TRAVIS', 'false') == 'true':
# OpenGL >2.0 that fail on Travis
bad_examples += [
'examples/basics/gloo/geometry_shader.py'
]
def _skip_example(fname):
for bad_ex in bad_examples:
if fname.endswith(bad_ex):
return True
return False
def _examples(fnames_str):
"""Run examples and make sure they work.
Parameters
----------
fnames_str : str
Can be a space-separated list of paths to test, or an empty string to
auto-detect and run all examples.
"""
import_dir, dev = _get_import_dir()
reason = None
if not dev:
reason = 'Cannot test examples unless in vispy git directory'
else:
with use_log_level('warning', print_msg=False):
good, backend = has_application(capable=('multi_window',))
if not good:
reason = 'Must have suitable app backend'
if reason is not None:
raise VispySkipSuite('Skipping example test: %s' % reason)
# if we're given individual file paths as a string in fnames_str,
# then just use them as the fnames
# otherwise, use the full example paths that have been
# passed to us
if fnames_str:
examples_dir = ''
fnames = fnames_str.split(' ')
else:
examples_dir = op.join(import_dir, '..', 'examples')
fnames = [op.join(d[0], fname)
for d in os.walk(examples_dir)
for fname in d[2] if fname.endswith('.py')]
fnames = sorted(fnames, key=lambda x: x.lower())
print(_line_sep + '\nRunning examples using %s backend' % (backend,))
op.join('tutorial', 'app', 'shared_context.py'), # non-standard
fails = []
n_ran = n_skipped = 0
t0 = time()
for fi, fname in enumerate(fnames):
n_ran += 1
root_name = fname[-len(fname) + len(examples_dir):]
good = True
with open(fname, 'rb') as fid:
for _ in range(10): # just check the first 10 lines
line = fid.readline().decode('utf-8')
if line == '':
break
elif line.startswith('# vispy: ') and 'testskip' in line:
good = False
break
if _skip_example(fname):
print("Skipping example that fails on Travis CI: {}".format(fname))
good = False
if not good:
n_ran -= 1
n_skipped += 1
continue
line_str = ('[%3d/%3d] %s' % (fi + 1, len(fnames), root_name))
print(line_str.ljust(len(_line_sep) - 1), end='')
sys.stdout.flush()
cwd = op.dirname(fname)
cmd = [sys.executable, '-c', _script.format(op.split(fname)[1][:-3])]
sys.stdout.flush()
stdout, stderr, retcode = run_subprocess(cmd, return_code=True,
cwd=cwd, env=os.environ)
if retcode or len(stderr.strip()) > 0:
# Skipping due to missing dependency is okay
if "ImportError: " in stderr:
print('S')
else:
ext = '\n' + _line_sep + '\n'
fails.append('X%sExample %s failed (%s):%s%s%s'
% (ext, root_name, retcode, ext, stderr, ext))
print(fails[-1])
else:
print('✓')
sys.stdout.flush()
print('')
t = (': %s failed, %s succeeded, %s skipped in %s seconds'
% (len(fails), n_ran - len(fails), n_skipped, round(time() - t0)))
if len(fails) > 0:
raise RuntimeError('Failed%s' % t)
print('Success%s' % t)
@nottest
def test(label='full', extra_arg_string='', coverage=False):
"""Test vispy software
Parameters
----------
label : str
Can be one of 'full', 'unit', 'nobackend', 'extra', 'lineendings',
'flake', 'docs', or any backend name (e.g., 'qt').
extra_arg_string : str | list of str
Extra arguments to sent to ``pytest``.
Can also be a list of str to more explicitly provide the
arguments.
coverage : bool
If True, collect coverage data.
"""
if label == 'osmesa':
# Special case for OSMesa, we have to modify the VISPY_GL_LIB envvar
# before the vispy.gloo package gets imported
from ..util.osmesa_gl import fix_osmesa_gl_lib
fix_osmesa_gl_lib()
from ..app.backends import BACKEND_NAMES as backend_names
label = label.lower()
label = 'pytest' if label == 'nose' else label
known_types = ['full', 'unit', 'lineendings', 'extra', 'flake',
'docs', 'nobackend', 'examples']
if label not in known_types + backend_names:
raise ValueError('label must be one of %s, or a backend name %s, '
'not \'%s\'' % (known_types, backend_names, label))
# figure out what we actually need to run
runs = []
if label in ('full', 'unit'):
for backend in backend_names:
runs.append([partial(_unit, backend, extra_arg_string, coverage),
backend])
elif label in backend_names:
runs.append([partial(_unit, label, extra_arg_string, coverage), label])
if label in ('full', 'unit', 'nobackend'):
runs.append([partial(_unit, 'nobackend', extra_arg_string, coverage),
'nobackend'])
if label == "examples":
# take the extra arguments so that specific examples can be run
runs.append([partial(_examples, extra_arg_string),
'examples'])
elif label == 'full':
# run all the examples
runs.append([partial(_examples, ""), 'examples'])
if label in ('full', 'extra', 'lineendings'):
runs.append([_check_line_endings, 'lineendings'])
if label in ('full', 'extra', 'flake'):
runs.append([_flake, 'flake'])
if label in ('extra', 'docs'):
runs.append([_docs, 'docs'])
t0 = time()
fail = []
skip = []
for run in runs:
try:
run[0]()
except RuntimeError as exp:
print('Failed: %s' % str(exp))
fail += [run[1]]
except VispySkipSuite:
skip += [run[1]]
except Exception as exp:
# this should only happen if we've screwed up the test setup
fail += [run[1]]
print('Failed strangely (%s): %s\n' % (type(exp), str(exp)))
import traceback
type_, value, tb = sys.exc_info()
traceback.print_exception(type_, value, tb)
else:
print('Passed\n')
sys.stdout.flush()
dt = time() - t0
stat = '%s failed, %s skipped' % (fail if fail else 0, skip if skip else 0)
extra = 'failed' if fail else 'succeeded'
print('Testing %s (%s) in %0.3f seconds' % (extra, stat, dt))
sys.stdout.flush()
if len(fail) > 0:
raise RuntimeError('FAILURE')
|