runtests.py 66.4 KB
Newer Older
1 2
#!/usr/bin/python

3 4 5
import os
import sys
import re
6
import gc
7
import locale
8
import shutil
9
import time
10 11
import unittest
import doctest
12
import operator
Robert Bradshaw's avatar
Robert Bradshaw committed
13
import subprocess
14
import tempfile
15
import traceback
Robert Bradshaw's avatar
Robert Bradshaw committed
16 17
import warnings

18 19 20 21
try:
    from StringIO import StringIO
except ImportError:
    from io import StringIO
22 23 24 25 26 27

try:
    import cPickle as pickle
except ImportError:
    import pickle

28 29 30 31 32
try:
    from io import open as io_open
except ImportError:
    from codecs import open as io_open

33 34 35 36 37
try:
    import threading
except ImportError: # No threads, no problems
    threading = None

Robert Bradshaw's avatar
Robert Bradshaw committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
try:
    from collections import defaultdict
except ImportError:
    class defaultdict(object):
        def __init__(self, default_factory=lambda : None):
            self._dict = {}
            self.default_factory = default_factory
        def __getitem__(self, key):
            if key not in self._dict:
                self._dict[key] = self.default_factory()
            return self._dict[key]
        def __setitem__(self, key, value):
            self._dict[key] = value
        def __repr__(self):
            return repr(self._dict)

54
WITH_CYTHON = True
55
CY3_DIR = None
56 57 58 59

from distutils.dist import Distribution
from distutils.core import Extension
from distutils.command.build_ext import build_ext as _build_ext
Mark Florisson's avatar
Mark Florisson committed
60
from distutils import sysconfig
61 62
distutils_distro = Distribution()

Robert Bradshaw's avatar
Robert Bradshaw committed
63 64 65 66 67 68 69 70 71 72 73 74
if sys.platform == 'win32':
    # TODO: Figure out why this hackery (see http://thread.gmane.org/gmane.comp.python.cython.devel/8280/).
    config_files = distutils_distro.find_config_files()
    try: config_files.remove('setup.cfg')
    except ValueError: pass
    distutils_distro.parse_config_files(config_files)

    cfgfiles = distutils_distro.find_config_files()
    try: cfgfiles.remove('setup.cfg')
    except ValueError: pass
    distutils_distro.parse_config_files(cfgfiles)

75
EXT_DEP_MODULES = {
76 77 78
    'tag:numpy' : 'numpy',
    'tag:pstats': 'pstats',
    'tag:posix' : 'posix',
79
    'tag:array' : 'array',
80 81
}

82
def update_numpy_extension(ext):
83
    import numpy
84
    ext.include_dirs.append(numpy.get_include())
85

86
def update_pyarray_extension(ext):
87 88
    # See http://gcc.gnu.org/onlinedocs/gcc/Unnamed-Fields.html#Unnamed-Fields
    ext.extra_compile_args.append('-fms-extensions')
89

Mark Florisson's avatar
Mark Florisson committed
90
def update_openmp_extension(ext):
91
    ext.openmp = True
Mark Florisson's avatar
Mark Florisson committed
92 93 94 95 96 97 98 99 100 101 102 103 104
    language = ext.language

    if language == 'cpp':
        flags = OPENMP_CPP_COMPILER_FLAGS
    else:
        flags = OPENMP_C_COMPILER_FLAGS

    if flags:
        compile_flags, link_flags = flags

        ext.extra_compile_args.extend(compile_flags.split())
        ext.extra_link_args.extend(link_flags.split())
        return ext
105 106
    elif sys.platform == 'win32':
        return ext
Mark Florisson's avatar
Mark Florisson committed
107 108 109 110 111 112 113 114 115 116 117 118 119 120

    return EXCLUDE_EXT

def get_openmp_compiler_flags(language):
    """
    As of gcc 4.2, it supports OpenMP 2.5. Gcc 4.4 implements 3.0. We don't
    (currently) check for other compilers.

    returns a two-tuple of (CFLAGS, LDFLAGS) to build the OpenMP extension
    """
    if language == 'cpp':
        cc = sysconfig.get_config_var('CXX')
    else:
        cc = sysconfig.get_config_var('CC')
121 122 123

    if not cc:
        return None # Windows?
Mark Florisson's avatar
Mark Florisson committed
124

125 126 127
    # For some reason, cc can be e.g. 'gcc -pthread'
    cc = cc.split()[0]

128 129 130 131
    # Force english output
    env = os.environ.copy()
    env['LC_MESSAGES'] = 'C'

Mark Florisson's avatar
Mark Florisson committed
132 133
    matcher = re.compile(r"gcc version (\d+\.\d+)").search
    try:
134
        p = subprocess.Popen([cc, "-v"], stderr=subprocess.PIPE, env=env)
Robert Bradshaw's avatar
Robert Bradshaw committed
135 136 137 138 139 140
    except EnvironmentError:
        # Be compatible with Python 3
        warnings.warn("Unable to find the %s compiler: %s: %s" %
                      (language, os.strerror(sys.exc_info()[1].errno), cc))
        return None
    _, output = p.communicate()
141

Stefan Behnel's avatar
Stefan Behnel committed
142
    output = output.decode(locale.getpreferredencoding() or 'ASCII', 'replace')
143

144 145 146 147 148
    gcc_version = matcher(output)
    if not gcc_version:
        return None # not gcc - FIXME: do something about other compilers

    compiler_version = gcc_version.group(1)
Mark Florisson's avatar
Mark Florisson committed
149 150 151
    if compiler_version and compiler_version.split('.') >= ['4', '2']:
        return '-fopenmp', '-fopenmp'

152 153 154 155
try:
    locale.setlocale(locale.LC_ALL, '')
except locale.Error:
    pass
156

Mark Florisson's avatar
Mark Florisson committed
157 158 159 160 161 162
OPENMP_C_COMPILER_FLAGS = get_openmp_compiler_flags('c')
OPENMP_CPP_COMPILER_FLAGS = get_openmp_compiler_flags('cpp')

# Return this from the EXT_EXTRAS matcher callback to exclude the extension
EXCLUDE_EXT = object()

163 164
EXT_EXTRAS = {
    'tag:numpy' : update_numpy_extension,
165
    'tag:array' : update_pyarray_extension,
Mark Florisson's avatar
Mark Florisson committed
166
    'tag:openmp': update_openmp_extension,
167
}
168

Robert Bradshaw's avatar
Robert Bradshaw committed
169
# TODO: use tags
170
VER_DEP_MODULES = {
171
    # tests are excluded if 'CurrentPythonVersion OP VersionTuple', i.e.
Stefan Behnel's avatar
Stefan Behnel committed
172 173
    # (2,4) : (operator.lt, ...) excludes ... when PyVer < 2.4.x
    (2,4) : (operator.lt, lambda x: x in ['run.extern_builtins_T258',
174 175
                                          'run.builtin_sorted',
                                          'run.reversed_iteration',
Stefan Behnel's avatar
Stefan Behnel committed
176
                                          ]),
177 178
    (2,5) : (operator.lt, lambda x: x in ['run.any',
                                          'run.all',
179
                                          'run.yield_from_pep380',  # GeneratorExit
180
                                          'run.generator_frame_cycle', # yield in try-finally
Haoyu Bai's avatar
Haoyu Bai committed
181
                                          'run.relativeimport_T542',
182
                                          'run.relativeimport_star_T542',
183
                                          'run.initial_file_path',  # relative import
184
                                          ]),
185 186
    (2,6) : (operator.lt, lambda x: x in ['run.print_function',
                                          'run.cython3',
Stefan Behnel's avatar
Stefan Behnel committed
187
                                          'run.property_decorator_T593', # prop.setter etc.
Stefan Behnel's avatar
comment  
Stefan Behnel committed
188
                                          'run.generators_py', # generators, with statement
189
                                          'run.pure_py', # decorators, with statement
190
                                          'run.purecdef',
191
                                          'run.struct_conversion',
Stefan Behnel's avatar
Stefan Behnel committed
192
                                          # memory views require buffer protocol
193 194 195 196 197
                                          'memoryview.cythonarray',
                                          'memoryview.memslice',
                                          'memoryview.numpy_memoryview',
                                          'memoryview.memoryviewattrs',
                                          'memoryview.memoryview',
198
                                          ]),
Stefan Behnel's avatar
Stefan Behnel committed
199
    (2,7) : (operator.lt, lambda x: x in ['run.withstat_py', # multi context with statement
Stefan Behnel's avatar
Stefan Behnel committed
200
                                          'run.yield_inside_lambda',
Stefan Behnel's avatar
Stefan Behnel committed
201
                                          ]),
202 203 204 205
    # The next line should start (3,); but this is a dictionary, so
    # we can only have one (3,) key.  Since 2.7 is supposed to be the
    # last 2.x release, things would have to change drastically for this
    # to be unsafe...
206 207 208
    (2,999): (operator.lt, lambda x: x in ['run.special_methods_T561_py3',
                                           'run.test_raisefrom',
                                           ]),
209
    (3,): (operator.ge, lambda x: x in ['run.non_future_division',
Stefan Behnel's avatar
Stefan Behnel committed
210
                                        'compile.extsetslice',
211 212
                                        'compile.extdelslice',
                                        'run.special_methods_T561_py2']),
213 214
}

215 216 217 218 219 220 221 222
# files that should not be converted to Python 3 code with 2to3
KEEP_2X_FILES = [
    os.path.join('Cython', 'Debugger', 'Tests', 'test_libcython_in_gdb.py'),
    os.path.join('Cython', 'Debugger', 'Tests', 'test_libpython_in_gdb.py'),
    os.path.join('Cython', 'Debugger', 'libcython.py'),
    os.path.join('Cython', 'Debugger', 'libpython.py'),
]

223
COMPILER = None
224
INCLUDE_DIRS = [ d for d in os.getenv('INCLUDE', '').split(os.pathsep) if d ]
225
CFLAGS = os.getenv('CFLAGS', '').split()
226
CCACHE = os.getenv('CYTHON_RUNTESTS_CCACHE', '').split()
227
TEST_SUPPORT_DIR = 'testsupport'
228

229
BACKENDS = ['c', 'cpp']
230

231 232 233 234 235 236 237 238 239 240
def memoize(f):
    uncomputed = object()
    f._cache = {}
    def func(*args):
        res = f._cache.get(args, uncomputed)
        if res is uncomputed:
            res = f._cache[args] = f(*args)
        return res
    return func

Robert Bradshaw's avatar
cleanup  
Robert Bradshaw committed
241
@memoize
Robert Bradshaw's avatar
Robert Bradshaw committed
242 243
def parse_tags(filepath):
    tags = defaultdict(list)
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
    f = io_open(filepath, encoding='ISO-8859-1', errors='replace')
    try:
        for line in f:
            line = line.strip()
            if not line:
                continue
            if line[0] != '#':
                break
            ix = line.find(':')
            if ix != -1:
                tag = line[1:ix].strip()
                values = line[ix+1:].split(',')
                tags[tag].extend([value.strip() for value in values])
    finally:
        f.close()
Robert Bradshaw's avatar
Robert Bradshaw committed
259 260
    return tags

Robert Bradshaw's avatar
Robert Bradshaw committed
261 262
list_unchanging_dir = memoize(lambda x: os.listdir(x))

Stefan Behnel's avatar
Stefan Behnel committed
263

264 265
class build_ext(_build_ext):
    def build_extension(self, ext):
266 267 268 269 270 271
        try:
            try: # Py2.7+ & Py3.2+
                compiler_obj = self.compiler_obj
            except AttributeError:
                compiler_obj = self.compiler
            if ext.language == 'c++':
272
                compiler_obj.compiler_so.remove('-Wstrict-prototypes')
273 274
            if CCACHE:
                compiler_obj.compiler_so = CCACHE + compiler_obj.compiler_so
275 276
            if getattr(ext, 'openmp', None) and compiler_obj.compiler_type == 'msvc':
                ext.extra_compile_args.append('/openmp')
277 278
        except Exception:
            pass
279
        _build_ext.build_extension(self, ext)
280 281

class ErrorWriter(object):
282
    match_error = re.compile('(warning:)?(?:.*:)?\s*([-0-9]+)\s*:\s*([-0-9]+)\s*:\s*(.*)').match
283 284 285 286
    def __init__(self):
        self.output = []
        self.write = self.output.append

287
    def _collect(self, collect_errors, collect_warnings):
288
        s = ''.join(self.output)
289
        result = []
290 291 292
        for line in s.split('\n'):
            match = self.match_error(line)
            if match:
293 294 295
                is_warning, line, column, message = match.groups()
                if (is_warning and collect_warnings) or \
                        (not is_warning and collect_errors):
296 297
                    result.append( (int(line), int(column), message.strip()) )
        result.sort()
Stefan Behnel's avatar
Stefan Behnel committed
298
        return [ "%d:%d: %s" % values for values in result ]
299 300 301 302 303 304 305 306 307

    def geterrors(self):
        return self._collect(True, False)

    def getwarnings(self):
        return self._collect(False, True)

    def getall(self):
        return self._collect(True, True)
308

309
class TestBuilder(object):
310
    def __init__(self, rootdir, workdir, selectors, exclude_selectors, annotate,
311 312
                 cleanup_workdir, cleanup_sharedlibs, cleanup_failures,
                 with_pyregr, cython_only, languages, test_bugs, fork, language_level):
313 314
        self.rootdir = rootdir
        self.workdir = workdir
315
        self.selectors = selectors
316
        self.exclude_selectors = exclude_selectors
317
        self.annotate = annotate
318
        self.cleanup_workdir = cleanup_workdir
319
        self.cleanup_sharedlibs = cleanup_sharedlibs
320
        self.cleanup_failures = cleanup_failures
321
        self.with_pyregr = with_pyregr
Stefan Behnel's avatar
Stefan Behnel committed
322 323
        self.cython_only = cython_only
        self.languages = languages
324
        self.test_bugs = test_bugs
325
        self.fork = fork
326
        self.language_level = language_level
327 328 329

    def build_suite(self):
        suite = unittest.TestSuite()
330 331 332
        filenames = os.listdir(self.rootdir)
        filenames.sort()
        for filename in filenames:
333
            path = os.path.join(self.rootdir, filename)
334
            if os.path.isdir(path) and filename != TEST_SUPPORT_DIR:
335 336
                if filename == 'pyregr' and not self.with_pyregr:
                    continue
337 338
                if filename == 'broken' and not self.test_bugs:
                    continue
339
                suite.addTest(
340
                    self.handle_directory(path, filename))
341 342
        if sys.platform not in ['win32']:
            # Non-Windows makefile.
343 344
            if [1 for selector in self.selectors if selector("embedded")] \
                and not [1 for selector in self.exclude_selectors if selector("embedded")]:
345
                suite.addTest(unittest.makeSuite(EmbedTest))
346 347
        return suite

348
    def handle_directory(self, path, context):
349 350 351 352
        workdir = os.path.join(self.workdir, context)
        if not os.path.exists(workdir):
            os.makedirs(workdir)

353
        suite = unittest.TestSuite()
Robert Bradshaw's avatar
Robert Bradshaw committed
354
        filenames = list_unchanging_dir(path)
355 356
        filenames.sort()
        for filename in filenames:
357 358 359
            filepath = os.path.join(path, filename)
            module, ext = os.path.splitext(filename)
            if ext not in ('.py', '.pyx', '.srctree'):
360
                continue
361 362 363
            if filename.startswith('.'):
                continue # certain emacs backup files
            tags = parse_tags(filepath)
Robert Bradshaw's avatar
Robert Bradshaw committed
364
            fqmodule = "%s.%s" % (context, module)
365
            if not [ 1 for match in self.selectors
Robert Bradshaw's avatar
Robert Bradshaw committed
366
                     if match(fqmodule, tags) ]:
367
                continue
368
            if self.exclude_selectors:
Robert Bradshaw's avatar
Robert Bradshaw committed
369 370
                if [1 for match in self.exclude_selectors 
                        if match(fqmodule, tags)]:
371
                    continue
372 373 374 375 376 377 378 379

            mode = 'run' # default
            if tags['mode']:
                mode = tags['mode'][0]
            elif context == 'pyregr':
                mode = 'pyregr'

            if ext == '.srctree':
380 381
                if 'cpp' not in tags['tag'] or 'cpp' in self.languages:
                    suite.addTest(EndToEndTest(filepath, workdir, self.cleanup_workdir))
382 383 384 385 386 387
                continue

            # Choose the test suite.
            if mode == 'pyregr':
                if not filename.startswith('test_'):
                    continue
388
                test_class = CythonPyregrTestCase
389
            elif mode == 'run':
390
                if module.startswith("test_"):
Stefan Behnel's avatar
Stefan Behnel committed
391
                    test_class = CythonUnitTestCase
392
                else:
Stefan Behnel's avatar
Stefan Behnel committed
393
                    test_class = CythonRunTestCase
394
            else:
Stefan Behnel's avatar
Stefan Behnel committed
395
                test_class = CythonCompileTestCase
396

Stefan Behnel's avatar
Stefan Behnel committed
397
            for test in self.build_tests(test_class, path, workdir,
Robert Bradshaw's avatar
Robert Bradshaw committed
398
                                         module, mode == 'error', tags):
Stefan Behnel's avatar
Stefan Behnel committed
399
                suite.addTest(test)
Stefan Behnel's avatar
fix  
Stefan Behnel committed
400
            if mode == 'run' and ext == '.py' and not self.cython_only:
401 402
                # additionally test file in real Python
                suite.addTest(PureDoctestTestCase(module, os.path.join(path, filename)))
403
                
404 405
        return suite

Robert Bradshaw's avatar
Robert Bradshaw committed
406
    def build_tests(self, test_class, path, workdir, module, expect_errors, tags):
Robert Bradshaw's avatar
Robert Bradshaw committed
407
        if 'werror' in tags['tag']:
Vitja Makarov's avatar
Vitja Makarov committed
408 409 410 411
            warning_errors = True
        else:
            warning_errors = False

412
        if expect_errors:
Robert Bradshaw's avatar
Robert Bradshaw committed
413
            if 'cpp' in tags['tag'] and 'cpp' in self.languages:
Robert Bradshaw's avatar
Robert Bradshaw committed
414 415 416
                languages = ['cpp']
            else:
                languages = self.languages[:1]
417 418
        else:
            languages = self.languages
Robert Bradshaw's avatar
Robert Bradshaw committed
419
        if 'cpp' in tags['tag'] and 'c' in languages:
420 421
            languages = list(languages)
            languages.remove('c')
Stefan Behnel's avatar
Stefan Behnel committed
422
        tests = [ self.build_test(test_class, path, workdir, module,
Vitja Makarov's avatar
Vitja Makarov committed
423
                                  language, expect_errors, warning_errors)
424
                  for language in languages ]
Stefan Behnel's avatar
Stefan Behnel committed
425 426 427
        return tests

    def build_test(self, test_class, path, workdir, module,
Vitja Makarov's avatar
Vitja Makarov committed
428
                   language, expect_errors, warning_errors):
Stefan Behnel's avatar
Stefan Behnel committed
429 430 431
        workdir = os.path.join(workdir, language)
        if not os.path.exists(workdir):
            os.makedirs(workdir)
