3 # Test exiting qemu while jobs are still running
5 # Copyright (C) 2017 Red Hat, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 owner
=kwolf@redhat.com
25 echo "QA output created by $seq"
28 status
=1 # failure is the default!
30 MIG_SOCKET
="${TEST_DIR}/migrate"
34 rm -f "${TEST_IMG}.mid"
35 rm -f "${TEST_IMG}.copy"
39 trap "_cleanup; exit \$status" 0 1 2 3 15
41 # get standard environment, filters and checks
51 TEST_IMG
="${TEST_IMG}.base" _make_test_img
$size
54 echo === Starting VM
===
57 qemu_comm_method
="qmp"
60 -drive file="${TEST_IMG}.base",cache
=$CACHEMODE,driver
=$IMGFMT,id
=disk
62 _send_qemu_cmd
$h "{ 'execute': 'qmp_capabilities' }" 'return'
65 echo === Creating backing chain
===
69 "{ 'execute': 'blockdev-snapshot-sync',
70 'arguments': { 'device': 'disk',
71 'snapshot-file': '$TEST_IMG.mid',
73 'mode': 'absolute-paths' } }" \
77 "{ 'execute': 'human-monitor-command',
78 'arguments': { 'command-line':
79 'qemu-io disk \"write 0 4M\"' } }" \
83 "{ 'execute': 'blockdev-snapshot-sync',
84 'arguments': { 'device': 'disk',
85 'snapshot-file': '$TEST_IMG',
87 'mode': 'absolute-paths' } }" \
91 echo === Start commit job and
exit qemu
===
94 # Note that the reference output intentionally includes the 'offset' field in
95 # BLOCK_JOB_* events for all of the following block jobs. They are predictable
96 # and any change in the offsets would hint at a bug in the job throttling code.
98 # In order to achieve these predictable offsets, all of the following tests
99 # use speed=65536. Each job will perform exactly one iteration before it has
100 # to sleep at least for a second, which is plenty of time for the 'quit' QMP
101 # command to be received (after receiving the command, the rest runs
102 # synchronously, so jobs can arbitrarily continue or complete).
104 # Jobs present while QEMU is terminating iterate once more due to
107 # The buffer size for commit and streaming is 512k (waiting for 8 seconds after
108 # the first request), for active commit and mirror it's large enough to cover
109 # the full 4M, and for backup it's the qcow2 cluster size, which we know is
110 # 64k. As all of these are at least as large as the speed, we are sure that the
111 # offset advances exactly twice before qemu exits.
114 "{ 'execute': 'block-commit',
115 'arguments': { 'device': 'disk',
116 'base':'$TEST_IMG.base',
117 'top': '$TEST_IMG.mid',
118 'speed': 65536 } }" \
121 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"
125 echo === Start active commit job and
exit qemu
===
129 -drive file="${TEST_IMG}",cache
=$CACHEMODE,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 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"
144 echo === Start mirror job and
exit qemu
===
148 -drive file="${TEST_IMG}",cache
=$CACHEMODE,driver
=$IMGFMT,id
=disk
150 _send_qemu_cmd
$h "{ 'execute': 'qmp_capabilities' }" 'return'
153 "{ 'execute': 'drive-mirror',
154 'arguments': { 'device': 'disk',
155 'target': '$TEST_IMG.copy',
158 'speed': 65536 } }" \
161 # If we don't sleep here 'quit' command may be handled before
162 # the first mirror iteration is done
165 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"
169 echo === Start backup job and
exit qemu
===
173 -drive file="${TEST_IMG}",cache
=$CACHEMODE,driver
=$IMGFMT,id
=disk
175 _send_qemu_cmd
$h "{ 'execute': 'qmp_capabilities' }" 'return'
178 "{ 'execute': 'drive-backup',
179 'arguments': { 'device': 'disk',
180 'target': '$TEST_IMG.copy',
183 'speed': 65536 } }" \
186 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"
190 echo === Start streaming job and
exit qemu
===
194 -drive file="${TEST_IMG}",cache
=$CACHEMODE,driver
=$IMGFMT,id
=disk
196 _send_qemu_cmd
$h "{ 'execute': 'qmp_capabilities' }" 'return'
199 "{ 'execute': 'block-stream',
200 'arguments': { 'device': 'disk',
201 'speed': 65536 } }" \
204 _send_qemu_cmd
$h "{ 'execute': 'quit' }" "return"