4 # This test covers what happens when a mirror block job is cancelled
5 # in various phases of its existence.
7 # Note that this test only checks the emitted events (i.e.
8 # BLOCK_JOB_COMPLETED vs. BLOCK_JOB_CANCELLED), it does not compare
9 # whether the target is in sync with the source when the
10 # BLOCK_JOB_COMPLETED event occurs. This is covered by other tests
13 # Copyright (C) 2018 Red Hat, Inc.
15 # This program is free software; you can redistribute it and/or modify
16 # it under the terms of the GNU General Public License as published by
17 # the Free Software Foundation; either version 2 of the License, or
18 # (at your option) any later version.
20 # This program is distributed in the hope that it will be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program. If not, see <http://www.gnu.org/licenses/>.
28 # Creator/Owner: Hanna Reitz <hreitz@redhat.com>
31 from iotests import log, qemu_img, qemu_io
33 iotests.script_initialize(supported_fmts=['qcow2', 'raw'])
36 # Launches the VM, adds two null-co nodes (source and target), and
37 # starts a blockdev-mirror job on them.
39 # Either both or none of speed and buf_size must be given.
41 def start_mirror(vm, speed=None, buf_size=None):
44 vm.cmd('blockdev-add',
49 vm.cmd('blockdev-add',
55 vm.cmd('blockdev-mirror',
63 vm.cmd('blockdev-mirror',
71 log('=== Cancel mirror job before convergence ===')
74 log('--- force=false ---')
77 with iotests.VM() as vm:
78 # Low speed so it does not converge
79 start_mirror(vm, 65536, 65536)
82 log(vm.qmp('block-job-cancel', device='mirror', force=False))
84 log(vm.event_wait('BLOCK_JOB_CANCELLED'),
85 filters=[iotests.filter_qmp_event])
88 log('--- force=true ---')
91 with iotests.VM() as vm:
92 # Low speed so it does not converge
93 start_mirror(vm, 65536, 65536)
96 log(vm.qmp('block-job-cancel', device='mirror', force=True))
98 log(vm.event_wait('BLOCK_JOB_CANCELLED'),
99 filters=[iotests.filter_qmp_event])
103 log('=== Cancel mirror job after convergence ===')
106 log('--- force=false ---')
109 with iotests.VM() as vm:
112 log(vm.event_wait('BLOCK_JOB_READY'),
113 filters=[iotests.filter_qmp_event])
115 log('Cancelling job')
116 log(vm.qmp('block-job-cancel', device='mirror', force=False))
118 log(vm.event_wait('BLOCK_JOB_COMPLETED'),
119 filters=[iotests.filter_qmp_event])
122 log('--- force=true ---')
125 with iotests.VM() as vm:
128 log(vm.event_wait('BLOCK_JOB_READY'),
129 filters=[iotests.filter_qmp_event])
131 log('Cancelling job')
132 log(vm.qmp('block-job-cancel', device='mirror', force=True))
134 log(vm.event_wait('BLOCK_JOB_CANCELLED'),
135 filters=[iotests.filter_qmp_event])
138 log('=== Cancel mirror job from throttled node by quitting ===')
141 with iotests.VM() as vm, \
142 iotests.FilePath('src.img') as src_img_path:
144 qemu_img('create', '-f', iotests.imgfmt, src_img_path, '64M')
145 qemu_io('-f', iotests.imgfmt, src_img_path, '-c', 'write -P 42 0M 64M')
149 vm.cmd('object-add', qom_type='throttle-group', id='tg',
150 limits={'bps-read': 4096})
152 vm.cmd('blockdev-add',
154 driver=iotests.imgfmt,
157 'filename': src_img_path
160 vm.cmd('blockdev-add',
161 node_name='throttled-source',
166 vm.cmd('blockdev-add',
171 vm.cmd('blockdev-mirror',
173 device='throttled-source',
179 with iotests.Timeout(5, 'Timeout waiting for VM to quit'):