Commit 1da2e622 authored by Daniel Latypov's avatar Daniel Latypov Committed by Shuah Khan

kunit: tool: fix pre-existing `mypy --strict` errors and update run_checks.py

Basically, get this command to be happy and make run_checks.py happy
 $ mypy --strict --exclude '_test.py$' --exclude qemu_configs/ ./tools/testing/kunit/

Primarily the changes are
* add `-> None` return type annotations
* add all the missing argument type annotations

Previously, we had false positives from mypy in `main()`, see commit
09641f7c ("kunit: tool: surface and address more typing issues").
But after commit 2dc9d6ca ("kunit: kunit.py extract handlers")
refactored things, the variable name reuse mypy hated is gone.

Note: mypy complains we don't annotate the types the unused args in our
signal handler. That's silly.
But to make it happy, I've copy-pasted an appropriate annotation from
https://github.com/python/typing/discussions/1042#discussioncomment-2013595.
Reported-by: default avatarJohannes Berg <johannes.berg@intel.com>
Link: https://lore.kernel.org/linux-kselftest/9a172b50457f4074af41fe1dc8e55dcaf4795d7e.camel@sipsolutions.net/Signed-off-by: default avatarDaniel Latypov <dlatypov@google.com>
Reviewed-by: default avatarDavid Gow <davidgow@google.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 126901ba
...@@ -269,7 +269,7 @@ def massage_argv(argv: Sequence[str]) -> Sequence[str]: ...@@ -269,7 +269,7 @@ def massage_argv(argv: Sequence[str]) -> Sequence[str]:
def get_default_jobs() -> int: def get_default_jobs() -> int:
return len(os.sched_getaffinity(0)) return len(os.sched_getaffinity(0))
def add_common_opts(parser) -> None: def add_common_opts(parser: argparse.ArgumentParser) -> None:
parser.add_argument('--build_dir', parser.add_argument('--build_dir',
help='As in the make command, it specifies the build ' help='As in the make command, it specifies the build '
'directory.', 'directory.',
...@@ -320,13 +320,13 @@ def add_common_opts(parser) -> None: ...@@ -320,13 +320,13 @@ def add_common_opts(parser) -> None:
help='Additional QEMU arguments, e.g. "-smp 8"', help='Additional QEMU arguments, e.g. "-smp 8"',
action='append', metavar='') action='append', metavar='')
def add_build_opts(parser) -> None: def add_build_opts(parser: argparse.ArgumentParser) -> None:
parser.add_argument('--jobs', parser.add_argument('--jobs',
help='As in the make command, "Specifies the number of ' help='As in the make command, "Specifies the number of '
'jobs (commands) to run simultaneously."', 'jobs (commands) to run simultaneously."',
type=int, default=get_default_jobs(), metavar='N') type=int, default=get_default_jobs(), metavar='N')
def add_exec_opts(parser) -> None: def add_exec_opts(parser: argparse.ArgumentParser) -> None:
parser.add_argument('--timeout', parser.add_argument('--timeout',
help='maximum number of seconds to allow for all tests ' help='maximum number of seconds to allow for all tests '
'to run. This does not include time taken to build the ' 'to run. This does not include time taken to build the '
...@@ -351,7 +351,7 @@ def add_exec_opts(parser) -> None: ...@@ -351,7 +351,7 @@ def add_exec_opts(parser) -> None:
type=str, type=str,
choices=['suite', 'test']) choices=['suite', 'test'])
def add_parse_opts(parser) -> None: def add_parse_opts(parser: argparse.ArgumentParser) -> None:
parser.add_argument('--raw_output', help='If set don\'t parse output from kernel. ' parser.add_argument('--raw_output', help='If set don\'t parse output from kernel. '
'By default, filters to just KUnit output. Use ' 'By default, filters to just KUnit output. Use '
'--raw_output=all to show everything', '--raw_output=all to show everything',
...@@ -386,7 +386,7 @@ def tree_from_args(cli_args: argparse.Namespace) -> kunit_kernel.LinuxSourceTree ...@@ -386,7 +386,7 @@ def tree_from_args(cli_args: argparse.Namespace) -> kunit_kernel.LinuxSourceTree
extra_qemu_args=qemu_args) extra_qemu_args=qemu_args)
def run_handler(cli_args): def run_handler(cli_args: argparse.Namespace) -> None:
if not os.path.exists(cli_args.build_dir): if not os.path.exists(cli_args.build_dir):
os.mkdir(cli_args.build_dir) os.mkdir(cli_args.build_dir)
...@@ -405,7 +405,7 @@ def run_handler(cli_args): ...@@ -405,7 +405,7 @@ def run_handler(cli_args):
sys.exit(1) sys.exit(1)
def config_handler(cli_args): def config_handler(cli_args: argparse.Namespace) -> None:
if cli_args.build_dir and ( if cli_args.build_dir and (
not os.path.exists(cli_args.build_dir)): not os.path.exists(cli_args.build_dir)):
os.mkdir(cli_args.build_dir) os.mkdir(cli_args.build_dir)
...@@ -421,7 +421,7 @@ def config_handler(cli_args): ...@@ -421,7 +421,7 @@ def config_handler(cli_args):
sys.exit(1) sys.exit(1)
def build_handler(cli_args): def build_handler(cli_args: argparse.Namespace) -> None:
linux = tree_from_args(cli_args) linux = tree_from_args(cli_args)
request = KunitBuildRequest(build_dir=cli_args.build_dir, request = KunitBuildRequest(build_dir=cli_args.build_dir,
make_options=cli_args.make_options, make_options=cli_args.make_options,
...@@ -434,7 +434,7 @@ def build_handler(cli_args): ...@@ -434,7 +434,7 @@ def build_handler(cli_args):
sys.exit(1) sys.exit(1)
def exec_handler(cli_args): def exec_handler(cli_args: argparse.Namespace) -> None:
linux = tree_from_args(cli_args) linux = tree_from_args(cli_args)
exec_request = KunitExecRequest(raw_output=cli_args.raw_output, exec_request = KunitExecRequest(raw_output=cli_args.raw_output,
build_dir=cli_args.build_dir, build_dir=cli_args.build_dir,
...@@ -450,10 +450,10 @@ def exec_handler(cli_args): ...@@ -450,10 +450,10 @@ def exec_handler(cli_args):
sys.exit(1) sys.exit(1)
def parse_handler(cli_args): def parse_handler(cli_args: argparse.Namespace) -> None:
if cli_args.file is None: if cli_args.file is None:
sys.stdin.reconfigure(errors='backslashreplace') # pytype: disable=attribute-error sys.stdin.reconfigure(errors='backslashreplace') # type: ignore
kunit_output = sys.stdin kunit_output = sys.stdin # type: Iterable[str]
else: else:
with open(cli_args.file, 'r', errors='backslashreplace') as f: with open(cli_args.file, 'r', errors='backslashreplace') as f:
kunit_output = f.read().splitlines() kunit_output = f.read().splitlines()
...@@ -475,7 +475,7 @@ subcommand_handlers_map = { ...@@ -475,7 +475,7 @@ subcommand_handlers_map = {
} }
def main(argv): def main(argv: Sequence[str]) -> None:
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description='Helps writing and running KUnit tests.') description='Helps writing and running KUnit tests.')
subparser = parser.add_subparsers(dest='subcommand') subparser = parser.add_subparsers(dest='subcommand')
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
from dataclasses import dataclass from dataclasses import dataclass
import re import re
from typing import Dict, Iterable, List, Tuple from typing import Any, Dict, Iterable, List, Tuple
CONFIG_IS_NOT_SET_PATTERN = r'^# CONFIG_(\w+) is not set$' CONFIG_IS_NOT_SET_PATTERN = r'^# CONFIG_(\w+) is not set$'
CONFIG_PATTERN = r'^CONFIG_(\w+)=(\S+|".*")$' CONFIG_PATTERN = r'^CONFIG_(\w+)=(\S+|".*")$'
...@@ -34,7 +34,7 @@ class Kconfig: ...@@ -34,7 +34,7 @@ class Kconfig:
def __init__(self) -> None: def __init__(self) -> None:
self._entries = {} # type: Dict[str, str] self._entries = {} # type: Dict[str, str]
def __eq__(self, other) -> bool: def __eq__(self, other: Any) -> bool:
if not isinstance(other, self.__class__): if not isinstance(other, self.__class__):
return False return False
return self._entries == other._entries return self._entries == other._entries
......
...@@ -16,6 +16,7 @@ import shutil ...@@ -16,6 +16,7 @@ import shutil
import signal import signal
import threading import threading
from typing import Iterator, List, Optional, Tuple from typing import Iterator, List, Optional, Tuple
from types import FrameType
import kunit_config import kunit_config
import qemu_config import qemu_config
...@@ -56,7 +57,7 @@ class LinuxSourceTreeOperations: ...@@ -56,7 +57,7 @@ class LinuxSourceTreeOperations:
def make_arch_config(self, base_kunitconfig: kunit_config.Kconfig) -> kunit_config.Kconfig: def make_arch_config(self, base_kunitconfig: kunit_config.Kconfig) -> kunit_config.Kconfig:
return base_kunitconfig return base_kunitconfig
def make_olddefconfig(self, build_dir: str, make_options) -> None: def make_olddefconfig(self, build_dir: str, make_options: Optional[List[str]]) -> None:
command = ['make', 'ARCH=' + self._linux_arch, 'O=' + build_dir, 'olddefconfig'] command = ['make', 'ARCH=' + self._linux_arch, 'O=' + build_dir, 'olddefconfig']
if self._cross_compile: if self._cross_compile:
command += ['CROSS_COMPILE=' + self._cross_compile] command += ['CROSS_COMPILE=' + self._cross_compile]
...@@ -70,7 +71,7 @@ class LinuxSourceTreeOperations: ...@@ -70,7 +71,7 @@ class LinuxSourceTreeOperations:
except subprocess.CalledProcessError as e: except subprocess.CalledProcessError as e:
raise ConfigError(e.output.decode()) raise ConfigError(e.output.decode())
def make(self, jobs, build_dir: str, make_options) -> None: def make(self, jobs: int, build_dir: str, make_options: Optional[List[str]]) -> None:
command = ['make', 'ARCH=' + self._linux_arch, 'O=' + build_dir, '--jobs=' + str(jobs)] command = ['make', 'ARCH=' + self._linux_arch, 'O=' + build_dir, '--jobs=' + str(jobs)]
if make_options: if make_options:
command.extend(make_options) command.extend(make_options)
...@@ -132,7 +133,7 @@ class LinuxSourceTreeOperationsQemu(LinuxSourceTreeOperations): ...@@ -132,7 +133,7 @@ class LinuxSourceTreeOperationsQemu(LinuxSourceTreeOperations):
class LinuxSourceTreeOperationsUml(LinuxSourceTreeOperations): class LinuxSourceTreeOperationsUml(LinuxSourceTreeOperations):
"""An abstraction over command line operations performed on a source tree.""" """An abstraction over command line operations performed on a source tree."""
def __init__(self, cross_compile=None): def __init__(self, cross_compile: Optional[str]=None):
super().__init__(linux_arch='um', cross_compile=cross_compile) super().__init__(linux_arch='um', cross_compile=cross_compile)
def make_arch_config(self, base_kunitconfig: kunit_config.Kconfig) -> kunit_config.Kconfig: def make_arch_config(self, base_kunitconfig: kunit_config.Kconfig) -> kunit_config.Kconfig:
...@@ -215,7 +216,7 @@ def _get_qemu_ops(config_path: str, ...@@ -215,7 +216,7 @@ def _get_qemu_ops(config_path: str,
if not hasattr(config, 'QEMU_ARCH'): if not hasattr(config, 'QEMU_ARCH'):
raise ValueError('qemu_config module missing "QEMU_ARCH": ' + config_path) raise ValueError('qemu_config module missing "QEMU_ARCH": ' + config_path)
params: qemu_config.QemuArchParams = config.QEMU_ARCH # type: ignore params: qemu_config.QemuArchParams = config.QEMU_ARCH
if extra_qemu_args: if extra_qemu_args:
params.extra_qemu_params.extend(extra_qemu_args) params.extra_qemu_params.extend(extra_qemu_args)
return params.linux_arch, LinuxSourceTreeOperationsQemu( return params.linux_arch, LinuxSourceTreeOperationsQemu(
...@@ -229,10 +230,10 @@ class LinuxSourceTree: ...@@ -229,10 +230,10 @@ class LinuxSourceTree:
build_dir: str, build_dir: str,
kunitconfig_paths: Optional[List[str]]=None, kunitconfig_paths: Optional[List[str]]=None,
kconfig_add: Optional[List[str]]=None, kconfig_add: Optional[List[str]]=None,
arch=None, arch: Optional[str]=None,
cross_compile=None, cross_compile: Optional[str]=None,
qemu_config_path=None, qemu_config_path: Optional[str]=None,
extra_qemu_args=None) -> None: extra_qemu_args: Optional[List[str]]=None) -> None:
signal.signal(signal.SIGINT, self.signal_handler) signal.signal(signal.SIGINT, self.signal_handler)
if qemu_config_path: if qemu_config_path:
self._arch, self._ops = _get_qemu_ops(qemu_config_path, extra_qemu_args, cross_compile) self._arch, self._ops = _get_qemu_ops(qemu_config_path, extra_qemu_args, cross_compile)
...@@ -275,7 +276,7 @@ class LinuxSourceTree: ...@@ -275,7 +276,7 @@ class LinuxSourceTree:
logging.error(message) logging.error(message)
return False return False
def build_config(self, build_dir: str, make_options) -> bool: def build_config(self, build_dir: str, make_options: Optional[List[str]]) -> bool:
kconfig_path = get_kconfig_path(build_dir) kconfig_path = get_kconfig_path(build_dir)
if build_dir and not os.path.exists(build_dir): if build_dir and not os.path.exists(build_dir):
os.mkdir(build_dir) os.mkdir(build_dir)
...@@ -303,7 +304,7 @@ class LinuxSourceTree: ...@@ -303,7 +304,7 @@ class LinuxSourceTree:
old_kconfig = kunit_config.parse_file(old_path) old_kconfig = kunit_config.parse_file(old_path)
return old_kconfig != self._kconfig return old_kconfig != self._kconfig
def build_reconfig(self, build_dir: str, make_options) -> bool: def build_reconfig(self, build_dir: str, make_options: Optional[List[str]]) -> bool:
"""Creates a new .config if it is not a subset of the .kunitconfig.""" """Creates a new .config if it is not a subset of the .kunitconfig."""
kconfig_path = get_kconfig_path(build_dir) kconfig_path = get_kconfig_path(build_dir)
if not os.path.exists(kconfig_path): if not os.path.exists(kconfig_path):
...@@ -319,7 +320,7 @@ class LinuxSourceTree: ...@@ -319,7 +320,7 @@ class LinuxSourceTree:
os.remove(kconfig_path) os.remove(kconfig_path)
return self.build_config(build_dir, make_options) return self.build_config(build_dir, make_options)
def build_kernel(self, jobs, build_dir: str, make_options) -> bool: def build_kernel(self, jobs: int, build_dir: str, make_options: Optional[List[str]]) -> bool:
try: try:
self._ops.make_olddefconfig(build_dir, make_options) self._ops.make_olddefconfig(build_dir, make_options)
self._ops.make(jobs, build_dir, make_options) self._ops.make(jobs, build_dir, make_options)
...@@ -328,7 +329,7 @@ class LinuxSourceTree: ...@@ -328,7 +329,7 @@ class LinuxSourceTree:
return False return False
return self.validate_config(build_dir) return self.validate_config(build_dir)
def run_kernel(self, args=None, build_dir='', filter_glob='', timeout=None) -> Iterator[str]: def run_kernel(self, args: Optional[List[str]]=None, build_dir: str='', filter_glob: str='', timeout: Optional[int]=None) -> Iterator[str]:
if not args: if not args:
args = [] args = []
if filter_glob: if filter_glob:
...@@ -339,7 +340,7 @@ class LinuxSourceTree: ...@@ -339,7 +340,7 @@ class LinuxSourceTree:
assert process.stdout is not None # tell mypy it's set assert process.stdout is not None # tell mypy it's set
# Enforce the timeout in a background thread. # Enforce the timeout in a background thread.
def _wait_proc(): def _wait_proc() -> None:
try: try:
process.wait(timeout=timeout) process.wait(timeout=timeout)
except Exception as e: except Exception as e:
...@@ -365,6 +366,6 @@ class LinuxSourceTree: ...@@ -365,6 +366,6 @@ class LinuxSourceTree:
waiter.join() waiter.join()
subprocess.call(['stty', 'sane']) subprocess.call(['stty', 'sane'])
def signal_handler(self, unused_sig, unused_frame) -> None: def signal_handler(self, unused_sig: int, unused_frame: Optional[FrameType]) -> None:
logging.error('Build interruption occurred. Cleaning console.') logging.error('Build interruption occurred. Cleaning console.')
subprocess.call(['stty', 'sane']) subprocess.call(['stty', 'sane'])
...@@ -23,7 +23,7 @@ commands: Dict[str, Sequence[str]] = { ...@@ -23,7 +23,7 @@ commands: Dict[str, Sequence[str]] = {
'kunit_tool_test.py': ['./kunit_tool_test.py'], 'kunit_tool_test.py': ['./kunit_tool_test.py'],
'kunit smoke test': ['./kunit.py', 'run', '--kunitconfig=lib/kunit', '--build_dir=kunit_run_checks'], 'kunit smoke test': ['./kunit.py', 'run', '--kunitconfig=lib/kunit', '--build_dir=kunit_run_checks'],
'pytype': ['/bin/sh', '-c', 'pytype *.py'], 'pytype': ['/bin/sh', '-c', 'pytype *.py'],
'mypy': ['/bin/sh', '-c', 'mypy *.py'], 'mypy': ['mypy', '--strict', '--exclude', '_test.py$', '--exclude', 'qemu_configs/', '.'],
} }
# The user might not have mypy or pytype installed, skip them if so. # The user might not have mypy or pytype installed, skip them if so.
...@@ -73,7 +73,7 @@ def main(argv: Sequence[str]) -> None: ...@@ -73,7 +73,7 @@ def main(argv: Sequence[str]) -> None:
sys.exit(1) sys.exit(1)
def run_cmd(argv: Sequence[str]): def run_cmd(argv: Sequence[str]) -> None:
subprocess.check_output(argv, stderr=subprocess.STDOUT, cwd=ABS_TOOL_PATH, timeout=TIMEOUT) subprocess.check_output(argv, stderr=subprocess.STDOUT, cwd=ABS_TOOL_PATH, timeout=TIMEOUT)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment