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