Stefan Behnel's avatar
Stefan Behnel committed
432 433 434 435 436 437
        return test_class(path, workdir, module,
                          language=language,
                          expect_errors=expect_errors,
                          annotate=self.annotate,
                          cleanup_workdir=self.cleanup_workdir,
                          cleanup_sharedlibs=self.cleanup_sharedlibs,
438
                          cleanup_failures=self.cleanup_failures,
439
                          cython_only=self.cython_only,
440
                          fork=self.fork,
Vitja Makarov's avatar
Vitja Makarov committed
441 442
                          language_level=self.language_level,
                          warning_errors=warning_errors)
Stefan Behnel's avatar
Stefan Behnel committed
443

444
class CythonCompileTestCase(unittest.TestCase):
445
    def __init__(self, test_directory, workdir, module, language='c',
446
                 expect_errors=False, annotate=False, cleanup_workdir=True,
447 448
                 cleanup_sharedlibs=True, cleanup_failures=True, cython_only=False,
                 fork=True, language_level=2, warning_errors=False):
449
        self.test_directory = test_directory
450 451
        self.workdir = workdir
        self.module = module
Stefan Behnel's avatar
Stefan Behnel committed
452
        self.language = language
453
        self.expect_errors = expect_errors
454
        self.annotate = annotate
455
        self.cleanup_workdir = cleanup_workdir
Dag Sverre Seljebotn's avatar
Dag Sverre Seljebotn committed
456
        self.cleanup_sharedlibs = cleanup_sharedlibs
457
        self.cleanup_failures = cleanup_failures
Stefan Behnel's avatar
Stefan Behnel committed
458
        self.cython_only = cython_only
459
        self.fork = fork
460
        self.language_level = language_level
Vitja Makarov's avatar
Vitja Makarov committed
461
        self.warning_errors = warning_errors
462 463 464
        unittest.TestCase.__init__(self)

    def shortDescription(self):
Stefan Behnel's avatar
Stefan Behnel committed
465
        return "compiling (%s) %s" % (self.language, self.module)
466

Stefan Behnel's avatar
Stefan Behnel committed
467
    def setUp(self):
Vitja Makarov's avatar
Vitja Makarov committed
468
        from Cython.Compiler import Options
469 470
        self._saved_options = [ (name, getattr(Options, name))
                                for name in ('warning_errors', 'error_on_unknown_names') ]
471
        self._saved_default_directives = Options.directive_defaults.items()
Vitja Makarov's avatar
Vitja Makarov committed
472 473
        Options.warning_errors = self.warning_errors

Stefan Behnel's avatar
Stefan Behnel committed
474 475 476
        if self.workdir not in sys.path:
            sys.path.insert(0, self.workdir)

477
    def tearDown(self):
Vitja Makarov's avatar
Vitja Makarov committed
478
        from Cython.Compiler import Options
479 480
        for name, value in self._saved_options:
            setattr(Options, name, value)
481
        Options.directive_defaults = dict(self._saved_default_directives)
Vitja Makarov's avatar
Vitja Makarov committed
482

Stefan Behnel's avatar
Stefan Behnel committed
483 484 485 486 487 488 489 490
        try:
            sys.path.remove(self.workdir)
        except ValueError:
            pass
        try:
            del sys.modules[self.module]
        except KeyError:
            pass
491 492 493
        cleanup = self.cleanup_failures or self.success
        cleanup_c_files = WITH_CYTHON and self.cleanup_workdir and cleanup
        cleanup_lib_files = self.cleanup_sharedlibs and cleanup
494
        if os.path.exists(self.workdir):
495
            for rmfile in os.listdir(self.workdir):
496
                if not cleanup_c_files:
497 498 499
                    if (rmfile[-2:] in (".c", ".h") or
                        rmfile[-4:] == ".cpp" or
                        rmfile.endswith(".html")):
500
                        continue
501
                if not cleanup_lib_files and (rmfile.endswith(".so") or rmfile.endswith(".dll")):
502 503 504 505 506 507 508 509 510 511 512
                    continue
                try:
                    rmfile = os.path.join(self.workdir, rmfile)
                    if os.path.isdir(rmfile):
                        shutil.rmtree(rmfile, ignore_errors=True)
                    else:
                        os.remove(rmfile)
                except IOError:
                    pass
        else:
            os.makedirs(self.workdir)
513

514
    def runTest(self):
515
        self.success = False
516
        self.runCompileTest()
517
        self.success = True
518 519

    def runCompileTest(self):
520 521
        self.compile(self.test_directory, self.module, self.workdir,
                     self.test_directory, self.expect_errors, self.annotate)
522

523 524 525 526 527
    def find_module_source_file(self, source_file):
        if not os.path.exists(source_file):
            source_file = source_file[:-1]
        return source_file

Stefan Behnel's avatar
Stefan Behnel committed
528 529 530
    def build_target_filename(self, module_name):
        target = '%s.%s' % (module_name, self.language)
        return target
Robert Bradshaw's avatar
Robert Bradshaw committed
531 532
    
    def related_files(self, test_directory, module_name):
533
        is_related = re.compile('%s_.*[.].*' % module_name).match
Robert Bradshaw's avatar
Robert Bradshaw committed
534 535 536 537 538 539 540
        return [filename for filename in list_unchanging_dir(test_directory)
            if is_related(filename)]

    def copy_files(self, test_directory, target_directory, file_list):
        for filename in file_list:
            shutil.copy(os.path.join(test_directory, filename),
                        target_directory)
541

Robert Bradshaw's avatar
Robert Bradshaw committed
542 543 544 545
    def source_files(self, workdir, module_name, file_list):
        return ([self.build_target_filename(module_name)] +
            [filename for filename in file_list
                if not os.path.isfile(os.path.join(workdir, filename))])
546 547

    def split_source_and_output(self, test_directory, module, workdir):
548
        source_file = self.find_module_source_file(os.path.join(test_directory, module) + '.pyx')
549
        source_and_output = io_open(source_file, 'rU', encoding='ISO-8859-1')
550
        try:
551 552
            out = io_open(os.path.join(workdir, module + os.path.splitext(source_file)[1]),
                              'w', encoding='ISO-8859-1')
553 554 555 556 557 558 559 560 561
            for line in source_and_output:
                last_line = line
                if line.startswith("_ERRORS"):
                    out.close()
                    out = ErrorWriter()
                else:
                    out.write(line)
        finally:
            source_and_output.close()
562 563 564
        try:
            geterrors = out.geterrors
        except AttributeError:
565
            out.close()
566 567 568 569
            return []
        else:
            return geterrors()

570 571
    def run_cython(self, test_directory, module, targetdir, incdir, annotate,
                   extra_compile_options=None):
572
        include_dirs = INCLUDE_DIRS + [os.path.join(test_directory, '..', TEST_SUPPORT_DIR)]
573 574
        if incdir:
            include_dirs.append(incdir)
575
        source = self.find_module_source_file(
576
            os.path.join(test_directory, module + '.pyx'))
Stefan Behnel's avatar
Stefan Behnel committed
577
        target = os.path.join(targetdir, self.build_target_filename(module))
578

579 580
        if extra_compile_options is None:
            extra_compile_options = {}
581

582 583 584 585 586 587
        try:
            CompilationOptions
        except NameError:
            from Cython.Compiler.Main import CompilationOptions
            from Cython.Compiler.Main import compile as cython_compile
            from Cython.Compiler.Main import default_options
588

589
        options = CompilationOptions(
590
            default_options,
591 592
            include_path = include_dirs,
            output_file = target,
593
            annotate = annotate,
Stefan Behnel's avatar
Stefan Behnel committed
594 595
            use_listing_file = False,
            cplus = self.language == 'cpp',
596
            language_level = self.language_level,
597
            generate_pxi = False,
598
            evaluate_tree_assertions = True,
599
            **extra_compile_options
600
            )
601 602 603
        cython_compile(source, options=options,
                       full_module_name=module)

604
    def run_distutils(self, test_directory, module, workdir, incdir,
605
                      extra_extension_args=None):
606 607 608 609 610 611
        original_source = self.find_module_source_file(
            os.path.join(test_directory, module + '.pyx'))
        try:
            tags = parse_tags(original_source)
        except IOError:
            tags = {}
612 613 614 615 616 617 618 619
        cwd = os.getcwd()
        os.chdir(workdir)
        try:
            build_extension = build_ext(distutils_distro)
            build_extension.include_dirs = INCLUDE_DIRS[:]
            if incdir:
                build_extension.include_dirs.append(incdir)
            build_extension.finalize_options()
620 621
            if COMPILER:
                build_extension.compiler = COMPILER
622

623
            ext_compile_flags = CFLAGS[:]
624 625 626 627
            compiler = COMPILER or sysconfig.get_config_var('CC')

            if self.language == 'c' and compiler == 'gcc':
                ext_compile_flags.extend(['-std=c89', '-pedantic'])
628 629
            if  build_extension.compiler == 'mingw32':
                ext_compile_flags.append('-Wno-format')
630 631
            if extra_extension_args is None:
                extra_extension_args = {}
632

Robert Bradshaw's avatar
Robert Bradshaw committed
633 634
            related_files = self.related_files(test_directory, module)
            self.copy_files(test_directory, workdir, related_files)
635 636
            extension = Extension(
                module,
Robert Bradshaw's avatar
Robert Bradshaw committed
637
                sources = self.source_files(workdir, module, related_files),
638
                extra_compile_args = ext_compile_flags,
639
                **extra_extension_args
640
                )
