summaryrefslogtreecommitdiffstats
path: root/third_party/python/dlmanager/check.py
blob: bcc842305e849bb15a64ffca889c2f6ecfadb8e6 (plain)
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
#!/usr/bin/env python
"""
Run flake8 checks and tests.
"""

import os
import argparse
import pipes
import shutil
import tempfile

from subprocess import check_call


def parse_args():
    parser = argparse.ArgumentParser()

    parser.add_argument('-C', '--with-coverage', action='store_true',
                        help="Generate coverage data from the tests run")
    parser.add_argument('-H', '--cover-html', action='store_true',
                        help='generate html files to see test coverage')
    return parser.parse_args()


def run(cmd, **kwargs):
    msg = 'Running: |%s|' % ' '.join(pipes.quote(c) for c in cmd)
    if kwargs.get('cwd'):
        msg += ' in %s' % kwargs['cwd']
    print(msg)
    check_call(cmd, **kwargs)


def rm(path):
    if os.path.isfile(path):
        os.unlink(path)
    elif os.path.isdir(path):
        shutil.rmtree(path)


if __name__ == '__main__':
    options = parse_args()

    here = os.path.dirname(os.path.abspath(__file__))
    os.chdir(here)

    run(['flake8', 'dlmanager', 'tests', 'setup.py', __file__])

    if options.with_coverage:
        rm('.coverage')
        test_run_cmd = ['coverage', 'run']
    else:
        test_run_cmd = ['python']

    tmpdir = tempfile.gettempdir()
    tmpfiles = set(os.listdir(tmpdir))
    run(test_run_cmd + ['setup.py', 'test'])

    remaining_tmpfiles = tmpfiles - set(os.listdir(tmpdir))
    assert not remaining_tmpfiles, "tests leaked some temp files: %s" % (
        ", ".join("`%s`" % os.path.join(tmpdir, f) for f in remaining_tmpfiles)
    )

    if options.with_coverage and options.cover_html:
        rm('htmlcov')
        run(['coverage', 'html'])
        print("See coverage: |firefox %s|"
              % os.path.join(here, 'htmlcov', 'index.html'))