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
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright © 2005 Progiciels Bourbeau-Pinard, Inc.
# François Pinard <pinard@iro.umontreal.ca>, 2005.
u"""\
Execute a validation suite built in pylib's py.test style.
Usage: pytest [OPTION]... [PATH]...
Options:
-h Print this help and exit right away.
-v Produce one line per test, instead of a dot per test.
-n Do not capture stdout nor stderr.
-p Profile validation suite (through "lsprof").
-f PREFIX Use PREFIX instead of "test_" for file names.
-s FILE Save ordinals of failed tests, one per line.
-o ORDINALS Only consider tests having these execution ordinals.
-k PATTERN Only retain tests which names match PATTERN.
-x PATTERN Exclude tests which names match PATTERN.
-l LIMIT Stop the validation suite after LIMIT errors.
If -l is not used, the validation will stop after 10 errors. ORDINALS is
a sequence of comma-separated integers. Options -k, -o and -x may be
repeated; then a test should match at least one of -k options if any,
one of -o options is any, and none of -x options.
When PATH names a directory, it is recursively searched to find files
matching "test_.*\\.py". Otherwise, it should give a ".py" ended file name
containing tests. If no PATH are given, the current directory is implied.
Test progression is first displayed on standard error. Then, unless
-s is selected, failed tests are detailed on stdout and, if there is at
least one such failed test, the return status of this program is non-zero.
"""
# This tool implements a minimal set of specifications stolen from the
# excellent Codespeak's py.test, at a time I really needed py.test to be
# more Unicode-aware.
__metaclass__ = type
import inspect, os, sys, time, traceback
from io import StringIO
if os.name == 'nt':
os.add_dll_directory(os.environ['SHARED_LIB_DIR'])
# How many displayable characters in an output line.
WIDTH = 79
class Limit_Reached(Exception): pass
class Main:
prefix = 'test_'
pattern = []
exclusion = []
ordinals = []
verbose = False
profile = False
limit = 10
capture = True
save = None
# For handling setup/teardown laziness.
delayed_setup_module = None
delayed_setup_class = None
did_tests_in_module = False
did_tests_in_class = False
def main(self, *arguments):
if sys.getdefaultencoding() == 'ascii':
sys.stdout = Friendly_StreamWriter(sys.stdout)
sys.stderr = Friendly_StreamWriter(sys.stderr)
import getopt
options, arguments = getopt.getopt(arguments, u'f:hk:l:no:ps:vx:')
for option, value in options:
if option == u'-f':
self.prefix = value
elif option == u'-h':
sys.stdout.write(__doc__)
return
elif option == u'-k':
self.pattern.append(value)
elif option == u'-l':
self.limit = int(value)
elif option == u'-n':
self.capture = False
elif option == u'-o':
self.ordinals += [
int(text) for text in value.replace(u',', u' ').split()]
elif option == u'-p':
self.profile = True
elif option == u'-s':
self.save = value
elif option == u'-v':
self.verbose = True
elif option == u'-x':
self.exclusion.append(value)
if not arguments:
arguments = u'.',
if self.pattern:
import re
self.pattern = re.compile(u'|'.join(self.pattern))
else:
self.pattern = None
if self.exclusion:
import re
self.exclusion = re.compile(u'|'.join(self.exclusion))
else:
self.exclusion = None
write = sys.stderr.write
self.failures = []
self.total_count = 0
self.skip_count = 0
start_time = time.time()
if self.profile:
try:
import lsprof
except ImportError:
write(u"WARNING: profiler unavailable.\n")
self.profiler = None
else:
self.profiler = lsprof.Profiler()
else:
self.profiler = None
try:
try:
for argument in arguments:
for file_name in self.each_file(argument):
self.identifier = file_name
self.column = 0
self.counter = 0
directory, base = os.path.split(file_name)
sys.path.insert(0, directory)
try:
try:
module = __import__(base[:-3])
except ImportError:
if self.save:
self.failures.append(self.total_count + 1)
else:
tracing = StringIO()
traceback.print_exc(file=tracing)
self.failures.append(
(self.total_count + 1, file_name,
None, None,
None, None,
tracing.getvalue()))
else:
self.handle_module(file_name, module)
finally:
del sys.path[0]
if self.counter and not self.verbose:
text = u'(%d)' % self.counter
if self.column + 1 + len(text) >= WIDTH:
write(u'\n%5d ' % self.counter)
else:
text = u' ' + text
write(text + u'\n')
except Exit as exception:
if not self.verbose:
write(u'\n')
write(u'\n* %s *\n' % str(exception))
except Limit_Reached:
if not self.verbose:
write(u'\n')
if not self.save:
if len(self.failures) == 1:
write(u'\n* One error already! *\n')
else:
write(u'\n* %d errors already! *\n' % self.limit)
finally:
if self.profiler is not None:
stats = lsprof.Stats(self.profiler.getstats())
stats.sort(u'inlinetime')
write(u'\n')
stats.pprint(15)
if self.failures:
if len(self.failures) == 1:
text = u"one FAILED test"
else:
text = u"%d FAILED tests" % len(self.failures)
first = False
else:
text = u''
first = True
good_count = (self.total_count - self.skip_count
- len(self.failures))
if good_count:
if first:
if good_count == 1:
text += u"one good test"
else:
text += u"%d good tests" % good_count
first = False
else:
if good_count == 1:
text += u", one good"
else:
text += u", %d good" % good_count
if self.skip_count:
if first:
if self.skip_count == 1:
text += u"one skipped test"
else:
text += u"%d skipped tests" % self.skip_count
first = False
else:
if self.skip_count == 1:
text += u", one skipped"
else:
text += u", %d skipped" % self.skip_count
if first:
text = u"No test"
summary = (u"\nSummary: %s in %.2f seconds.\n"
% (text, time.time() - start_time))
write(summary)
if self.save:
write = open(self.save, u'w').write
for ordinal in self.failures:
write(u'%d\n' % ordinal)
else:
write = sys.stdout.write
for (ordinal, prefix, function, arguments, stdout, stderr,
tracing) in self.failures:
write(u'\n' + u'=' * WIDTH + u'\n')
write(u'%d. %s\n' % (ordinal, prefix))
if function and function.__name__ != os.path.basename(prefix):
write(u" Function %s\n" % function.__name__)
if arguments:
for counter, argument in enumerate(arguments):
write(u" Arg %d = %r\n" % (counter + 1, argument))
for buffer, titre in ((stdout, u'STDOUT'), (stderr, u'STDERR')):
if buffer:
write(u'\n' + titre + u' >>>\n')
write(buffer)
if not buffer.endswith(u'\n'):
write(u'\n')
write(u'-' * WIDTH + u'\n')
write(tracing)
if self.failures:
write(summary)
sys.exit(1)
def each_file(self, path):
if os.path.isdir(path):
stack = [path]
while stack:
directory = stack.pop(0)
for base in sorted(os.listdir(directory)):
file_name = os.path.join(directory, base)
if base.startswith(self.prefix) and base.endswith(u'.py'):
yield file_name
elif os.path.isdir(file_name):
stack.append(file_name)
else:
if not path.endswith(u'.py'):
sys.exit("%s: Should have a `.py' suffix." % path)
yield path
def handle_module(self, prefix, module):
collection = []
for name, objet in inspect.getmembers(module):
if name.startswith(u'Test') and inspect.isclass(objet):
if getattr(object, u'disabled', False):
continue
minimum = None
for _, func in inspect.getmembers(objet, inspect.isfunction):
number = func.__code__.co_firstlineno
if minimum is None or number < minimum:
minimum = number
if minimum is not None:
collection.append((minimum, name, objet, False))
elif name.startswith(u'test_') and inspect.isfunction(objet):
code = objet.__code__
collection.append((code.co_firstlineno, name, objet,
bool(code.co_flags & 32)))
if not collection:
return
self.delayed_setup_module = None
self.did_tests_in_module = False
if hasattr(module, u'setup_module'):
self.delayed_setup_module = module.setup_module, module
for _, name, objet, generator in sorted(collection):
self.delayed_setup_class = None
self.did_tests_in_class = False
if inspect.isclass(objet):
if not getattr(object, u'disabled', False):
self.handle_class(prefix + u'/' + name, objet)
else:
self.handle_function(prefix + u'/' + name, objet,
generator, None)
if self.did_tests_in_module and hasattr(module, u'teardown_module'):
module.teardown_module(module)
def handle_class(self, prefix, classe):
collection = []
for name, func in inspect.getmembers(classe, inspect.isfunction):
if name.startswith(u'test_'):
code = func.__code__
collection.append((code.co_firstlineno, name, func,
bool(code.co_flags & inspect.CO_GENERATOR)))
if not collection:
return
# FIXME: Should likely do module setup here!
instance = classe()
if hasattr(instance, u'setup_class'):
self.delayed_setup_module = instance.setup_class, classe
for _, name, method, generator in sorted(collection):
self.handle_function(prefix + u'/' + name, getattr(instance, name),
generator, instance)
if self.did_tests_in_class and hasattr(instance, u'teardown_class'):
instance.teardown_class(classe)
def handle_function(self, prefix, function, generator, instance):
collection = []
if generator:
# FIXME: Should likely do class setup here.
try:
for counter, arguments in enumerate(function()):
collection.append((prefix + u'/' + str(counter + 1),
arguments[0], arguments[1:]))
except Skipped:
return
else:
collection.append((prefix, function, ()))
for prefix, function, arguments in collection:
self.launch_test(prefix, function, arguments, instance)
def launch_test(self, prefix, function, arguments, instance):
# Check if this test should be retained.
if (self.exclusion is not None and self.exclusion.search(prefix)
or self.pattern is not None and not self.pattern.search(prefix)
or self.ordinals and self.total_count + 1 not in self.ordinals):
self.mark_progression(prefix, None)
return
# This test should definitely be executed.
if self.delayed_setup_module is not None:
self.delayed_setup_module[0](self.delayed_setup_module[1])
self.delayed_setup_module = None
if self.delayed_setup_class is not None:
self.delayed_setup_class[0](self.delayed_setup_class[1])
self.delayed_setup_class = None
if instance is not None and hasattr(instance, u'setup_method'):
instance.setup_method(function)
if self.capture:
saved_stdout = sys.stdout
saved_stderr = sys.stderr
stdout = sys.stdout = StringIO()
stderr = sys.stderr = StringIO()
self.activate_profiling()
try:
try:
function(*arguments)
except Exit:
success = False
raise
except Failed:
success = False
except Skipped:
success = None
except KeyboardInterrupt:
success = None
raise Exit("Interruption!")
except:
success = False
else:
success = True
finally:
self.deactivate_profiling()
if self.capture:
sys.stdout = saved_stdout
sys.stderr = saved_stderr
stdout = stdout.getvalue()
stderr = stderr.getvalue()
else:
stdout = None
stderr = None
self.mark_progression(prefix, success)
if success is False:
if self.save:
self.failures.append(self.total_count)
else:
tracing = StringIO()
traceback.print_exc(file=tracing)
self.failures.append(
(self.total_count, prefix, function, arguments,
stdout, stderr, tracing.getvalue()))
if instance is not None and hasattr(instance, u'teardown_method'):
instance.teardown_method(function)
self.did_tests_in_class = True
self.did_tests_in_module = True
if success is not None and len(self.failures) == self.limit:
raise Limit_Reached
def mark_progression(self, prefix, success):
self.total_count += 1
if self.verbose:
if success is None:
self.skip_count += 1
mark = u"skipped"
elif success:
mark = u"ok"
else:
mark = u"FAILED"
sys.stderr.write(u'%5d. [%s] %s\n' % (self.total_count, prefix, mark))
else:
if success is None:
self.skip_count += 1
mark = u's'
elif success:
mark = u'.'
else:
mark = 'E'
if self.column == WIDTH:
sys.stderr.write(u'\n')
self.column = 0
if not self.column:
if self.counter:
text = u'%5d ' % (self.counter + 1)
else:
text = self.identifier + u' '
sys.stderr.write(text)
self.column = len(text)
sys.stderr.write(mark)
sys.stderr.flush()
self.column += 1
self.counter += 1
sys.stderr.flush()
def activate_profiling(self):
if self.profiler is not None:
self.profiler.enable(subcalls=True, builtins=True)
def deactivate_profiling(self):
if self.profiler is not None:
self.profiler.disable()
class Friendly_StreamWriter:
# Avoid some Unicode nightmares, by allowing both unicode and
# UTF-8 str strings to be written (given our sources are all UTF-8).
def __init__(self, stream):
import codecs, locale
writer = codecs.getwriter(locale.getpreferredencoding())
self.stream = writer(stream, 'backslashreplace')
def flush(self):
self.stream.flush()
def write(self, text):
if not isinstance(text, unicode):
text = text.encode('UTF-8')
self.stream.write(text)
def writelines(self, lines):
for line in lines:
self.write(line)
run = Main()
main = run.main
class Exit(Exception): pass
class Failed(Exception): pass
class NotRaised(Exception): pass
class Skipped(Exception): pass
class py:
class test:
@staticmethod
def exit(message="Unknown reason"):
raise Exit(message)
@staticmethod
def fail(message="Unknown reason"):
raise Failed(message)
@staticmethod
def skip(message="Unknown reason"):
raise Skipped(message)
@staticmethod
def raises(expected, *args, **kws):
try:
if isinstance(args[0], unicode) and not kws:
eval(args[0])
else:
args[0](*args[1:], **kws)
except expected:
return
else:
raise NotRaised(u"Exception did not happen.")
if __name__ == u'__main__':
main(*sys.argv[1:])
|