4 # Test exiting qemu while jobs are still running
6 # Copyright (C) 2017 Red Hat, Inc.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 owner
=kwolf@redhat.com
26 echo "QA output created by $seq"
28 status
=1 # failure is the default!
32 _rm_test_img
"${TEST_IMG}.mid"
33 _rm_test_img
"${TEST_IMG}.copy"
37 trap "_cleanup; exit \$status" 0 1 2 3 15
39 # get standard environment, filters and checks
49 TEST_IMG
="${TEST_IMG}.base" _make_test_img
$size
52 echo === Starting VM
===
55 qemu_comm_method
="qmp"
58 -drive file="${TEST_IMG}.base",cache
=$CACHEMODE,aio
=$AIOMODE,driver
=$IMGFMT,id
=disk
60 _send_qemu_cmd
$h "{ 'execute': 'qmp_capabilities' }" 'return'
63 echo === Creating backing chain
===
67 "{ 'execute': 'blockdev-snapshot-sync',
68 'arguments': { 'device': 'disk',
69 'snapshot-file': '$TEST_IMG.mid',
71 'mode': 'absolute-paths' } }" \
75 "{ 'execute': 'human-monitor-command',
76 'arguments': { 'command-line':
77 'qemu-io disk \"write 0 4M\"' } }" \
81 "{ 'execute': 'blockdev-snapshot-sync',
82 'arguments': { 'device': 'disk',
83 'snapshot-file': '$TEST_IMG',
85 'mode': 'absolute-paths' } }" \
89 echo === Start commit job and
exit qemu
===
92 # Note that the reference output intentionally includes the 'offset' field in
93 # BLOCK_JOB_* events for all of the following block jobs. They are predictable
94 # and any change in the offsets would hint at a bug in the job throttling code.
96 # In order to achieve these predictable offsets, all of the following tests
97 # use speed=65536. Each job will perform exactly one iteration before it has
98 # to sleep at least for a second, which is plenty of time for the 'quit' QMP
99 # command to be received (after receiving the command, the rest runs
100 # synchronously, so jobs can arbitrarily continue or complete).
102 # The buffer size for commit and streaming is 512k (waiting for 8 seconds after
103 # the first request), for active commit and mirror it's large enough to cover
104 # the full 4M, and for backup it's the qcow2 cluster size, which we know is
105 # 64k. As all of these are at least as large as the speed, we are sure that the
106 # offset advances exactly once before qemu exits.
109 "{ 'execute': 'block-commit',
110 'arguments': { 'device': 'disk',
111 'base':'$TEST_IMG.base',
112 'top': '$TEST_IMG.mid',
113 'speed': 65536 } }" \
116 # If we don't sleep here 'quit' command races with disk I/O
119 # Ignore the JOB_STATUS_CHANGE events while shutting down the VM. Depending on
120 # the timing, jobs may or may not transition through a paused state.
121 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"
122 wait=1 _cleanup_qemu |
grep -v 'JOB_STATUS_CHANGE'
125 echo === Start active commit job and
exit qemu
===
129 -drive file="${TEST_IMG}",cache
=$CACHEMODE,aio
=$AIOMODE,driver
=$IMGFMT,id
=disk
131 _send_qemu_cmd
$h "{ 'execute': 'qmp_capabilities' }" 'return'
134 "{ 'execute': 'block-commit',
135 'arguments': { 'device': 'disk',
136 'base':'$TEST_IMG.base',
137 'speed': 65536 } }" \
140 # If we don't sleep here 'quit' command races with disk I/O
143 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"
144 wait=1 _cleanup_qemu |
grep -v 'JOB_STATUS_CHANGE'
147 echo === Start mirror job and
exit qemu
===
151 -drive file="${TEST_IMG}",cache
=$CACHEMODE,aio
=$AIOMODE,driver
=$IMGFMT,id
=disk
153 _send_qemu_cmd
$h "{ 'execute': 'qmp_capabilities' }" 'return'
156 "{ 'execute': 'drive-mirror',
157 'arguments': { 'device': 'disk',
158 'target': '$TEST_IMG.copy',
161 'speed': 65536 } }" \
164 # If we don't sleep here 'quit' command may be handled before
165 # the first mirror iteration is done
168 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"
169 wait=1 _cleanup_qemu |
grep -v 'JOB_STATUS_CHANGE'
172 echo === Start backup job and
exit qemu
===
176 -drive file="${TEST_IMG}",cache
=$CACHEMODE,aio
=$AIOMODE,driver
=$IMGFMT,id
=disk
178 _send_qemu_cmd
$h "{ 'execute': 'qmp_capabilities' }" 'return'
181 "{ 'execute': 'drive-backup',
182 'arguments': { 'device': 'disk',
183 'target': '$TEST_IMG.copy',
187 'x-perf': {'max-chunk': 65536} } }" \
190 # If we don't sleep here 'quit' command races with disk I/O
193 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"
194 wait=1 _cleanup_qemu |
grep -v 'JOB_STATUS_CHANGE'
197 echo === Start streaming job and
exit qemu
===
201 -drive file="${TEST_IMG}",cache
=$CACHEMODE,aio
=$AIOMODE,driver
=$IMGFMT,id
=disk
203 _send_qemu_cmd
$h "{ 'execute': 'qmp_capabilities' }" 'return'
206 "{ 'execute': 'block-stream',
207 'arguments': { 'device': 'disk',
208 'speed': 65536 } }" \
211 # If we don't sleep here 'quit' command races with disk I/O
214 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"
215 wait=1 _cleanup_qemu |
grep -v 'JOB_STATUS_CHANGE'