/usr/lib/python2.7/dist-packages/nisext/testers.py is in python-nibabel 2.0.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ''' Test package information in various install settings
The routines here install the package from source directories, zips or eggs, and
check these installations by running tests, checking version information,
looking for files that were not copied over.
The typical use for this module is as a Makefile target. For example, here are
the Makefile targets from nibabel::
# Check for files not installed
check-files:
$(PYTHON) -c 'from nisext.testers import check_files; check_files("nibabel")'
# Print out info for possible install methods
check-version-info:
$(PYTHON) -c 'from nisext.testers import info_from_here; info_from_here("nibabel")'
# Run tests from installed code
installed-tests:
$(PYTHON) -c 'from nisext.testers import tests_installed; tests_installed("nibabel")'
# Run tests from installed code
sdist-tests:
$(PYTHON) -c 'from nisext.testers import sdist_tests; sdist_tests("nibabel")'
# Run tests from binary egg
bdist-egg-tests:
$(PYTHON) -c 'from nisext.testers import bdist_egg_tests; bdist_egg_tests("nibabel")'
'''
from __future__ import print_function
import os
import sys
from os.path import join as pjoin, abspath
from glob import glob
import shutil
import tempfile
import zipfile
import re
from subprocess import Popen, PIPE
NEEDS_SHELL = os.name != 'nt'
PYTHON=sys.executable
HAVE_PUTENV = hasattr(os, 'putenv')
PY_LIB_SDIR = 'pylib'
def back_tick(cmd, ret_err=False, as_str=True):
""" Run command `cmd`, return stdout, or stdout, stderr if `ret_err`
Roughly equivalent to ``check_output`` in Python 2.7
Parameters
----------
cmd : str
command to execute
ret_err : bool, optional
If True, return stderr in addition to stdout. If False, just return
stdout
as_str : bool, optional
Whether to decode outputs to unicode string on exit.
Returns
-------
out : str or tuple
If `ret_err` is False, return stripped string containing stdout from
`cmd`. If `ret_err` is True, return tuple of (stdout, stderr) where
``stdout`` is the stripped stdout, and ``stderr`` is the stripped
stderr.
Raises
------
RuntimeError
if command returns non-zero exit code.
"""
proc = Popen(cmd, stdout=PIPE, stderr=PIPE, shell=NEEDS_SHELL)
out, err = proc.communicate()
retcode = proc.returncode
if retcode is None:
proc.terminate()
raise RuntimeError(cmd + ' process did not terminate')
if retcode != 0:
raise RuntimeError(cmd + ' process returned code %d' % retcode)
out = out.strip()
if as_str:
out = out.decode('latin-1')
if not ret_err:
return out
err = err.strip()
if as_str:
err = err.decode('latin-1')
return out, err
def run_mod_cmd(mod_name, pkg_path, cmd, script_dir=None, print_location=True):
''' Run command in own process in anonymous path
Parameters
----------
mod_name : str
Name of module to import - e.g. 'nibabel'
pkg_path : str
directory containing `mod_name` package. Typically that will be the
directory containing the e.g. 'nibabel' directory.
cmd : str
Python command to execute
script_dir : None or str, optional
script directory to prepend to PATH
print_location : bool, optional
Whether to print the location of the imported `mod_name`
Returns
-------
stdout : str
stdout as str
stderr : str
stderr as str
'''
if script_dir is None:
paths_add = ''
else:
if not HAVE_PUTENV:
raise RuntimeError('We cannot set environment variables')
# Need to add the python path for the scripts to pick up our package in
# their environment, because the scripts will get called via the shell
# (via `cmd`). Consider that PYTHONPATH may not be set. Because the
# command might run scripts via the shell, prepend script_dir to the
# system path also.
paths_add = \
r"""
os.environ['PATH'] = r'"{script_dir}"' + os.path.pathsep + os.environ['PATH']
PYTHONPATH = os.environ.get('PYTHONPATH')
if PYTHONPATH is None:
os.environ['PYTHONPATH'] = r'"{pkg_path}"'
else:
os.environ['PYTHONPATH'] = r'"{pkg_path}"' + os.path.pathsep + PYTHONPATH
""".format(**locals())
if print_location:
p_loc = 'print(%s.__file__);' % mod_name
else:
p_loc = ''
cwd = os.getcwd()
tmpdir = tempfile.mkdtemp()
try:
os.chdir(tmpdir)
with open('script.py', 'wt') as fobj:
fobj.write(
r"""
import os
import sys
sys.path.insert(0, r"{pkg_path}")
{paths_add}
import {mod_name}
{p_loc}
{cmd}""".format(**locals()))
res = back_tick('{0} script.py'.format(PYTHON), ret_err=True)
finally:
os.chdir(cwd)
shutil.rmtree(tmpdir)
return res
def zip_extract_all(fname, path=None):
''' Extract all members from zipfile
Deals with situation where the directory is stored in the zipfile as a name,
as well as files that have to go into this directory.
'''
zf = zipfile.ZipFile(fname)
members = zf.namelist()
# Remove members that are just bare directories
members = [m for m in members if not m.endswith('/')]
for zipinfo in members:
zf.extract(zipinfo, path, None)
def install_from_to(from_dir, to_dir, py_lib_sdir=PY_LIB_SDIR, bin_sdir='bin'):
""" Install package in `from_dir` to standard location in `to_dir`
Parameters
----------
from_dir : str
path containing files to install with ``python setup.py ...``
to_dir : str
prefix path to which files will be installed, as in ``python setup.py
install --prefix=to_dir``
py_lib_sdir : str, optional
subdirectory within `to_dir` to which library code will be installed
bin_sdir : str, optional
subdirectory within `to_dir` to which scripts will be installed
"""
site_pkgs_path = os.path.join(to_dir, py_lib_sdir)
py_lib_locs = ' --install-purelib=%s --install-platlib=%s' % (
site_pkgs_path, site_pkgs_path)
pwd = os.path.abspath(os.getcwd())
cmd = ('%s setup.py --quiet install --prefix=%s %s' %
(PYTHON, to_dir, py_lib_locs))
try:
os.chdir(from_dir)
back_tick(cmd)
finally:
os.chdir(pwd)
def install_from_zip(zip_fname, install_path, pkg_finder=None,
py_lib_sdir=PY_LIB_SDIR,
script_sdir='bin'):
""" Install package from zip file `zip_fname`
Parameters
----------
zip_fname : str
filename of zip file containing package code
install_path : str
output prefix at which to install package
pkg_finder : None or callable, optional
If None, assume zip contains ``setup.py`` at the top level. Otherwise,
find directory containing ``setup.py`` with ``pth =
pkg_finder(unzip_path)`` where ``unzip_path`` is the path to which we
have unzipped the zip file contents.
py_lib_sdir : str, optional
subdirectory to which to write the library code from the package. Thus
if package called ``nibabel``, the written code will be in
``<install_path>/<py_lib_sdir>/nibabel
script_sdir : str, optional
subdirectory to which we write the installed scripts. Thus scripts will
be written to ``<install_path>/<script_sdir>
"""
unzip_path = tempfile.mkdtemp()
try:
# Zip may unpack module into current directory
zip_extract_all(zip_fname, unzip_path)
if pkg_finder is None:
from_path = unzip_path
else:
from_path = pkg_finder(unzip_path)
install_from_to(from_path, install_path, py_lib_sdir, script_sdir)
finally:
shutil.rmtree(unzip_path)
def contexts_print_info(mod_name, repo_path, install_path):
''' Print result of get_info from different installation routes
Runs installation from:
* git archive zip file
* with setup.py install from repository directory
* just running code from repository directory
and prints out result of get_info in each case. There will be many files
written into `install_path` that you may want to clean up somehow.
Parameters
----------
mod_name : str
package name that will be installed, and tested
repo_path : str
path to location of git repository
install_path : str
path into which to install temporary installations
'''
site_pkgs_path = os.path.join(install_path, PY_LIB_SDIR)
# first test archive
pwd = os.path.abspath(os.getcwd())
out_fname = pjoin(install_path, 'test.zip')
try:
os.chdir(repo_path)
back_tick('git archive --format zip -o %s HEAD' % out_fname)
finally:
os.chdir(pwd)
install_from_zip(out_fname, install_path, None)
cmd_str = 'print(%s.get_info())' % mod_name
print(run_mod_cmd(mod_name, site_pkgs_path, cmd_str)[0])
# now test install into a directory from the repository
install_from_to(repo_path, install_path, PY_LIB_SDIR)
print(run_mod_cmd(mod_name, site_pkgs_path, cmd_str)[0])
# test from development tree
print(run_mod_cmd(mod_name, repo_path, cmd_str)[0])
return
def info_from_here(mod_name):
''' Run info context checks starting in working directory
Runs checks from current working directory, installing temporary
installations into a new temporary directory
Parameters
----------
mod_name : str
package name that will be installed, and tested
'''
repo_path = os.path.abspath(os.getcwd())
install_path = tempfile.mkdtemp()
try:
contexts_print_info(mod_name, repo_path, install_path)
finally:
shutil.rmtree(install_path)
def tests_installed(mod_name, source_path=None):
""" Install from `source_path` into temporary directory; run tests
Parameters
----------
mod_name : str
name of module - e.g. 'nibabel'
source_path : None or str
Path from which to install. If None, defaults to working directory
"""
if source_path is None:
source_path = os.path.abspath(os.getcwd())
install_path = tempfile.mkdtemp()
site_pkgs_path = pjoin(install_path, PY_LIB_SDIR)
scripts_path = pjoin(install_path, 'bin')
try:
install_from_to(source_path, install_path, PY_LIB_SDIR, 'bin')
stdout, stderr = run_mod_cmd(mod_name,
site_pkgs_path,
mod_name + '.test()',
scripts_path)
finally:
shutil.rmtree(install_path)
print(stdout)
print(stderr)
# Tell nose this is not a test
tests_installed.__test__ = False
def check_installed_files(repo_mod_path, install_mod_path):
""" Check files in `repo_mod_path` are installed at `install_mod_path`
At the moment, all this does is check that all the ``*.py`` files in
`repo_mod_path` are installed at `install_mod_path`.
Parameters
----------
repo_mod_path : str
repository path containing package files, e.g. <nibabel-repo>/nibabel>
install_mod_path : str
path at which package has been installed. This is the path where the
root package ``__init__.py`` lives.
Return
------
uninstalled : list
list of files that should have been installed, but have not been
installed
"""
return missing_from(repo_mod_path, install_mod_path, filter=r"\.py$")
def missing_from(path0, path1, filter=None):
""" Return filenames present in `path0` but not in `path1`
Parameters
----------
path0 : str
path which contains all files of interest
path1 : str
path which should contain all files of interest
filter : None or str or regexp, optional
A successful result from ``filter.search(fname)`` means the file is of
interest. None means all files are of interest
Returns
-------
path1_missing : list
list of all files missing from `path1` that are in `path0` at the same
relative path.
"""
if not filter is None:
filter = re.compile(filter)
uninstalled = []
# Walk directory tree to get py files
for dirpath, dirnames, filenames in os.walk(path0):
out_dirpath = dirpath.replace(path0, path1)
for fname in filenames:
if not filter is None and filter.search(fname) is None:
continue
equiv_fname = os.path.join(out_dirpath, fname)
if not os.path.isfile(equiv_fname):
uninstalled.append(pjoin(dirpath, fname))
return uninstalled
def check_files(mod_name, repo_path=None, scripts_sdir='bin'):
""" Print library and script files not picked up during install
"""
if repo_path is None:
repo_path = abspath(os.getcwd())
install_path = tempfile.mkdtemp()
repo_mod_path = pjoin(repo_path, mod_name)
installed_mod_path = pjoin(install_path, PY_LIB_SDIR, mod_name)
repo_bin = pjoin(repo_path, 'bin')
installed_bin = pjoin(install_path, 'bin')
try:
zip_fname = make_dist(repo_path,
install_path,
'sdist --formats=zip',
'*.zip')
pf = get_sdist_finder(mod_name)
install_from_zip(zip_fname, install_path, pf, PY_LIB_SDIR, scripts_sdir)
lib_misses = missing_from(repo_mod_path, installed_mod_path, r"\.py$")
script_misses = missing_from(repo_bin, installed_bin)
finally:
shutil.rmtree(install_path)
if lib_misses:
print("Missed library files: ", ', '.join(lib_misses))
else:
print("You got all the library files")
if script_misses:
print("Missed script files: ", ', '.join(script_misses))
else:
print("You got all the script files")
return len(lib_misses) > 0 or len(script_misses) > 0
def get_sdist_finder(mod_name):
""" Return function finding sdist source directory for `mod_name`
"""
def pf(pth):
pkg_dirs = glob(pjoin(pth, mod_name + '-*'))
if len(pkg_dirs) != 1:
raise OSError('There must be one and only one package dir')
return pkg_dirs[0]
return pf
def sdist_tests(mod_name, repo_path=None, label='fast', doctests=True):
""" Make sdist zip, install from it, and run tests """
if repo_path is None:
repo_path = abspath(os.getcwd())
install_path = tempfile.mkdtemp()
try:
zip_fname = make_dist(repo_path,
install_path,
'sdist --formats=zip',
'*.zip')
pf = get_sdist_finder(mod_name)
install_from_zip(zip_fname, install_path, pf, PY_LIB_SDIR, 'bin')
site_pkgs_path = pjoin(install_path, PY_LIB_SDIR)
script_path = pjoin(install_path, 'bin')
cmd = "%s.test(label='%s', doctests=%s)" % (mod_name, label, doctests)
stdout, stderr = run_mod_cmd(mod_name,
site_pkgs_path,
cmd,
script_path)
finally:
shutil.rmtree(install_path)
print(stdout)
print(stderr)
sdist_tests.__test__ = False
def bdist_egg_tests(mod_name, repo_path=None, label='fast', doctests=True):
""" Make bdist_egg, unzip it, and run tests from result
We've got a problem here, because the egg does not contain the scripts, and
so, if we are testing the scripts with ``mod.test()``, we won't pick up the
scripts from the repository we are testing.
So, you might need to add a label to the script tests, and use the `label`
parameter to indicate these should be skipped. As in:
bdist_egg_tests('nibabel', None, label='not script_test')
"""
if repo_path is None:
repo_path = abspath(os.getcwd())
install_path = tempfile.mkdtemp()
scripts_path = pjoin(install_path, 'bin')
try:
zip_fname = make_dist(repo_path,
install_path,
'bdist_egg',
'*.egg')
zip_extract_all(zip_fname, install_path)
cmd = "%s.test(label='%s', doctests=%s)" % (mod_name, label, doctests)
stdout, stderr = run_mod_cmd(mod_name,
install_path,
cmd,
scripts_path)
finally:
shutil.rmtree(install_path)
print(stdout)
print(stderr)
bdist_egg_tests.__test__ = False
def make_dist(repo_path, out_dir, setup_params, zipglob):
""" Create distutils distribution file
Parameters
----------
repo_path : str
path to repository containing code and ``setup.py``
out_dir : str
path to which to write new distribution file
setup_params: str
parameters to pass to ``setup.py`` to create distribution.
zipglob : str
glob identifying expected output file.
Returns
-------
out_fname : str
filename of generated distribution file
Examples
--------
Make, return a zipped sdist::
make_dist('/path/to/repo', '/tmp/path', 'sdist --formats=zip', '*.zip')
Make, return a binary egg::
make_dist('/path/to/repo', '/tmp/path', 'bdist_egg', '*.egg')
"""
pwd = os.path.abspath(os.getcwd())
try:
os.chdir(repo_path)
back_tick('%s setup.py %s --dist-dir=%s'
% (PYTHON, setup_params, out_dir))
zips = glob(pjoin(out_dir, zipglob))
if len(zips) != 1:
raise OSError('There must be one and only one %s file, '
'but I found "%s"' %
(zipglob, ': '.join(zips)))
finally:
os.chdir(pwd)
return zips[0]
|