Mark Florisson's avatar
Mark Florisson committed
641 642 643 644 645

            if self.language == 'cpp':
                # Set the language now as the fixer might need it
                extension.language = 'c++'

646 647 648 649 650 651
            for matcher, fixer in EXT_EXTRAS.items():
                if isinstance(matcher, str):
                    del EXT_EXTRAS[matcher]
                    matcher = string_selector(matcher)
                    EXT_EXTRAS[matcher] = fixer
                if matcher(module, tags):
Mark Florisson's avatar
Mark Florisson committed
652 653 654 655
                    newext = fixer(extension)
                    if newext is EXCLUDE_EXT:
                        return
                    extension = newext or extension
656 657
            if self.language == 'cpp':
                extension.language = 'c++'
658 659 660 661 662 663
            build_extension.extensions = [extension]
            build_extension.build_temp = workdir
            build_extension.build_lib  = workdir
            build_extension.run()
        finally:
            os.chdir(cwd)
664

665
    def compile(self, test_directory, module, workdir, incdir,
666
                expect_errors, annotate):
667 668 669
        expected_errors = errors = ()
        if expect_errors:
            expected_errors = self.split_source_and_output(
670 671
                test_directory, module, workdir)
            test_directory = workdir
672

673 674 675 676
        if WITH_CYTHON:
            old_stderr = sys.stderr
            try:
                sys.stderr = ErrorWriter()
677
                self.run_cython(test_directory, module, workdir, incdir, annotate)
678 679 680
                errors = sys.stderr.geterrors()
            finally:
                sys.stderr = old_stderr
681 682

        if errors or expected_errors:
683 684 685 686 687 688 689 690 691 692 693 694
            try:
                for expected, error in zip(expected_errors, errors):
                    self.assertEquals(expected, error)
                if len(errors) < len(expected_errors):
                    expected_error = expected_errors[len(errors)]
                    self.assertEquals(expected_error, None)
                elif len(errors) > len(expected_errors):
                    unexpected_error = errors[len(expected_errors)]
                    self.assertEquals(None, unexpected_error)
            except AssertionError:
                print("\n=== Expected errors: ===")
                print('\n'.join(expected_errors))
Stefan Behnel's avatar
Py3 fix  
Stefan Behnel committed
695
                print("\n\n=== Got errors: ===")
696 697 698
                print('\n'.join(errors))
                print('\n')
                raise
699
        else:
Stefan Behnel's avatar
Stefan Behnel committed
700
            if not self.cython_only:
701
                self.run_distutils(test_directory, module, workdir, incdir)
702 703

class CythonRunTestCase(CythonCompileTestCase):
704
    def shortDescription(self):
Stefan Behnel's avatar
Stefan Behnel committed
705 706 707 708
        if self.cython_only:
            return CythonCompileTestCase.shortDescription(self)
        else:
            return "compiling (%s) and running %s" % (self.language, self.module)
709 710

    def run(self, result=None):
711 712
        if result is None:
            result = self.defaultTestResult()
Stefan Behnel's avatar
Stefan Behnel committed
713
        result.startTest(self)
714
        try:
Stefan Behnel's avatar
Stefan Behnel committed
715
            self.setUp()
716
            try:
717
                self.success = False
718
                self.runCompileTest()
719
                failures, errors = len(result.failures), len(result.errors)
720
                self.run_tests(result)
721 722 723
                if failures == len(result.failures) and errors == len(result.errors):
                    # No new errors...
                    self.success = True
724 725
            finally:
                check_thread_termination()
726 727 728
        except Exception:
            result.addError(self, sys.exc_info())
            result.stopTest(self)
729 730 731 732
        try:
            self.tearDown()
        except Exception:
            pass
733

734 735 736 737
    def run_tests(self, result):
        if not self.cython_only:
            self.run_doctests(self.module, result)

738
    def run_doctests(self, module_name, result):
739 740 741 742 743 744 745
        def run_test(result):
            tests = doctest.DocTestSuite(module_name)
            tests.run(result)
        run_forked_test(result, run_test, self.shortDescription(), self.fork)


def run_forked_test(result, run_func, test_name, fork=True):
Stefan Behnel's avatar
Stefan Behnel committed
746 747
    if not fork or sys.version_info[0] >= 3 or not hasattr(os, 'fork'):
        run_func(result)
748 749 750
        gc.collect()
        return

751
    module_name = test_name.split()[-1]
752 753 754 755 756 757
    # fork to make sure we do not keep the tested module loaded
    result_handle, result_file = tempfile.mkstemp()
    os.close(result_handle)
    child_id = os.fork()
    if not child_id:
        result_code = 0
758
        try:
759 760
            try:
                tests = None
761
                try:
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
                    partial_result = PartialTestResult(result)
                    run_func(partial_result)
                    gc.collect()
                except Exception:
                    if tests is None:
                        # importing failed, try to fake a test class
                        tests = _FakeClass(
                            failureException=sys.exc_info()[1],
                            _shortDescription=test_name,
                            module_name=None)
                    partial_result.addError(tests, sys.exc_info())
                    result_code = 1
                output = open(result_file, 'wb')
                pickle.dump(partial_result.data(), output)
            except:
                traceback.print_exc()
778
        finally:
779
            try: output.close()
780
            except: pass
781 782 783 784
            os._exit(result_code)

    try:
        cid, result_code = os.waitpid(child_id, 0)
Mark Florisson's avatar
Mark Florisson committed
785
        module_name = test_name.split()[-1]
786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
        # os.waitpid returns the child's result code in the
        # upper byte of result_code, and the signal it was
        # killed by in the lower byte
        if result_code & 255:
            raise Exception("Tests in module '%s' were unexpectedly killed by signal %d"%
                            (module_name, result_code & 255))
        result_code = result_code >> 8
        if result_code in (0,1):
            input = open(result_file, 'rb')
            try:
                PartialTestResult.join_results(result, pickle.load(input))
            finally:
                input.close()
        if result_code:
            raise Exception("Tests in module '%s' exited with status %d" %
                            (module_name, result_code))
    finally:
        try: os.unlink(result_file)
        except: pass
805

806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
class PureDoctestTestCase(unittest.TestCase):
    def __init__(self, module_name, module_path):
        self.module_name = module_name
        self.module_path = module_path
        unittest.TestCase.__init__(self, 'run')

    def shortDescription(self):
        return "running pure doctests in %s" % self.module_name

    def run(self, result=None):
        if result is None:
            result = self.defaultTestResult()
        loaded_module_name = 'pure_doctest__' + self.module_name
        result.startTest(self)
        try:
            self.setUp()

            import imp
            m = imp.load_source(loaded_module_name, self.module_path)
            try:
                doctest.DocTestSuite(m).run(result)
            finally:
                del m
                if loaded_module_name in sys.modules:
                    del sys.modules[loaded_module_name]
831
                check_thread_termination()
832 833 834 835 836 837 838
        except Exception:
            result.addError(self, sys.exc_info())
            result.stopTest(self)
        try:
            self.tearDown()
        except Exception:
            pass
839

840 841 842 843
is_private_field = re.compile('^_[^_]').match

class _FakeClass(object):
    def __init__(self, **kwargs):
844
        self._shortDescription = kwargs.get('module_name')
845
        self.__dict__.update(kwargs)
846 847
    def shortDescription(self):
        return self._shortDescription
848

849 850 851 852 853 854
try: # Py2.7+ and Py3.2+
    from unittest.runner import _TextTestResult
except ImportError:
    from unittest import _TextTestResult

class PartialTestResult(_TextTestResult):
855
    def __init__(self, base_result):
856
        _TextTestResult.__init__(
857 858 859
            self, self._StringIO(), True,
            base_result.dots + base_result.showAll*2)

860 861 862 863 864 865
    def strip_error_results(self, results):
        for test_case, error in results:
            for attr_name in filter(is_private_field, dir(test_case)):
                if attr_name == '_dt_test':
                    test_case._dt_test = _FakeClass(
                        name=test_case._dt_test.name)
Craig Citro's avatar
Craig Citro committed
866
                elif attr_name != '_shortDescription':
867 868
                    setattr(test_case, attr_name, None)

869
    def data(self):
870 871
        self.strip_error_results(self.failures)
        self.strip_error_results(self.errors)
872 873 874 875 876 877 878
        return (self.failures, self.errors, self.testsRun,
                self.stream.getvalue())

    def join_results(result, data):
        """Static method for merging the result back into the main
        result object.
        """
Craig Citro's avatar
Craig Citro committed
879
        failures, errors, tests_run, output = data
880 881 882 883 884 885 886 887 888 889 890 891 892
        if output:
            result.stream.write(output)
        result.errors.extend(errors)
        result.failures.extend(failures)
        result.testsRun += tests_run

    join_results = staticmethod(join_results)

    class _StringIO(StringIO):
        def writeln(self, line):
            self.write("%s\n" % line)


893
class CythonUnitTestCase(CythonRunTestCase):
894
    def shortDescription(self):
Stefan Behnel's avatar
Stefan Behnel committed
895
        return "compiling (%s) tests in %s" % (self.language, self.module)
896

897 898 899 900 901
    def run_tests(self, result):
        unittest.defaultTestLoader.loadTestsFromName(self.module).run(result)


class CythonPyregrTestCase(CythonRunTestCase):
902 903 904 905
    def setUp(self):
        CythonRunTestCase.setUp(self)
        from Cython.Compiler import Options
        Options.error_on_unknown_names = False
906
        Options.directive_defaults.update(dict(binding=True, always_allow_keywords=True))
907

