/usr/share/pyshared/tox/_config.py is in python-tox 1.6.0-1.
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 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 | import argparse
import distutils.sysconfig
import os
import sys
import re
import shlex
import string
import subprocess
import textwrap
from tox.interpreters import Interpreters
import py
import tox
defaultenvs = {'jython': 'jython', 'pypy': 'pypy'}
for _name in "py,py24,py25,py26,py27,py30,py31,py32,py33,py34".split(","):
if _name == "py":
basepython = sys.executable
else:
basepython = "python" + ".".join(_name[2:4])
defaultenvs[_name] = basepython
def parseconfig(args=None, pkg=None):
if args is None:
args = sys.argv[1:]
parser = prepare_parse(pkg)
opts = parser.parse_args(args)
config = Config()
config.option = opts
basename = config.option.configfile
if os.path.isabs(basename):
inipath = py.path.local(basename)
else:
for path in py.path.local().parts(reverse=True):
inipath = path.join(basename)
if inipath.check():
break
else:
feedback("toxini file %r not found" %(basename), sysexit=True)
try:
parseini(config, inipath)
except tox.exception.InterpreterNotFound:
exn = sys.exc_info()[1]
# Use stdout to match test expectations
py.builtin.print_("ERROR: " + str(exn))
return config
def feedback(msg, sysexit=False):
py.builtin.print_("ERROR: " + msg, file=sys.stderr)
if sysexit:
raise SystemExit(1)
class VersionAction(argparse.Action):
def __call__(self, argparser, *args, **kwargs):
name = argparser.pkgname
mod = __import__(name)
version = mod.__version__
py.builtin.print_("%s imported from %s" %(version, mod.__file__))
raise SystemExit(0)
class CountAction(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
if hasattr(namespace, self.dest):
setattr(namespace, self.dest, int(getattr(namespace, self.dest))+1)
else:
setattr(namespace, self.dest, 0)
def prepare_parse(pkgname):
parser = argparse.ArgumentParser(description=__doc__,)
#formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.pkgname = pkgname
parser.add_argument("--version", nargs=0, action=VersionAction,
dest="version",
help="report version information to stdout.")
parser.add_argument("-v", nargs=0, action=CountAction, default=0,
dest="verbosity",
help="increase verbosity of reporting output.")
parser.add_argument("--showconfig", action="store_true",
help="show configuration information for all environments. ")
parser.add_argument("-l", "--listenvs", action="store_true",
dest="listenvs", help="show list of test environments")
parser.add_argument("-c", action="store", default="tox.ini",
dest="configfile",
help="use the specified config file name.")
parser.add_argument("-e", action="append", dest="env",
metavar="envlist",
help="work against specified environments (ALL selects all).")
parser.add_argument("--notest", action="store_true", dest="notest",
help="skip invoking test commands.")
parser.add_argument("--sdistonly", action="store_true", dest="sdistonly",
help="only perform the sdist packaging activity.")
parser.add_argument("--installpkg", action="store", default=None,
metavar="PATH",
help="use specified package for installation into venv, instead of "
"creating an sdist.")
parser.add_argument("--develop", action="store_true", dest="develop",
help="install package in the venv using 'setup.py develop' via "
"'pip -e .'")
parser.add_argument('-i', action="append",
dest="indexurl", metavar="URL",
help="set indexserver url (if URL is of form name=url set the "
"url for the 'name' indexserver, specifically)")
parser.add_argument("-r", "--recreate", action="store_true",
dest="recreate",
help="force recreation of virtual environments")
parser.add_argument("--result-json", action="store",
dest="resultjson", metavar="PATH",
help="write a json file with detailed information about "
"all commands and results involved. This will turn off "
"pass-through output from running test commands which is "
"instead captured into the json result file.")
parser.add_argument("args", nargs="*",
help="additional arguments available to command positional substition")
return parser
class Config:
def __init__(self):
self.envconfigs = {}
self.invocationcwd = py.path.local()
self.interpreters = Interpreters()
class VenvConfig:
def __init__(self, **kw):
self.__dict__.update(kw)
@property
def envbindir(self):
if (sys.platform == "win32" and "jython" not in self.basepython
and "pypy" not in self.basepython):
return self.envdir.join("Scripts")
else:
return self.envdir.join("bin")
@property
def envpython(self):
if "jython" in str(self.basepython):
name = "jython"
else:
name = "python"
return self.envbindir.join(name)
# no @property to avoid early calling (see callable(subst[key]) checks)
def envsitepackagesdir(self):
self.getsupportedinterpreter() # for throwing exceptions
x = self.config.interpreters.get_sitepackagesdir(
info=self._basepython_info,
envdir=self.envdir)
return x
def getsupportedinterpreter(self):
if sys.platform == "win32" and self.basepython and \
"jython" in self.basepython:
raise tox.exception.UnsupportedInterpreter(
"Jython/Windows does not support installing scripts")
info = self.config.interpreters.get_info(self.basepython)
if not info.executable:
raise tox.exception.InterpreterNotFound(self.basepython)
return info.executable
testenvprefix = "testenv:"
class parseini:
def __init__(self, config, inipath):
config.toxinipath = inipath
config.toxinidir = toxinidir = config.toxinipath.dirpath()
self._cfg = py.iniconfig.IniConfig(config.toxinipath)
config._cfg = self._cfg
self.config = config
ctxname = getcontextname()
if ctxname == "jenkins":
reader = IniReader(self._cfg, fallbacksections=['tox'])
toxsection = "tox:%s" % ctxname
distshare_default = "{toxworkdir}/distshare"
elif not ctxname:
reader = IniReader(self._cfg)
toxsection = "tox"
distshare_default = "{homedir}/.tox/distshare"
else:
raise ValueError("invalid context")
config.homedir = py.path.local._gethomedir()
if config.homedir is None:
config.homedir = config.toxinidir # XXX good idea?
reader.addsubstitions(toxinidir=config.toxinidir,
homedir=config.homedir)
config.toxworkdir = reader.getpath(toxsection, "toxworkdir",
"{toxinidir}/.tox")
config.minversion = reader.getdefault(toxsection, "minversion", None)
# determine indexserver dictionary
config.indexserver = {'default': IndexServerConfig('default')}
prefix = "indexserver"
for line in reader.getlist(toxsection, "indexserver"):
name, url = map(lambda x: x.strip(), line.split("=", 1))
config.indexserver[name] = IndexServerConfig(name, url)
override = False
if config.option.indexurl:
for urldef in config.option.indexurl:
m = re.match(r"\W*(\w+)=(\S+)", urldef)
if m is None:
url = urldef
name = "default"
else:
name, url = m.groups()
if not url:
url = None
if name != "ALL":
config.indexserver[name].url = url
else:
override = url
# let ALL override all existing entries
if override:
for name in config.indexserver:
config.indexserver[name] = IndexServerConfig(name, override)
reader.addsubstitions(toxworkdir=config.toxworkdir)
config.distdir = reader.getpath(toxsection, "distdir",
"{toxworkdir}/dist")
reader.addsubstitions(distdir=config.distdir)
config.distshare = reader.getpath(toxsection, "distshare",
distshare_default)
reader.addsubstitions(distshare=config.distshare)
config.sdistsrc = reader.getpath(toxsection, "sdistsrc", None)
config.setupdir = reader.getpath(toxsection, "setupdir", "{toxinidir}")
config.logdir = config.toxworkdir.join("log")
for sectionwrapper in self._cfg:
section = sectionwrapper.name
if section.startswith(testenvprefix):
name = section[len(testenvprefix):]
envconfig = self._makeenvconfig(name, section, reader._subs,
config)
config.envconfigs[name] = envconfig
if not config.envconfigs:
config.envconfigs['python'] = \
self._makeenvconfig("python", "_xz_9", reader._subs, config)
config.envlist = self._getenvlist(reader, toxsection)
for name in config.envlist:
if name not in config.envconfigs:
if name in defaultenvs:
config.envconfigs[name] = \
self._makeenvconfig(name, "_xz_9", reader._subs, config)
all_develop = all(name in config.envconfigs
and config.envconfigs[name].develop
for name in config.envlist)
config.skipsdist = reader.getbool(toxsection, "skipsdist", all_develop)
def _makeenvconfig(self, name, section, subs, config):
vc = VenvConfig(envname=name)
vc.config = config
reader = IniReader(self._cfg, fallbacksections=["testenv"])
reader.addsubstitions(**subs)
vc.develop = reader.getbool(section, "usedevelop", config.option.develop)
vc.envdir = reader.getpath(section, "envdir", "{toxworkdir}/%s" % name)
vc.args_are_paths = reader.getbool(section, "args_are_paths", True)
if reader.getdefault(section, "python", None):
raise tox.exception.ConfigError(
"'python=' key was renamed to 'basepython='")
if name in defaultenvs:
bp = defaultenvs[name]
else:
bp = sys.executable
vc.basepython = reader.getdefault(section, "basepython", bp)
vc._basepython_info = config.interpreters.get_info(vc.basepython)
reader.addsubstitions(envdir=vc.envdir, envname=vc.envname,
envbindir=vc.envbindir, envpython=vc.envpython,
envsitepackagesdir=vc.envsitepackagesdir)
vc.envtmpdir = reader.getpath(section, "tmpdir", "{envdir}/tmp")
vc.envlogdir = reader.getpath(section, "envlogdir", "{envdir}/log")
reader.addsubstitions(envlogdir=vc.envlogdir, envtmpdir=vc.envtmpdir)
vc.changedir = reader.getpath(section, "changedir", "{toxinidir}")
if config.option.recreate:
vc.recreate = True
else:
vc.recreate = reader.getbool(section, "recreate", False)
args = config.option.args
if args:
if vc.args_are_paths:
args = []
for arg in config.option.args:
origpath = config.invocationcwd.join(arg, abs=True)
if origpath.check():
arg = vc.changedir.bestrelpath(origpath)
args.append(arg)
reader.addsubstitions(args)
vc.setenv = reader.getdict(section, 'setenv')
if not vc.setenv:
vc.setenv = None
vc.commands = reader.getargvlist(section, "commands")
vc.whitelist_externals = reader.getlist(section,
"whitelist_externals")
vc.deps = []
for depline in reader.getlist(section, "deps"):
m = re.match(r":(\w+):\s*(\S+)", depline)
if m:
iname, name = m.groups()
ixserver = config.indexserver[iname]
else:
name = depline.strip()
ixserver = None
vc.deps.append(DepConfig(name, ixserver))
vc.distribute = reader.getbool(section, "distribute", False)
vc.sitepackages = reader.getbool(section, "sitepackages", False)
vc.downloadcache = None
downloadcache = reader.getdefault(section, "downloadcache")
if downloadcache:
# env var, if present, takes precedence
downloadcache = os.environ.get("PIP_DOWNLOAD_CACHE", downloadcache)
vc.downloadcache = py.path.local(downloadcache)
# on python 2.5 we can't use "--pre" and we typically
# need to use --insecure for pip commands because python2.5
# doesn't support SSL
pip_default_opts = ["{opts}", "{packages}"]
info = vc._basepython_info
if info.runnable and info.version_info < (2,6):
pip_default_opts.insert(0, "--insecure")
else:
pip_default_opts.insert(0, "--pre")
vc.install_command = reader.getargv(
section,
"install_command",
"pip install " + " ".join(pip_default_opts),
replace=False,
)
if '{packages}' not in vc.install_command:
raise tox.exception.ConfigError(
"'install_command' must contain '{packages}' substitution")
return vc
def _getenvlist(self, reader, toxsection):
env = self.config.option.env
if not env:
env = os.environ.get("TOXENV", None)
if not env:
envlist = reader.getlist(toxsection, "envlist", sep=",")
if not envlist:
envlist = self.config.envconfigs.keys()
return envlist
envlist = _split_env(env)
if "ALL" in envlist:
envlist = list(self.config.envconfigs)
envlist.sort()
return envlist
def _split_env(env):
"""if handed a list, action="append" was used for -e """
envlist = []
if not isinstance(env, list):
env = [env]
for to_split in env:
for single_env in to_split.split(","):
# "remove True or", if not allowing multiple same runs, update tests
if True or single_env not in envlist:
envlist.append(single_env)
return envlist
class DepConfig:
def __init__(self, name, indexserver=None):
self.name = name
self.indexserver = indexserver
def __str__(self):
if self.indexserver:
if self.indexserver.name == "default":
return self.name
return ":%s:%s" %(self.indexserver.name, self.name)
return str(self.name)
__repr__ = __str__
class IndexServerConfig:
def __init__(self, name, url=None):
self.name = name
self.url = url
RE_ITEM_REF = re.compile(
'''
[{]
(?:(?P<sub_type>[^[:{}]+):)? # optional sub_type for special rules
(?P<substitution_value>[^{}]*) # substitution key
[}]
''',
re.VERBOSE)
class IniReader:
def __init__(self, cfgparser, fallbacksections=None):
self._cfg = cfgparser
self.fallbacksections = fallbacksections or []
self._subs = {}
self._subststack = []
def addsubstitions(self, _posargs=None, **kw):
self._subs.update(kw)
if _posargs:
self._subs['_posargs'] = _posargs
def getpath(self, section, name, defaultpath):
toxinidir = self._subs['toxinidir']
path = self.getdefault(section, name, defaultpath)
if path is None:
return path
return toxinidir.join(path, abs=True)
def getlist(self, section, name, sep="\n"):
s = self.getdefault(section, name, None)
if s is None:
return []
return [x.strip() for x in s.split(sep) if x.strip()]
def getdict(self, section, name, sep="\n"):
s = self.getdefault(section, name, None)
if s is None:
return {}
value = {}
for line in s.split(sep):
name, rest = line.split('=', 1)
value[name.strip()] = rest.strip()
return value
def getargvlist(self, section, name):
s = self.getdefault(section, name, '', replace=False)
#if s is None:
# raise tox.exception.ConfigError(
# "no command list %r defined in section [%s]" %(name, section))
commandlist = []
current_command = ""
for line in s.split("\n"):
line = line.rstrip()
i = line.find("#")
if i != -1:
line = line[:i].rstrip()
if not line:
continue
if line.endswith("\\"):
current_command += " " + line[:-1]
continue
current_command += line
commandlist.append(self._processcommand(current_command))
current_command = ""
else:
if current_command:
raise tox.exception.ConfigError(
"line-continuation for [%s] %s ends nowhere" %
(section, name))
return commandlist
def _processcommand(self, command):
posargs = self._subs.get('_posargs', None)
words = list(CommandParser(command).words())
new_command = ''
for word in words:
if word == '[]':
if posargs:
new_command += ' '.join(posargs)
continue
new_word = self._replace(word, quote=True)
# two passes; we might have substitutions in the result
new_word = self._replace(new_word, quote=True)
new_command += new_word
return shlex.split(new_command.strip())
def getargv(self, section, name, default=None, replace=True):
command = self.getdefault(
section, name, default=default, replace=replace)
return shlex.split(command.strip())
def getbool(self, section, name, default=None):
s = self.getdefault(section, name, default)
if s is None:
raise KeyError("no config value [%s] %s found" % (
section, name))
if not isinstance(s, bool):
if s.lower() == "true":
s = True
elif s.lower() == "false":
s = False
else:
raise tox.exception.ConfigError(
"boolean value %r needs to be 'True' or 'False'")
return s
def getdefault(self, section, name, default=None, replace=True):
try:
x = self._cfg[section][name]
except KeyError:
for fallbacksection in self.fallbacksections:
try:
x = self._cfg[fallbacksection][name]
except KeyError:
pass
else:
break
else:
x = default
if replace and x and hasattr(x, 'replace'):
self._subststack.append((section, name))
try:
x = self._replace(x)
finally:
assert self._subststack.pop() == (section, name)
#print "getdefault", section, name, "returned", repr(x)
return x
def _replace_posargs(self, match, quote):
return self._do_replace_posargs(lambda: match.group('substitution_value'))
def _do_replace_posargs(self, value_func):
posargs = self._subs.get('_posargs', None)
if posargs:
return " ".join(posargs)
value = value_func()
if value:
return value
return ''
def _replace_env(self, match, quote):
envkey = match.group('substitution_value')
if not envkey:
raise tox.exception.ConfigError(
'env: requires an environment variable name')
if not envkey in os.environ:
raise tox.exception.ConfigError(
"substitution env:%r: unkown environment variable %r" %
(envkey, envkey))
return os.environ[envkey]
def _substitute_from_other_section(self, key, quote):
if key.startswith("[") and "]" in key:
i = key.find("]")
section, item = key[1:i], key[i+1:]
if section in self._cfg and item in self._cfg[section]:
if (section, item) in self._subststack:
raise ValueError('%s already in %s' %(
(section, item), self._subststack))
x = str(self._cfg[section][item])
self._subststack.append((section, item))
try:
return self._replace(x, quote=quote)
finally:
self._subststack.pop()
raise tox.exception.ConfigError(
"substitution key %r not found" % key)
def _replace_substitution(self, match, quote):
sub_key = match.group('substitution_value')
val = self._subs.get(sub_key, None)
if val is None:
val = self._substitute_from_other_section(sub_key, quote)
if py.builtin.callable(val):
val = val()
if quote:
return '"%s"' % str(val).replace('"', r'\"')
else:
return str(val)
def _is_bare_posargs(self, groupdict):
return groupdict.get('substitution_value', None) == 'posargs' \
and not groupdict.get('sub_type')
def _replace_match(self, match, quote):
g = match.groupdict()
# special case: posargs. If there is a 'posargs' substitution value
# and no type, handle it as empty posargs
if self._is_bare_posargs(g):
return self._do_replace_posargs(lambda: '')
handlers = {
'posargs' : self._replace_posargs,
'env' : self._replace_env,
None : self._replace_substitution,
}
try:
sub_type = g['sub_type']
except KeyError:
raise tox.exception.ConfigError("Malformed substitution; no substitution type provided")
try:
handler = handlers[sub_type]
except KeyError:
raise tox.exception.ConfigError("No support for the %s substitution type" % sub_type)
# quoting is done in handlers, as at least posargs handling is special:
# all of its arguments are inserted as separate parameters
return handler(match, quote)
def _replace_match_quote(self, match):
return self._replace_match(match, quote=True)
def _replace_match_no_quote(self, match):
return self._replace_match(match, quote=False)
def _replace(self, x, rexpattern=RE_ITEM_REF, quote=False):
# XXX is rexpattern used by callers? can it be removed?
if '{' in x:
if quote:
replace_func = self._replace_match_quote
else:
replace_func = self._replace_match_no_quote
return rexpattern.sub(replace_func, x)
return x
def _parse_command(self, command):
pass
class CommandParser(object):
class State(object):
def __init__(self):
self.word = ''
self.depth = 0
self.yield_words = []
def __init__(self, command):
self.command = command
def words(self):
ps = CommandParser.State()
def word_has_ended():
return ((cur_char in string.whitespace and ps.word and
ps.word[-1] not in string.whitespace) or
(cur_char == '{' and ps.depth == 0) or
(ps.depth == 0 and ps.word and ps.word[-1] == '}') or
(cur_char not in string.whitespace and ps.word and
ps.word.strip() == ''))
def yield_this_word():
yieldword = ps.word
ps.word = ''
if yieldword:
ps.yield_words.append(yieldword)
def yield_if_word_ended():
if word_has_ended():
yield_this_word()
def accumulate():
ps.word += cur_char
def push_substitution():
ps.depth += 1
def pop_substitution():
ps.depth -= 1
for cur_char in self.command:
if cur_char in string.whitespace:
if ps.depth == 0:
yield_if_word_ended()
accumulate()
elif cur_char == '{':
yield_if_word_ended()
accumulate()
push_substitution()
elif cur_char == '}':
accumulate()
pop_substitution()
else:
yield_if_word_ended()
accumulate()
if ps.word.strip():
yield_this_word()
return ps.yield_words
def getcontextname():
if 'HUDSON_URL' in os.environ:
return 'jenkins'
return None
|