xref: /linux/tools/testing/kunit/kunit.py (revision 33d4a933e9273bb9b33db8dcd0e564881319443c)
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	json: Optional[str]
51
52@dataclass
53class KunitExecRequest(KunitParseRequest):
54	build_dir: str
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
66def get_kernel_root_path() -> str:
67	path = sys.argv[0] if not __file__ else __file__
68	parts = os.path.realpath(path).split('tools/testing/kunit')
69	if len(parts) != 2:
70		sys.exit(1)
71	return parts[0]
72
73def config_tests(linux: kunit_kernel.LinuxSourceTree,
74		 request: KunitConfigRequest) -> KunitResult:
75	kunit_parser.print_with_timestamp('Configuring KUnit Kernel ...')
76
77	config_start = time.time()
78	success = linux.build_reconfig(request.build_dir, request.make_options)
79	config_end = time.time()
80	if not success:
81		return KunitResult(KunitStatus.CONFIG_FAILURE,
82				   config_end - config_start)
83	return KunitResult(KunitStatus.SUCCESS,
84			   config_end - config_start)
85
86def build_tests(linux: kunit_kernel.LinuxSourceTree,
87		request: KunitBuildRequest) -> KunitResult:
88	kunit_parser.print_with_timestamp('Building KUnit Kernel ...')
89
90	build_start = time.time()
91	success = linux.build_kernel(request.alltests,
92				     request.jobs,
93				     request.build_dir,
94				     request.make_options)
95	build_end = time.time()
96	if not success:
97		return KunitResult(KunitStatus.BUILD_FAILURE,
98				   build_end - build_start)
99	if not success:
100		return KunitResult(KunitStatus.BUILD_FAILURE,
101				   build_end - build_start)
102	return KunitResult(KunitStatus.SUCCESS,
103			   build_end - build_start)
104
105def config_and_build_tests(linux: kunit_kernel.LinuxSourceTree,
106			   request: KunitBuildRequest) -> KunitResult:
107	config_result = config_tests(linux, request)
108	if config_result.status != KunitStatus.SUCCESS:
109		return config_result
110
111	return build_tests(linux, request)
112
113def _list_tests(linux: kunit_kernel.LinuxSourceTree, request: KunitExecRequest) -> List[str]:
114	args = ['kunit.action=list']
115	if request.kernel_args:
116		args.extend(request.kernel_args)
117
118	output = linux.run_kernel(args=args,
119			   timeout=None if request.alltests else request.timeout,
120			   filter_glob=request.filter_glob,
121			   build_dir=request.build_dir)
122	lines = kunit_parser.extract_tap_lines(output)
123	# Hack! Drop the dummy TAP version header that the executor prints out.
124	lines.pop()
125
126	# Filter out any extraneous non-test output that might have gotten mixed in.
127	return [l for l in lines if re.match('^[^\s.]+\.[^\s.]+$', l)]
128
129def _suites_from_test_list(tests: List[str]) -> List[str]:
130	"""Extracts all the suites from an ordered list of tests."""
131	suites = []  # type: List[str]
132	for t in tests:
133		parts = t.split('.', maxsplit=2)
134		if len(parts) != 2:
135			raise ValueError(f'internal KUnit error, test name should be of the form "<suite>.<test>", got "{t}"')
136		suite, case = parts
137		if not suites or suites[-1] != suite:
138			suites.append(suite)
139	return suites
140
141
142
143def exec_tests(linux: kunit_kernel.LinuxSourceTree, request: KunitExecRequest) -> KunitResult:
144	filter_globs = [request.filter_glob]
145	if request.run_isolated:
146		tests = _list_tests(linux, request)
147		if request.run_isolated == 'test':
148			filter_globs = tests
149		if request.run_isolated == 'suite':
150			filter_globs = _suites_from_test_list(tests)
151			# Apply the test-part of the user's glob, if present.
152			if '.' in request.filter_glob:
153				test_glob = request.filter_glob.split('.', maxsplit=2)[1]
154				filter_globs = [g + '.'+ test_glob for g in filter_globs]
155
156	metadata = kunit_json.Metadata(arch=linux.arch(), build_dir=request.build_dir, def_config='kunit_defconfig')
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, metadata, 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, metadata: kunit_json.Metadata, 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		for line in output:
210			print(line.rstrip())
211
212	else:
213		test_result = kunit_parser.parse_run_tests(input_data)
214	parse_end = time.time()
215
216	if request.json:
217		json_str = kunit_json.get_json_result(
218					test=test_result,
219					metadata=metadata)
220		if request.json == 'stdout':
221			print(json_str)
222		else:
223			with open(request.json, 'w') as f:
224				f.write(json_str)
225			kunit_parser.print_with_timestamp("Test results stored in %s" %
226				os.path.abspath(request.json))
227
228	if test_result.status != kunit_parser.TestStatus.SUCCESS:
229		return KunitResult(KunitStatus.TEST_FAILURE, parse_end - parse_start), test_result
230
231	return KunitResult(KunitStatus.SUCCESS, parse_end - parse_start), test_result
232
233def run_tests(linux: kunit_kernel.LinuxSourceTree,
234	      request: KunitRequest) -> KunitResult:
235	run_start = time.time()
236
237	config_result = config_tests(linux, request)
238	if config_result.status != KunitStatus.SUCCESS:
239		return config_result
240
241	build_result = build_tests(linux, request)
242	if build_result.status != KunitStatus.SUCCESS:
243		return build_result
244
245	exec_result = exec_tests(linux, request)
246
247	run_end = time.time()
248
249	kunit_parser.print_with_timestamp((
250		'Elapsed time: %.3fs total, %.3fs configuring, %.3fs ' +
251		'building, %.3fs running\n') % (
252				run_end - run_start,
253				config_result.elapsed_time,
254				build_result.elapsed_time,
255				exec_result.elapsed_time))
256	return exec_result
257
258# Problem:
259# $ kunit.py run --json
260# works as one would expect and prints the parsed test results as JSON.
261# $ kunit.py run --json suite_name
262# would *not* pass suite_name as the filter_glob and print as json.
263# argparse will consider it to be another way of writing
264# $ kunit.py run --json=suite_name
265# i.e. it would run all tests, and dump the json to a `suite_name` file.
266# So we hackily automatically rewrite --json => --json=stdout
267pseudo_bool_flag_defaults = {
268		'--json': 'stdout',
269		'--raw_output': 'kunit',
270}
271def massage_argv(argv: Sequence[str]) -> Sequence[str]:
272	def massage_arg(arg: str) -> str:
273		if arg not in pseudo_bool_flag_defaults:
274			return arg
275		return  f'{arg}={pseudo_bool_flag_defaults[arg]}'
276	return list(map(massage_arg, argv))
277
278def get_default_jobs() -> int:
279	return len(os.sched_getaffinity(0))
280
281def add_common_opts(parser) -> None:
282	parser.add_argument('--build_dir',
283			    help='As in the make command, it specifies the build '
284			    'directory.',
285			    type=str, default='.kunit', metavar='DIR')
286	parser.add_argument('--make_options',
287			    help='X=Y make option, can be repeated.',
288			    action='append', metavar='X=Y')
289	parser.add_argument('--alltests',
290			    help='Run all KUnit tests through allyesconfig',
291			    action='store_true')
292	parser.add_argument('--kunitconfig',
293			     help='Path to Kconfig fragment that enables KUnit tests.'
294			     ' If given a directory, (e.g. lib/kunit), "/.kunitconfig" '
295			     'will get  automatically appended.',
296			     metavar='PATH')
297	parser.add_argument('--kconfig_add',
298			     help='Additional Kconfig options to append to the '
299			     '.kunitconfig, e.g. CONFIG_KASAN=y. Can be repeated.',
300			    action='append', metavar='CONFIG_X=Y')
301
302	parser.add_argument('--arch',
303			    help=('Specifies the architecture to run tests under. '
304				  'The architecture specified here must match the '
305				  'string passed to the ARCH make param, '
306				  'e.g. i386, x86_64, arm, um, etc. Non-UML '
307				  'architectures run on QEMU.'),
308			    type=str, default='um', metavar='ARCH')
309
310	parser.add_argument('--cross_compile',
311			    help=('Sets make\'s CROSS_COMPILE variable; it should '
312				  'be set to a toolchain path prefix (the prefix '
313				  'of gcc and other tools in your toolchain, for '
314				  'example `sparc64-linux-gnu-` if you have the '
315				  'sparc toolchain installed on your system, or '
316				  '`$HOME/toolchains/microblaze/gcc-9.2.0-nolibc/microblaze-linux/bin/microblaze-linux-` '
317				  'if you have downloaded the microblaze toolchain '
318				  'from the 0-day website to a directory in your '
319				  'home directory called `toolchains`).'),
320			    metavar='PREFIX')
321
322	parser.add_argument('--qemu_config',
323			    help=('Takes a path to a path to a file containing '
324				  'a QemuArchParams object.'),
325			    type=str, metavar='FILE')
326
327def add_build_opts(parser) -> None:
328	parser.add_argument('--jobs',
329			    help='As in the make command, "Specifies  the number of '
330			    'jobs (commands) to run simultaneously."',
331			    type=int, default=get_default_jobs(), metavar='N')
332
333def add_exec_opts(parser) -> None:
334	parser.add_argument('--timeout',
335			    help='maximum number of seconds to allow for all tests '
336			    'to run. This does not include time taken to build the '
337			    'tests.',
338			    type=int,
339			    default=300,
340			    metavar='SECONDS')
341	parser.add_argument('filter_glob',
342			    help='Filter which KUnit test suites/tests run at '
343			    'boot-time, e.g. list* or list*.*del_test',
344			    type=str,
345			    nargs='?',
346			    default='',
347			    metavar='filter_glob')
348	parser.add_argument('--kernel_args',
349			    help='Kernel command-line parameters. Maybe be repeated',
350			     action='append', metavar='')
351	parser.add_argument('--run_isolated', help='If set, boot the kernel for each '
352			    'individual suite/test. This is can be useful for debugging '
353			    'a non-hermetic test, one that might pass/fail based on '
354			    'what ran before it.',
355			    type=str,
356			    choices=['suite', 'test']),
357
358def add_parse_opts(parser) -> None:
359	parser.add_argument('--raw_output', help='If set don\'t format output from kernel. '
360			    'If set to --raw_output=kunit, filters to just KUnit output.',
361			     type=str, nargs='?', const='all', default=None, choices=['all', 'kunit'])
362	parser.add_argument('--json',
363			    nargs='?',
364			    help='Stores test results in a JSON, and either '
365			    'prints to stdout or saves to file if a '
366			    'filename is specified',
367			    type=str, const='stdout', default=None, metavar='FILE')
368
369def main(argv, linux=None):
370	parser = argparse.ArgumentParser(
371			description='Helps writing and running KUnit tests.')
372	subparser = parser.add_subparsers(dest='subcommand')
373
374	# The 'run' command will config, build, exec, and parse in one go.
375	run_parser = subparser.add_parser('run', help='Runs KUnit tests.')
376	add_common_opts(run_parser)
377	add_build_opts(run_parser)
378	add_exec_opts(run_parser)
379	add_parse_opts(run_parser)
380
381	config_parser = subparser.add_parser('config',
382						help='Ensures that .config contains all of '
383						'the options in .kunitconfig')
384	add_common_opts(config_parser)
385
386	build_parser = subparser.add_parser('build', help='Builds a kernel with KUnit tests')
387	add_common_opts(build_parser)
388	add_build_opts(build_parser)
389
390	exec_parser = subparser.add_parser('exec', help='Run a kernel with KUnit tests')
391	add_common_opts(exec_parser)
392	add_exec_opts(exec_parser)
393	add_parse_opts(exec_parser)
394
395	# The 'parse' option is special, as it doesn't need the kernel source
396	# (therefore there is no need for a build_dir, hence no add_common_opts)
397	# and the '--file' argument is not relevant to 'run', so isn't in
398	# add_parse_opts()
399	parse_parser = subparser.add_parser('parse',
400					    help='Parses KUnit results from a file, '
401					    'and parses formatted results.')
402	add_parse_opts(parse_parser)
403	parse_parser.add_argument('file',
404				  help='Specifies the file to read results from.',
405				  type=str, nargs='?', metavar='input_file')
406
407	cli_args = parser.parse_args(massage_argv(argv))
408
409	if get_kernel_root_path():
410		os.chdir(get_kernel_root_path())
411
412	if cli_args.subcommand == 'run':
413		if not os.path.exists(cli_args.build_dir):
414			os.mkdir(cli_args.build_dir)
415
416		if not linux:
417			linux = kunit_kernel.LinuxSourceTree(cli_args.build_dir,
418					kunitconfig_path=cli_args.kunitconfig,
419					kconfig_add=cli_args.kconfig_add,
420					arch=cli_args.arch,
421					cross_compile=cli_args.cross_compile,
422					qemu_config_path=cli_args.qemu_config)
423
424		request = KunitRequest(build_dir=cli_args.build_dir,
425				       make_options=cli_args.make_options,
426				       jobs=cli_args.jobs,
427				       alltests=cli_args.alltests,
428				       raw_output=cli_args.raw_output,
429				       json=cli_args.json,
430				       timeout=cli_args.timeout,
431				       filter_glob=cli_args.filter_glob,
432				       kernel_args=cli_args.kernel_args,
433				       run_isolated=cli_args.run_isolated)
434		result = run_tests(linux, request)
435		if result.status != KunitStatus.SUCCESS:
436			sys.exit(1)
437	elif cli_args.subcommand == 'config':
438		if cli_args.build_dir and (
439				not os.path.exists(cli_args.build_dir)):
440			os.mkdir(cli_args.build_dir)
441
442		if not linux:
443			linux = kunit_kernel.LinuxSourceTree(cli_args.build_dir,
444					kunitconfig_path=cli_args.kunitconfig,
445					kconfig_add=cli_args.kconfig_add,
446					arch=cli_args.arch,
447					cross_compile=cli_args.cross_compile,
448					qemu_config_path=cli_args.qemu_config)
449
450		request = KunitConfigRequest(build_dir=cli_args.build_dir,
451					     make_options=cli_args.make_options)
452		result = config_tests(linux, request)
453		kunit_parser.print_with_timestamp((
454			'Elapsed time: %.3fs\n') % (
455				result.elapsed_time))
456		if result.status != KunitStatus.SUCCESS:
457			sys.exit(1)
458	elif cli_args.subcommand == 'build':
459		if not linux:
460			linux = kunit_kernel.LinuxSourceTree(cli_args.build_dir,
461					kunitconfig_path=cli_args.kunitconfig,
462					kconfig_add=cli_args.kconfig_add,
463					arch=cli_args.arch,
464					cross_compile=cli_args.cross_compile,
465					qemu_config_path=cli_args.qemu_config)
466
467		request = KunitBuildRequest(build_dir=cli_args.build_dir,
468					    make_options=cli_args.make_options,
469					    jobs=cli_args.jobs,
470					    alltests=cli_args.alltests)
471		result = config_and_build_tests(linux, request)
472		kunit_parser.print_with_timestamp((
473			'Elapsed time: %.3fs\n') % (
474				result.elapsed_time))
475		if result.status != KunitStatus.SUCCESS:
476			sys.exit(1)
477	elif cli_args.subcommand == 'exec':
478		if not linux:
479			linux = kunit_kernel.LinuxSourceTree(cli_args.build_dir,
480					kunitconfig_path=cli_args.kunitconfig,
481					kconfig_add=cli_args.kconfig_add,
482					arch=cli_args.arch,
483					cross_compile=cli_args.cross_compile,
484					qemu_config_path=cli_args.qemu_config)
485
486		exec_request = KunitExecRequest(raw_output=cli_args.raw_output,
487						build_dir=cli_args.build_dir,
488						json=cli_args.json,
489						timeout=cli_args.timeout,
490						alltests=cli_args.alltests,
491						filter_glob=cli_args.filter_glob,
492						kernel_args=cli_args.kernel_args,
493						run_isolated=cli_args.run_isolated)
494		result = exec_tests(linux, exec_request)
495		kunit_parser.print_with_timestamp((
496			'Elapsed time: %.3fs\n') % (result.elapsed_time))
497		if result.status != KunitStatus.SUCCESS:
498			sys.exit(1)
499	elif cli_args.subcommand == 'parse':
500		if cli_args.file == None:
501			sys.stdin.reconfigure(errors='backslashreplace')  # pytype: disable=attribute-error
502			kunit_output = sys.stdin
503		else:
504			with open(cli_args.file, 'r', errors='backslashreplace') as f:
505				kunit_output = f.read().splitlines()
506		# We know nothing about how the result was created!
507		metadata = kunit_json.Metadata()
508		request = KunitParseRequest(raw_output=cli_args.raw_output,
509					    json=cli_args.json)
510		result, _ = parse_tests(request, metadata, kunit_output)
511		if result.status != KunitStatus.SUCCESS:
512			sys.exit(1)
513	else:
514		parser.print_help()
515
516if __name__ == '__main__':
517	main(sys.argv[1:])
518