908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
    def _run_unittest(self, result, *classes):
        """Run tests from unittest.TestCase-derived classes."""
        valid_types = (unittest.TestSuite, unittest.TestCase)
        suite = unittest.TestSuite()
        for cls in classes:
            if isinstance(cls, str):
                if cls in sys.modules:
                    suite.addTest(unittest.findTestCases(sys.modules[cls]))
                else:
                    raise ValueError("str arguments must be keys in sys.modules")
            elif isinstance(cls, valid_types):
                suite.addTest(cls)
            else:
                suite.addTest(unittest.makeSuite(cls))
        suite.run(result)

    def _run_doctest(self, result, module):
        self.run_doctests(module, result)

    def run_tests(self, result):
928
        try:
929
            from test import support
Vitja Makarov's avatar
Vitja Makarov committed
930 931
        except ImportError: # Python2.x
            from test import test_support as support
932

933 934 935 936 937
        def run_test(result):
            def run_unittest(*classes):
                return self._run_unittest(result, *classes)
            def run_doctest(module, verbosity=None):
                return self._run_doctest(result, module)
938

939 940
            support.run_unittest = run_unittest
            support.run_doctest = run_doctest
941

942 943 944 945 946 947 948 949
            try:
                module = __import__(self.module)
                if hasattr(module, 'test_main'):
                    module.test_main()
            except (unittest.SkipTest, support.ResourceDenied):
                result.addSkip(self, 'ok')

        run_forked_test(result, run_test, self.shortDescription(), self.fork)
950

951
include_debugger = sys.version_info[:2] > (2, 5)
952

953
def collect_unittests(path, module_prefix, suite, selectors, exclude_selectors):
954 955 956 957 958 959 960
    def file_matches(filename):
        return filename.startswith("Test") and filename.endswith(".py")

    def package_matches(dirname):
        return dirname == "Tests"

    loader = unittest.TestLoader()
961

962 963 964
    if include_debugger:
        skipped_dirs = []
    else:
965
        skipped_dirs = ['Cython' + os.path.sep + 'Debugger' + os.path.sep]
966

967
    for dirpath, dirnames, filenames in os.walk(path):
968 969 970 971 972 973 974 975 976
        if dirpath != path and "__init__.py" not in filenames:
            skipped_dirs.append(dirpath + os.path.sep)
            continue
        skip = False
        for dir in skipped_dirs:
            if dirpath.startswith(dir):
                skip = True
        if skip:
            continue
977 978 979 980 981
        parentname = os.path.split(dirpath)[-1]
        if package_matches(parentname):
            for f in filenames:
                if file_matches(f):
                    filepath = os.path.join(dirpath, f)[:-len(".py")]
982
                    modulename = module_prefix + filepath[len(path)+1:].replace(os.path.sep, '.')
983 984
                    if not [ 1 for match in selectors if match(modulename) ]:
                        continue
985 986
                    if [ 1 for match in exclude_selectors if match(modulename) ]:
                        continue
987 988 989
                    module = __import__(modulename)
                    for x in modulename.split('.')[1:]:
                        module = getattr(module, x)
Robert Bradshaw's avatar
Robert Bradshaw committed
990
                    suite.addTests([loader.loadTestsFromModule(module)])
991

992 993


994
def collect_doctests(path, module_prefix, suite, selectors, exclude_selectors):
995
    def package_matches(dirname):
996 997
        if dirname == 'Debugger' and not include_debugger:
            return False
998 999
        return dirname not in ("Mac", "Distutils", "Plex")
    def file_matches(filename):
Mark Florisson's avatar
Tests!  
Mark Florisson committed
1000
        filename, ext = os.path.splitext(filename)
1001
        blacklist = ['libcython', 'libpython', 'test_libcython_in_gdb',
1002
                     'TestLibCython']
Mark Florisson's avatar
Tests!  
Mark Florisson committed
1003 1004 1005 1006 1007
        return (ext == '.py' and not
                '~' in filename and not
                '#' in filename and not
                filename.startswith('.') and not
                filename in blacklist)
Stefan Behnel's avatar
Stefan Behnel committed
1008
    import doctest
1009
    for dirpath, dirnames, filenames in os.walk(path):
Robert Bradshaw's avatar
Robert Bradshaw committed
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
        for dir in list(dirnames):
            if not package_matches(dir):
                dirnames.remove(dir)
        for f in filenames:
            if file_matches(f):
                if not f.endswith('.py'): continue
                filepath = os.path.join(dirpath, f)
                if os.path.getsize(filepath) == 0: continue
                filepath = filepath[:-len(".py")]
                modulename = module_prefix + filepath[len(path)+1:].replace(os.path.sep, '.')
                if not [ 1 for match in selectors if match(modulename) ]:
                    continue
1022 1023
                if [ 1 for match in exclude_selectors if match(modulename) ]:
                    continue
Robert Bradshaw's avatar
Robert Bradshaw committed
1024 1025 1026
                if 'in_gdb' in modulename:
                    # These should only be imported from gdb.
                    continue
Robert Bradshaw's avatar
Robert Bradshaw committed
1027 1028 1029 1030 1031 1032 1033 1034
                module = __import__(modulename)
                for x in modulename.split('.')[1:]:
                    module = getattr(module, x)
                if hasattr(module, "__doc__") or hasattr(module, "__test__"):
                    try:
                        suite.addTest(doctest.DocTestSuite(module))
                    except ValueError: # no tests
                        pass
1035

1036 1037 1038 1039 1040 1041

class EndToEndTest(unittest.TestCase):
    """
    This is a test of build/*.srctree files, where srctree defines a full
    directory structure and its header gives a list of commands to run.
    """
Robert Bradshaw's avatar
Robert Bradshaw committed
1042
    cython_root = os.path.dirname(os.path.abspath(__file__))
1043

1044
    def __init__(self, treefile, workdir, cleanup_workdir=True):
1045
        self.name = os.path.splitext(os.path.basename(treefile))[0]
1046
        self.treefile = treefile
1047
        self.workdir = os.path.join(workdir, self.name)
1048
        self.cleanup_workdir = cleanup_workdir
1049 1050 1051 1052 1053 1054 1055 1056
        cython_syspath = self.cython_root
        for path in sys.path[::-1]:
            if path.startswith(self.cython_root):
                # Py3 installation and refnanny build prepend their
                # fixed paths to sys.path => prefer that over the
                # generic one
                cython_syspath = path + os.pathsep + cython_syspath
        self.cython_syspath = cython_syspath
1057 1058 1059
        unittest.TestCase.__init__(self)

    def shortDescription(self):
1060
        return "End-to-end %s" % self.name
1061 1062 1063

    def setUp(self):
        from Cython.TestUtils import unpack_source_tree
1064
        _, self.commands = unpack_source_tree(self.treefile, self.workdir)
1065 1066 1067 1068 1069 1070 1071
        self.old_dir = os.getcwd()
        os.chdir(self.workdir)
        if self.workdir not in sys.path:
            sys.path.insert(0, self.workdir)

    def tearDown(self):
        if self.cleanup_workdir:
1072 1073 1074 1075 1076 1077 1078
            for trial in range(5):
                try:
                    shutil.rmtree(self.workdir)
                except OSError:
                    time.sleep(0.1)
                else:
                    break
1079
        os.chdir(self.old_dir)
1080

1081 1082 1083 1084 1085 1086
    def _try_decode(self, content):
        try:
            return content.decode()
        except UnicodeDecodeError:
            return content.decode('iso-8859-1')

1087
    def runTest(self):
1088
        self.success = False
1089
        commands = (self.commands
Robert Bradshaw's avatar
Robert Bradshaw committed
1090
            .replace("CYTHON", "PYTHON %s" % os.path.join(self.cython_root, 'cython.py'))
1091
            .replace("PYTHON", sys.executable))
1092
        try:
Robert Bradshaw's avatar
Robert Bradshaw committed
1093
            old_path = os.environ.get('PYTHONPATH')
Robert Bradshaw's avatar
Robert Bradshaw committed
1094
            os.environ['PYTHONPATH'] = self.cython_syspath + os.pathsep + os.path.join(self.cython_syspath, (old_path or ''))
Robert Bradshaw's avatar
Robert Bradshaw committed
1095
            for command in commands.split('\n'):
Robert Bradshaw's avatar
Robert Bradshaw committed
1096 1097 1098 1099 1100 1101 1102 1103
                p = subprocess.Popen(commands,
                                     stderr=subprocess.PIPE,
                                     stdout=subprocess.PIPE,
                                     shell=True)
                out, err = p.communicate()
                res = p.returncode
                if res != 0:
                    print(command)
1104 1105
                    print(self._try_decode(out))
                    print(self._try_decode(err))
Robert Bradshaw's avatar
Robert Bradshaw committed
1106
                self.assertEqual(0, res, "non-zero exit status")
1107
        finally:
1108 1109 1110 1111
            if old_path:
                os.environ['PYTHONPATH'] = old_path
            else:
                del os.environ['PYTHONPATH']
1112
        self.success = True
1113 1114


1115 1116 1117 1118
# TODO: Support cython_freeze needed here as well.
# TODO: Windows support.

class EmbedTest(unittest.TestCase):
1119

1120
    working_dir = "Demos/embed"
1121

1122 1123 1124
    def setUp(self):
        self.old_dir = os.getcwd()
        os.chdir(self.working_dir)
1125
        os.system(
1126
            "make PYTHON='%s' clean > /dev/null" % sys.executable)
1127

1128 1129
    def tearDown(self):
        try:
1130 1131
            os.system(
                "make PYTHON='%s' clean > /dev/null" % sys.executable)
1132 1133 1134
        except:
            pass
        os.chdir(self.old_dir)
1135

1136
    def test_embed(self):
1137
        from distutils import sysconfig
1138
        libname = sysconfig.get_config_var('LIBRARY')
1139
        libdir = sysconfig.get_config_var('LIBDIR')
