aboutsummaryrefslogtreecommitdiff
path: root/tests/qemu-iotests/297
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2021-10-19 10:49:14 -0400
committerJohn Snow <jsnow@redhat.com>2021-11-01 11:54:59 -0400
commitc293ba55c52ce07e03919e61e4a17d2cc2c944d4 (patch)
tree1ad72eba3319e3c39ae030f404dcdc64cb7ad880 /tests/qemu-iotests/297
parent85cfec53d0b43182a14f8b5c3aa685955a852f1c (diff)
downloadqemu-c293ba55c52ce07e03919e61e4a17d2cc2c944d4.zip
qemu-c293ba55c52ce07e03919e61e4a17d2cc2c944d4.tar.gz
qemu-c293ba55c52ce07e03919e61e4a17d2cc2c944d4.tar.bz2
iotests: split linters.py out from 297
Now, 297 is just the iotests-specific incantations and linters.py is as minimal as I can think to make it. The only remaining element in here that ought to be configuration and not code is the list of skip files, but they're still numerous enough that repeating them for mypy and pylint configurations both would be ... a hassle. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Hanna Reitz <hreitz@redhat.com> Message-id: 20211019144918.3159078-12-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/297')
-rwxr-xr-xtests/qemu-iotests/29772
1 files changed, 11 insertions, 61 deletions
diff --git a/tests/qemu-iotests/297 b/tests/qemu-iotests/297
index b7d9d60..ee78a62 100755
--- a/tests/qemu-iotests/297
+++ b/tests/qemu-iotests/297
@@ -17,74 +17,24 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
-import re
import subprocess
import sys
-from typing import List, Mapping, Optional
+from typing import List
import iotests
+import linters
-# TODO: Empty this list!
-SKIP_FILES = (
- '030', '040', '041', '044', '045', '055', '056', '057', '065', '093',
- '096', '118', '124', '132', '136', '139', '147', '148', '149',
- '151', '152', '155', '163', '165', '194', '196', '202',
- '203', '205', '206', '207', '208', '210', '211', '212', '213', '216',
- '218', '219', '224', '228', '234', '235', '236', '237', '238',
- '240', '242', '245', '246', '248', '255', '256', '257', '258', '260',
- '262', '264', '266', '274', '277', '280', '281', '295', '296', '298',
- '299', '302', '303', '304', '307',
- 'nbd-fault-injector.py', 'qcow2.py', 'qcow2_format.py', 'qed.py'
-)
-
-
-def is_python_file(filename):
- if not os.path.isfile(filename):
- return False
-
- if filename.endswith('.py'):
- return True
-
- with open(filename, encoding='utf-8') as f:
- try:
- first_line = f.readline()
- return re.match('^#!.*python', first_line) is not None
- except UnicodeDecodeError: # Ignore binary files
- return False
-
-
-def get_test_files() -> List[str]:
- named_tests = [f'tests/{entry}' for entry in os.listdir('tests')]
- check_tests = set(os.listdir('.') + named_tests) - set(SKIP_FILES)
- return list(filter(is_python_file, check_tests))
-
-
-def run_linter(
- tool: str,
- args: List[str],
- env: Optional[Mapping[str, str]] = None,
- suppress_output: bool = False,
-) -> None:
- """
- Run a python-based linting tool.
-
- :param suppress_output: If True, suppress all stdout/stderr output.
- :raise CalledProcessError: If the linter process exits with failure.
- """
- subprocess.run(
- ('python3', '-m', tool, *args),
- env=env,
- check=True,
- stdout=subprocess.PIPE if suppress_output else None,
- stderr=subprocess.STDOUT if suppress_output else None,
- universal_newlines=True,
- )
+# Looking for something?
+#
+# List of files to exclude from linting: linters.py
+# mypy configuration: mypy.ini
+# pylint configuration: pylintrc
def check_linter(linter: str) -> bool:
try:
- run_linter(linter, ['--version'], suppress_output=True)
+ linters.run_linter(linter, ['--version'], suppress_output=True)
except subprocess.CalledProcessError:
iotests.case_notrun(f"'{linter}' not found")
return False
@@ -98,7 +48,7 @@ def test_pylint(files: List[str]) -> None:
if not check_linter('pylint'):
return
- run_linter('pylint', files)
+ linters.run_linter('pylint', files)
def test_mypy(files: List[str]) -> None:
@@ -111,11 +61,11 @@ def test_mypy(files: List[str]) -> None:
env = os.environ.copy()
env['MYPYPATH'] = env['PYTHONPATH']
- run_linter('mypy', files, env=env, suppress_output=True)
+ linters.run_linter('mypy', files, env=env, suppress_output=True)
def main() -> None:
- files = get_test_files()
+ files = linters.get_test_files()
iotests.logger.debug('Files to be checked:')
iotests.logger.debug(', '.join(sorted(files)))