]>
Commit | Line | Data |
---|---|---|
24575bfa KW |
1 | #!/bin/bash |
2 | # | |
3 | # Test exiting qemu while jobs are still running | |
4 | # | |
5 | # Copyright (C) 2017 Red Hat, Inc. | |
6 | # | |
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. | |
11 | # | |
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. | |
16 | # | |
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/>. | |
19 | # | |
20 | ||
21 | # creator | |
22 | [email protected] | |
23 | ||
24 | seq=`basename $0` | |
25 | echo "QA output created by $seq" | |
26 | ||
27 | here=`pwd` | |
28 | status=1 # failure is the default! | |
29 | ||
30 | MIG_SOCKET="${TEST_DIR}/migrate" | |
31 | ||
32 | _cleanup() | |
33 | { | |
34 | rm -f "${TEST_IMG}.mid" | |
35 | rm -f "${TEST_IMG}.copy" | |
36 | _cleanup_test_img | |
37 | _cleanup_qemu | |
38 | } | |
39 | trap "_cleanup; exit \$status" 0 1 2 3 15 | |
40 | ||
41 | # get standard environment, filters and checks | |
42 | . ./common.rc | |
43 | . ./common.filter | |
44 | . ./common.qemu | |
45 | ||
46 | _supported_fmt qcow2 | |
47 | _supported_proto file | |
48 | _supported_os Linux | |
49 | ||
50 | size=64M | |
51 | TEST_IMG="${TEST_IMG}.base" _make_test_img $size | |
52 | ||
53 | echo | |
54 | echo === Starting VM === | |
55 | echo | |
56 | ||
57 | qemu_comm_method="qmp" | |
58 | ||
59 | _launch_qemu \ | |
60 | -drive file="${TEST_IMG}.base",cache=$CACHEMODE,driver=$IMGFMT,id=disk | |
61 | h=$QEMU_HANDLE | |
62 | _send_qemu_cmd $h "{ 'execute': 'qmp_capabilities' }" 'return' | |
63 | ||
64 | echo | |
65 | echo === Creating backing chain === | |
66 | echo | |
67 | ||
68 | _send_qemu_cmd $h \ | |
69 | "{ 'execute': 'blockdev-snapshot-sync', | |
70 | 'arguments': { 'device': 'disk', | |
71 | 'snapshot-file': '$TEST_IMG.mid', | |
72 | 'format': '$IMGFMT', | |
73 | 'mode': 'absolute-paths' } }" \ | |
74 | "return" | |
75 | ||
76 | _send_qemu_cmd $h \ | |
77 | "{ 'execute': 'human-monitor-command', | |
78 | 'arguments': { 'command-line': | |
79 | 'qemu-io disk \"write 0 4M\"' } }" \ | |
80 | "return" | |
81 | ||
82 | _send_qemu_cmd $h \ | |
83 | "{ 'execute': 'blockdev-snapshot-sync', | |
84 | 'arguments': { 'device': 'disk', | |
85 | 'snapshot-file': '$TEST_IMG', | |
86 | 'format': '$IMGFMT', | |
87 | 'mode': 'absolute-paths' } }" \ | |
88 | "return" | |
89 | ||
90 | echo | |
91 | echo === Start commit job and exit qemu === | |
92 | echo | |
93 | ||
94 | # Note that the reference output intentionally includes the 'offset' field in | |
95 | # BLOCK_JOB_CANCELLED events for all of the following block jobs. They are | |
96 | # predictable and any change in the offsets would hint at a bug in the job | |
97 | # throttling code. | |
98 | # | |
99 | # In order to achieve these predictable offsets, all of the following tests | |
100 | # use speed=65536. Each job will perform exactly one iteration before it has | |
101 | # to sleep at least for a second, which is plenty of time for the 'quit' QMP | |
102 | # command to be received (after receiving the command, the rest runs | |
103 | # synchronously, so jobs can arbitrarily continue or complete). | |
104 | # | |
105 | # The buffer size for commit and streaming is 512k (waiting for 8 seconds after | |
106 | # the first request), for active commit and mirror it's large enough to cover | |
107 | # the full 4M, and for backup it's the qcow2 cluster size, which we know is | |
108 | # 64k. As all of these are at least as large as the speed, we are sure that the | |
109 | # offset doesn't advance after the first iteration before qemu exits. | |
110 | ||
111 | _send_qemu_cmd $h \ | |
112 | "{ 'execute': 'block-commit', | |
113 | 'arguments': { 'device': 'disk', | |
114 | 'base':'$TEST_IMG.base', | |
115 | 'top': '$TEST_IMG.mid', | |
116 | 'speed': 65536 } }" \ | |
117 | "return" | |
118 | ||
119 | _send_qemu_cmd $h "{ 'execute': 'quit' }" "return" | |
120 | wait=1 _cleanup_qemu | |
121 | ||
122 | echo | |
123 | echo === Start active commit job and exit qemu === | |
124 | echo | |
125 | ||
126 | _launch_qemu \ | |
127 | -drive file="${TEST_IMG}",cache=$CACHEMODE,driver=$IMGFMT,id=disk | |
128 | h=$QEMU_HANDLE | |
129 | _send_qemu_cmd $h "{ 'execute': 'qmp_capabilities' }" 'return' | |
130 | ||
131 | _send_qemu_cmd $h \ | |
132 | "{ 'execute': 'block-commit', | |
133 | 'arguments': { 'device': 'disk', | |
134 | 'base':'$TEST_IMG.base', | |
135 | 'speed': 65536 } }" \ | |
136 | "return" | |
137 | ||
138 | _send_qemu_cmd $h "{ 'execute': 'quit' }" "return" | |
139 | wait=1 _cleanup_qemu | |
140 | ||
141 | echo | |
142 | echo === Start mirror job and exit qemu === | |
143 | echo | |
144 | ||
145 | _launch_qemu \ | |
146 | -drive file="${TEST_IMG}",cache=$CACHEMODE,driver=$IMGFMT,id=disk | |
147 | h=$QEMU_HANDLE | |
148 | _send_qemu_cmd $h "{ 'execute': 'qmp_capabilities' }" 'return' | |
149 | ||
150 | _send_qemu_cmd $h \ | |
151 | "{ 'execute': 'drive-mirror', | |
152 | 'arguments': { 'device': 'disk', | |
153 | 'target': '$TEST_IMG.copy', | |
154 | 'format': '$IMGFMT', | |
155 | 'sync': 'full', | |
156 | 'speed': 65536 } }" \ | |
157 | "return" | |
158 | ||
159 | _send_qemu_cmd $h "{ 'execute': 'quit' }" "return" | |
160 | wait=1 _cleanup_qemu | |
161 | ||
162 | echo | |
163 | echo === Start backup job and exit qemu === | |
164 | echo | |
165 | ||
166 | _launch_qemu \ | |
167 | -drive file="${TEST_IMG}",cache=$CACHEMODE,driver=$IMGFMT,id=disk | |
168 | h=$QEMU_HANDLE | |
169 | _send_qemu_cmd $h "{ 'execute': 'qmp_capabilities' }" 'return' | |
170 | ||
171 | _send_qemu_cmd $h \ | |
172 | "{ 'execute': 'drive-backup', | |
173 | 'arguments': { 'device': 'disk', | |
174 | 'target': '$TEST_IMG.copy', | |
175 | 'format': '$IMGFMT', | |
176 | 'sync': 'full', | |
177 | 'speed': 65536 } }" \ | |
178 | "return" | |
179 | ||
180 | _send_qemu_cmd $h "{ 'execute': 'quit' }" "return" | |
181 | wait=1 _cleanup_qemu | |
182 | ||
183 | echo | |
184 | echo === Start streaming job and exit qemu === | |
185 | echo | |
186 | ||
187 | _launch_qemu \ | |
188 | -drive file="${TEST_IMG}",cache=$CACHEMODE,driver=$IMGFMT,id=disk | |
189 | h=$QEMU_HANDLE | |
190 | _send_qemu_cmd $h "{ 'execute': 'qmp_capabilities' }" 'return' | |
191 | ||
192 | _send_qemu_cmd $h \ | |
193 | "{ 'execute': 'block-stream', | |
194 | 'arguments': { 'device': 'disk', | |
195 | 'speed': 65536 } }" \ | |
196 | "return" | |
197 | ||
198 | _send_qemu_cmd $h "{ 'execute': 'quit' }" "return" | |
199 | wait=1 _cleanup_qemu | |
200 | ||
201 | _check_test_img | |
202 | ||
203 | # success, all done | |
204 | echo "*** done" | |
205 | rm -f $seq.full | |
206 | status=0 |