1140 1141 1142 1143 1144 1145 1146
        if not os.path.isdir(libdir) or libname not in os.listdir(libdir):
            libdir = os.path.join(os.path.dirname(sys.executable), '..', 'lib')
            if not os.path.isdir(libdir) or libname not in os.listdir(libdir):
                libdir = os.path.join(libdir, 'python%d.%d' % sys.version_info[:2], 'config')
                if not os.path.isdir(libdir) or libname not in os.listdir(libdir):
                    # report the error for the original directory
                    libdir = sysconfig.get_config_var('LIBDIR')
1147
        cython = 'cython.py'
Stefan Behnel's avatar
Stefan Behnel committed
1148
        if sys.version_info[0] >=3 and CY3_DIR:
1149 1150
            cython = os.path.join(CY3_DIR, cython)
        cython = os.path.abspath(os.path.join('..', '..', cython))
1151
        self.assert_(os.system(
1152
            "make PYTHON='%s' CYTHON='%s' LIBDIR1='%s' test > make.output" % (sys.executable, cython, libdir)) == 0)
1153 1154 1155 1156
        try:
            os.remove('make.output')
        except OSError:
            pass
1157

1158 1159
class MissingDependencyExcluder:
    def __init__(self, deps):
1160
        # deps: { matcher func : module name }
1161
        self.exclude_matchers = []
1162
        for matcher, mod in deps.items():
1163 1164 1165
            try:
                __import__(mod)
            except ImportError:
Robert Bradshaw's avatar
Robert Bradshaw committed
1166
                self.exclude_matchers.append(string_selector(matcher))
1167
        self.tests_missing_deps = []
Robert Bradshaw's avatar
Robert Bradshaw committed
1168
    def __call__(self, testname, tags=None):
1169
        for matcher in self.exclude_matchers:
Robert Bradshaw's avatar
Robert Bradshaw committed
1170
            if matcher(testname, tags):
1171 1172 1173 1174
                self.tests_missing_deps.append(testname)
                return True
        return False

1175 1176 1177 1178 1179
class VersionDependencyExcluder:
    def __init__(self, deps):
        # deps: { version : matcher func }
        from sys import version_info
        self.exclude_matchers = []
1180 1181
        for ver, (compare, matcher) in deps.items():
            if compare(version_info, ver):
1182 1183
                self.exclude_matchers.append(matcher)
        self.tests_missing_deps = []
Robert Bradshaw's avatar
Robert Bradshaw committed
1184
    def __call__(self, testname, tags=None):
1185 1186 1187 1188 1189 1190
        for matcher in self.exclude_matchers:
            if matcher(testname):
                self.tests_missing_deps.append(testname)
                return True
        return False

1191 1192 1193 1194
class FileListExcluder:

    def __init__(self, list_file):
        self.excludes = {}
1195 1196 1197 1198 1199 1200 1201 1202
        f = open(list_file)
        try:
            for line in f.readlines():
                line = line.strip()
                if line and line[0] != '#':
                    self.excludes[line.split()[0]] = True
        finally:
            f.close()
1203

Robert Bradshaw's avatar
Robert Bradshaw committed
1204
    def __call__(self, testname, tags=None):
1205
        return testname in self.excludes or testname.split('.')[-1] in self.excludes
1206

Robert Bradshaw's avatar
Robert Bradshaw committed
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
class TagsSelector:

    def __init__(self, tag, value):
        self.tag = tag
        self.value = value
    
    def __call__(self, testname, tags=None):
        if tags is None:
            return False
        else:
            return self.value in tags[self.tag]

class RegExSelector:
    
    def __init__(self, pattern_string):
1222 1223 1224 1225 1226
        try:
            self.pattern = re.compile(pattern_string, re.I|re.U)
        except re.error:
            print('Invalid pattern: %r' % pattern_string)
            raise
Robert Bradshaw's avatar
Robert Bradshaw committed
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236

    def __call__(self, testname, tags=None):
        return self.pattern.search(testname)

def string_selector(s):
    ix = s.find(':')
    if ix == -1:
        return RegExSelector(s)
    else:
        return TagsSelector(s[:ix], s[ix+1:])
1237 1238 1239

class ShardExcludeSelector:
    # This is an exclude selector so it can override the (include) selectors.
Robert Bradshaw's avatar
Robert Bradshaw committed
1240 1241
    # It may not provide uniform distribution (in time or count), but is a
    # determanistic partition of the tests which is important.
1242 1243 1244 1245 1246 1247
    def __init__(self, shard_num, shard_count):
        self.shard_num = shard_num
        self.shard_count = shard_count

    def __call__(self, testname, tags=None):
        return abs(hash(testname)) % self.shard_count != self.shard_num
Robert Bradshaw's avatar
Robert Bradshaw committed
1248 1249
        

1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
def refactor_for_py3(distdir, cy3_dir):
    # need to convert Cython sources first
    import lib2to3.refactor
    from distutils.util import copydir_run_2to3
    fixers = [ fix for fix in lib2to3.refactor.get_fixers_from_package("lib2to3.fixes")
               if fix.split('fix_')[-1] not in ('next',)
               ]
    if not os.path.exists(cy3_dir):
        os.makedirs(cy3_dir)
    import distutils.log as dlog
1260
    dlog.set_threshold(dlog.INFO)
1261 1262 1263 1264 1265 1266
    copydir_run_2to3(distdir, cy3_dir, fixer_names=fixers,
                     template = '''
                     global-exclude *
                     graft Cython
                     recursive-exclude Cython *
                     recursive-include Cython *.py *.pyx *.pxd
Mark Florisson's avatar
Mark Florisson committed
1267
                     recursive-include Cython/Debugger/Tests *
1268
                     recursive-include Cython/Utility *
1269 1270
                     recursive-exclude pyximport test
                     include pyximport/*.py
1271
                     include runtests.py
1272
                     include cython.py
1273 1274 1275
                     ''')
    sys.path.insert(0, cy3_dir)

1276 1277 1278 1279
    for keep_2x_file in KEEP_2X_FILES:
        destfile = os.path.join(cy3_dir, keep_2x_file)
        shutil.copy(keep_2x_file, destfile)

1280 1281
class PendingThreadsError(RuntimeError):
    pass
1282

1283 1284 1285
threads_seen = []

def check_thread_termination(ignore_seen=True):
1286 1287 1288 1289 1290 1291 1292 1293 1294
    if threading is None: # no threading enabled in CPython
        return
    current = threading.currentThread()
    blocking_threads = []
    for t in threading.enumerate():
        if not t.isAlive() or t == current:
            continue
        t.join(timeout=2)
        if t.isAlive():
1295 1296 1297
            if not ignore_seen:
                blocking_threads.append(t)
                continue
1298 1299 1300 1301 1302 1303
            for seen in threads_seen:
                if t is seen:
                    break
            else:
                threads_seen.append(t)
                blocking_threads.append(t)
1304 1305 1306 1307 1308
    if not blocking_threads:
        return
    sys.stderr.write("warning: left-over threads found after running test:\n")
    for t in blocking_threads:
        sys.stderr.write('...%s\n'  % repr(t))
1309
    raise PendingThreadsError("left-over threads found after running test")
1310

1311 1312
def subprocess_output(cmd):
    try:
Mark Florisson's avatar
Mark Florisson committed
1313 1314
        p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
        return p.communicate()[0].decode('UTF-8')
1315 1316 1317 1318 1319 1320 1321 1322
    except OSError:
        return ''

def get_version():
    from Cython.Compiler.Version import version as cython_version
    full_version = cython_version
    top = os.path.dirname(os.path.abspath(__file__))
    if os.path.exists(os.path.join(top, '.git')):
Stefan Behnel's avatar
Stefan Behnel committed
1323
        old_dir = os.getcwd()
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
        try:
            os.chdir(top)
            head_commit = subprocess_output(['git', 'rev-parse', 'HEAD']).strip()
            version_commit = subprocess_output(['git', 'rev-parse', cython_version]).strip()
            diff = subprocess_output(['git', 'diff', '--stat']).strip()
            if head_commit != version_commit:
                full_version += " " + head_commit
            if diff:
                full_version += ' + uncommitted changes'
        finally:
            os.chdir(old_dir)
    return full_version

1337 1338 1339 1340 1341 1342 1343 1344
_orig_stdout, _orig_stderr = sys.stdout, sys.stderr
def flush_and_terminate(status):
    try:
        _orig_stdout.flush()
        _orig_stderr.flush()
    finally:
        os._exit(status)

1345
def main():
1346

1347
    global DISTDIR
1348 1349
    DISTDIR = os.path.join(os.getcwd(), os.path.dirname(sys.argv[0]))

1350 1351 1352
    from optparse import OptionParser
    parser = OptionParser()
    parser.add_option("--no-cleanup", dest="cleanup_workdir",
Stefan Behnel's avatar
Stefan Behnel committed
1353 1354
                      action="store_false", default=True,
                      help="do not delete the generated C files (allows passing --no-cython on next run)")
1355 1356 1357
    parser.add_option("--no-cleanup-sharedlibs", dest="cleanup_sharedlibs",
                      action="store_false", default=True,
                      help="do not delete the generated shared libary files (allows manual module experimentation)")
1358 1359 1360
    parser.add_option("--no-cleanup-failures", dest="cleanup_failures",
                      action="store_false", default=True,
                      help="enable --no-cleanup and --no-cleanup-sharedlibs for failed tests only")
Stefan Behnel's avatar
Stefan Behnel committed
1361 1362 1363
    parser.add_option("--no-cython", dest="with_cython",
                      action="store_false", default=True,
                      help="do not run the Cython compiler, only the C compiler")
