xref: /openbmc/qemu/tests/qemu-iotests/check (revision cfb9b0b731ff86f71fd8602be0da1e064795c7ce)
1f203080bSVladimir Sementsov-Ogievskiy#!/usr/bin/env python3
26bf19c94SChristoph Hellwig#
3f203080bSVladimir Sementsov-Ogievskiy# Configure environment and run group of tests in it.
4f203080bSVladimir Sementsov-Ogievskiy#
5f203080bSVladimir Sementsov-Ogievskiy# Copyright (c) 2020-2021 Virtuozzo International GmbH
66bf19c94SChristoph Hellwig#
76bf19c94SChristoph Hellwig# This program is free software; you can redistribute it and/or
86bf19c94SChristoph Hellwig# modify it under the terms of the GNU General Public License as
96bf19c94SChristoph Hellwig# published by the Free Software Foundation.
106bf19c94SChristoph Hellwig#
116bf19c94SChristoph Hellwig# This program is distributed in the hope that it would be useful,
126bf19c94SChristoph Hellwig# but WITHOUT ANY WARRANTY; without even the implied warranty of
136bf19c94SChristoph Hellwig# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
146bf19c94SChristoph Hellwig# GNU General Public License for more details.
156bf19c94SChristoph Hellwig#
166bf19c94SChristoph Hellwig# You should have received a copy of the GNU General Public License
17e8c212d6SChristoph Hellwig# along with this program.  If not, see <http://www.gnu.org/licenses/>.
186bf19c94SChristoph Hellwig
19f203080bSVladimir Sementsov-Ogievskiyimport os
20f203080bSVladimir Sementsov-Ogievskiyimport sys
21f203080bSVladimir Sementsov-Ogievskiyimport argparse
22480b75eeSPaolo Bonziniimport shutil
23480b75eeSPaolo Bonzinifrom pathlib import Path
24480b75eeSPaolo Bonzini
25f203080bSVladimir Sementsov-Ogievskiyfrom findtests import TestFinder
26f203080bSVladimir Sementsov-Ogievskiyfrom testenv import TestEnv
27f203080bSVladimir Sementsov-Ogievskiyfrom testrunner import TestRunner
286bf19c94SChristoph Hellwig
29e8f8624dSMax Reitz
30f203080bSVladimir Sementsov-Ogievskiydef make_argparser() -> argparse.ArgumentParser:
31f203080bSVladimir Sementsov-Ogievskiy    p = argparse.ArgumentParser(description="Test run options")
32e8f8624dSMax Reitz
33f203080bSVladimir Sementsov-Ogievskiy    p.add_argument('-n', '--dry-run', action='store_true',
34f203080bSVladimir Sementsov-Ogievskiy                   help='show me, do not run tests')
35f203080bSVladimir Sementsov-Ogievskiy    p.add_argument('-makecheck', action='store_true',
36f203080bSVladimir Sementsov-Ogievskiy                   help='pretty print output for make check')
37e8f8624dSMax Reitz
38f203080bSVladimir Sementsov-Ogievskiy    p.add_argument('-d', dest='debug', action='store_true', help='debug')
39*cfb9b0b7SEmanuele Giuseppe Esposito    p.add_argument('-gdb', action='store_true',
40*cfb9b0b7SEmanuele Giuseppe Esposito                   help="start gdbserver with $GDB_OPTIONS options \
41*cfb9b0b7SEmanuele Giuseppe Esposito                        ('localhost:12345' if $GDB_OPTIONS is empty)")
42f203080bSVladimir Sementsov-Ogievskiy    p.add_argument('-misalign', action='store_true',
43f203080bSVladimir Sementsov-Ogievskiy                   help='misalign memory allocations')
44f203080bSVladimir Sementsov-Ogievskiy    p.add_argument('--color', choices=['on', 'off', 'auto'],
45f203080bSVladimir Sementsov-Ogievskiy                   default='auto', help="use terminal colors. The default "
46f203080bSVladimir Sementsov-Ogievskiy                   "'auto' value means use colors if terminal stdout detected")
477fed1a49SMax Reitz
48f203080bSVladimir Sementsov-Ogievskiy    g_env = p.add_argument_group('test environment options')
49f203080bSVladimir Sementsov-Ogievskiy    mg = g_env.add_mutually_exclusive_group()
50f203080bSVladimir Sementsov-Ogievskiy    # We don't set default for cachemode, as we need to distinguish default
51f203080bSVladimir Sementsov-Ogievskiy    # from user input later.
52f203080bSVladimir Sementsov-Ogievskiy    mg.add_argument('-nocache', dest='cachemode', action='store_const',
53f203080bSVladimir Sementsov-Ogievskiy                    const='none', help='set cache mode "none" (O_DIRECT), '
54f203080bSVladimir Sementsov-Ogievskiy                    'sets CACHEMODE environment variable')
55f203080bSVladimir Sementsov-Ogievskiy    mg.add_argument('-c', dest='cachemode',
56f203080bSVladimir Sementsov-Ogievskiy                    help='sets CACHEMODE environment variable')
576bf19c94SChristoph Hellwig
58f203080bSVladimir Sementsov-Ogievskiy    g_env.add_argument('-i', dest='aiomode', default='threads',
59f203080bSVladimir Sementsov-Ogievskiy                       help='sets AIOMODE environment variable')
6009d653e6SPaolo Bonzini
61f203080bSVladimir Sementsov-Ogievskiy    p.set_defaults(imgfmt='raw', imgproto='file')
6209d653e6SPaolo Bonzini
63f203080bSVladimir Sementsov-Ogievskiy    format_list = ['raw', 'bochs', 'cloop', 'parallels', 'qcow', 'qcow2',
64f203080bSVladimir Sementsov-Ogievskiy                   'qed', 'vdi', 'vpc', 'vhdx', 'vmdk', 'luks', 'dmg']
65f203080bSVladimir Sementsov-Ogievskiy    g_fmt = p.add_argument_group(
66f203080bSVladimir Sementsov-Ogievskiy        '  image format options',
67f203080bSVladimir Sementsov-Ogievskiy        'The following options set the IMGFMT environment variable. '
68f203080bSVladimir Sementsov-Ogievskiy        'At most one choice is allowed, default is "raw"')
69f203080bSVladimir Sementsov-Ogievskiy    mg = g_fmt.add_mutually_exclusive_group()
70f203080bSVladimir Sementsov-Ogievskiy    for fmt in format_list:
71f203080bSVladimir Sementsov-Ogievskiy        mg.add_argument('-' + fmt, dest='imgfmt', action='store_const',
72f203080bSVladimir Sementsov-Ogievskiy                        const=fmt, help=f'test {fmt}')
7370ff5b07SAlex Bennée
7409ec8517SMarkus Armbruster    protocol_list = ['file', 'rbd', 'nbd', 'ssh', 'nfs', 'fuse']
75f203080bSVladimir Sementsov-Ogievskiy    g_prt = p.add_argument_group(
76f203080bSVladimir Sementsov-Ogievskiy        '  image protocol options',
77f203080bSVladimir Sementsov-Ogievskiy        'The following options set the IMGPROTO environment variable. '
78f203080bSVladimir Sementsov-Ogievskiy        'At most one choice is allowed, default is "file"')
79f203080bSVladimir Sementsov-Ogievskiy    mg = g_prt.add_mutually_exclusive_group()
80f203080bSVladimir Sementsov-Ogievskiy    for prt in protocol_list:
81f203080bSVladimir Sementsov-Ogievskiy        mg.add_argument('-' + prt, dest='imgproto', action='store_const',
82f203080bSVladimir Sementsov-Ogievskiy                        const=prt, help=f'test {prt}')
8370ff5b07SAlex Bennée
84f203080bSVladimir Sementsov-Ogievskiy    g_bash = p.add_argument_group('bash tests options',
85f203080bSVladimir Sementsov-Ogievskiy                                  'The following options are ignored by '
86f203080bSVladimir Sementsov-Ogievskiy                                  'python tests.')
87f203080bSVladimir Sementsov-Ogievskiy    # TODO: make support for the following options in iotests.py
88f203080bSVladimir Sementsov-Ogievskiy    g_bash.add_argument('-o', dest='imgopts',
89f203080bSVladimir Sementsov-Ogievskiy                        help='options to pass to qemu-img create/convert, '
90f203080bSVladimir Sementsov-Ogievskiy                        'sets IMGOPTS environment variable')
91f203080bSVladimir Sementsov-Ogievskiy    g_bash.add_argument('-valgrind', action='store_true',
92f203080bSVladimir Sementsov-Ogievskiy                        help='use valgrind, sets VALGRIND_QEMU environment '
93f203080bSVladimir Sementsov-Ogievskiy                        'variable')
9409d653e6SPaolo Bonzini
95f203080bSVladimir Sementsov-Ogievskiy    g_sel = p.add_argument_group('test selecting options',
96f203080bSVladimir Sementsov-Ogievskiy                                 'The following options specify test set '
97f203080bSVladimir Sementsov-Ogievskiy                                 'to run.')
98f203080bSVladimir Sementsov-Ogievskiy    g_sel.add_argument('-g', '--groups', metavar='group1,...',
99f203080bSVladimir Sementsov-Ogievskiy                       help='include tests from these groups')
100f203080bSVladimir Sementsov-Ogievskiy    g_sel.add_argument('-x', '--exclude-groups', metavar='group1,...',
101f203080bSVladimir Sementsov-Ogievskiy                       help='exclude tests from these groups')
102f203080bSVladimir Sementsov-Ogievskiy    g_sel.add_argument('--start-from', metavar='TEST',
103f203080bSVladimir Sementsov-Ogievskiy                       help='Start from specified test: make sorted sequence '
104f203080bSVladimir Sementsov-Ogievskiy                       'of tests as usual and then drop tests from the first '
105f203080bSVladimir Sementsov-Ogievskiy                       'one to TEST (not inclusive). This may be used to '
106f203080bSVladimir Sementsov-Ogievskiy                       'rerun failed ./check command, starting from the '
107f203080bSVladimir Sementsov-Ogievskiy                       'middle of the process.')
108f203080bSVladimir Sementsov-Ogievskiy    g_sel.add_argument('tests', metavar='TEST_FILES', nargs='*',
109480b75eeSPaolo Bonzini                       help='tests to run, or "--" followed by a command')
11009d653e6SPaolo Bonzini
111f203080bSVladimir Sementsov-Ogievskiy    return p
11209d653e6SPaolo Bonzini
11309d653e6SPaolo Bonzini
114f203080bSVladimir Sementsov-Ogievskiyif __name__ == '__main__':
115f203080bSVladimir Sementsov-Ogievskiy    args = make_argparser().parse_args()
11609d653e6SPaolo Bonzini
117f203080bSVladimir Sementsov-Ogievskiy    env = TestEnv(imgfmt=args.imgfmt, imgproto=args.imgproto,
118f203080bSVladimir Sementsov-Ogievskiy                  aiomode=args.aiomode, cachemode=args.cachemode,
119f203080bSVladimir Sementsov-Ogievskiy                  imgopts=args.imgopts, misalign=args.misalign,
120*cfb9b0b7SEmanuele Giuseppe Esposito                  debug=args.debug, valgrind=args.valgrind,
121*cfb9b0b7SEmanuele Giuseppe Esposito                  gdb=args.gdb)
12209d653e6SPaolo Bonzini
123480b75eeSPaolo Bonzini    if len(sys.argv) > 1 and sys.argv[-len(args.tests)-1] == '--':
124480b75eeSPaolo Bonzini        if not args.tests:
125480b75eeSPaolo Bonzini            sys.exit("missing command after '--'")
126480b75eeSPaolo Bonzini        cmd = args.tests
127480b75eeSPaolo Bonzini        env.print_env()
128480b75eeSPaolo Bonzini        exec_pathstr = shutil.which(cmd[0])
129480b75eeSPaolo Bonzini        if exec_pathstr is None:
130480b75eeSPaolo Bonzini            sys.exit('command not found: ' + cmd[0])
131480b75eeSPaolo Bonzini        exec_path = Path(exec_pathstr).resolve()
132480b75eeSPaolo Bonzini        cmd[0] = str(exec_path)
133480b75eeSPaolo Bonzini        full_env = env.prepare_subprocess(cmd)
134480b75eeSPaolo Bonzini        os.chdir(exec_path.parent)
135480b75eeSPaolo Bonzini        os.execve(cmd[0], cmd, full_env)
136480b75eeSPaolo Bonzini
137f203080bSVladimir Sementsov-Ogievskiy    testfinder = TestFinder(test_dir=env.source_iotests)
1388803714bSEric Blake
139f203080bSVladimir Sementsov-Ogievskiy    groups = args.groups.split(',') if args.groups else None
140f203080bSVladimir Sementsov-Ogievskiy    x_groups = args.exclude_groups.split(',') if args.exclude_groups else None
14109d653e6SPaolo Bonzini
142f203080bSVladimir Sementsov-Ogievskiy    group_local = os.path.join(env.source_iotests, 'group.local')
143f203080bSVladimir Sementsov-Ogievskiy    if os.path.isfile(group_local):
144f203080bSVladimir Sementsov-Ogievskiy        try:
145f203080bSVladimir Sementsov-Ogievskiy            testfinder.add_group_file(group_local)
146f203080bSVladimir Sementsov-Ogievskiy        except ValueError as e:
147f203080bSVladimir Sementsov-Ogievskiy            sys.exit(f"Failed to parse group file '{group_local}': {e}")
14809d653e6SPaolo Bonzini
149f203080bSVladimir Sementsov-Ogievskiy    try:
150f203080bSVladimir Sementsov-Ogievskiy        tests = testfinder.find_tests(groups=groups, exclude_groups=x_groups,
151f203080bSVladimir Sementsov-Ogievskiy                                      tests=args.tests,
152f203080bSVladimir Sementsov-Ogievskiy                                      start_from=args.start_from)
153f203080bSVladimir Sementsov-Ogievskiy        if not tests:
154f203080bSVladimir Sementsov-Ogievskiy            raise ValueError('No tests selected')
155f203080bSVladimir Sementsov-Ogievskiy    except ValueError as e:
156f203080bSVladimir Sementsov-Ogievskiy        sys.exit(e)
15709d653e6SPaolo Bonzini
158f203080bSVladimir Sementsov-Ogievskiy    if args.dry_run:
159f203080bSVladimir Sementsov-Ogievskiy        print('\n'.join(tests))
160f203080bSVladimir Sementsov-Ogievskiy    else:
161f203080bSVladimir Sementsov-Ogievskiy        with TestRunner(env, makecheck=args.makecheck,
162f203080bSVladimir Sementsov-Ogievskiy                        color=args.color) as tr:
1633ae50942SVladimir Sementsov-Ogievskiy            paths = [os.path.join(env.source_iotests, t) for t in tests]
1643ae50942SVladimir Sementsov-Ogievskiy            ok = tr.run_tests(paths)
1653ae50942SVladimir Sementsov-Ogievskiy            if not ok:
1663ae50942SVladimir Sementsov-Ogievskiy                sys.exit(1)
167