1# Common utilities and Python wrappers for qemu-iotests 2# 3# Copyright (C) 2012 IBM Corp. 4# 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. 9# 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. 14# 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/>. 17# 18 19import os 20import re 21import subprocess 22import string 23import unittest 24import sys; sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'QMP')) 25import qmp 26 27__all__ = ['imgfmt', 'imgproto', 'test_dir' 'qemu_img', 'qemu_io', 28 'VM', 'QMPTestCase', 'notrun', 'main'] 29 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. 32qemu_img_args = os.environ.get('QEMU_IMG', 'qemu-img').strip().split(' ') 33qemu_io_args = os.environ.get('QEMU_IO', 'qemu-io').strip().split(' ') 34qemu_args = os.environ.get('QEMU', 'qemu').strip().split(' ') 35 36imgfmt = os.environ.get('IMGFMT', 'raw') 37imgproto = os.environ.get('IMGPROTO', 'file') 38test_dir = os.environ.get('TEST_DIR', '/var/tmp') 39 40def 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) 44 45def qemu_img_verbose(*args): 46 '''Run qemu-img without supressing its output and return the exit code''' 47 return subprocess.call(qemu_img_args + list(args)) 48 49def 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] 53 54class VM(object): 55 '''A QEMU VM''' 56 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 66 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) 76 77 self._args.append('-drive') 78 self._args.append(','.join(options)) 79 self._num_drives += 1 80 return self 81 82 def launch(self): 83 '''Launch the VM and establish a QMP connection''' 84 devnull = open('/dev/null', 'rb') 85 qemulog = open(self._qemu_log_path, 'wb') 86 try: 87 self._qmp = qmp.QEMUMonitorProtocol(self._monitor_path, server=True) 88 self._popen = subprocess.Popen(self._args, stdin=devnull, stdout=qemulog, 89 stderr=subprocess.STDOUT) 90 self._qmp.accept() 91 except: 92 os.remove(self._monitor_path) 93 raise 94 95 def shutdown(self): 96 '''Terminate the VM and clean up''' 97 if not self._popen is None: 98 self._qmp.cmd('quit') 99 self._popen.wait() 100 os.remove(self._monitor_path) 101 os.remove(self._qemu_log_path) 102 self._popen = None 103 104 underscore_to_dash = string.maketrans('_', '-') 105 def qmp(self, cmd, **args): 106 '''Invoke a QMP command and return the result dict''' 107 qmp_args = dict() 108 for k in args.keys(): 109 qmp_args[k.translate(self.underscore_to_dash)] = args[k] 110 111 return self._qmp.cmd(cmd, args=qmp_args) 112 113 def get_qmp_event(self, wait=False): 114 '''Poll for one queued QMP events and return it''' 115 return self._qmp.pull_event(wait=wait) 116 117 def get_qmp_events(self, wait=False): 118 '''Poll for queued QMP events and return a list of dicts''' 119 events = self._qmp.get_events(wait=wait) 120 self._qmp.clear_events() 121 return events 122 123index_re = re.compile(r'([^\[]+)\[([^\]]+)\]') 124 125class QMPTestCase(unittest.TestCase): 126 '''Abstract base class for QMP test cases''' 127 128 def dictpath(self, d, path): 129 '''Traverse a path in a nested dict''' 130 for component in path.split('/'): 131 m = index_re.match(component) 132 if m: 133 component, idx = m.groups() 134 idx = int(idx) 135 136 if not isinstance(d, dict) or component not in d: 137 self.fail('failed path traversal for "%s" in "%s"' % (path, str(d))) 138 d = d[component] 139 140 if m: 141 if not isinstance(d, list): 142 self.fail('path component "%s" in "%s" is not a list in "%s"' % (component, path, str(d))) 143 try: 144 d = d[idx] 145 except IndexError: 146 self.fail('invalid index "%s" in path "%s" in "%s"' % (idx, path, str(d))) 147 return d 148 149 def assert_qmp_absent(self, d, path): 150 try: 151 result = self.dictpath(d, path) 152 except AssertionError: 153 return 154 self.fail('path "%s" has value "%s"' % (path, str(result))) 155 156 def assert_qmp(self, d, path, value): 157 '''Assert that the value for a specific path in a QMP dict matches''' 158 result = self.dictpath(d, path) 159 self.assertEqual(result, value, 'values not equal "%s" and "%s"' % (str(result), str(value))) 160 161def notrun(reason): 162 '''Skip this test suite''' 163 # Each test in qemu-iotests has a number ("seq") 164 seq = os.path.basename(sys.argv[0]) 165 166 open('%s.notrun' % seq, 'wb').write(reason + '\n') 167 print '%s not run: %s' % (seq, reason) 168 sys.exit(0) 169 170def main(supported_fmts=[]): 171 '''Run tests''' 172 173 if supported_fmts and (imgfmt not in supported_fmts): 174 notrun('not suitable for this image format: %s' % imgfmt) 175 176 # We need to filter out the time taken from the output so that qemu-iotest 177 # can reliably diff the results against master output. 178 import StringIO 179 output = StringIO.StringIO() 180 181 class MyTestRunner(unittest.TextTestRunner): 182 def __init__(self, stream=output, descriptions=True, verbosity=1): 183 unittest.TextTestRunner.__init__(self, stream, descriptions, verbosity) 184 185 # unittest.main() will use sys.exit() so expect a SystemExit exception 186 try: 187 unittest.main(testRunner=MyTestRunner) 188 finally: 189 sys.stderr.write(re.sub(r'Ran (\d+) tests? in [\d.]+s', r'Ran \1 tests', output.getvalue())) 190