1364 1365
    parser.add_option("--compiler", dest="compiler", default=None,
                      help="C compiler type")
1366 1367 1368
    backend_list = ','.join(BACKENDS)
    parser.add_option("--backends", dest="backends", default=backend_list,
                      help="select backends to test (default: %s)" % backend_list)
Stefan Behnel's avatar
Stefan Behnel committed
1369 1370
    parser.add_option("--no-c", dest="use_c",
                      action="store_false", default=True,
1371
                      help="do not test C compilation backend")
Stefan Behnel's avatar
Stefan Behnel committed
1372 1373
    parser.add_option("--no-cpp", dest="use_cpp",
                      action="store_false", default=True,
1374
                      help="do not test C++ compilation backend")
1375 1376 1377
    parser.add_option("--no-unit", dest="unittests",
                      action="store_false", default=True,
                      help="do not run the unit tests")
1378 1379 1380
    parser.add_option("--no-doctest", dest="doctests",
                      action="store_false", default=True,
                      help="do not run the doctests")
1381 1382 1383
    parser.add_option("--no-file", dest="filetests",
                      action="store_false", default=True,
                      help="do not run the file based tests")
1384 1385
    parser.add_option("--no-pyregr", dest="pyregr",
                      action="store_false", default=True,
1386
                      help="do not run the regression tests of CPython in tests/pyregr/")
Stefan Behnel's avatar
Stefan Behnel committed
1387
    parser.add_option("--cython-only", dest="cython_only",
1388 1389
                      action="store_true", default=False,
                      help="only compile pyx to c, do not run C compiler or run the tests")
1390
    parser.add_option("--no-refnanny", dest="with_refnanny",
Stefan Behnel's avatar
Stefan Behnel committed
1391
                      action="store_false", default=True,
1392
                      help="do not regression test reference counting")
1393 1394 1395
    parser.add_option("--no-fork", dest="fork",
                      action="store_false", default=True,
                      help="do not fork to run tests")
1396 1397 1398
    parser.add_option("--sys-pyregr", dest="system_pyregr",
                      action="store_true", default=False,
                      help="run the regression tests of the CPython installation")
1399 1400 1401
    parser.add_option("-x", "--exclude", dest="exclude",
                      action="append", metavar="PATTERN",
                      help="exclude tests matching the PATTERN")
1402 1403 1404 1405 1406 1407
    parser.add_option("--shard_count", dest="shard_count", metavar="N",
                      type=int, default=1,
                      help="shard this run into several parallel runs")
    parser.add_option("--shard_num", dest="shard_num", metavar="K",
                      type=int, default=-1,
                      help="test only this single shard")
1408
    parser.add_option("-C", "--coverage", dest="coverage",
Stefan Behnel's avatar
Stefan Behnel committed
1409 1410
                      action="store_true", default=False,
                      help="collect source coverage data for the Compiler")
1411 1412 1413
    parser.add_option("--coverage-xml", dest="coverage_xml",
                      action="store_true", default=False,
                      help="collect source coverage data for the Compiler in XML format")
Stefan Behnel's avatar
Stefan Behnel committed
1414 1415 1416
    parser.add_option("--coverage-html", dest="coverage_html",
                      action="store_true", default=False,
                      help="collect source coverage data for the Compiler in HTML format")
Stefan Behnel's avatar
Stefan Behnel committed
1417
    parser.add_option("-A", "--annotate", dest="annotate_source",
1418
                      action="store_true", default=True,
Stefan Behnel's avatar
Stefan Behnel committed
1419
                      help="generate annotated HTML versions of the test source files")
1420 1421 1422
    parser.add_option("--no-annotate", dest="annotate_source",
                      action="store_false",
                      help="do not generate annotated HTML versions of the test source files")
1423
    parser.add_option("-v", "--verbose", dest="verbosity",
Stefan Behnel's avatar
Stefan Behnel committed
1424 1425
                      action="count", default=0,
                      help="display test progress, pass twice to print test names")
1426 1427
    parser.add_option("-T", "--ticket", dest="tickets",
                      action="append",
1428
                      help="a bug ticket number to run the respective test in 'tests/*'")
1429 1430 1431
    parser.add_option("-3", dest="language_level",
                      action="store_const", const=3, default=2,
                      help="set language level to Python 3 (useful for running the CPython regression tests)'")
1432 1433
    parser.add_option("--xml-output", dest="xml_output_dir", metavar="DIR",
                      help="write test results in XML to directory DIR")
1434 1435 1436
    parser.add_option("--exit-ok", dest="exit_ok", default=False,
                      action="store_true",
                      help="exit without error code even on test failures")
1437 1438 1439 1440
    parser.add_option("--root-dir", dest="root_dir", default=os.path.join(DISTDIR, 'tests'),
                      help="working directory")
    parser.add_option("--work-dir", dest="work_dir", default=os.path.join(os.getcwd(), 'BUILD'),
                      help="working directory")
1441 1442
    parser.add_option("--cython-dir", dest="cython_dir", default=os.getcwd(),
                      help="Cython installation directory (default: use local source version)")
1443 1444
    parser.add_option("--debug", dest="for_debugging", default=False, action="store_true",
                      help="configure for easier use with a debugger (e.g. gdb)")
1445 1446
    parser.add_option("--pyximport-py", dest="pyximport_py", default=False, action="store_true",
                      help="use pyximport to automatically compile imported .pyx and .py files")
1447 1448 1449

    options, cmd_args = parser.parse_args()

1450
    WORKDIR = os.path.abspath(options.work_dir)
1451
    
1452 1453
    if sys.version_info[0] >= 3:
        options.doctests = False
1454
        if options.with_cython:
1455
            sys.path.insert(0, options.cython_dir)
1456 1457 1458 1459
            try:
                # try if Cython is installed in a Py3 version
                import Cython.Compiler.Main
            except Exception:
Stefan Behnel's avatar
comment  
Stefan Behnel committed
1460 1461
                # back out anything the import process loaded, then
                # 2to3 the Cython sources to make them re-importable
1462
                cy_modules = [ name for name in sys.modules
Stefan Behnel's avatar
Stefan Behnel committed
1463
                               if name == 'Cython' or name.startswith('Cython.') ]
1464 1465 1466
                for name in cy_modules:
                    del sys.modules[name]
                # hasn't been refactored yet - do it now
1467 1468
                global CY3_DIR
                CY3_DIR = cy3_dir = os.path.join(WORKDIR, 'Cy3')
1469 1470 1471 1472 1473 1474
                if sys.version_info >= (3,1):
                    refactor_for_py3(DISTDIR, cy3_dir)
                elif os.path.isdir(cy3_dir):
                    sys.path.insert(0, cy3_dir)
                else:
                    options.with_cython = False
1475

1476
    WITH_CYTHON = options.with_cython
1477

1478
    coverage = None
Stefan Behnel's avatar
Stefan Behnel committed
1479
    if options.coverage or options.coverage_xml or options.coverage_html:
1480
        if options.shard_count <= 1 and options.shard_num < 0:
1481 1482 1483
            if not WITH_CYTHON:
                options.coverage = options.coverage_xml = options.coverage_html = False
            else:
1484
                print("Enabling coverage analysis")
1485
                from coverage import coverage as _coverage
1486
                coverage = _coverage(branch=True, omit=['Test*'])
1487 1488
                coverage.erase()
                coverage.start()
1489

1490
    if WITH_CYTHON:
1491
        global CompilationOptions, pyrex_default_options, cython_compile
1492 1493 1494 1495
        from Cython.Compiler.Main import \
            CompilationOptions, \
            default_options as pyrex_default_options, \
            compile as cython_compile
1496 1497
        from Cython.Compiler import Errors
        Errors.LEVEL = 0 # show all warnings
Stefan Behnel's avatar
cleanup  
Stefan Behnel committed
1498
        from Cython.Compiler import Options
1499
        Options.generate_cleanup_code = 3   # complete cleanup code
Stefan Behnel's avatar
cleanup  
Stefan Behnel committed
1500 1501
        from Cython.Compiler import DebugFlags
        DebugFlags.debug_temp_code_comments = 1
1502

1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515
    if options.shard_count > 1 and options.shard_num == -1:
        import multiprocessing
        pool = multiprocessing.Pool(options.shard_count)
        tasks = [(options, cmd_args, shard_num) for shard_num in range(options.shard_count)]
        errors = []
        for shard_num, return_code in pool.imap_unordered(runtests_callback, tasks):
            if return_code != 0:
                errors.append(shard_num)
                print("FAILED (%s/%s)" % (shard_num, options.shard_count))
            print("ALL DONE (%s/%s)" % (shard_num, options.shard_count))
        pool.close()
        pool.join()
        if errors:
Stefan Behnel's avatar
Stefan Behnel committed
1516
            print("Errors for shards %s" % ", ".join([str(e) for e in errors]))
1517 1518 1519 1520
            return_code = 1
        else:
            return_code = 0
    else:
1521
        _, return_code = runtests(options, cmd_args, coverage)
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
    print("ALL DONE")


    try:
        check_thread_termination(ignore_seen=False)
        sys.exit(return_code)
    except PendingThreadsError:
        # normal program exit won't kill the threads, do it the hard way here
        flush_and_terminate(return_code)


def runtests_callback(args):
    options, cmd_args, shard_num = args
    options.shard_num = shard_num
    return runtests(options, cmd_args)

1538
def runtests(options, cmd_args, coverage=None):
1539

1540 1541 1542 1543 1544 1545 1546
    WITH_CYTHON = options.with_cython
    ROOTDIR = os.path.abspath(options.root_dir)
    WORKDIR = os.path.abspath(options.work_dir)

    if options.shard_num > -1:
        WORKDIR = os.path.join(WORKDIR, str(options.shard_num))
    
