hw/arm/sbsa-ref: Remove unnecessary check for secure_sysmem == NULL
[qemu/ar7.git] / tests / qemu-iotests / 218
blob92c331b6fbe80886df2008cf2de3d7f85e5b6bf8
1 #!/usr/bin/env python
3 # This test covers what happens when a mirror block job is cancelled
4 # in various phases of its existence.
6 # Note that this test only checks the emitted events (i.e.
7 # BLOCK_JOB_COMPLETED vs. BLOCK_JOB_CANCELLED), it does not compare
8 # whether the target is in sync with the source when the
9 # BLOCK_JOB_COMPLETED event occurs. This is covered by other tests
10 # (such as 041).
12 # Copyright (C) 2018 Red Hat, Inc.
14 # This program is free software; you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 2 of the License, or
17 # (at your option) any later version.
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with this program. If not, see <http://www.gnu.org/licenses/>.
27 # Creator/Owner: Max Reitz <mreitz@redhat.com>
29 import iotests
30 from iotests import log
32 iotests.verify_platform(['linux'])
35 # Launches the VM, adds two null-co nodes (source and target), and
36 # starts a blockdev-mirror job on them.
38 # Either both or none of speed and buf_size must be given.
40 def start_mirror(vm, speed=None, buf_size=None):
41 vm.launch()
43 ret = vm.qmp('blockdev-add',
44 node_name='source',
45 driver='null-co',
46 size=1048576)
47 assert ret['return'] == {}
49 ret = vm.qmp('blockdev-add',
50 node_name='target',
51 driver='null-co',
52 size=1048576)
53 assert ret['return'] == {}
55 if speed is not None:
56 ret = vm.qmp('blockdev-mirror',
57 job_id='mirror',
58 device='source',
59 target='target',
60 sync='full',
61 speed=speed,
62 buf_size=buf_size)
63 else:
64 ret = vm.qmp('blockdev-mirror',
65 job_id='mirror',
66 device='source',
67 target='target',
68 sync='full')
70 assert ret['return'] == {}
73 log('')
74 log('=== Cancel mirror job before convergence ===')
75 log('')
77 log('--- force=false ---')
78 log('')
80 with iotests.VM() as vm:
81 # Low speed so it does not converge
82 start_mirror(vm, 65536, 65536)
84 log('Cancelling job')
85 log(vm.qmp('block-job-cancel', device='mirror', force=False))
87 log(vm.event_wait('BLOCK_JOB_CANCELLED'),
88 filters=[iotests.filter_qmp_event])
90 log('')
91 log('--- force=true ---')
92 log('')
94 with iotests.VM() as vm:
95 # Low speed so it does not converge
96 start_mirror(vm, 65536, 65536)
98 log('Cancelling job')
99 log(vm.qmp('block-job-cancel', device='mirror', force=True))
101 log(vm.event_wait('BLOCK_JOB_CANCELLED'),
102 filters=[iotests.filter_qmp_event])
105 log('')
106 log('=== Cancel mirror job after convergence ===')
107 log('')
109 log('--- force=false ---')
110 log('')
112 with iotests.VM() as vm:
113 start_mirror(vm)
115 log(vm.event_wait('BLOCK_JOB_READY'),
116 filters=[iotests.filter_qmp_event])
118 log('Cancelling job')
119 log(vm.qmp('block-job-cancel', device='mirror', force=False))
121 log(vm.event_wait('BLOCK_JOB_COMPLETED'),
122 filters=[iotests.filter_qmp_event])
124 log('')
125 log('--- force=true ---')
126 log('')
128 with iotests.VM() as vm:
129 start_mirror(vm)
131 log(vm.event_wait('BLOCK_JOB_READY'),
132 filters=[iotests.filter_qmp_event])
134 log('Cancelling job')
135 log(vm.qmp('block-job-cancel', device='mirror', force=True))
137 log(vm.event_wait('BLOCK_JOB_CANCELLED'),
138 filters=[iotests.filter_qmp_event])