137 lines
4.1 KiB
Python
137 lines
4.1 KiB
Python
|
#!/usr/bin/env python3
|
||
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
# A thin wrapper on top of the KUnit Kernel
|
||
|
|
||
|
import argparse
|
||
|
import sys
|
||
|
import os
|
||
|
import time
|
||
|
|
||
|
import kunit_config
|
||
|
import kunit_kernel
|
||
|
import kunit_new_template
|
||
|
import kunit_parser
|
||
|
|
||
|
from collections import namedtuple
|
||
|
|
||
|
KunitRequest = namedtuple('KunitRequest', ['raw_output','timeout', 'jobs', 'external_config'])
|
||
|
KunitResult = namedtuple('KunitResult', ['status','result'])
|
||
|
|
||
|
class KunitStatus(object):
|
||
|
SUCCESS = 'SUCCESS'
|
||
|
CONFIG_FAILURE = 'CONFIG_FAILURE'
|
||
|
BUILD_FAILURE = 'BUILD_FAILURE'
|
||
|
TEST_FAILURE = 'TEST_FAILURE'
|
||
|
|
||
|
def run_tests(linux: kunit_kernel.LinuxSourceTree,
|
||
|
request: KunitRequest) -> KunitResult:
|
||
|
config_start = time.time()
|
||
|
linux.make_external_config(request.external_config) # TODO
|
||
|
config_result = linux.build_reconfig()
|
||
|
config_end = time.time()
|
||
|
if config_result.status != kunit_kernel.ConfigStatus.SUCCESS:
|
||
|
return KunitResult(KunitStatus.CONFIG_FAILURE, config_result)
|
||
|
|
||
|
print(kunit_parser.timestamp('Building KUnit Kernel ...'))
|
||
|
|
||
|
build_start = time.time()
|
||
|
build_result = linux.build_um_kernel(request.jobs)
|
||
|
build_end = time.time()
|
||
|
if build_result.status != kunit_kernel.BuildStatus.SUCCESS:
|
||
|
return KunitResult(KunitStatus.BUILD_FAILURE, build_result)
|
||
|
|
||
|
print(kunit_parser.timestamp('Starting KUnit Kernel ...'))
|
||
|
test_start = time.time()
|
||
|
|
||
|
test_result = kunit_parser.TestResult(kunit_parser.TestStatus.SUCCESS,
|
||
|
[],
|
||
|
'Tests not Parsed.')
|
||
|
if request.raw_output:
|
||
|
kunit_parser.raw_output(
|
||
|
linux.run_kernel(timeout=request.timeout))
|
||
|
else:
|
||
|
test_result = kunit_parser.parse_run_tests(
|
||
|
kunit_parser.isolate_kunit_output(
|
||
|
linux.run_kernel(timeout=request.timeout)))
|
||
|
test_end = time.time()
|
||
|
test_result.print_pretty_log()
|
||
|
|
||
|
print(kunit_parser.timestamp((
|
||
|
'Elapsed time: %.3fs total, %.3fs configuring, %.3fs ' +
|
||
|
'building, %.3fs running.\n') % (
|
||
|
test_end - config_start,
|
||
|
config_end - config_start,
|
||
|
build_end - build_start,
|
||
|
test_end - test_start)))
|
||
|
|
||
|
if test_result.status != kunit_parser.TestStatus.SUCCESS:
|
||
|
return KunitResult(KunitStatus.TEST_FAILURE, test_result)
|
||
|
else:
|
||
|
return KunitResult(KunitStatus.SUCCESS, test_result)
|
||
|
|
||
|
def print_test_skeletons(cli_args):
|
||
|
kunit_new_template.create_skeletons_from_path(
|
||
|
cli_args.path,
|
||
|
namespace_prefix=cli_args.namespace_prefix,
|
||
|
print_test_only=cli_args.print_test_only)
|
||
|
|
||
|
def main(argv, linux):
|
||
|
parser = argparse.ArgumentParser(
|
||
|
description='Helps writing and running KUnit tests.')
|
||
|
subparser = parser.add_subparsers(dest='subcommand')
|
||
|
|
||
|
run_parser = subparser.add_parser('run', help='Runs KUnit tests.')
|
||
|
run_parser.add_argument('--raw_output', help='don\'t format output from kernel',
|
||
|
action='store_true')
|
||
|
|
||
|
run_parser.add_argument('--timeout',
|
||
|
help='maximum number of seconds to allow for all tests '
|
||
|
'to run. This does not include time taken to build the '
|
||
|
'tests.',
|
||
|
type=int,
|
||
|
default=300,
|
||
|
metavar='timeout')
|
||
|
|
||
|
run_parser.add_argument('--jobs',
|
||
|
help='As in the make command, "Specifies the number of '
|
||
|
'jobs (commands) to run simultaneously."',
|
||
|
type=int, default=8, metavar='jobs')
|
||
|
|
||
|
run_parser.add_argument('-t', '--target_config', dest='external_config', nargs='+',
|
||
|
help='run kunit with a specific target kunitconfig',
|
||
|
type=str)
|
||
|
|
||
|
new_parser = subparser.add_parser(
|
||
|
'new',
|
||
|
help='Prints out boilerplate for writing new tests.')
|
||
|
new_parser.add_argument('--path',
|
||
|
help='Path of source file to be tested.',
|
||
|
type=str,
|
||
|
required=True)
|
||
|
new_parser.add_argument('--namespace_prefix',
|
||
|
help='Namespace of the code to be tested.',
|
||
|
type=str)
|
||
|
new_parser.add_argument('--print_test_only',
|
||
|
help='Skip Kconfig and Makefile while printing sample '
|
||
|
'test.',
|
||
|
action='store_true')
|
||
|
|
||
|
cli_args = parser.parse_args(argv)
|
||
|
|
||
|
if cli_args.subcommand == 'new':
|
||
|
print_test_skeletons(cli_args)
|
||
|
elif cli_args.subcommand == 'run':
|
||
|
request = KunitRequest(cli_args.raw_output,
|
||
|
cli_args.timeout,
|
||
|
cli_args.jobs,
|
||
|
cli_args.external_config)
|
||
|
result = run_tests(linux, request)
|
||
|
if result.status != KunitStatus.SUCCESS:
|
||
|
sys.exit(1)
|
||
|
else:
|
||
|
parser.print_help()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main(sys.argv[1:], kunit_kernel.LinuxSourceTree())
|