hghave
99 lines
| 2.7 KiB
| text/plain
|
TextLexer
/ tests / hghave
Patrick Mezard
|
r4881 | #!/usr/bin/env python | ||
"""Test the running system for features availability. Exit with zero | ||||
Patrick Mezard
|
r5084 | if all features are there, non-zero otherwise. If a feature name is | ||
prefixed with "no-", the absence of feature is tested. | ||||
Patrick Mezard
|
r4881 | """ | ||
import optparse | ||||
FUJIWARA Katsunori
|
r25732 | import os, sys | ||
Adrian Buehlmann
|
r16966 | import hghave | ||
Martin Geisler
|
r9446 | |||
Adrian Buehlmann
|
r16966 | checks = hghave.checks | ||
Patrick Mezard
|
r4881 | |||
def list_features(): | ||||
Yuya Nishihara
|
r22762 | for name, feature in sorted(checks.iteritems()): | ||
Patrick Mezard
|
r4881 | desc = feature[1] | ||
print name + ':', desc | ||||
Nicolas Dumazet
|
r8059 | def test_features(): | ||
failed = 0 | ||||
for name, feature in checks.iteritems(): | ||||
check, _ = feature | ||||
try: | ||||
check() | ||||
except Exception, e: | ||||
print "feature %s failed: %s" % (name, e) | ||||
failed += 1 | ||||
return failed | ||||
Patrick Mezard
|
r4881 | parser = optparse.OptionParser("%prog [options] [features]") | ||
Nicolas Dumazet
|
r8059 | parser.add_option("--test-features", action="store_true", | ||
help="test available features") | ||||
Patrick Mezard
|
r4881 | parser.add_option("--list-features", action="store_true", | ||
help="list available features") | ||||
parser.add_option("-q", "--quiet", action="store_true", | ||||
help="check features silently") | ||||
FUJIWARA Katsunori
|
r25732 | def _loadaddon(quiet): | ||
if 'TESTDIR' in os.environ: | ||||
# loading from '.' isn't needed, because `hghave` should be | ||||
# running at TESTTMP in this case | ||||
path = os.environ['TESTDIR'] | ||||
else: | ||||
path = '.' | ||||
if not os.path.exists(os.path.join(path, 'hghaveaddon.py')): | ||||
return | ||||
sys.path.insert(0, path) | ||||
try: | ||||
import hghaveaddon | ||||
except BaseException, inst: | ||||
if not quiet: | ||||
sys.stderr.write('failed to import hghaveaddon.py from %r: %s\n' | ||||
% (path, inst)) | ||||
sys.exit(2) | ||||
sys.path.pop(0) | ||||
Patrick Mezard
|
r4881 | if __name__ == '__main__': | ||
options, args = parser.parse_args() | ||||
FUJIWARA Katsunori
|
r25732 | _loadaddon(options.quiet) | ||
Patrick Mezard
|
r4881 | if options.list_features: | ||
list_features() | ||||
sys.exit(0) | ||||
Thomas Arendsen Hein
|
r5081 | |||
Nicolas Dumazet
|
r8059 | if options.test_features: | ||
sys.exit(test_features()) | ||||
Patrick Mezard
|
r4881 | quiet = options.quiet | ||
failures = 0 | ||||
def error(msg): | ||||
global failures | ||||
if not quiet: | ||||
sys.stderr.write(msg + '\n') | ||||
failures += 1 | ||||
Thomas Arendsen Hein
|
r5081 | |||
Patrick Mezard
|
r4881 | for feature in args: | ||
Patrick Mezard
|
r5084 | negate = feature.startswith('no-') | ||
if negate: | ||||
feature = feature[3:] | ||||
Thomas Arendsen Hein
|
r5091 | |||
Patrick Mezard
|
r4881 | if feature not in checks: | ||
Thomas Arendsen Hein
|
r5685 | error('skipped: unknown feature: ' + feature) | ||
Mads Kiilerich
|
r18229 | sys.exit(2) | ||
Thomas Arendsen Hein
|
r5081 | |||
check, desc = checks[feature] | ||||
Nicolas Dumazet
|
r8060 | try: | ||
available = check() | ||||
except Exception, e: | ||||
error('hghave check failed: ' + feature) | ||||
continue | ||||
if not negate and not available: | ||||
Thomas Arendsen Hein
|
r5685 | error('skipped: missing feature: ' + desc) | ||
Nicolas Dumazet
|
r8060 | elif negate and available: | ||
Thomas Arendsen Hein
|
r5685 | error('skipped: system supports %s' % desc) | ||
Patrick Mezard
|
r4881 | |||
if failures != 0: | ||||
sys.exit(1) | ||||