xref: /openbmc/linux/tools/testing/kunit/kunit.py (revision 17408e59)
1#!/usr/bin/env python3
2# SPDX-License-Identifier: GPL-2.0
3#
4# A thin wrapper on top of the KUnit Kernel
5#
6# Copyright (C) 2019, Google LLC.
7# Author: Felix Guo <felixguoxiuping@gmail.com>
8# Author: Brendan Higgins <brendanhiggins@google.com>
9
10import argparse
11import os
12import re
13import sys
14import time
15
16assert sys.version_info >= (3, 7), "Python version is too old"
17
18from dataclasses import dataclass
19from enum import Enum, auto
20from typing import Iterable, List, Optional, Sequence, Tuple
21
22import kunit_json
23import kunit_kernel
24import kunit_parser
25
26class KunitStatus(Enum):
27	SUCCESS = auto()
28	CONFIG_FAILURE = auto()
29	BUILD_FAILURE = auto()
30	TEST_FAILURE = auto()
31
32@dataclass
33class KunitResult:
34	status: KunitStatus
35	elapsed_time: float
36
37@dataclass
38class KunitConfigRequest:
39	build_dir: str
40	make_options: Optional[List[str]]
41
42@dataclass
43class KunitBuildRequest(KunitConfigRequest):
44	jobs: int
45	alltests: bool
46
47@dataclass
48class KunitParseRequest:
49	raw_output: Optional[str]
50	build_dir: str
51	json: Optional[str]
52
53@dataclass
54class KunitExecRequest(KunitParseRequest):
55	timeout: int
56	alltests: bool
57	filter_glob: str
58	kernel_args: Optional[List[str]]
59	run_isolated: Optional[str]
60
61@dataclass
62class KunitRequest(KunitExecRequest, KunitBuildRequest):
63	pass
64
65
66KernelDirectoryPath = sys.argv[0].split('tools/testing/kunit/')[0]
67
68def get_kernel_root_path() -> str:
69	path = sys.argv[0] if not __file__ else __file__
70	parts = os.path.realpath(path).split('tools/testing/kunit')
71	if len(parts) != 2:
72		sys.exit(1)
73	return parts[0]
74
75def config_tests(linux: kunit_kernel.LinuxSourceTree,
76		 request: KunitConfigRequest) -> KunitResult:
77	kunit_parser.print_with_timestamp('Configuring KUnit Kernel ...')
78
79	config_start = time.time()
80	success = linux.build_reconfig(request.build_dir, request.make_options)
81	config_end = time.time()
82	if not success:
83		return KunitResult(KunitStatus.CONFIG_FAILURE,
84				   config_end - config_start)
85	return KunitResult(KunitStatus.SUCCESS,
86			   config_end - config_start)
87
88def build_tests(linux: kunit_kernel.LinuxSourceTree,
89		request: KunitBuildRequest) -> KunitResult:
90	kunit_parser.print_with_timestamp('Building KUnit Kernel ...')
91
92	build_start = time.time()
93	success = linux.build_kernel(request.alltests,
94				     request.jobs,
95				     request.build_dir,
96				     request.make_options)
97	build_end = time.time()
98	if not success:
99		return KunitResult(KunitStatus.BUILD_FAILURE,
100				   build_end - build_start)
101	if not success:
102		return KunitResult(KunitStatus.BUILD_FAILURE,
103				   build_end - build_start)
104	return KunitResult(KunitStatus.SUCCESS,
105			   build_end - build_start)
106
107def config_and_build_tests(linux: kunit_kernel.LinuxSourceTree,
108			   request: KunitBuildRequest) -> KunitResult:
109	config_result = config_tests(linux, request)
110	if config_result.status != KunitStatus.SUCCESS:
111		return config_result
112
113	return build_tests(linux, request)
114
115def _list_tests(linux: kunit_kernel.LinuxSourceTree, request: KunitExecRequest) -> List[str]:
116	args = ['kunit.action=list']
117	if request.kernel_args:
118		args.extend(request.kernel_args)
119
120	output = linux.run_kernel(args=args,
121			   timeout=None if request.alltests else request.timeout,
122			   filter_glob=request.filter_glob,
123			   build_dir=request.build_dir)
124	lines = kunit_parser.extract_tap_lines(output)
125	# Hack! Drop the dummy TAP version header that the executor prints out.
126	lines.pop()
127
128	# Filter out any extraneous non-test output that might have gotten mixed in.
129	return [l for l in lines if re.match('^[^\s.]+\.[^\s.]+$', l)]
130
131def _suites_from_test_list(tests: List[str]) -> List[str]:
132	"""Extracts all the suites from an ordered list of tests."""
133	suites = []  # type: List[str]
134	for t in tests:
135		parts = t.split('.', maxsplit=2)
136		if len(parts) != 2:
137			raise ValueError(f'internal KUnit error, test name should be of the form "<suite>.<test>", got "{t}"')
138		suite, case = parts
139		if not suites or suites[-1] != suite:
140			suites.append(suite)
141	return suites
142
143
144
145def exec_tests(linux: kunit_kernel.LinuxSourceTree, request: KunitExecRequest) -> KunitResult:
146	filter_globs = [request.filter_glob]
147	if request.run_isolated:
148		tests = _list_tests(linux, request)
149		if request.run_isolated == 'test':
150			filter_globs = tests
151		if request.run_isolated == 'suite':
152			filter_globs = _suites_from_test_list(tests)
153			# Apply the test-part of the user's glob, if present.
154			if '.' in request.filter_glob:
155				test_glob = request.filter_glob.split('.', maxsplit=2)[1]
156				filter_globs = [g + '.'+ test_glob for g in filter_globs]
157
158	test_counts = kunit_parser.TestCounts()
159	exec_time = 0.0
160	for i, filter_glob in enumerate(filter_globs):
161		kunit_parser.print_with_timestamp('Starting KUnit Kernel ({}/{})...'.format(i+1, len(filter_globs)))
162
163		test_start = time.time()
164		run_result = linux.run_kernel(
165			args=request.kernel_args,
166			timeout=None if request.alltests else request.timeout,
167			filter_glob=filter_glob,
168			build_dir=request.build_dir)
169
170		_, test_result = parse_tests(request, run_result)
171		# run_kernel() doesn't block on the kernel exiting.
172		# That only happens after we get the last line of output from `run_result`.
173		# So exec_time here actually contains parsing + execution time, which is fine.
174		test_end = time.time()
175		exec_time += test_end - test_start
176
177		test_counts.add_subtest_counts(test_result.counts)
178
179	if len(filter_globs) == 1 and test_counts.crashed > 0:
180		bd = request.build_dir
181		print('The kernel seems to have crashed; you can decode the stack traces with:')
182		print('$ scripts/decode_stacktrace.sh {}/vmlinux {} < {} | tee {}/decoded.log | {} parse'.format(
183				bd, bd, kunit_kernel.get_outfile_path(bd), bd, sys.argv[0]))
184
185	kunit_status = _map_to_overall_status(test_counts.get_status())
186	return KunitResult(status=kunit_status, elapsed_time=exec_time)
187
188def _map_to_overall_status(test_status: kunit_parser.TestStatus) -> KunitStatus:
189	if test_status in (kunit_parser.TestStatus.SUCCESS, kunit_parser.TestStatus.SKIPPED):
190		return KunitStatus.SUCCESS
191	else:
192		return KunitStatus.TEST_FAILURE
193
194def parse_tests(request: KunitParseRequest, input_data: Iterable[str]) -> Tuple[KunitResult, kunit_parser.Test]:
195	parse_start = time.time()
196
197	test_result = kunit_parser.Test()
198
199	if request.raw_output:
200		# Treat unparsed results as one passing test.
201		test_result.status = kunit_parser.TestStatus.SUCCESS
202		test_result.counts.passed = 1
203
204		output: Iterable[str] = input_data
205		if request.raw_output == 'all':
206			pass
207		elif request.raw_output == 'kunit':
208			output = kunit_parser.extract_tap_lines(output)
209		else:
210			print(f'Unknown --raw_output option "{request.raw_output}"', file=sys.stderr)
211		for line in output:
212			print(line.rstrip())
213
214	else:
215		test_result = kunit_parser.parse_run_tests(input_data)
216	parse_end = time.time()
217
218	if request.json:
219		json_obj = kunit_json.get_json_result(
220					test=test_result,
221					def_config='kunit_defconfig',
222					build_dir=request.build_dir,
223					json_path=request.json)
224		if request.json == 'stdout':
225			print(json_obj)
226
227	if test_result.status != kunit_parser.TestStatus.SUCCESS:
228		return KunitResult(KunitStatus.TEST_FAILURE, parse_end - parse_start), test_result
229
230	return KunitResult(KunitStatus.SUCCESS, parse_end - parse_start), test_result
231
232def run_tests(linux: kunit_kernel.LinuxSourceTree,
233	      request: KunitRequest) -> KunitResult:
234	run_start = time.time()
235
236	config_result = config_tests(linux, request)
237	if config_result.status != KunitStatus.SUCCESS:
238		return config_result
239
240	build_result = build_tests(linux, request)
241	if build_result.status != KunitStatus.SUCCESS:
242		return build_result
243
244	exec_result = exec_tests(linux, request)
245
246	run_end = time.time()
247
248	kunit_parser.print_with_timestamp((
249		'Elapsed time: %.3fs total, %.3fs configuring, %.3fs ' +
250		'building, %.3fs running\n') % (
251				run_end - run_start,
252				config_result.elapsed_time,
253				build_result.elapsed_time,
254				exec_result.elapsed_time))
255	return exec_result
256
257# Problem:
258# $ kunit.py run --json
259# works as one would expect and prints the parsed test results as JSON.
260# $ kunit.py run --json suite_name
261# would *not* pass suite_name as the filter_glob and print as json.
262# argparse will consider it to be another way of writing
263# $ kunit.py run --json=suite_name
264# i.e. it would run all tests, and dump the json to a `suite_name` file.
265# So we hackily automatically rewrite --json => --json=stdout
266pseudo_bool_flag_defaults = {
267		'--json': 'stdout',
268		'--raw_output': 'kunit',
269}
270def massage_argv(argv: Sequence[str]) -> Sequence[str]:
271	def massage_arg(arg: str) -> str:
272		if arg not in pseudo_bool_flag_defaults:
273			return arg
274		return  f'{arg}={pseudo_bool_flag_defaults[arg]}'
275	return list(map(massage_arg, argv))
276
277def get_default_jobs() -> int:
278	return len(os.sched_getaffinity(0))
279
280def add_common_opts(parser) -> None:
281	parser.add_argument('--build_dir',
282			    help='As in the make command, it specifies the build '
283			    'directory.',
284			    type=str, default='.kunit', metavar='build_dir')
285	parser.add_argument('--make_options',
286			    help='X=Y make option, can be repeated.',
287			    action='append')
288	parser.add_argument('--alltests',
289			    help='Run all KUnit tests through allyesconfig',
290			    action='store_true')
291	parser.add_argument('--kunitconfig',
292			     help='Path to Kconfig fragment that enables KUnit tests.'
293			     ' If given a directory, (e.g. lib/kunit), "/.kunitconfig" '
294			     'will get  automatically appended.',
295			     metavar='kunitconfig')
296	parser.add_argument('--kconfig_add',
297			     help='Additional Kconfig options to append to the '
298			     '.kunitconfig, e.g. CONFIG_KASAN=y. Can be repeated.',
299			    action='append')
300
301	parser.add_argument('--arch',
302			    help=('Specifies the architecture to run tests under. '
303				  'The architecture specified here must match the '
304				  'string passed to the ARCH make param, '
305				  'e.g. i386, x86_64, arm, um, etc. Non-UML '
306				  'architectures run on QEMU.'),
307			    type=str, default='um', metavar='arch')
308
309	parser.add_argument('--cross_compile',
310			    help=('Sets make\'s CROSS_COMPILE variable; it should '
311				  'be set to a toolchain path prefix (the prefix '
312				  'of gcc and other tools in your toolchain, for '
313				  'example `sparc64-linux-gnu-` if you have the '
314				  'sparc toolchain installed on your system, or '
315				  '`$HOME/toolchains/microblaze/gcc-9.2.0-nolibc/microblaze-linux/bin/microblaze-linux-` '
316				  'if you have downloaded the microblaze toolchain '
317				  'from the 0-day website to a directory in your '
318				  'home directory called `toolchains`).'),
319			    metavar='cross_compile')
320
321	parser.add_argument('--qemu_config',
322			    help=('Takes a path to a path to a file containing '
323				  'a QemuArchParams object.'),
324			    type=str, metavar='qemu_config')
325
326def add_build_opts(parser) -> None:
327	parser.add_argument('--jobs',
328			    help='As in the make command, "Specifies  the number of '
329			    'jobs (commands) to run simultaneously."',
330			    type=int, default=get_default_jobs(), metavar='jobs')
331
332def add_exec_opts(parser) -> None:
333	parser.add_argument('--timeout',
334			    help='maximum number of seconds to allow for all tests '
335			    'to run. This does not include time taken to build the '
336			    'tests.',
337			    type=int,
338			    default=300,
339			    metavar='timeout')
340	parser.add_argument('filter_glob',
341			    help='Filter which KUnit test suites/tests run at '
342			    'boot-time, e.g. list* or list*.*del_test',
343			    type=str,
344			    nargs='?',
345			    default='',
346			    metavar='filter_glob')
347	parser.add_argument('--kernel_args',
348			    help='Kernel command-line parameters. Maybe be repeated',
349			     action='append')
350	parser.add_argument('--run_isolated', help='If set, boot the kernel for each '
351			    'individual suite/test. This is can be useful for debugging '
352			    'a non-hermetic test, one that might pass/fail based on '
353			    'what ran before it.',
354			    type=str,
355			    choices=['suite', 'test']),
356
357def add_parse_opts(parser) -> None:
358	parser.add_argument('--raw_output', help='If set don\'t format output from kernel. '
359			    'If set to --raw_output=kunit, filters to just KUnit output.',
360			    type=str, nargs='?', const='all', default=None)
361	parser.add_argument('--json',
362			    nargs='?',
363			    help='Stores test results in a JSON, and either '
364			    'prints to stdout or saves to file if a '
365			    'filename is specified',
366			    type=str, const='stdout', default=None)
367
368def main(argv, linux=None):
369	parser = argparse.ArgumentParser(
370			description='Helps writing and running KUnit tests.')
371	subparser = parser.add_subparsers(dest='subcommand')
372
373	# The 'run' command will config, build, exec, and parse in one go.
374	run_parser = subparser.add_parser('run', help='Runs KUnit tests.')
375	add_common_opts(run_parser)
376	add_build_opts(run_parser)
377	add_exec_opts(run_parser)
378	add_parse_opts(run_parser)
379
380	config_parser = subparser.add_parser('config',
381						help='Ensures that .config contains all of '
382						'the options in .kunitconfig')
383	add_common_opts(config_parser)
384
385	build_parser = subparser.add_parser('build', help='Builds a kernel with KUnit tests')
386	add_common_opts(build_parser)
387	add_build_opts(build_parser)
388
389	exec_parser = subparser.add_parser('exec', help='Run a kernel with KUnit tests')
390	add_common_opts(exec_parser)
391	add_exec_opts(exec_parser)
392	add_parse_opts(exec_parser)
393
394	# The 'parse' option is special, as it doesn't need the kernel source
395	# (therefore there is no need for a build_dir, hence no add_common_opts)
396	# and the '--file' argument is not relevant to 'run', so isn't in
397	# add_parse_opts()
398	parse_parser = subparser.add_parser('parse',
399					    help='Parses KUnit results from a file, '
400					    'and parses formatted results.')
401	add_parse_opts(parse_parser)
402	parse_parser.add_argument('file',
403				  help='Specifies the file to read results from.',
404				  type=str, nargs='?', metavar='input_file')
405
406	cli_args = parser.parse_args(massage_argv(argv))
407
408	if get_kernel_root_path():
409		os.chdir(get_kernel_root_path())
410
411	if cli_args.subcommand == 'run':
412		if not os.path.exists(cli_args.build_dir):
413			os.mkdir(cli_args.build_dir)
414
415		if not linux:
416			linux = kunit_kernel.LinuxSourceTree(cli_args.build_dir,
417					kunitconfig_path=cli_args.kunitconfig,
418					kconfig_add=cli_args.kconfig_add,
419					arch=cli_args.arch,
420					cross_compile=cli_args.cross_compile,
421					qemu_config_path=cli_args.qemu_config)
422
423		request = KunitRequest(build_dir=cli_args.build_dir,
424				       make_options=cli_args.make_options,
425				       jobs=cli_args.jobs,
426				       alltests=cli_args.alltests,
427				       raw_output=cli_args.raw_output,
428				       json=cli_args.json,
429				       timeout=cli_args.timeout,
430				       filter_glob=cli_args.filter_glob,
431				       kernel_args=cli_args.kernel_args,
432				       run_isolated=cli_args.run_isolated)
433		result = run_tests(linux, request)
434		if result.status != KunitStatus.SUCCESS:
435			sys.exit(1)
436	elif cli_args.subcommand == 'config':
437		if cli_args.build_dir and (
438				not os.path.exists(cli_args.build_dir)):
439			os.mkdir(cli_args.build_dir)
440
441		if not linux:
442			linux = kunit_kernel.LinuxSourceTree(cli_args.build_dir,
443					kunitconfig_path=cli_args.kunitconfig,
444					kconfig_add=cli_args.kconfig_add,
445					arch=cli_args.arch,
446					cross_compile=cli_args.cross_compile,
447					qemu_config_path=cli_args.qemu_config)
448
449		request = KunitConfigRequest(build_dir=cli_args.build_dir,
450					     make_options=cli_args.make_options)
451		result = config_tests(linux, request)
452		kunit_parser.print_with_timestamp((
453			'Elapsed time: %.3fs\n') % (
454				result.elapsed_time))
455		if result.status != KunitStatus.SUCCESS:
456			sys.exit(1)
457	elif cli_args.subcommand == 'build':
458		if not linux:
459			linux = kunit_kernel.LinuxSourceTree(cli_args.build_dir,
460					kunitconfig_path=cli_args.kunitconfig,
461					kconfig_add=cli_args.kconfig_add,
462					arch=cli_args.arch,
463					cross_compile=cli_args.cross_compile,
464					qemu_config_path=cli_args.qemu_config)
465
466		request = KunitBuildRequest(build_dir=cli_args.build_dir,
467					    make_options=cli_args.make_options,
468					    jobs=cli_args.jobs,
469					    alltests=cli_args.alltests)
470		result = config_and_build_tests(linux, request)
471		kunit_parser.print_with_timestamp((
472			'Elapsed time: %.3fs\n') % (
473				result.elapsed_time))
474		if result.status != KunitStatus.SUCCESS:
475			sys.exit(1)
476	elif cli_args.subcommand == 'exec':
477		if not linux:
478			linux = kunit_kernel.LinuxSourceTree(cli_args.build_dir,
479					kunitconfig_path=cli_args.kunitconfig,
480					kconfig_add=cli_args.kconfig_add,
481					arch=cli_args.arch,
482					cross_compile=cli_args.cross_compile,
483					qemu_config_path=cli_args.qemu_config)
484
485		exec_request = KunitExecRequest(raw_output=cli_args.raw_output,
486						build_dir=cli_args.build_dir,
487						json=cli_args.json,
488						timeout=cli_args.timeout,
489						alltests=cli_args.alltests,
490						filter_glob=cli_args.filter_glob,
491						kernel_args=cli_args.kernel_args,
492						run_isolated=cli_args.run_isolated)
493		result = exec_tests(linux, exec_request)
494		kunit_parser.print_with_timestamp((
495			'Elapsed time: %.3fs\n') % (result.elapsed_time))
496		if result.status != KunitStatus.SUCCESS:
497			sys.exit(1)
498	elif cli_args.subcommand == 'parse':
499		if cli_args.file == None:
500			sys.stdin.reconfigure(errors='backslashreplace')  # pytype: disable=attribute-error
501			kunit_output = sys.stdin
502		else:
503			with open(cli_args.file, 'r', errors='backslashreplace') as f:
504				kunit_output = f.read().splitlines()
505		request = KunitParseRequest(raw_output=cli_args.raw_output,
506					    build_dir='',
507					    json=cli_args.json)
508		result, _ = parse_tests(request, kunit_output)
509		if result.status != KunitStatus.SUCCESS:
510			sys.exit(1)
511	else:
512		parser.print_help()
513
514if __name__ == '__main__':
515	main(sys.argv[1:])
516