blob: 4338dbcd282952cc0b275ebcf56bb2e58a090afc [file] [log] [blame]
Simon Glassff1fd6c2018-07-06 10:27:23 -06001# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright (c) 2016 Google, Inc
4#
5
Simon Glassc3f94542018-07-06 10:27:34 -06006from contextlib import contextmanager
Simon Glassff1fd6c2018-07-06 10:27:23 -06007import glob
8import os
9import sys
10
11import command
12
Simon Glassc3f94542018-07-06 10:27:34 -060013try:
14 from StringIO import StringIO
15except ImportError:
16 from io import StringIO
17
Simon Glass9550f9a2019-05-17 22:00:54 -060018PYTHON = 'python%d' % sys.version_info[0]
19
Simon Glassc3f94542018-07-06 10:27:34 -060020
Simon Glassff1fd6c2018-07-06 10:27:23 -060021def RunTestCoverage(prog, filter_fname, exclude_list, build_dir, required=None):
22 """Run tests and check that we get 100% coverage
23
24 Args:
25 prog: Program to run (with be passed a '-t' argument to run tests
26 filter_fname: Normally all *.py files in the program's directory will
27 be included. If this is not None, then it is used to filter the
28 list so that only filenames that don't contain filter_fname are
29 included.
30 exclude_list: List of file patterns to exclude from the coverage
31 calculation
32 build_dir: Build directory, used to locate libfdt.py
33 required: List of modules which must be in the coverage report
34
35 Raises:
36 ValueError if the code coverage is not 100%
37 """
38 # This uses the build output from sandbox_spl to get _libfdt.so
39 path = os.path.dirname(prog)
40 if filter_fname:
41 glob_list = glob.glob(os.path.join(path, '*.py'))
42 glob_list = [fname for fname in glob_list if filter_fname in fname]
43 else:
44 glob_list = []
45 glob_list += exclude_list
Simon Glass9550f9a2019-05-17 22:00:54 -060046 glob_list += ['*libfdt.py', '*site-packages*', '*dist-packages*']
Simon Glass53cd5d92019-07-08 14:25:29 -060047 test_cmd = 'test' if 'binman.py' in prog else '-t'
Simon Glass9550f9a2019-05-17 22:00:54 -060048 cmd = ('PYTHONPATH=$PYTHONPATH:%s/sandbox_spl/tools %s-coverage run '
Simon Glass53cd5d92019-07-08 14:25:29 -060049 '--omit "%s" %s %s -P1' % (build_dir, PYTHON, ','.join(glob_list),
50 prog, test_cmd))
Simon Glassff1fd6c2018-07-06 10:27:23 -060051 os.system(cmd)
Simon Glass9550f9a2019-05-17 22:00:54 -060052 stdout = command.Output('%s-coverage' % PYTHON, 'report')
Simon Glassff1fd6c2018-07-06 10:27:23 -060053 lines = stdout.splitlines()
54 if required:
55 # Convert '/path/to/name.py' just the module name 'name'
56 test_set = set([os.path.splitext(os.path.basename(line.split()[0]))[0]
57 for line in lines if '/etype/' in line])
58 missing_list = required
Simon Glasse4304402019-07-08 14:25:32 -060059 missing_list.discard('__init__')
Simon Glassff1fd6c2018-07-06 10:27:23 -060060 missing_list.difference_update(test_set)
61 if missing_list:
Simon Glass5a1af1d2019-05-14 15:53:36 -060062 print('Missing tests for %s' % (', '.join(missing_list)))
63 print(stdout)
Simon Glassff1fd6c2018-07-06 10:27:23 -060064 ok = False
65
66 coverage = lines[-1].split(' ')[-1]
67 ok = True
Simon Glass5a1af1d2019-05-14 15:53:36 -060068 print(coverage)
Simon Glassff1fd6c2018-07-06 10:27:23 -060069 if coverage != '100%':
Simon Glass5a1af1d2019-05-14 15:53:36 -060070 print(stdout)
Simon Glass9550f9a2019-05-17 22:00:54 -060071 print("Type '%s-coverage html' to get a report in "
72 'htmlcov/index.html' % PYTHON)
Simon Glass5a1af1d2019-05-14 15:53:36 -060073 print('Coverage error: %s, but should be 100%%' % coverage)
Simon Glassff1fd6c2018-07-06 10:27:23 -060074 ok = False
75 if not ok:
76 raise ValueError('Test coverage failure')
Simon Glassc3f94542018-07-06 10:27:34 -060077
78
79# Use this to suppress stdout/stderr output:
80# with capture_sys_output() as (stdout, stderr)
81# ...do something...
82@contextmanager
83def capture_sys_output():
84 capture_out, capture_err = StringIO(), StringIO()
85 old_out, old_err = sys.stdout, sys.stderr
86 try:
87 sys.stdout, sys.stderr = capture_out, capture_err
88 yield capture_out, capture_err
89 finally:
90 sys.stdout, sys.stderr = old_out, old_err