1547
    # RUN ALL TESTS!
1548
    UNITTEST_MODULE = "Cython"
1549
    UNITTEST_ROOT = os.path.join(os.path.dirname(__file__), UNITTEST_MODULE)
1550 1551
    if WITH_CYTHON:
        if os.path.exists(WORKDIR):
1552
            for path in os.listdir(WORKDIR):
1553
                if path in ("support", "Cy3"): continue
1554
                shutil.rmtree(os.path.join(WORKDIR, path), ignore_errors=True)
1555 1556
    if not os.path.exists(WORKDIR):
        os.makedirs(WORKDIR)
1557

1558 1559 1560 1561 1562 1563 1564
    if options.shard_num <= 0:
        sys.stderr.write("Python %s\n" % sys.version)
        sys.stderr.write("\n")
        if WITH_CYTHON:
            sys.stderr.write("Running tests against Cython %s\n" % get_version())
        else:
            sys.stderr.write("Running tests without Cython.\n")
1565

1566 1567 1568 1569
    if options.for_debugging:
        options.cleanup_workdir = False
        options.cleanup_sharedlibs = False
        options.fork = False
1570 1571 1572 1573
        if WITH_CYTHON:
            from Cython.Compiler.Main import default_options as compiler_default_options
            compiler_default_options['gdb_debug'] = True
            compiler_default_options['output_dir'] = os.getcwd()
1574

1575 1576 1577 1578 1579
    if options.with_refnanny:
        from pyximport.pyxbuild import pyx_to_dll
        libpath = pyx_to_dll(os.path.join("Cython", "Runtime", "refnanny.pyx"),
                             build_in_temp=True,
                             pyxbuild_dir=os.path.join(WORKDIR, "support"))
1580
        sys.path.insert(0, os.path.split(libpath)[0])
1581
        CFLAGS.append("-DCYTHON_REFNANNY=1")
1582

Stefan Behnel's avatar
cleanup  
Stefan Behnel committed
1583 1584 1585 1586 1587
    if options.xml_output_dir and options.fork:
        # doesn't currently work together
        sys.stderr.write("Disabling forked testing to support XML test output\n")
        options.fork = False

1588 1589 1590
    if WITH_CYTHON and options.language_level == 3:
        sys.stderr.write("Using Cython language level 3.\n")

1591
    test_bugs = False
Stefan Behnel's avatar
Stefan Behnel committed
1592 1593 1594
    if options.tickets:
        for ticket_number in options.tickets:
            test_bugs = True
Robert Bradshaw's avatar
Robert Bradshaw committed
1595
            cmd_args.append('ticket:%s' % ticket_number)
1596 1597 1598 1599
    if not test_bugs:
        for selector in cmd_args:
            if selector.startswith('bugs'):
                test_bugs = True
1600

Robert Bradshaw's avatar
Robert Bradshaw committed
1601
    selectors = [ string_selector(r) for r in cmd_args ]
1602
    if not selectors:
Robert Bradshaw's avatar
Robert Bradshaw committed
1603
        selectors = [ lambda x, tags=None: True ]
1604

1605 1606 1607
    # Chech which external modules are not present and exclude tests
    # which depends on them (by prefix)

1608 1609
    missing_dep_excluder = MissingDependencyExcluder(EXT_DEP_MODULES)
    version_dep_excluder = VersionDependencyExcluder(VER_DEP_MODULES)
Robert Bradshaw's avatar
cleanup  
Robert Bradshaw committed
1610
    exclude_selectors = [missing_dep_excluder, version_dep_excluder] # want to print msg at exit
1611

1612
    if options.exclude:
Robert Bradshaw's avatar
Robert Bradshaw committed
1613
        exclude_selectors += [ string_selector(r) for r in options.exclude ]
1614

1615 1616 1617
    if options.shard_num > -1:
        exclude_selectors.append(ShardExcludeSelector(options.shard_num, options.shard_count))

1618
    if not test_bugs:
1619
        exclude_selectors += [ FileListExcluder(os.path.join(ROOTDIR, "bugs.txt")) ]
1620

1621 1622
    if sys.platform in ['win32', 'cygwin'] and sys.version_info < (2,6):
        exclude_selectors += [ lambda x: x == "run.specialfloat" ]
1623

1624 1625 1626
    global COMPILER
    if options.compiler:
        COMPILER = options.compiler
1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639

    selected_backends = [ name.strip() for name in options.backends.split(',') if name.strip() ]
    backends = []
    for backend in selected_backends:
        if backend == 'c' and not options.use_c:
            continue
        elif backend == 'cpp' and not options.use_cpp:
            continue
        elif backend not in BACKENDS:
            sys.stderr.write("Unknown backend requested: '%s' not one of [%s]\n" % (
                backend, ','.join(BACKENDS)))
            sys.exit(1)
        backends.append(backend)
1640 1641
    if options.shard_num <= 0:
        sys.stderr.write("Backends: %s\n" % ','.join(backends))
1642 1643 1644
    languages = backends

    sys.stderr.write("\n")
Stefan Behnel's avatar
Stefan Behnel committed
1645

1646 1647 1648
    test_suite = unittest.TestSuite()

    if options.unittests:
1649
        collect_unittests(UNITTEST_ROOT, UNITTEST_MODULE + ".", test_suite, selectors, exclude_selectors)
1650

1651
    if options.doctests:
1652
        collect_doctests(UNITTEST_ROOT, UNITTEST_MODULE + ".", test_suite, selectors, exclude_selectors)
1653

Stefan Behnel's avatar
Stefan Behnel committed
1654
    if options.filetests and languages:
1655
        filetests = TestBuilder(ROOTDIR, WORKDIR, selectors, exclude_selectors,
1656
                                options.annotate_source, options.cleanup_workdir,
1657 1658
                                options.cleanup_sharedlibs, options.cleanup_failures,
                                options.pyregr,
1659
                                options.cython_only, languages, test_bugs,
1660
                                options.fork, options.language_level)
1661 1662
        test_suite.addTest(filetests.build_suite())

Stefan Behnel's avatar
Stefan Behnel committed
1663
    if options.system_pyregr and languages:
1664 1665 1666 1667
        sys_pyregr_dir = os.path.join(sys.prefix, 'lib', 'python'+sys.version[:3], 'test')
        if os.path.isdir(sys_pyregr_dir):
            filetests = TestBuilder(ROOTDIR, WORKDIR, selectors, exclude_selectors,
                                    options.annotate_source, options.cleanup_workdir,
1668 1669
                                    options.cleanup_sharedlibs, options.cleanup_failures,
                                    True,
1670
                                    options.cython_only, languages, test_bugs,
1671
                                    options.fork, sys.version_info[0])
1672 1673
            sys.stderr.write("Including CPython regression tests in %s\n" % sys_pyregr_dir)
            test_suite.addTest(filetests.handle_directory(sys_pyregr_dir, 'pyregr'))
1674

Stefan Behnel's avatar
Stefan Behnel committed
1675
    if options.xml_output_dir:
1676
        from Cython.Tests.xmlrunner import XMLTestRunner
Stefan Behnel's avatar
Stefan Behnel committed
1677 1678
        test_runner = XMLTestRunner(output=options.xml_output_dir,
                                    verbose=options.verbosity > 0)
1679 1680 1681
    else:
        test_runner = unittest.TextTestRunner(verbosity=options.verbosity)

1682
    if options.pyximport_py:
1683
        from pyximport import pyximport
1684 1685
        pyximport.install(pyimport=True, build_dir=os.path.join(WORKDIR, '_pyximport'),
                          load_py_module_on_import_failure=True)
1686

1687
    result = test_runner.run(test_suite)
1688

1689
    if coverage is not None:
1690
        coverage.stop()
1691
        ignored_modules = ('Options', 'Version', 'DebugFlags', 'CmdLine')
1692 1693
        modules = [ module for name, module in sys.modules.items()
                    if module is not None and
1694
                    name.startswith('Cython.Compiler.') and
1695
                    name[len('Cython.Compiler.'):] not in ignored_modules ]
1696 1697 1698
        if options.coverage:
            coverage.report(modules, show_missing=0)
        if options.coverage_xml:
Stefan Behnel's avatar
Stefan Behnel committed
1699
            coverage.xml_report(modules, outfile="coverage-report.xml")
Stefan Behnel's avatar
Stefan Behnel committed
1700 1701
        if options.coverage_html:
            coverage.html_report(modules, directory="coverage-report-html")
1702 1703 1704 1705 1706

    if missing_dep_excluder.tests_missing_deps:
        sys.stderr.write("Following tests excluded because of missing dependencies on your system:\n")
        for test in missing_dep_excluder.tests_missing_deps:
            sys.stderr.write("   %s\n" % test)
1707

1708
    if options.with_refnanny:
Dag Sverre Seljebotn's avatar
Cleanup  
Dag Sverre Seljebotn committed
1709
        import refnanny
1710
        sys.stderr.write("\n".join([repr(x) for x in refnanny.reflog]))
1711

1712
    if options.exit_ok:
1713
        return options.shard_num, 0
1714
    else:
1715
        return options.shard_num, not result.wasSuccessful()
1716 1717 1718 1719 1720


if __name__ == '__main__':
    try:
        main()
Stefan Behnel's avatar
Stefan Behnel committed
1721 1722
    except SystemExit: # <= Py2.4 ...
        raise
1723 1724 1725 1726 1727 1728
    except Exception:
        traceback.print_exc()
        try:
            check_thread_termination(ignore_seen=False)
        except PendingThreadsError:
            # normal program exit won't kill the threads, do it the hard way here
1729
            flush_and_terminate(1)