qemu-iotests: Add VM method qtest() to iotests.py
[qemu/ar7.git] / tests / qemu-iotests / iotests.py
blob85cb9a583f7f141d16873768f7cb3edb5fe462b7
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
25 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'scripts'))
26 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'scripts', 'qmp'))
27 import qmp
28 import qtest
29 import struct
31 __all__ = ['imgfmt', 'imgproto', 'test_dir' 'qemu_img', 'qemu_io',
32 'VM', 'QMPTestCase', 'notrun', 'main']
34 # This will not work if arguments or path contain spaces but is necessary if we
35 # want to support the override options that ./check supports.
36 qemu_img_args = os.environ.get('QEMU_IMG', 'qemu-img').strip().split(' ')
37 qemu_io_args = os.environ.get('QEMU_IO', 'qemu-io').strip().split(' ')
38 qemu_args = os.environ.get('QEMU', 'qemu').strip().split(' ')
40 imgfmt = os.environ.get('IMGFMT', 'raw')
41 imgproto = os.environ.get('IMGPROTO', 'file')
42 test_dir = os.environ.get('TEST_DIR', '/var/tmp')
43 output_dir = os.environ.get('OUTPUT_DIR', '.')
44 cachemode = os.environ.get('CACHEMODE')
46 socket_scm_helper = os.environ.get('SOCKET_SCM_HELPER', 'socket_scm_helper')
48 def qemu_img(*args):
49 '''Run qemu-img and return the exit code'''
50 devnull = open('/dev/null', 'r+')
51 return subprocess.call(qemu_img_args + list(args), stdin=devnull, stdout=devnull)
53 def qemu_img_verbose(*args):
54 '''Run qemu-img without suppressing its output and return the exit code'''
55 return subprocess.call(qemu_img_args + list(args))
57 def qemu_img_pipe(*args):
58 '''Run qemu-img and return its output'''
59 return subprocess.Popen(qemu_img_args + list(args), stdout=subprocess.PIPE).communicate()[0]
61 def qemu_io(*args):
62 '''Run qemu-io and return the stdout data'''
63 args = qemu_io_args + list(args)
64 return subprocess.Popen(args, stdout=subprocess.PIPE).communicate()[0]
66 def compare_images(img1, img2):
67 '''Return True if two image files are identical'''
68 return qemu_img('compare', '-f', imgfmt,
69 '-F', imgfmt, img1, img2) == 0
71 def create_image(name, size):
72 '''Create a fully-allocated raw image with sector markers'''
73 file = open(name, 'w')
74 i = 0
75 while i < size:
76 sector = struct.pack('>l504xl', i / 512, i / 512)
77 file.write(sector)
78 i = i + 512
79 file.close()
81 class VM(object):
82 '''A QEMU VM'''
84 def __init__(self):
85 self._monitor_path = os.path.join(test_dir, 'qemu-mon.%d' % os.getpid())
86 self._qemu_log_path = os.path.join(test_dir, 'qemu-log.%d' % os.getpid())
87 self._qtest_path = os.path.join(test_dir, 'qemu-qtest.%d' % os.getpid())
88 self._args = qemu_args + ['-chardev',
89 'socket,id=mon,path=' + self._monitor_path,
90 '-mon', 'chardev=mon,mode=control',
91 '-qtest', 'unix:path=' + self._qtest_path,
92 '-machine', 'accel=qtest',
93 '-display', 'none', '-vga', 'none']
94 self._num_drives = 0
96 # This can be used to add an unused monitor instance.
97 def add_monitor_telnet(self, ip, port):
98 args = 'tcp:%s:%d,server,nowait,telnet' % (ip, port)
99 self._args.append('-monitor')
100 self._args.append(args)
102 def add_drive(self, path, opts=''):
103 '''Add a virtio-blk drive to the VM'''
104 options = ['if=virtio',
105 'format=%s' % imgfmt,
106 'cache=%s' % cachemode,
107 'file=%s' % path,
108 'id=drive%d' % self._num_drives]
109 if opts:
110 options.append(opts)
112 self._args.append('-drive')
113 self._args.append(','.join(options))
114 self._num_drives += 1
115 return self
117 def pause_drive(self, drive, event=None):
118 '''Pause drive r/w operations'''
119 if not event:
120 self.pause_drive(drive, "read_aio")
121 self.pause_drive(drive, "write_aio")
122 return
123 self.qmp('human-monitor-command',
124 command_line='qemu-io %s "break %s bp_%s"' % (drive, event, drive))
126 def resume_drive(self, drive):
127 self.qmp('human-monitor-command',
128 command_line='qemu-io %s "remove_break bp_%s"' % (drive, drive))
130 def hmp_qemu_io(self, drive, cmd):
131 '''Write to a given drive using an HMP command'''
132 return self.qmp('human-monitor-command',
133 command_line='qemu-io %s "%s"' % (drive, cmd))
135 def add_fd(self, fd, fdset, opaque, opts=''):
136 '''Pass a file descriptor to the VM'''
137 options = ['fd=%d' % fd,
138 'set=%d' % fdset,
139 'opaque=%s' % opaque]
140 if opts:
141 options.append(opts)
143 self._args.append('-add-fd')
144 self._args.append(','.join(options))
145 return self
147 def send_fd_scm(self, fd_file_path):
148 # In iotest.py, the qmp should always use unix socket.
149 assert self._qmp.is_scm_available()
150 bin = socket_scm_helper
151 if os.path.exists(bin) == False:
152 print "Scm help program does not present, path '%s'." % bin
153 return -1
154 fd_param = ["%s" % bin,
155 "%d" % self._qmp.get_sock_fd(),
156 "%s" % fd_file_path]
157 devnull = open('/dev/null', 'rb')
158 p = subprocess.Popen(fd_param, stdin=devnull, stdout=sys.stdout,
159 stderr=sys.stderr)
160 return p.wait()
162 def launch(self):
163 '''Launch the VM and establish a QMP connection'''
164 devnull = open('/dev/null', 'rb')
165 qemulog = open(self._qemu_log_path, 'wb')
166 try:
167 self._qmp = qmp.QEMUMonitorProtocol(self._monitor_path, server=True)
168 self._qtest = qtest.QEMUQtestProtocol(self._qtest_path, server=True)
169 self._popen = subprocess.Popen(self._args, stdin=devnull, stdout=qemulog,
170 stderr=subprocess.STDOUT)
171 self._qmp.accept()
172 self._qtest.accept()
173 except:
174 os.remove(self._monitor_path)
175 raise
177 def shutdown(self):
178 '''Terminate the VM and clean up'''
179 if not self._popen is None:
180 self._qmp.cmd('quit')
181 self._popen.wait()
182 os.remove(self._monitor_path)
183 os.remove(self._qtest_path)
184 os.remove(self._qemu_log_path)
185 self._popen = None
187 underscore_to_dash = string.maketrans('_', '-')
188 def qmp(self, cmd, **args):
189 '''Invoke a QMP command and return the result dict'''
190 qmp_args = dict()
191 for k in args.keys():
192 qmp_args[k.translate(self.underscore_to_dash)] = args[k]
194 return self._qmp.cmd(cmd, args=qmp_args)
196 def qtest(self, cmd):
197 '''Send a qtest command to guest'''
198 return self._qtest.cmd(cmd)
200 def get_qmp_event(self, wait=False):
201 '''Poll for one queued QMP events and return it'''
202 return self._qmp.pull_event(wait=wait)
204 def get_qmp_events(self, wait=False):
205 '''Poll for queued QMP events and return a list of dicts'''
206 events = self._qmp.get_events(wait=wait)
207 self._qmp.clear_events()
208 return events
210 index_re = re.compile(r'([^\[]+)\[([^\]]+)\]')
212 class QMPTestCase(unittest.TestCase):
213 '''Abstract base class for QMP test cases'''
215 def dictpath(self, d, path):
216 '''Traverse a path in a nested dict'''
217 for component in path.split('/'):
218 m = index_re.match(component)
219 if m:
220 component, idx = m.groups()
221 idx = int(idx)
223 if not isinstance(d, dict) or component not in d:
224 self.fail('failed path traversal for "%s" in "%s"' % (path, str(d)))
225 d = d[component]
227 if m:
228 if not isinstance(d, list):
229 self.fail('path component "%s" in "%s" is not a list in "%s"' % (component, path, str(d)))
230 try:
231 d = d[idx]
232 except IndexError:
233 self.fail('invalid index "%s" in path "%s" in "%s"' % (idx, path, str(d)))
234 return d
236 def assert_qmp_absent(self, d, path):
237 try:
238 result = self.dictpath(d, path)
239 except AssertionError:
240 return
241 self.fail('path "%s" has value "%s"' % (path, str(result)))
243 def assert_qmp(self, d, path, value):
244 '''Assert that the value for a specific path in a QMP dict matches'''
245 result = self.dictpath(d, path)
246 self.assertEqual(result, value, 'values not equal "%s" and "%s"' % (str(result), str(value)))
248 def assert_no_active_block_jobs(self):
249 result = self.vm.qmp('query-block-jobs')
250 self.assert_qmp(result, 'return', [])
252 def cancel_and_wait(self, drive='drive0', force=False, resume=False):
253 '''Cancel a block job and wait for it to finish, returning the event'''
254 result = self.vm.qmp('block-job-cancel', device=drive, force=force)
255 self.assert_qmp(result, 'return', {})
257 if resume:
258 self.vm.resume_drive(drive)
260 cancelled = False
261 result = None
262 while not cancelled:
263 for event in self.vm.get_qmp_events(wait=True):
264 if event['event'] == 'BLOCK_JOB_COMPLETED' or \
265 event['event'] == 'BLOCK_JOB_CANCELLED':
266 self.assert_qmp(event, 'data/device', drive)
267 result = event
268 cancelled = True
270 self.assert_no_active_block_jobs()
271 return result
273 def wait_until_completed(self, drive='drive0', check_offset=True):
274 '''Wait for a block job to finish, returning the event'''
275 completed = False
276 while not completed:
277 for event in self.vm.get_qmp_events(wait=True):
278 if event['event'] == 'BLOCK_JOB_COMPLETED':
279 self.assert_qmp(event, 'data/device', drive)
280 self.assert_qmp_absent(event, 'data/error')
281 if check_offset:
282 self.assert_qmp(event, 'data/offset', event['data']['len'])
283 completed = True
285 self.assert_no_active_block_jobs()
286 return event
288 def notrun(reason):
289 '''Skip this test suite'''
290 # Each test in qemu-iotests has a number ("seq")
291 seq = os.path.basename(sys.argv[0])
293 open('%s/%s.notrun' % (output_dir, seq), 'wb').write(reason + '\n')
294 print '%s not run: %s' % (seq, reason)
295 sys.exit(0)
297 def main(supported_fmts=[], supported_oses=['linux']):
298 '''Run tests'''
300 if supported_fmts and (imgfmt not in supported_fmts):
301 notrun('not suitable for this image format: %s' % imgfmt)
303 if True not in [sys.platform.startswith(x) for x in supported_oses]:
304 notrun('not suitable for this OS: %s' % sys.platform)
306 # We need to filter out the time taken from the output so that qemu-iotest
307 # can reliably diff the results against master output.
308 import StringIO
309 output = StringIO.StringIO()
311 class MyTestRunner(unittest.TextTestRunner):
312 def __init__(self, stream=output, descriptions=True, verbosity=1):
313 unittest.TextTestRunner.__init__(self, stream, descriptions, verbosity)
315 # unittest.main() will use sys.exit() so expect a SystemExit exception
316 try:
317 unittest.main(testRunner=MyTestRunner)
318 finally:
319 sys.stderr.write(re.sub(r'Ran (\d+) tests? in [\d.]+s', r'Ran \1 tests', output.getvalue()))