Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 2 | # Copyright (c) 2015 Stephen Warren |
| 3 | # Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 4 | |
| 5 | # Implementation of pytest run-time hook functions. These are invoked by |
| 6 | # pytest at certain points during operation, e.g. startup, for each executed |
| 7 | # test, at shutdown etc. These hooks perform functions such as: |
| 8 | # - Parsing custom command-line options. |
| 9 | # - Pullilng in user-specified board configuration. |
| 10 | # - Creating the U-Boot console test fixture. |
| 11 | # - Creating the HTML log file. |
| 12 | # - Monitoring each test's results. |
| 13 | # - Implementing custom pytest markers. |
| 14 | |
| 15 | import atexit |
Tom Rini | fd31fc1 | 2019-10-24 11:59:21 -0400 | [diff] [blame] | 16 | import configparser |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 17 | import errno |
Tom Rini | fd31fc1 | 2019-10-24 11:59:21 -0400 | [diff] [blame] | 18 | import io |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 19 | import os |
| 20 | import os.path |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 21 | import pytest |
Stephen Warren | 1cd85f5 | 2016-02-08 14:44:16 -0700 | [diff] [blame] | 22 | import re |
Tom Rini | fd31fc1 | 2019-10-24 11:59:21 -0400 | [diff] [blame] | 23 | from _pytest.runner import runtestprotocol |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 24 | import sys |
| 25 | |
| 26 | # Globals: The HTML log file, and the connection to the U-Boot console. |
| 27 | log = None |
| 28 | console = None |
| 29 | |
| 30 | def mkdir_p(path): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 31 | """Create a directory path. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 32 | |
| 33 | This includes creating any intermediate/parent directories. Any errors |
| 34 | caused due to already extant directories are ignored. |
| 35 | |
| 36 | Args: |
| 37 | path: The directory path to create. |
| 38 | |
| 39 | Returns: |
| 40 | Nothing. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 41 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 42 | |
| 43 | try: |
| 44 | os.makedirs(path) |
| 45 | except OSError as exc: |
| 46 | if exc.errno == errno.EEXIST and os.path.isdir(path): |
| 47 | pass |
| 48 | else: |
| 49 | raise |
| 50 | |
| 51 | def pytest_addoption(parser): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 52 | """pytest hook: Add custom command-line options to the cmdline parser. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 53 | |
| 54 | Args: |
| 55 | parser: The pytest command-line parser. |
| 56 | |
| 57 | Returns: |
| 58 | Nothing. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 59 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 60 | |
| 61 | parser.addoption('--build-dir', default=None, |
| 62 | help='U-Boot build directory (O=)') |
| 63 | parser.addoption('--result-dir', default=None, |
| 64 | help='U-Boot test result/tmp directory') |
| 65 | parser.addoption('--persistent-data-dir', default=None, |
| 66 | help='U-Boot test persistent generated data directory') |
| 67 | parser.addoption('--board-type', '--bd', '-B', default='sandbox', |
| 68 | help='U-Boot board type') |
| 69 | parser.addoption('--board-identity', '--id', default='na', |
| 70 | help='U-Boot board identity/instance') |
| 71 | parser.addoption('--build', default=False, action='store_true', |
| 72 | help='Compile U-Boot before running tests') |
Simon Glass | f5ec7ee | 2020-03-18 09:43:01 -0600 | [diff] [blame] | 73 | parser.addoption('--buildman', default=False, action='store_true', |
| 74 | help='Use buildman to build U-Boot (assuming --build is given)') |
Stephen Warren | 89ab841 | 2016-02-04 16:11:50 -0700 | [diff] [blame] | 75 | parser.addoption('--gdbserver', default=None, |
| 76 | help='Run sandbox under gdbserver. The argument is the channel '+ |
| 77 | 'over which gdbserver should communicate, e.g. localhost:1234') |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 78 | |
| 79 | def pytest_configure(config): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 80 | """pytest hook: Perform custom initialization at startup time. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 81 | |
| 82 | Args: |
| 83 | config: The pytest configuration. |
| 84 | |
| 85 | Returns: |
| 86 | Nothing. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 87 | """ |
Simon Glass | cb10579 | 2019-12-01 19:34:18 -0700 | [diff] [blame] | 88 | def parse_config(conf_file): |
| 89 | """Parse a config file, loading it into the ubconfig container |
| 90 | |
| 91 | Args: |
| 92 | conf_file: Filename to load (within build_dir) |
| 93 | |
| 94 | Raises |
| 95 | Exception if the file does not exist |
| 96 | """ |
| 97 | dot_config = build_dir + '/' + conf_file |
| 98 | if not os.path.exists(dot_config): |
| 99 | raise Exception(conf_file + ' does not exist; ' + |
| 100 | 'try passing --build option?') |
| 101 | |
| 102 | with open(dot_config, 'rt') as f: |
| 103 | ini_str = '[root]\n' + f.read() |
| 104 | ini_sio = io.StringIO(ini_str) |
| 105 | parser = configparser.RawConfigParser() |
| 106 | parser.read_file(ini_sio) |
| 107 | ubconfig.buildconfig.update(parser.items('root')) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 108 | |
| 109 | global log |
| 110 | global console |
| 111 | global ubconfig |
| 112 | |
| 113 | test_py_dir = os.path.dirname(os.path.abspath(__file__)) |
| 114 | source_dir = os.path.dirname(os.path.dirname(test_py_dir)) |
| 115 | |
| 116 | board_type = config.getoption('board_type') |
| 117 | board_type_filename = board_type.replace('-', '_') |
| 118 | |
| 119 | board_identity = config.getoption('board_identity') |
| 120 | board_identity_filename = board_identity.replace('-', '_') |
| 121 | |
| 122 | build_dir = config.getoption('build_dir') |
| 123 | if not build_dir: |
| 124 | build_dir = source_dir + '/build-' + board_type |
| 125 | mkdir_p(build_dir) |
| 126 | |
| 127 | result_dir = config.getoption('result_dir') |
| 128 | if not result_dir: |
| 129 | result_dir = build_dir |
| 130 | mkdir_p(result_dir) |
| 131 | |
| 132 | persistent_data_dir = config.getoption('persistent_data_dir') |
| 133 | if not persistent_data_dir: |
| 134 | persistent_data_dir = build_dir + '/persistent-data' |
| 135 | mkdir_p(persistent_data_dir) |
| 136 | |
Stephen Warren | 89ab841 | 2016-02-04 16:11:50 -0700 | [diff] [blame] | 137 | gdbserver = config.getoption('gdbserver') |
Igor Opaniuk | 7374b15 | 2019-02-12 16:18:14 +0200 | [diff] [blame] | 138 | if gdbserver and not board_type.startswith('sandbox'): |
| 139 | raise Exception('--gdbserver only supported with sandbox targets') |
Stephen Warren | 89ab841 | 2016-02-04 16:11:50 -0700 | [diff] [blame] | 140 | |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 141 | import multiplexed_log |
| 142 | log = multiplexed_log.Logfile(result_dir + '/test-log.html') |
| 143 | |
| 144 | if config.getoption('build'): |
Simon Glass | f5ec7ee | 2020-03-18 09:43:01 -0600 | [diff] [blame] | 145 | if config.getoption('buildman'): |
| 146 | if build_dir != source_dir: |
| 147 | dest_args = ['-o', build_dir, '-w'] |
| 148 | else: |
| 149 | dest_args = ['-i'] |
| 150 | cmds = (['buildman', '--board', board_type] + dest_args,) |
| 151 | name = 'buildman' |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 152 | else: |
Simon Glass | f5ec7ee | 2020-03-18 09:43:01 -0600 | [diff] [blame] | 153 | if build_dir != source_dir: |
| 154 | o_opt = 'O=%s' % build_dir |
| 155 | else: |
| 156 | o_opt = '' |
| 157 | cmds = ( |
| 158 | ['make', o_opt, '-s', board_type + '_defconfig'], |
Heinrich Schuchardt | 371a2e7 | 2020-05-31 00:44:24 +0200 | [diff] [blame] | 159 | ['make', o_opt, '-s', '-j{}'.format(os.cpu_count())], |
Simon Glass | f5ec7ee | 2020-03-18 09:43:01 -0600 | [diff] [blame] | 160 | ) |
| 161 | name = 'make' |
| 162 | |
| 163 | with log.section(name): |
| 164 | runner = log.get_runner(name, sys.stdout) |
Stephen Warren | 83357fd | 2016-02-03 16:46:34 -0700 | [diff] [blame] | 165 | for cmd in cmds: |
| 166 | runner.run(cmd, cwd=source_dir) |
| 167 | runner.close() |
| 168 | log.status_pass('OK') |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 169 | |
| 170 | class ArbitraryAttributeContainer(object): |
| 171 | pass |
| 172 | |
| 173 | ubconfig = ArbitraryAttributeContainer() |
| 174 | ubconfig.brd = dict() |
| 175 | ubconfig.env = dict() |
| 176 | |
| 177 | modules = [ |
| 178 | (ubconfig.brd, 'u_boot_board_' + board_type_filename), |
| 179 | (ubconfig.env, 'u_boot_boardenv_' + board_type_filename), |
| 180 | (ubconfig.env, 'u_boot_boardenv_' + board_type_filename + '_' + |
| 181 | board_identity_filename), |
| 182 | ] |
| 183 | for (dict_to_fill, module_name) in modules: |
| 184 | try: |
| 185 | module = __import__(module_name) |
| 186 | except ImportError: |
| 187 | continue |
| 188 | dict_to_fill.update(module.__dict__) |
| 189 | |
| 190 | ubconfig.buildconfig = dict() |
| 191 | |
Simon Glass | cb10579 | 2019-12-01 19:34:18 -0700 | [diff] [blame] | 192 | # buildman -k puts autoconf.mk in the rootdir, so handle this as well |
| 193 | # as the standard U-Boot build which leaves it in include/autoconf.mk |
| 194 | parse_config('.config') |
| 195 | if os.path.exists(build_dir + '/' + 'autoconf.mk'): |
| 196 | parse_config('autoconf.mk') |
| 197 | else: |
| 198 | parse_config('include/autoconf.mk') |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 199 | |
| 200 | ubconfig.test_py_dir = test_py_dir |
| 201 | ubconfig.source_dir = source_dir |
| 202 | ubconfig.build_dir = build_dir |
| 203 | ubconfig.result_dir = result_dir |
| 204 | ubconfig.persistent_data_dir = persistent_data_dir |
| 205 | ubconfig.board_type = board_type |
| 206 | ubconfig.board_identity = board_identity |
Stephen Warren | 89ab841 | 2016-02-04 16:11:50 -0700 | [diff] [blame] | 207 | ubconfig.gdbserver = gdbserver |
Simon Glass | 0671960 | 2016-07-03 09:40:36 -0600 | [diff] [blame] | 208 | ubconfig.dtb = build_dir + '/arch/sandbox/dts/test.dtb' |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 209 | |
| 210 | env_vars = ( |
| 211 | 'board_type', |
| 212 | 'board_identity', |
| 213 | 'source_dir', |
| 214 | 'test_py_dir', |
| 215 | 'build_dir', |
| 216 | 'result_dir', |
| 217 | 'persistent_data_dir', |
| 218 | ) |
| 219 | for v in env_vars: |
| 220 | os.environ['U_BOOT_' + v.upper()] = getattr(ubconfig, v) |
| 221 | |
Simon Glass | 2fedbaa | 2016-07-04 11:58:37 -0600 | [diff] [blame] | 222 | if board_type.startswith('sandbox'): |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 223 | import u_boot_console_sandbox |
| 224 | console = u_boot_console_sandbox.ConsoleSandbox(log, ubconfig) |
| 225 | else: |
| 226 | import u_boot_console_exec_attach |
| 227 | console = u_boot_console_exec_attach.ConsoleExecAttach(log, ubconfig) |
| 228 | |
Simon Glass | 2a2814d | 2021-03-07 17:35:11 -0700 | [diff] [blame] | 229 | re_ut_test_list = re.compile(r'_u_boot_list_2_ut_(.*)_test_2_\1_test_(.*)\s*$') |
Simon Glass | bc84d58 | 2020-10-25 20:38:31 -0600 | [diff] [blame] | 230 | def generate_ut_subtest(metafunc, fixture_name, sym_path): |
Stephen Warren | 1cd85f5 | 2016-02-08 14:44:16 -0700 | [diff] [blame] | 231 | """Provide parametrization for a ut_subtest fixture. |
| 232 | |
| 233 | Determines the set of unit tests built into a U-Boot binary by parsing the |
| 234 | list of symbols generated by the build process. Provides this information |
| 235 | to test functions by parameterizing their ut_subtest fixture parameter. |
| 236 | |
| 237 | Args: |
| 238 | metafunc: The pytest test function. |
| 239 | fixture_name: The fixture name to test. |
Simon Glass | bc84d58 | 2020-10-25 20:38:31 -0600 | [diff] [blame] | 240 | sym_path: Relative path to the symbol file with preceding '/' |
| 241 | (e.g. '/u-boot.sym') |
Stephen Warren | 1cd85f5 | 2016-02-08 14:44:16 -0700 | [diff] [blame] | 242 | |
| 243 | Returns: |
| 244 | Nothing. |
| 245 | """ |
Simon Glass | bc84d58 | 2020-10-25 20:38:31 -0600 | [diff] [blame] | 246 | fn = console.config.build_dir + sym_path |
Stephen Warren | 1cd85f5 | 2016-02-08 14:44:16 -0700 | [diff] [blame] | 247 | try: |
| 248 | with open(fn, 'rt') as f: |
| 249 | lines = f.readlines() |
| 250 | except: |
| 251 | lines = [] |
| 252 | lines.sort() |
| 253 | |
| 254 | vals = [] |
| 255 | for l in lines: |
| 256 | m = re_ut_test_list.search(l) |
| 257 | if not m: |
| 258 | continue |
| 259 | vals.append(m.group(1) + ' ' + m.group(2)) |
| 260 | |
| 261 | ids = ['ut_' + s.replace(' ', '_') for s in vals] |
| 262 | metafunc.parametrize(fixture_name, vals, ids=ids) |
| 263 | |
| 264 | def generate_config(metafunc, fixture_name): |
| 265 | """Provide parametrization for {env,brd}__ fixtures. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 266 | |
| 267 | If a test function takes parameter(s) (fixture names) of the form brd__xxx |
| 268 | or env__xxx, the brd and env configuration dictionaries are consulted to |
| 269 | find the list of values to use for those parameters, and the test is |
| 270 | parametrized so that it runs once for each combination of values. |
| 271 | |
| 272 | Args: |
| 273 | metafunc: The pytest test function. |
Stephen Warren | 1cd85f5 | 2016-02-08 14:44:16 -0700 | [diff] [blame] | 274 | fixture_name: The fixture name to test. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 275 | |
| 276 | Returns: |
| 277 | Nothing. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 278 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 279 | |
| 280 | subconfigs = { |
| 281 | 'brd': console.config.brd, |
| 282 | 'env': console.config.env, |
| 283 | } |
Stephen Warren | 1cd85f5 | 2016-02-08 14:44:16 -0700 | [diff] [blame] | 284 | parts = fixture_name.split('__') |
| 285 | if len(parts) < 2: |
| 286 | return |
| 287 | if parts[0] not in subconfigs: |
| 288 | return |
| 289 | subconfig = subconfigs[parts[0]] |
| 290 | vals = [] |
| 291 | val = subconfig.get(fixture_name, []) |
| 292 | # If that exact name is a key in the data source: |
| 293 | if val: |
| 294 | # ... use the dict value as a single parameter value. |
| 295 | vals = (val, ) |
| 296 | else: |
| 297 | # ... otherwise, see if there's a key that contains a list of |
| 298 | # values to use instead. |
| 299 | vals = subconfig.get(fixture_name+ 's', []) |
| 300 | def fixture_id(index, val): |
| 301 | try: |
| 302 | return val['fixture_id'] |
| 303 | except: |
| 304 | return fixture_name + str(index) |
| 305 | ids = [fixture_id(index, val) for (index, val) in enumerate(vals)] |
| 306 | metafunc.parametrize(fixture_name, vals, ids=ids) |
| 307 | |
| 308 | def pytest_generate_tests(metafunc): |
| 309 | """pytest hook: parameterize test functions based on custom rules. |
| 310 | |
| 311 | Check each test function parameter (fixture name) to see if it is one of |
| 312 | our custom names, and if so, provide the correct parametrization for that |
| 313 | parameter. |
| 314 | |
| 315 | Args: |
| 316 | metafunc: The pytest test function. |
| 317 | |
| 318 | Returns: |
| 319 | Nothing. |
| 320 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 321 | for fn in metafunc.fixturenames: |
Stephen Warren | 1cd85f5 | 2016-02-08 14:44:16 -0700 | [diff] [blame] | 322 | if fn == 'ut_subtest': |
Simon Glass | bc84d58 | 2020-10-25 20:38:31 -0600 | [diff] [blame] | 323 | generate_ut_subtest(metafunc, fn, '/u-boot.sym') |
| 324 | continue |
| 325 | if fn == 'ut_spl_subtest': |
| 326 | generate_ut_subtest(metafunc, fn, '/spl/u-boot-spl.sym') |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 327 | continue |
Stephen Warren | 1cd85f5 | 2016-02-08 14:44:16 -0700 | [diff] [blame] | 328 | generate_config(metafunc, fn) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 329 | |
Stefan Brüns | d8c1e03 | 2016-11-05 17:45:32 +0100 | [diff] [blame] | 330 | @pytest.fixture(scope='session') |
| 331 | def u_boot_log(request): |
| 332 | """Generate the value of a test's log fixture. |
| 333 | |
| 334 | Args: |
| 335 | request: The pytest request. |
| 336 | |
| 337 | Returns: |
| 338 | The fixture value. |
| 339 | """ |
| 340 | |
| 341 | return console.log |
| 342 | |
| 343 | @pytest.fixture(scope='session') |
| 344 | def u_boot_config(request): |
| 345 | """Generate the value of a test's u_boot_config fixture. |
| 346 | |
| 347 | Args: |
| 348 | request: The pytest request. |
| 349 | |
| 350 | Returns: |
| 351 | The fixture value. |
| 352 | """ |
| 353 | |
| 354 | return console.config |
| 355 | |
Stephen Warren | 636f38d | 2016-01-22 12:30:08 -0700 | [diff] [blame] | 356 | @pytest.fixture(scope='function') |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 357 | def u_boot_console(request): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 358 | """Generate the value of a test's u_boot_console fixture. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 359 | |
| 360 | Args: |
| 361 | request: The pytest request. |
| 362 | |
| 363 | Returns: |
| 364 | The fixture value. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 365 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 366 | |
Stephen Warren | 636f38d | 2016-01-22 12:30:08 -0700 | [diff] [blame] | 367 | console.ensure_spawned() |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 368 | return console |
| 369 | |
Stephen Warren | 83357fd | 2016-02-03 16:46:34 -0700 | [diff] [blame] | 370 | anchors = {} |
Stephen Warren | 1326022 | 2016-02-10 13:47:37 -0700 | [diff] [blame] | 371 | tests_not_run = [] |
| 372 | tests_failed = [] |
| 373 | tests_xpassed = [] |
| 374 | tests_xfailed = [] |
| 375 | tests_skipped = [] |
Stephen Warren | 32090e5 | 2018-02-20 12:51:55 -0700 | [diff] [blame] | 376 | tests_warning = [] |
Stephen Warren | 1326022 | 2016-02-10 13:47:37 -0700 | [diff] [blame] | 377 | tests_passed = [] |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 378 | |
| 379 | def pytest_itemcollected(item): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 380 | """pytest hook: Called once for each test found during collection. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 381 | |
| 382 | This enables our custom result analysis code to see the list of all tests |
| 383 | that should eventually be run. |
| 384 | |
| 385 | Args: |
| 386 | item: The item that was collected. |
| 387 | |
| 388 | Returns: |
| 389 | Nothing. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 390 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 391 | |
Stephen Warren | 1326022 | 2016-02-10 13:47:37 -0700 | [diff] [blame] | 392 | tests_not_run.append(item.name) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 393 | |
| 394 | def cleanup(): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 395 | """Clean up all global state. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 396 | |
| 397 | Executed (via atexit) once the entire test process is complete. This |
| 398 | includes logging the status of all tests, and the identity of any failed |
| 399 | or skipped tests. |
| 400 | |
| 401 | Args: |
| 402 | None. |
| 403 | |
| 404 | Returns: |
| 405 | Nothing. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 406 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 407 | |
| 408 | if console: |
| 409 | console.close() |
| 410 | if log: |
Stephen Warren | 83357fd | 2016-02-03 16:46:34 -0700 | [diff] [blame] | 411 | with log.section('Status Report', 'status_report'): |
| 412 | log.status_pass('%d passed' % len(tests_passed)) |
Stephen Warren | 32090e5 | 2018-02-20 12:51:55 -0700 | [diff] [blame] | 413 | if tests_warning: |
| 414 | log.status_warning('%d passed with warning' % len(tests_warning)) |
| 415 | for test in tests_warning: |
| 416 | anchor = anchors.get(test, None) |
| 417 | log.status_warning('... ' + test, anchor) |
Stephen Warren | 83357fd | 2016-02-03 16:46:34 -0700 | [diff] [blame] | 418 | if tests_skipped: |
| 419 | log.status_skipped('%d skipped' % len(tests_skipped)) |
| 420 | for test in tests_skipped: |
| 421 | anchor = anchors.get(test, None) |
| 422 | log.status_skipped('... ' + test, anchor) |
| 423 | if tests_xpassed: |
| 424 | log.status_xpass('%d xpass' % len(tests_xpassed)) |
| 425 | for test in tests_xpassed: |
| 426 | anchor = anchors.get(test, None) |
| 427 | log.status_xpass('... ' + test, anchor) |
| 428 | if tests_xfailed: |
| 429 | log.status_xfail('%d xfail' % len(tests_xfailed)) |
| 430 | for test in tests_xfailed: |
| 431 | anchor = anchors.get(test, None) |
| 432 | log.status_xfail('... ' + test, anchor) |
| 433 | if tests_failed: |
| 434 | log.status_fail('%d failed' % len(tests_failed)) |
| 435 | for test in tests_failed: |
| 436 | anchor = anchors.get(test, None) |
| 437 | log.status_fail('... ' + test, anchor) |
| 438 | if tests_not_run: |
| 439 | log.status_fail('%d not run' % len(tests_not_run)) |
| 440 | for test in tests_not_run: |
| 441 | anchor = anchors.get(test, None) |
| 442 | log.status_fail('... ' + test, anchor) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 443 | log.close() |
| 444 | atexit.register(cleanup) |
| 445 | |
| 446 | def setup_boardspec(item): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 447 | """Process any 'boardspec' marker for a test. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 448 | |
| 449 | Such a marker lists the set of board types that a test does/doesn't |
| 450 | support. If tests are being executed on an unsupported board, the test is |
| 451 | marked to be skipped. |
| 452 | |
| 453 | Args: |
| 454 | item: The pytest test item. |
| 455 | |
| 456 | Returns: |
| 457 | Nothing. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 458 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 459 | |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 460 | required_boards = [] |
Marek Vasut | 3c941e0 | 2019-10-24 11:59:19 -0400 | [diff] [blame] | 461 | for boards in item.iter_markers('boardspec'): |
| 462 | board = boards.args[0] |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 463 | if board.startswith('!'): |
| 464 | if ubconfig.board_type == board[1:]: |
Stephen Warren | d517044 | 2017-09-18 11:11:48 -0600 | [diff] [blame] | 465 | pytest.skip('board "%s" not supported' % ubconfig.board_type) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 466 | return |
| 467 | else: |
| 468 | required_boards.append(board) |
| 469 | if required_boards and ubconfig.board_type not in required_boards: |
Stephen Warren | d517044 | 2017-09-18 11:11:48 -0600 | [diff] [blame] | 470 | pytest.skip('board "%s" not supported' % ubconfig.board_type) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 471 | |
| 472 | def setup_buildconfigspec(item): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 473 | """Process any 'buildconfigspec' marker for a test. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 474 | |
| 475 | Such a marker lists some U-Boot configuration feature that the test |
| 476 | requires. If tests are being executed on an U-Boot build that doesn't |
| 477 | have the required feature, the test is marked to be skipped. |
| 478 | |
| 479 | Args: |
| 480 | item: The pytest test item. |
| 481 | |
| 482 | Returns: |
| 483 | Nothing. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 484 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 485 | |
Marek Vasut | 3c941e0 | 2019-10-24 11:59:19 -0400 | [diff] [blame] | 486 | for options in item.iter_markers('buildconfigspec'): |
| 487 | option = options.args[0] |
| 488 | if not ubconfig.buildconfig.get('config_' + option.lower(), None): |
| 489 | pytest.skip('.config feature "%s" not enabled' % option.lower()) |
Cristian Ciocaltea | 49b5b19 | 2019-12-24 17:19:12 +0200 | [diff] [blame] | 490 | for options in item.iter_markers('notbuildconfigspec'): |
Marek Vasut | 3c941e0 | 2019-10-24 11:59:19 -0400 | [diff] [blame] | 491 | option = options.args[0] |
| 492 | if ubconfig.buildconfig.get('config_' + option.lower(), None): |
| 493 | pytest.skip('.config feature "%s" enabled' % option.lower()) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 494 | |
Stephen Warren | 2d26bf6 | 2017-09-18 11:11:49 -0600 | [diff] [blame] | 495 | def tool_is_in_path(tool): |
| 496 | for path in os.environ["PATH"].split(os.pathsep): |
| 497 | fn = os.path.join(path, tool) |
| 498 | if os.path.isfile(fn) and os.access(fn, os.X_OK): |
| 499 | return True |
| 500 | return False |
| 501 | |
| 502 | def setup_requiredtool(item): |
| 503 | """Process any 'requiredtool' marker for a test. |
| 504 | |
| 505 | Such a marker lists some external tool (binary, executable, application) |
| 506 | that the test requires. If tests are being executed on a system that |
| 507 | doesn't have the required tool, the test is marked to be skipped. |
| 508 | |
| 509 | Args: |
| 510 | item: The pytest test item. |
| 511 | |
| 512 | Returns: |
| 513 | Nothing. |
| 514 | """ |
| 515 | |
Marek Vasut | 3c941e0 | 2019-10-24 11:59:19 -0400 | [diff] [blame] | 516 | for tools in item.iter_markers('requiredtool'): |
| 517 | tool = tools.args[0] |
Stephen Warren | 2d26bf6 | 2017-09-18 11:11:49 -0600 | [diff] [blame] | 518 | if not tool_is_in_path(tool): |
| 519 | pytest.skip('tool "%s" not in $PATH' % tool) |
| 520 | |
Stephen Warren | b0a928a | 2016-10-17 17:25:52 -0600 | [diff] [blame] | 521 | def start_test_section(item): |
| 522 | anchors[item.name] = log.start_section(item.name) |
| 523 | |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 524 | def pytest_runtest_setup(item): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 525 | """pytest hook: Configure (set up) a test item. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 526 | |
| 527 | Called once for each test to perform any custom configuration. This hook |
| 528 | is used to skip the test if certain conditions apply. |
| 529 | |
| 530 | Args: |
| 531 | item: The pytest test item. |
| 532 | |
| 533 | Returns: |
| 534 | Nothing. |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 535 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 536 | |
Stephen Warren | b0a928a | 2016-10-17 17:25:52 -0600 | [diff] [blame] | 537 | start_test_section(item) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 538 | setup_boardspec(item) |
| 539 | setup_buildconfigspec(item) |
Stephen Warren | 2d26bf6 | 2017-09-18 11:11:49 -0600 | [diff] [blame] | 540 | setup_requiredtool(item) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 541 | |
| 542 | def pytest_runtest_protocol(item, nextitem): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 543 | """pytest hook: Called to execute a test. |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 544 | |
| 545 | This hook wraps the standard pytest runtestprotocol() function in order |
| 546 | to acquire visibility into, and record, each test function's result. |
| 547 | |
| 548 | Args: |
| 549 | item: The pytest test item to execute. |
| 550 | nextitem: The pytest test item that will be executed after this one. |
| 551 | |
| 552 | Returns: |
| 553 | A list of pytest reports (test result data). |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 554 | """ |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 555 | |
Stephen Warren | 32090e5 | 2018-02-20 12:51:55 -0700 | [diff] [blame] | 556 | log.get_and_reset_warning() |
Stephen Warren | 3724975 | 2021-01-30 20:12:18 -0700 | [diff] [blame] | 557 | ihook = item.ihook |
| 558 | ihook.pytest_runtest_logstart(nodeid=item.nodeid, location=item.location) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 559 | reports = runtestprotocol(item, nextitem=nextitem) |
Stephen Warren | 3724975 | 2021-01-30 20:12:18 -0700 | [diff] [blame] | 560 | ihook.pytest_runtest_logfinish(nodeid=item.nodeid, location=item.location) |
Stephen Warren | 32090e5 | 2018-02-20 12:51:55 -0700 | [diff] [blame] | 561 | was_warning = log.get_and_reset_warning() |
Stephen Warren | 78b39cc | 2016-01-27 23:57:51 -0700 | [diff] [blame] | 562 | |
Stephen Warren | b0a928a | 2016-10-17 17:25:52 -0600 | [diff] [blame] | 563 | # In pytest 3, runtestprotocol() may not call pytest_runtest_setup() if |
| 564 | # the test is skipped. That call is required to create the test's section |
| 565 | # in the log file. The call to log.end_section() requires that the log |
| 566 | # contain a section for this test. Create a section for the test if it |
| 567 | # doesn't already exist. |
| 568 | if not item.name in anchors: |
| 569 | start_test_section(item) |
| 570 | |
Stephen Warren | 78b39cc | 2016-01-27 23:57:51 -0700 | [diff] [blame] | 571 | failure_cleanup = False |
Stephen Warren | 32090e5 | 2018-02-20 12:51:55 -0700 | [diff] [blame] | 572 | if not was_warning: |
| 573 | test_list = tests_passed |
| 574 | msg = 'OK' |
| 575 | msg_log = log.status_pass |
| 576 | else: |
| 577 | test_list = tests_warning |
| 578 | msg = 'OK (with warning)' |
| 579 | msg_log = log.status_warning |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 580 | for report in reports: |
| 581 | if report.outcome == 'failed': |
Stephen Warren | 78b39cc | 2016-01-27 23:57:51 -0700 | [diff] [blame] | 582 | if hasattr(report, 'wasxfail'): |
| 583 | test_list = tests_xpassed |
| 584 | msg = 'XPASSED' |
| 585 | msg_log = log.status_xpass |
| 586 | else: |
| 587 | failure_cleanup = True |
| 588 | test_list = tests_failed |
| 589 | msg = 'FAILED:\n' + str(report.longrepr) |
| 590 | msg_log = log.status_fail |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 591 | break |
| 592 | if report.outcome == 'skipped': |
Stephen Warren | 78b39cc | 2016-01-27 23:57:51 -0700 | [diff] [blame] | 593 | if hasattr(report, 'wasxfail'): |
| 594 | failure_cleanup = True |
| 595 | test_list = tests_xfailed |
| 596 | msg = 'XFAILED:\n' + str(report.longrepr) |
| 597 | msg_log = log.status_xfail |
| 598 | break |
| 599 | test_list = tests_skipped |
| 600 | msg = 'SKIPPED:\n' + str(report.longrepr) |
| 601 | msg_log = log.status_skipped |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 602 | |
Stephen Warren | 78b39cc | 2016-01-27 23:57:51 -0700 | [diff] [blame] | 603 | if failure_cleanup: |
Stephen Warren | c10eb9d | 2016-01-22 12:30:09 -0700 | [diff] [blame] | 604 | console.drain_console() |
Stephen Warren | 78b39cc | 2016-01-27 23:57:51 -0700 | [diff] [blame] | 605 | |
Stephen Warren | 1326022 | 2016-02-10 13:47:37 -0700 | [diff] [blame] | 606 | test_list.append(item.name) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 607 | tests_not_run.remove(item.name) |
| 608 | |
| 609 | try: |
Stephen Warren | 78b39cc | 2016-01-27 23:57:51 -0700 | [diff] [blame] | 610 | msg_log(msg) |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 611 | except: |
| 612 | # If something went wrong with logging, it's better to let the test |
| 613 | # process continue, which may report other exceptions that triggered |
| 614 | # the logging issue (e.g. console.log wasn't created). Hence, just |
| 615 | # squash the exception. If the test setup failed due to e.g. syntax |
| 616 | # error somewhere else, this won't be seen. However, once that issue |
| 617 | # is fixed, if this exception still exists, it will then be logged as |
| 618 | # part of the test's stdout. |
| 619 | import traceback |
Paul Burton | dffd56d | 2017-09-14 14:34:43 -0700 | [diff] [blame] | 620 | print('Exception occurred while logging runtest status:') |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 621 | traceback.print_exc() |
| 622 | # FIXME: Can we force a test failure here? |
| 623 | |
| 624 | log.end_section(item.name) |
| 625 | |
Stephen Warren | 78b39cc | 2016-01-27 23:57:51 -0700 | [diff] [blame] | 626 | if failure_cleanup: |
Stephen Warren | d201506 | 2016-01-15 11:15:24 -0700 | [diff] [blame] | 627 | console.cleanup_spawn() |
| 628 | |
Stephen Warren | 3724975 | 2021-01-30 20:12:18 -0700 | [diff] [blame] | 629 | return True |