xref: /openbmc/qemu/tests/qemu-iotests/check (revision 5bcf18b0ac2e95ed4490dd63976b9f7831272819)
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')
35722f87dfSVladimir Sementsov-Ogievskiy    p.add_argument('-j', dest='jobs', type=int, default=1,
36722f87dfSVladimir Sementsov-Ogievskiy                   help='run tests in multiple parallel jobs')
37e8f8624dSMax Reitz
38f203080bSVladimir Sementsov-Ogievskiy    p.add_argument('-d', dest='debug', action='store_true', help='debug')
39eb7a91d0SEmanuele Giuseppe Esposito    p.add_argument('-p', dest='print', action='store_true',
4087e4d4a2SEmanuele Giuseppe Esposito                   help='redirects qemu\'s stdout and stderr to '
4187e4d4a2SEmanuele Giuseppe Esposito                        'the test output')
42cfb9b0b7SEmanuele Giuseppe Esposito    p.add_argument('-gdb', action='store_true',
4387e4d4a2SEmanuele Giuseppe Esposito                   help="start gdbserver with $GDB_OPTIONS options "
4487e4d4a2SEmanuele Giuseppe Esposito                        "('localhost:12345' if $GDB_OPTIONS is empty)")
45a9b4c6bbSEmanuele Giuseppe Esposito    p.add_argument('-valgrind', action='store_true',
46a9b4c6bbSEmanuele Giuseppe Esposito                   help='use valgrind, sets VALGRIND_QEMU environment '
47a9b4c6bbSEmanuele Giuseppe Esposito                        'variable')
48a9b4c6bbSEmanuele Giuseppe Esposito
49f203080bSVladimir Sementsov-Ogievskiy    p.add_argument('-misalign', action='store_true',
50f203080bSVladimir Sementsov-Ogievskiy                   help='misalign memory allocations')
51f203080bSVladimir Sementsov-Ogievskiy    p.add_argument('--color', choices=['on', 'off', 'auto'],
52f203080bSVladimir Sementsov-Ogievskiy                   default='auto', help="use terminal colors. The default "
53f203080bSVladimir Sementsov-Ogievskiy                   "'auto' value means use colors if terminal stdout detected")
54d316859fSPaolo Bonzini    p.add_argument('-tap', action='store_true',
55d316859fSPaolo Bonzini                   help='produce TAP output')
567fed1a49SMax Reitz
57f203080bSVladimir Sementsov-Ogievskiy    g_env = p.add_argument_group('test environment options')
58f203080bSVladimir Sementsov-Ogievskiy    mg = g_env.add_mutually_exclusive_group()
59f203080bSVladimir Sementsov-Ogievskiy    # We don't set default for cachemode, as we need to distinguish default
60f203080bSVladimir Sementsov-Ogievskiy    # from user input later.
61f203080bSVladimir Sementsov-Ogievskiy    mg.add_argument('-nocache', dest='cachemode', action='store_const',
62f203080bSVladimir Sementsov-Ogievskiy                    const='none', help='set cache mode "none" (O_DIRECT), '
63f203080bSVladimir Sementsov-Ogievskiy                    'sets CACHEMODE environment variable')
64f203080bSVladimir Sementsov-Ogievskiy    mg.add_argument('-c', dest='cachemode',
65f203080bSVladimir Sementsov-Ogievskiy                    help='sets CACHEMODE environment variable')
666bf19c94SChristoph Hellwig
67f203080bSVladimir Sementsov-Ogievskiy    g_env.add_argument('-i', dest='aiomode', default='threads',
68f203080bSVladimir Sementsov-Ogievskiy                       help='sets AIOMODE environment variable')
6909d653e6SPaolo Bonzini
70f203080bSVladimir Sementsov-Ogievskiy    p.set_defaults(imgfmt='raw', imgproto='file')
7109d653e6SPaolo Bonzini
72f203080bSVladimir Sementsov-Ogievskiy    format_list = ['raw', 'bochs', 'cloop', 'parallels', 'qcow', 'qcow2',
73f203080bSVladimir Sementsov-Ogievskiy                   'qed', 'vdi', 'vpc', 'vhdx', 'vmdk', 'luks', 'dmg']
74f203080bSVladimir Sementsov-Ogievskiy    g_fmt = p.add_argument_group(
75f203080bSVladimir Sementsov-Ogievskiy        '  image format options',
76f203080bSVladimir Sementsov-Ogievskiy        'The following options set the IMGFMT environment variable. '
77f203080bSVladimir Sementsov-Ogievskiy        'At most one choice is allowed, default is "raw"')
78f203080bSVladimir Sementsov-Ogievskiy    mg = g_fmt.add_mutually_exclusive_group()
79f203080bSVladimir Sementsov-Ogievskiy    for fmt in format_list:
80f203080bSVladimir Sementsov-Ogievskiy        mg.add_argument('-' + fmt, dest='imgfmt', action='store_const',
81f203080bSVladimir Sementsov-Ogievskiy                        const=fmt, help=f'test {fmt}')
8270ff5b07SAlex Bennée
8309ec8517SMarkus Armbruster    protocol_list = ['file', 'rbd', 'nbd', 'ssh', 'nfs', 'fuse']
84f203080bSVladimir Sementsov-Ogievskiy    g_prt = p.add_argument_group(
85f203080bSVladimir Sementsov-Ogievskiy        '  image protocol options',
86f203080bSVladimir Sementsov-Ogievskiy        'The following options set the IMGPROTO environment variable. '
87f203080bSVladimir Sementsov-Ogievskiy        'At most one choice is allowed, default is "file"')
88f203080bSVladimir Sementsov-Ogievskiy    mg = g_prt.add_mutually_exclusive_group()
89f203080bSVladimir Sementsov-Ogievskiy    for prt in protocol_list:
90f203080bSVladimir Sementsov-Ogievskiy        mg.add_argument('-' + prt, dest='imgproto', action='store_const',
91f203080bSVladimir Sementsov-Ogievskiy                        const=prt, help=f'test {prt}')
9270ff5b07SAlex Bennée
93f203080bSVladimir Sementsov-Ogievskiy    g_bash = p.add_argument_group('bash tests options',
94f203080bSVladimir Sementsov-Ogievskiy                                  'The following options are ignored by '
95f203080bSVladimir Sementsov-Ogievskiy                                  'python tests.')
96f203080bSVladimir Sementsov-Ogievskiy    # TODO: make support for the following options in iotests.py
97f203080bSVladimir Sementsov-Ogievskiy    g_bash.add_argument('-o', dest='imgopts',
98f203080bSVladimir Sementsov-Ogievskiy                        help='options to pass to qemu-img create/convert, '
99f203080bSVladimir Sementsov-Ogievskiy                        'sets IMGOPTS environment variable')
10009d653e6SPaolo Bonzini
101f203080bSVladimir Sementsov-Ogievskiy    g_sel = p.add_argument_group('test selecting options',
102f203080bSVladimir Sementsov-Ogievskiy                                 'The following options specify test set '
103f203080bSVladimir Sementsov-Ogievskiy                                 'to run.')
104f203080bSVladimir Sementsov-Ogievskiy    g_sel.add_argument('-g', '--groups', metavar='group1,...',
105f203080bSVladimir Sementsov-Ogievskiy                       help='include tests from these groups')
106f203080bSVladimir Sementsov-Ogievskiy    g_sel.add_argument('-x', '--exclude-groups', metavar='group1,...',
107f203080bSVladimir Sementsov-Ogievskiy                       help='exclude tests from these groups')
108f203080bSVladimir Sementsov-Ogievskiy    g_sel.add_argument('--start-from', metavar='TEST',
109f203080bSVladimir Sementsov-Ogievskiy                       help='Start from specified test: make sorted sequence '
110f203080bSVladimir Sementsov-Ogievskiy                       'of tests as usual and then drop tests from the first '
111f203080bSVladimir Sementsov-Ogievskiy                       'one to TEST (not inclusive). This may be used to '
112f203080bSVladimir Sementsov-Ogievskiy                       'rerun failed ./check command, starting from the '
113f203080bSVladimir Sementsov-Ogievskiy                       'middle of the process.')
114f203080bSVladimir Sementsov-Ogievskiy    g_sel.add_argument('tests', metavar='TEST_FILES', nargs='*',
115480b75eeSPaolo Bonzini                       help='tests to run, or "--" followed by a command')
11609d653e6SPaolo Bonzini
117f203080bSVladimir Sementsov-Ogievskiy    return p
11809d653e6SPaolo Bonzini
11909d653e6SPaolo Bonzini
120f203080bSVladimir Sementsov-Ogievskiyif __name__ == '__main__':
121f203080bSVladimir Sementsov-Ogievskiy    args = make_argparser().parse_args()
12209d653e6SPaolo Bonzini
123f203080bSVladimir Sementsov-Ogievskiy    env = TestEnv(imgfmt=args.imgfmt, imgproto=args.imgproto,
124f203080bSVladimir Sementsov-Ogievskiy                  aiomode=args.aiomode, cachemode=args.cachemode,
125f203080bSVladimir Sementsov-Ogievskiy                  imgopts=args.imgopts, misalign=args.misalign,
126cfb9b0b7SEmanuele Giuseppe Esposito                  debug=args.debug, valgrind=args.valgrind,
127eb7a91d0SEmanuele Giuseppe Esposito                  gdb=args.gdb, qprint=args.print)
12809d653e6SPaolo Bonzini
129480b75eeSPaolo Bonzini    if len(sys.argv) > 1 and sys.argv[-len(args.tests)-1] == '--':
130480b75eeSPaolo Bonzini        if not args.tests:
131480b75eeSPaolo Bonzini            sys.exit("missing command after '--'")
132480b75eeSPaolo Bonzini        cmd = args.tests
133480b75eeSPaolo Bonzini        env.print_env()
134480b75eeSPaolo Bonzini        exec_pathstr = shutil.which(cmd[0])
135480b75eeSPaolo Bonzini        if exec_pathstr is None:
136480b75eeSPaolo Bonzini            sys.exit('command not found: ' + cmd[0])
137480b75eeSPaolo Bonzini        exec_path = Path(exec_pathstr).resolve()
138480b75eeSPaolo Bonzini        cmd[0] = str(exec_path)
139480b75eeSPaolo Bonzini        full_env = env.prepare_subprocess(cmd)
140480b75eeSPaolo Bonzini        os.chdir(exec_path.parent)
141480b75eeSPaolo Bonzini        os.execve(cmd[0], cmd, full_env)
142480b75eeSPaolo Bonzini
143f203080bSVladimir Sementsov-Ogievskiy    testfinder = TestFinder(test_dir=env.source_iotests)
1448803714bSEric Blake
145f203080bSVladimir Sementsov-Ogievskiy    groups = args.groups.split(',') if args.groups else None
146f203080bSVladimir Sementsov-Ogievskiy    x_groups = args.exclude_groups.split(',') if args.exclude_groups else None
14709d653e6SPaolo Bonzini
148f203080bSVladimir Sementsov-Ogievskiy    group_local = os.path.join(env.source_iotests, 'group.local')
149f203080bSVladimir Sementsov-Ogievskiy    if os.path.isfile(group_local):
150f203080bSVladimir Sementsov-Ogievskiy        try:
151f203080bSVladimir Sementsov-Ogievskiy            testfinder.add_group_file(group_local)
152f203080bSVladimir Sementsov-Ogievskiy        except ValueError as e:
153f203080bSVladimir Sementsov-Ogievskiy            sys.exit(f"Failed to parse group file '{group_local}': {e}")
15409d653e6SPaolo Bonzini
155f203080bSVladimir Sementsov-Ogievskiy    try:
156f203080bSVladimir Sementsov-Ogievskiy        tests = testfinder.find_tests(groups=groups, exclude_groups=x_groups,
157f203080bSVladimir Sementsov-Ogievskiy                                      tests=args.tests,
158f203080bSVladimir Sementsov-Ogievskiy                                      start_from=args.start_from)
159f203080bSVladimir Sementsov-Ogievskiy        if not tests:
160f203080bSVladimir Sementsov-Ogievskiy            raise ValueError('No tests selected')
161f203080bSVladimir Sementsov-Ogievskiy    except ValueError as e:
162*5bcf18b0SJohn Snow        sys.exit(str(e))
16309d653e6SPaolo Bonzini
164f203080bSVladimir Sementsov-Ogievskiy    if args.dry_run:
165f203080bSVladimir Sementsov-Ogievskiy        print('\n'.join(tests))
166f203080bSVladimir Sementsov-Ogievskiy    else:
167d316859fSPaolo Bonzini        with TestRunner(env, tap=args.tap,
168f203080bSVladimir Sementsov-Ogievskiy                        color=args.color) as tr:
1693ae50942SVladimir Sementsov-Ogievskiy            paths = [os.path.join(env.source_iotests, t) for t in tests]
170722f87dfSVladimir Sementsov-Ogievskiy            ok = tr.run_tests(paths, args.jobs)
1713ae50942SVladimir Sementsov-Ogievskiy            if not ok:
1723ae50942SVladimir Sementsov-Ogievskiy                sys.exit(1)
173