qemu-iotests: make cancel_and_wait() common
[qemu/ar7.git] / tests / qemu-iotests / iotests.py
blobbc9c71b9799fac9bbbc64b7922dc39d993b8103b
1 # Common utilities and Python wrappers for qemu-iotests
3 # Copyright (C) 2012 IBM Corp.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 import os
20 import re
21 import subprocess
22 import string
23 import unittest
24 import sys; sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'QMP'))
25 import qmp
27 __all__ = ['imgfmt', 'imgproto', 'test_dir' 'qemu_img', 'qemu_io',
28 'VM', 'QMPTestCase', 'notrun', 'main']
30 # This will not work if arguments or path contain spaces but is necessary if we
31 # want to support the override options that ./check supports.
32 qemu_img_args = os.environ.get('QEMU_IMG', 'qemu-img').strip().split(' ')
33 qemu_io_args = os.environ.get('QEMU_IO', 'qemu-io').strip().split(' ')
34 qemu_args = os.environ.get('QEMU', 'qemu').strip().split(' ')
36 imgfmt = os.environ.get('IMGFMT', 'raw')
37 imgproto = os.environ.get('IMGPROTO', 'file')
38 test_dir = os.environ.get('TEST_DIR', '/var/tmp')
40 def qemu_img(*args):
41 '''Run qemu-img and return the exit code'''
42 devnull = open('/dev/null', 'r+')
43 return subprocess.call(qemu_img_args + list(args), stdin=devnull, stdout=devnull)
45 def qemu_img_verbose(*args):
46 '''Run qemu-img without suppressing its output and return the exit code'''
47 return subprocess.call(qemu_img_args + list(args))
49 def qemu_io(*args):
50 '''Run qemu-io and return the stdout data'''
51 args = qemu_io_args + list(args)
52 return subprocess.Popen(args, stdout=subprocess.PIPE).communicate()[0]
54 class VM(object):
55 '''A QEMU VM'''
57 def __init__(self):
58 self._monitor_path = os.path.join(test_dir, 'qemu-mon.%d' % os.getpid())
59 self._qemu_log_path = os.path.join(test_dir, 'qemu-log.%d' % os.getpid())
60 self._args = qemu_args + ['-chardev',
61 'socket,id=mon,path=' + self._monitor_path,
62 '-mon', 'chardev=mon,mode=control',
63 '-qtest', 'stdio', '-machine', 'accel=qtest',
64 '-display', 'none', '-vga', 'none']
65 self._num_drives = 0
67 def add_drive(self, path, opts=''):
68 '''Add a virtio-blk drive to the VM'''
69 options = ['if=virtio',
70 'format=%s' % imgfmt,
71 'cache=none',
72 'file=%s' % path,
73 'id=drive%d' % self._num_drives]
74 if opts:
75 options.append(opts)
77 self._args.append('-drive')
78 self._args.append(','.join(options))
79 self._num_drives += 1
80 return self
82 def add_fd(self, fd, fdset, opaque, opts=''):
83 '''Pass a file descriptor to the VM'''
84 options = ['fd=%d' % fd,
85 'set=%d' % fdset,
86 'opaque=%s' % opaque]
87 if opts:
88 options.append(opts)
90 self._args.append('-add-fd')
91 self._args.append(','.join(options))
92 return self
94 def launch(self):
95 '''Launch the VM and establish a QMP connection'''
96 devnull = open('/dev/null', 'rb')
97 qemulog = open(self._qemu_log_path, 'wb')
98 try:
99 self._qmp = qmp.QEMUMonitorProtocol(self._monitor_path, server=True)
100 self._popen = subprocess.Popen(self._args, stdin=devnull, stdout=qemulog,
101 stderr=subprocess.STDOUT)
102 self._qmp.accept()
103 except:
104 os.remove(self._monitor_path)
105 raise
107 def shutdown(self):
108 '''Terminate the VM and clean up'''
109 if not self._popen is None:
110 self._qmp.cmd('quit')
111 self._popen.wait()
112 os.remove(self._monitor_path)
113 os.remove(self._qemu_log_path)
114 self._popen = None
116 underscore_to_dash = string.maketrans('_', '-')
117 def qmp(self, cmd, **args):
118 '''Invoke a QMP command and return the result dict'''
119 qmp_args = dict()
120 for k in args.keys():
121 qmp_args[k.translate(self.underscore_to_dash)] = args[k]
123 return self._qmp.cmd(cmd, args=qmp_args)
125 def get_qmp_event(self, wait=False):
126 '''Poll for one queued QMP events and return it'''
127 return self._qmp.pull_event(wait=wait)
129 def get_qmp_events(self, wait=False):
130 '''Poll for queued QMP events and return a list of dicts'''
131 events = self._qmp.get_events(wait=wait)
132 self._qmp.clear_events()
133 return events
135 index_re = re.compile(r'([^\[]+)\[([^\]]+)\]')
137 class QMPTestCase(unittest.TestCase):
138 '''Abstract base class for QMP test cases'''
140 def dictpath(self, d, path):
141 '''Traverse a path in a nested dict'''
142 for component in path.split('/'):
143 m = index_re.match(component)
144 if m:
145 component, idx = m.groups()
146 idx = int(idx)
148 if not isinstance(d, dict) or component not in d:
149 self.fail('failed path traversal for "%s" in "%s"' % (path, str(d)))
150 d = d[component]
152 if m:
153 if not isinstance(d, list):
154 self.fail('path component "%s" in "%s" is not a list in "%s"' % (component, path, str(d)))
155 try:
156 d = d[idx]
157 except IndexError:
158 self.fail('invalid index "%s" in path "%s" in "%s"' % (idx, path, str(d)))
159 return d
161 def assert_qmp_absent(self, d, path):
162 try:
163 result = self.dictpath(d, path)
164 except AssertionError:
165 return
166 self.fail('path "%s" has value "%s"' % (path, str(result)))
168 def assert_qmp(self, d, path, value):
169 '''Assert that the value for a specific path in a QMP dict matches'''
170 result = self.dictpath(d, path)
171 self.assertEqual(result, value, 'values not equal "%s" and "%s"' % (str(result), str(value)))
173 def assert_no_active_block_jobs(self):
174 result = self.vm.qmp('query-block-jobs')
175 self.assert_qmp(result, 'return', [])
177 def cancel_and_wait(self, drive='drive0', force=False):
178 '''Cancel a block job and wait for it to finish, returning the event'''
179 result = self.vm.qmp('block-job-cancel', device=drive, force=force)
180 self.assert_qmp(result, 'return', {})
182 cancelled = False
183 result = None
184 while not cancelled:
185 for event in self.vm.get_qmp_events(wait=True):
186 if event['event'] == 'BLOCK_JOB_COMPLETED' or \
187 event['event'] == 'BLOCK_JOB_CANCELLED':
188 self.assert_qmp(event, 'data/device', drive)
189 result = event
190 cancelled = True
192 self.assert_no_active_block_jobs()
193 return result
195 def notrun(reason):
196 '''Skip this test suite'''
197 # Each test in qemu-iotests has a number ("seq")
198 seq = os.path.basename(sys.argv[0])
200 open('%s.notrun' % seq, 'wb').write(reason + '\n')
201 print '%s not run: %s' % (seq, reason)
202 sys.exit(0)
204 def main(supported_fmts=[]):
205 '''Run tests'''
207 if supported_fmts and (imgfmt not in supported_fmts):
208 notrun('not suitable for this image format: %s' % imgfmt)
210 # We need to filter out the time taken from the output so that qemu-iotest
211 # can reliably diff the results against master output.
212 import StringIO
213 output = StringIO.StringIO()
215 class MyTestRunner(unittest.TextTestRunner):
216 def __init__(self, stream=output, descriptions=True, verbosity=1):
217 unittest.TextTestRunner.__init__(self, stream, descriptions, verbosity)
219 # unittest.main() will use sys.exit() so expect a SystemExit exception
220 try:
221 unittest.main(testRunner=MyTestRunner)
222 finally:
223 sys.stderr.write(re.sub(r'Ran (\d+) tests? in [\d.]+s', r'Ran \1 tests', output.getvalue()))