blob: 6575b11c1a9e00d7833b726098f8fff5dd690780 [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 Glassc3a13cc2020-04-17 18:08:55 -060013from io import StringIO
Simon Glassc3f94542018-07-06 10:27:34 -060014
15
Simon Glassff1fd6c2018-07-06 10:27:23 -060016def RunTestCoverage(prog, filter_fname, exclude_list, build_dir, required=None):
17 """Run tests and check that we get 100% coverage
18
19 Args:
20 prog: Program to run (with be passed a '-t' argument to run tests
21 filter_fname: Normally all *.py files in the program's directory will
22 be included. If this is not None, then it is used to filter the
23 list so that only filenames that don't contain filter_fname are
24 included.
25 exclude_list: List of file patterns to exclude from the coverage
26 calculation
27 build_dir: Build directory, used to locate libfdt.py
28 required: List of modules which must be in the coverage report
29
30 Raises:
31 ValueError if the code coverage is not 100%
32 """
33 # This uses the build output from sandbox_spl to get _libfdt.so
34 path = os.path.dirname(prog)
35 if filter_fname:
36 glob_list = glob.glob(os.path.join(path, '*.py'))
37 glob_list = [fname for fname in glob_list if filter_fname in fname]
38 else:
39 glob_list = []
40 glob_list += exclude_list
Simon Glass9550f9a2019-05-17 22:00:54 -060041 glob_list += ['*libfdt.py', '*site-packages*', '*dist-packages*']
Simon Glassc07ab6e2020-04-17 18:08:58 -060042 test_cmd = 'test' if 'binman' in prog else '-t'
Simon Glass428e7732020-04-17 18:09:00 -060043 prefix = ''
44 if build_dir:
45 prefix = 'PYTHONPATH=$PYTHONPATH:%s/sandbox_spl/tools ' % build_dir
46 cmd = ('%spython3-coverage run '
47 '--omit "%s" %s %s -P1' % (prefix, ','.join(glob_list),
Simon Glass53cd5d92019-07-08 14:25:29 -060048 prog, test_cmd))
Simon Glassff1fd6c2018-07-06 10:27:23 -060049 os.system(cmd)
Simon Glass428e7732020-04-17 18:09:00 -060050 stdout = command.Output('python3-coverage', 'report')
Simon Glassff1fd6c2018-07-06 10:27:23 -060051 lines = stdout.splitlines()
52 if required:
53 # Convert '/path/to/name.py' just the module name 'name'
54 test_set = set([os.path.splitext(os.path.basename(line.split()[0]))[0]
55 for line in lines if '/etype/' in line])
56 missing_list = required
Simon Glasse4304402019-07-08 14:25:32 -060057 missing_list.discard('__init__')
Simon Glassff1fd6c2018-07-06 10:27:23 -060058 missing_list.difference_update(test_set)
59 if missing_list:
Simon Glass5a1af1d2019-05-14 15:53:36 -060060 print('Missing tests for %s' % (', '.join(missing_list)))
61 print(stdout)
Simon Glassff1fd6c2018-07-06 10:27:23 -060062 ok = False
63
64 coverage = lines[-1].split(' ')[-1]
65 ok = True
Simon Glass5a1af1d2019-05-14 15:53:36 -060066 print(coverage)
Simon Glassff1fd6c2018-07-06 10:27:23 -060067 if coverage != '100%':
Simon Glass5a1af1d2019-05-14 15:53:36 -060068 print(stdout)
Simon Glass428e7732020-04-17 18:09:00 -060069 print("Type 'python3-coverage html' to get a report in "
70 'htmlcov/index.html')
Simon Glass5a1af1d2019-05-14 15:53:36 -060071 print('Coverage error: %s, but should be 100%%' % coverage)
Simon Glassff1fd6c2018-07-06 10:27:23 -060072 ok = False
73 if not ok:
74 raise ValueError('Test coverage failure')
Simon Glassc3f94542018-07-06 10:27:34 -060075
76
77# Use this to suppress stdout/stderr output:
78# with capture_sys_output() as (stdout, stderr)
79# ...do something...
80@contextmanager
81def capture_sys_output():
82 capture_out, capture_err = StringIO(), StringIO()
83 old_out, old_err = sys.stdout, sys.stderr
84 try:
85 sys.stdout, sys.stderr = capture_out, capture_err
86 yield capture_out, capture_err
87 finally:
88 sys.stdout, sys.stderr = old_out, old_err