3 # Tests for image streaming.
5 # Copyright (C) 2012 IBM Corp.
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/>.
24 from iotests
import qemu_img
, qemu_io
26 backing_img
= os
.path
.join(iotests
.test_dir
, 'backing.img')
27 mid_img
= os
.path
.join(iotests
.test_dir
, 'mid.img')
28 test_img
= os
.path
.join(iotests
.test_dir
, 'test.img')
30 class TestSingleDrive(iotests
.QMPTestCase
):
31 image_len
= 1 * 1024 * 1024 # MB
34 iotests
.create_image(backing_img
, TestSingleDrive
.image_len
)
35 qemu_img('create', '-f', iotests
.imgfmt
, '-o', 'backing_file=%s' % backing_img
, mid_img
)
36 qemu_img('create', '-f', iotests
.imgfmt
, '-o', 'backing_file=%s' % mid_img
, test_img
)
37 qemu_io('-f', 'raw', '-c', 'write -P 0x1 0 512', backing_img
)
38 qemu_io('-f', iotests
.imgfmt
, '-c', 'write -P 0x1 524288 512', mid_img
)
39 self
.vm
= iotests
.VM().add_drive("blkdebug::" + test_img
, "backing.node-name=mid")
46 os
.remove(backing_img
)
48 def test_stream(self
):
49 self
.assert_no_active_block_jobs()
51 result
= self
.vm
.qmp('block-stream', device
='drive0')
52 self
.assert_qmp(result
, 'return', {})
54 self
.wait_until_completed()
56 self
.assert_no_active_block_jobs()
59 self
.assertEqual(qemu_io('-f', 'raw', '-c', 'map', backing_img
),
60 qemu_io('-f', iotests
.imgfmt
, '-c', 'map', test_img
),
61 'image file map does not match backing file after streaming')
63 def test_stream_intermediate(self
):
64 self
.assert_no_active_block_jobs()
66 self
.assertNotEqual(qemu_io('-f', 'raw', '-rU', '-c', 'map', backing_img
),
67 qemu_io('-f', iotests
.imgfmt
, '-rU', '-c', 'map', mid_img
),
68 'image file map matches backing file before streaming')
70 result
= self
.vm
.qmp('block-stream', device
='mid', job_id
='stream-mid')
71 self
.assert_qmp(result
, 'return', {})
73 self
.wait_until_completed(drive
='stream-mid')
75 self
.assert_no_active_block_jobs()
78 self
.assertEqual(qemu_io('-f', 'raw', '-c', 'map', backing_img
),
79 qemu_io('-f', iotests
.imgfmt
, '-c', 'map', mid_img
),
80 'image file map does not match backing file after streaming')
82 def test_stream_pause(self
):
83 self
.assert_no_active_block_jobs()
85 self
.vm
.pause_drive('drive0')
86 result
= self
.vm
.qmp('block-stream', device
='drive0')
87 self
.assert_qmp(result
, 'return', {})
89 self
.pause_job('drive0', wait
=False)
90 self
.vm
.resume_drive('drive0')
91 self
.pause_wait('drive0')
93 result
= self
.vm
.qmp('query-block-jobs')
94 offset
= self
.dictpath(result
, 'return[0]/offset')
97 result
= self
.vm
.qmp('query-block-jobs')
98 self
.assert_qmp(result
, 'return[0]/offset', offset
)
100 result
= self
.vm
.qmp('block-job-resume', device
='drive0')
101 self
.assert_qmp(result
, 'return', {})
103 self
.wait_until_completed()
105 self
.assert_no_active_block_jobs()
108 self
.assertEqual(qemu_io('-f', 'raw', '-c', 'map', backing_img
),
109 qemu_io('-f', iotests
.imgfmt
, '-c', 'map', test_img
),
110 'image file map does not match backing file after streaming')
112 def test_stream_no_op(self
):
113 self
.assert_no_active_block_jobs()
115 # The image map is empty before the operation
116 empty_map
= qemu_io('-f', iotests
.imgfmt
, '-rU', '-c', 'map', test_img
)
118 # This is a no-op: no data should ever be copied from the base image
119 result
= self
.vm
.qmp('block-stream', device
='drive0', base
=mid_img
)
120 self
.assert_qmp(result
, 'return', {})
122 self
.wait_until_completed()
124 self
.assert_no_active_block_jobs()
127 self
.assertEqual(qemu_io('-f', iotests
.imgfmt
, '-c', 'map', test_img
),
128 empty_map
, 'image file map changed after a no-op')
130 def test_stream_partial(self
):
131 self
.assert_no_active_block_jobs()
133 result
= self
.vm
.qmp('block-stream', device
='drive0', base
=backing_img
)
134 self
.assert_qmp(result
, 'return', {})
136 self
.wait_until_completed()
138 self
.assert_no_active_block_jobs()
141 self
.assertEqual(qemu_io('-f', iotests
.imgfmt
, '-c', 'map', mid_img
),
142 qemu_io('-f', iotests
.imgfmt
, '-c', 'map', test_img
),
143 'image file map does not match backing file after streaming')
145 def test_device_not_found(self
):
146 result
= self
.vm
.qmp('block-stream', device
='nonexistent')
147 self
.assert_qmp(result
, 'error/class', 'GenericError')
149 def test_job_id_missing(self
):
150 result
= self
.vm
.qmp('block-stream', device
='mid')
151 self
.assert_qmp(result
, 'error/class', 'GenericError')
154 class TestParallelOps(iotests
.QMPTestCase
):
155 num_ops
= 4 # Number of parallel block-stream operations
156 num_imgs
= num_ops
* 2 + 1
157 image_len
= num_ops
* 512 * 1024
164 # Initialize file names and command-line options
165 for i
in range(self
.num_imgs
):
166 img_depth
= self
.num_imgs
- i
- 1
167 opts
.append("backing." * img_depth
+ "node-name=node%d" % i
)
168 self
.imgs
.append(os
.path
.join(iotests
.test_dir
, 'img-%d.img' % i
))
171 iotests
.create_image(self
.imgs
[0], self
.image_len
)
172 for i
in range(1, self
.num_imgs
):
173 qemu_img('create', '-f', iotests
.imgfmt
,
174 '-o', 'backing_file=%s' % self
.imgs
[i
-1], self
.imgs
[i
])
176 # Put data into the images we are copying data from
177 odd_img_indexes
= [x
for x
in reversed(range(self
.num_imgs
)) if x
% 2 == 1]
178 for i
in range(len(odd_img_indexes
)):
179 # Alternate between 256KB and 512KB.
180 # This way jobs will not finish in the same order they were created
181 num_kb
= 256 + 256 * (i
% 2)
182 qemu_io('-f', iotests
.imgfmt
,
183 '-c', 'write -P 0xFF %dk %dk' % (i
* 512, num_kb
),
184 self
.imgs
[odd_img_indexes
[i
]])
186 # Attach the drive to the VM
187 self
.vm
= iotests
.VM()
188 self
.vm
.add_drive(self
.imgs
[-1], ','.join(opts
))
193 for img
in self
.imgs
:
196 # Test that it's possible to run several block-stream operations
197 # in parallel in the same snapshot chain
198 def test_stream_parallel(self
):
199 self
.assert_no_active_block_jobs()
201 # Check that the maps don't match before the streaming operations
202 for i
in range(2, self
.num_imgs
, 2):
203 self
.assertNotEqual(qemu_io('-f', iotests
.imgfmt
, '-rU', '-c', 'map', self
.imgs
[i
]),
204 qemu_io('-f', iotests
.imgfmt
, '-rU', '-c', 'map', self
.imgs
[i
-1]),
205 'image file map matches backing file before streaming')
207 # Create all streaming jobs
209 for i
in range(2, self
.num_imgs
, 2):
210 node_name
= 'node%d' % i
211 job_id
= 'stream-%s' % node_name
212 pending_jobs
.append(job_id
)
213 result
= self
.vm
.qmp('block-stream', device
=node_name
, job_id
=job_id
, base
=self
.imgs
[i
-2], speed
=512*1024)
214 self
.assert_qmp(result
, 'return', {})
216 # Wait for all jobs to be finished.
217 while len(pending_jobs
) > 0:
218 for event
in self
.vm
.get_qmp_events(wait
=True):
219 if event
['event'] == 'BLOCK_JOB_COMPLETED':
220 job_id
= self
.dictpath(event
, 'data/device')
221 self
.assertTrue(job_id
in pending_jobs
)
222 self
.assert_qmp_absent(event
, 'data/error')
223 pending_jobs
.remove(job_id
)
225 self
.assert_no_active_block_jobs()
228 # Check that all maps match now
229 for i
in range(2, self
.num_imgs
, 2):
230 self
.assertEqual(qemu_io('-f', iotests
.imgfmt
, '-c', 'map', self
.imgs
[i
]),
231 qemu_io('-f', iotests
.imgfmt
, '-c', 'map', self
.imgs
[i
-1]),
232 'image file map does not match backing file after streaming')
234 # Test that it's not possible to perform two block-stream
235 # operations if there are nodes involved in both.
236 def test_overlapping_1(self
):
237 self
.assert_no_active_block_jobs()
239 # Set a speed limit to make sure that this job blocks the rest
240 result
= self
.vm
.qmp('block-stream', device
='node4', job_id
='stream-node4', base
=self
.imgs
[1], speed
=1024*1024)
241 self
.assert_qmp(result
, 'return', {})
243 result
= self
.vm
.qmp('block-stream', device
='node5', job_id
='stream-node5', base
=self
.imgs
[2])
244 self
.assert_qmp(result
, 'error/class', 'GenericError')
246 result
= self
.vm
.qmp('block-stream', device
='node3', job_id
='stream-node3', base
=self
.imgs
[2])
247 self
.assert_qmp(result
, 'error/class', 'GenericError')
249 result
= self
.vm
.qmp('block-stream', device
='node4', job_id
='stream-node4-v2')
250 self
.assert_qmp(result
, 'error/class', 'GenericError')
252 # block-commit should also fail if it touches nodes used by the stream job
253 result
= self
.vm
.qmp('block-commit', device
='drive0', base
=self
.imgs
[4], job_id
='commit-node4')
254 self
.assert_qmp(result
, 'error/class', 'GenericError')
256 result
= self
.vm
.qmp('block-commit', device
='drive0', base
=self
.imgs
[1], top
=self
.imgs
[3], job_id
='commit-node1')
257 self
.assert_qmp(result
, 'error/class', 'GenericError')
259 # This fails because it needs to modify the backing string in node2, which is blocked
260 result
= self
.vm
.qmp('block-commit', device
='drive0', base
=self
.imgs
[0], top
=self
.imgs
[1], job_id
='commit-node0')
261 self
.assert_qmp(result
, 'error/class', 'GenericError')
263 self
.wait_until_completed(drive
='stream-node4')
264 self
.assert_no_active_block_jobs()
266 # Similar to test_overlapping_1, but with block-commit
267 # blocking the other jobs
268 def test_overlapping_2(self
):
269 self
.assertLessEqual(9, self
.num_imgs
)
270 self
.assert_no_active_block_jobs()
272 # Set a speed limit to make sure that this job blocks the rest
273 result
= self
.vm
.qmp('block-commit', device
='drive0', top
=self
.imgs
[5], base
=self
.imgs
[3], job_id
='commit-node3', speed
=1024*1024)
274 self
.assert_qmp(result
, 'return', {})
276 result
= self
.vm
.qmp('block-stream', device
='node3', job_id
='stream-node3')
277 self
.assert_qmp(result
, 'error/class', 'GenericError')
279 result
= self
.vm
.qmp('block-stream', device
='node6', base
=self
.imgs
[2], job_id
='stream-node6')
280 self
.assert_qmp(result
, 'error/class', 'GenericError')
282 result
= self
.vm
.qmp('block-stream', device
='node4', base
=self
.imgs
[2], job_id
='stream-node4')
283 self
.assert_qmp(result
, 'error/class', 'GenericError')
285 result
= self
.vm
.qmp('block-stream', device
='node6', base
=self
.imgs
[4], job_id
='stream-node6-v2')
286 self
.assert_qmp(result
, 'error/class', 'GenericError')
288 # This fails because block-commit currently blocks the active layer even if it's not used
289 result
= self
.vm
.qmp('block-stream', device
='drive0', base
=self
.imgs
[5], job_id
='stream-drive0')
290 self
.assert_qmp(result
, 'error/class', 'GenericError')
292 self
.wait_until_completed(drive
='commit-node3')
294 # Similar to test_overlapping_2, but here block-commit doesn't use the 'top' parameter.
295 # Internally this uses a mirror block job, hence the separate test case.
296 def test_overlapping_3(self
):
297 self
.assertLessEqual(8, self
.num_imgs
)
298 self
.assert_no_active_block_jobs()
300 # Set a speed limit to make sure that this job blocks the rest
301 result
= self
.vm
.qmp('block-commit', device
='drive0', base
=self
.imgs
[3], job_id
='commit-drive0', speed
=1024*1024)
302 self
.assert_qmp(result
, 'return', {})
304 result
= self
.vm
.qmp('block-stream', device
='node5', base
=self
.imgs
[3], job_id
='stream-node6')
305 self
.assert_qmp(result
, 'error/class', 'GenericError')
307 event
= self
.vm
.event_wait(name
='BLOCK_JOB_READY')
308 self
.assert_qmp(event
, 'data/device', 'commit-drive0')
309 self
.assert_qmp(event
, 'data/type', 'commit')
310 self
.assert_qmp_absent(event
, 'data/error')
312 result
= self
.vm
.qmp('block-job-complete', device
='commit-drive0')
313 self
.assert_qmp(result
, 'return', {})
315 self
.wait_until_completed(drive
='commit-drive0')
317 # Test a block-stream and a block-commit job in parallel
318 # Here the stream job is supposed to finish quickly in order to reproduce
319 # the scenario that triggers the bug fixed in 3d5d319e1221 and 1a63a907507
320 def test_stream_commit_1(self
):
321 self
.assertLessEqual(8, self
.num_imgs
)
322 self
.assert_no_active_block_jobs()
324 # Stream from node0 into node2
325 result
= self
.vm
.qmp('block-stream', device
='node2', base_node
='node0', job_id
='node2')
326 self
.assert_qmp(result
, 'return', {})
328 # Commit from the active layer into node3
329 result
= self
.vm
.qmp('block-commit', device
='drive0', base
=self
.imgs
[3])
330 self
.assert_qmp(result
, 'return', {})
332 # Wait for all jobs to be finished.
333 pending_jobs
= ['node2', 'drive0']
334 while len(pending_jobs
) > 0:
335 for event
in self
.vm
.get_qmp_events(wait
=True):
336 if event
['event'] == 'BLOCK_JOB_COMPLETED':
337 node_name
= self
.dictpath(event
, 'data/device')
338 self
.assertTrue(node_name
in pending_jobs
)
339 self
.assert_qmp_absent(event
, 'data/error')
340 pending_jobs
.remove(node_name
)
341 if event
['event'] == 'BLOCK_JOB_READY':
342 self
.assert_qmp(event
, 'data/device', 'drive0')
343 self
.assert_qmp(event
, 'data/type', 'commit')
344 self
.assert_qmp_absent(event
, 'data/error')
345 self
.assertTrue('drive0' in pending_jobs
)
346 self
.vm
.qmp('block-job-complete', device
='drive0')
348 self
.assert_no_active_block_jobs()
350 # This is similar to test_stream_commit_1 but both jobs are slowed
351 # down so they can run in parallel for a little while.
352 def test_stream_commit_2(self
):
353 self
.assertLessEqual(8, self
.num_imgs
)
354 self
.assert_no_active_block_jobs()
356 # Stream from node0 into node4
357 result
= self
.vm
.qmp('block-stream', device
='node4', base_node
='node0', job_id
='node4', speed
=1024*1024)
358 self
.assert_qmp(result
, 'return', {})
360 # Commit from the active layer into node5
361 result
= self
.vm
.qmp('block-commit', device
='drive0', base
=self
.imgs
[5], speed
=1024*1024)
362 self
.assert_qmp(result
, 'return', {})
364 # Wait for all jobs to be finished.
365 pending_jobs
= ['node4', 'drive0']
366 while len(pending_jobs
) > 0:
367 for event
in self
.vm
.get_qmp_events(wait
=True):
368 if event
['event'] == 'BLOCK_JOB_COMPLETED':
369 node_name
= self
.dictpath(event
, 'data/device')
370 self
.assertTrue(node_name
in pending_jobs
)
371 self
.assert_qmp_absent(event
, 'data/error')
372 pending_jobs
.remove(node_name
)
373 if event
['event'] == 'BLOCK_JOB_READY':
374 self
.assert_qmp(event
, 'data/device', 'drive0')
375 self
.assert_qmp(event
, 'data/type', 'commit')
376 self
.assert_qmp_absent(event
, 'data/error')
377 self
.assertTrue('drive0' in pending_jobs
)
378 self
.vm
.qmp('block-job-complete', device
='drive0')
380 self
.assert_no_active_block_jobs()
382 # Test the base_node parameter
383 def test_stream_base_node_name(self
):
384 self
.assert_no_active_block_jobs()
386 self
.assertNotEqual(qemu_io('-f', iotests
.imgfmt
, '-rU', '-c', 'map', self
.imgs
[4]),
387 qemu_io('-f', iotests
.imgfmt
, '-rU', '-c', 'map', self
.imgs
[3]),
388 'image file map matches backing file before streaming')
390 # Error: the base node does not exist
391 result
= self
.vm
.qmp('block-stream', device
='node4', base_node
='none', job_id
='stream')
392 self
.assert_qmp(result
, 'error/class', 'GenericError')
394 # Error: the base node is not a backing file of the top node
395 result
= self
.vm
.qmp('block-stream', device
='node4', base_node
='node6', job_id
='stream')
396 self
.assert_qmp(result
, 'error/class', 'GenericError')
398 # Error: the base node is the same as the top node
399 result
= self
.vm
.qmp('block-stream', device
='node4', base_node
='node4', job_id
='stream')
400 self
.assert_qmp(result
, 'error/class', 'GenericError')
402 # Error: cannot specify 'base' and 'base-node' at the same time
403 result
= self
.vm
.qmp('block-stream', device
='node4', base
=self
.imgs
[2], base_node
='node2', job_id
='stream')
404 self
.assert_qmp(result
, 'error/class', 'GenericError')
406 # Success: the base node is a backing file of the top node
407 result
= self
.vm
.qmp('block-stream', device
='node4', base_node
='node2', job_id
='stream')
408 self
.assert_qmp(result
, 'return', {})
410 self
.wait_until_completed(drive
='stream')
412 self
.assert_no_active_block_jobs()
415 self
.assertEqual(qemu_io('-f', iotests
.imgfmt
, '-c', 'map', self
.imgs
[4]),
416 qemu_io('-f', iotests
.imgfmt
, '-c', 'map', self
.imgs
[3]),
417 'image file map matches backing file after streaming')
419 class TestQuorum(iotests
.QMPTestCase
):
425 opts
= ['driver=quorum', 'vote-threshold=2']
427 # Initialize file names and command-line options
428 for i
in range(self
.num_children
):
429 child_img
= os
.path
.join(iotests
.test_dir
, 'img-%d.img' % i
)
430 backing_img
= os
.path
.join(iotests
.test_dir
, 'backing-%d.img' % i
)
431 self
.children
.append(child_img
)
432 self
.backing
.append(backing_img
)
433 qemu_img('create', '-f', iotests
.imgfmt
, backing_img
, '1M')
434 qemu_io('-f', iotests
.imgfmt
,
435 '-c', 'write -P 0x55 0 1024', backing_img
)
436 qemu_img('create', '-f', iotests
.imgfmt
,
437 '-o', 'backing_file=%s' % backing_img
, child_img
)
438 opts
.append("children.%d.file.filename=%s" % (i
, child_img
))
439 opts
.append("children.%d.node-name=node%d" % (i
, i
))
441 # Attach the drive to the VM
442 self
.vm
= iotests
.VM()
443 self
.vm
.add_drive(path
= None, opts
= ','.join(opts
))
448 for img
in self
.children
:
450 for img
in self
.backing
:
453 def test_stream_quorum(self
):
454 if not iotests
.supports_quorum():
457 self
.assertNotEqual(qemu_io('-f', iotests
.imgfmt
, '-rU', '-c', 'map', self
.children
[0]),
458 qemu_io('-f', iotests
.imgfmt
, '-rU', '-c', 'map', self
.backing
[0]),
459 'image file map matches backing file before streaming')
461 self
.assert_no_active_block_jobs()
463 result
= self
.vm
.qmp('block-stream', device
='node0', job_id
='stream-node0')
464 self
.assert_qmp(result
, 'return', {})
466 self
.wait_until_completed(drive
='stream-node0')
468 self
.assert_no_active_block_jobs()
471 self
.assertEqual(qemu_io('-f', iotests
.imgfmt
, '-c', 'map', self
.children
[0]),
472 qemu_io('-f', iotests
.imgfmt
, '-c', 'map', self
.backing
[0]),
473 'image file map does not match backing file after streaming')
475 class TestSmallerBackingFile(iotests
.QMPTestCase
):
476 backing_len
= 1 * 1024 * 1024 # MB
477 image_len
= 2 * backing_len
480 iotests
.create_image(backing_img
, self
.backing_len
)
481 qemu_img('create', '-f', iotests
.imgfmt
, '-o', 'backing_file=%s' % backing_img
, test_img
, str(self
.image_len
))
482 self
.vm
= iotests
.VM().add_drive(test_img
)
485 # If this hangs, then you are missing a fix to complete streaming when the
486 # end of the backing file is reached.
487 def test_stream(self
):
488 self
.assert_no_active_block_jobs()
490 result
= self
.vm
.qmp('block-stream', device
='drive0')
491 self
.assert_qmp(result
, 'return', {})
493 self
.wait_until_completed()
495 self
.assert_no_active_block_jobs()
498 class TestErrors(iotests
.QMPTestCase
):
499 image_len
= 2 * 1024 * 1024 # MB
501 # this should match STREAM_BUFFER_SIZE/512 in block/stream.c
502 STREAM_BUFFER_SIZE
= 512 * 1024
504 def create_blkdebug_file(self
, name
, event
, errno
):
505 file = open(name
, 'w')
524 ''' % (event
, errno
, self
.STREAM_BUFFER_SIZE
// 512, event
, event
))
527 class TestEIO(TestErrors
):
529 self
.blkdebug_file
= backing_img
+ ".blkdebug"
530 iotests
.create_image(backing_img
, TestErrors
.image_len
)
531 self
.create_blkdebug_file(self
.blkdebug_file
, "read_aio", 5)
532 qemu_img('create', '-f', iotests
.imgfmt
,
533 '-o', 'backing_file=blkdebug:%s:%s,backing_fmt=raw'
534 % (self
.blkdebug_file
, backing_img
),
536 self
.vm
= iotests
.VM().add_drive(test_img
)
542 os
.remove(backing_img
)
543 os
.remove(self
.blkdebug_file
)
545 def test_report(self
):
546 self
.assert_no_active_block_jobs()
548 result
= self
.vm
.qmp('block-stream', device
='drive0')
549 self
.assert_qmp(result
, 'return', {})
554 for event
in self
.vm
.get_qmp_events(wait
=True):
555 if event
['event'] == 'BLOCK_JOB_ERROR':
556 self
.assert_qmp(event
, 'data/device', 'drive0')
557 self
.assert_qmp(event
, 'data/operation', 'read')
559 elif event
['event'] == 'BLOCK_JOB_COMPLETED':
560 self
.assertTrue(error
, 'job completed unexpectedly')
561 self
.assert_qmp(event
, 'data/type', 'stream')
562 self
.assert_qmp(event
, 'data/device', 'drive0')
563 self
.assert_qmp(event
, 'data/error', 'Input/output error')
564 self
.assert_qmp(event
, 'data/offset', self
.STREAM_BUFFER_SIZE
)
565 self
.assert_qmp(event
, 'data/len', self
.image_len
)
567 elif event
['event'] == 'JOB_STATUS_CHANGE':
568 self
.assert_qmp(event
, 'data/id', 'drive0')
570 self
.assert_no_active_block_jobs()
573 def test_ignore(self
):
574 self
.assert_no_active_block_jobs()
576 result
= self
.vm
.qmp('block-stream', device
='drive0', on_error
='ignore')
577 self
.assert_qmp(result
, 'return', {})
582 for event
in self
.vm
.get_qmp_events(wait
=True):
583 if event
['event'] == 'BLOCK_JOB_ERROR':
585 self
.assert_qmp(event
, 'data/device', 'drive0')
586 self
.assert_qmp(event
, 'data/operation', 'read')
587 result
= self
.vm
.qmp('query-block-jobs')
588 if result
== {'return': []}:
589 # Job finished too quickly
591 self
.assert_qmp(result
, 'return[0]/paused', False)
592 elif event
['event'] == 'BLOCK_JOB_COMPLETED':
593 self
.assertTrue(error
, 'job completed unexpectedly')
594 self
.assert_qmp(event
, 'data/type', 'stream')
595 self
.assert_qmp(event
, 'data/device', 'drive0')
596 self
.assert_qmp(event
, 'data/error', 'Input/output error')
597 self
.assert_qmp(event
, 'data/offset', self
.image_len
)
598 self
.assert_qmp(event
, 'data/len', self
.image_len
)
600 elif event
['event'] == 'JOB_STATUS_CHANGE':
601 self
.assert_qmp(event
, 'data/id', 'drive0')
603 self
.assert_no_active_block_jobs()
607 self
.assert_no_active_block_jobs()
609 result
= self
.vm
.qmp('block-stream', device
='drive0', on_error
='stop')
610 self
.assert_qmp(result
, 'return', {})
615 for event
in self
.vm
.get_qmp_events(wait
=True):
616 if event
['event'] == 'BLOCK_JOB_ERROR':
618 self
.assert_qmp(event
, 'data/device', 'drive0')
619 self
.assert_qmp(event
, 'data/operation', 'read')
621 result
= self
.vm
.qmp('query-block-jobs')
622 self
.assert_qmp(result
, 'return[0]/paused', True)
623 self
.assert_qmp(result
, 'return[0]/offset', self
.STREAM_BUFFER_SIZE
)
624 self
.assert_qmp(result
, 'return[0]/io-status', 'failed')
626 result
= self
.vm
.qmp('block-job-resume', device
='drive0')
627 self
.assert_qmp(result
, 'return', {})
629 result
= self
.vm
.qmp('query-block-jobs')
630 if result
== {'return': []}:
631 # Race; likely already finished. Check.
633 self
.assert_qmp(result
, 'return[0]/paused', False)
634 self
.assert_qmp(result
, 'return[0]/io-status', 'ok')
635 elif event
['event'] == 'BLOCK_JOB_COMPLETED':
636 self
.assertTrue(error
, 'job completed unexpectedly')
637 self
.assert_qmp(event
, 'data/type', 'stream')
638 self
.assert_qmp(event
, 'data/device', 'drive0')
639 self
.assert_qmp_absent(event
, 'data/error')
640 self
.assert_qmp(event
, 'data/offset', self
.image_len
)
641 self
.assert_qmp(event
, 'data/len', self
.image_len
)
643 elif event
['event'] == 'JOB_STATUS_CHANGE':
644 self
.assert_qmp(event
, 'data/id', 'drive0')
646 self
.assert_no_active_block_jobs()
649 def test_enospc(self
):
650 self
.assert_no_active_block_jobs()
652 result
= self
.vm
.qmp('block-stream', device
='drive0', on_error
='enospc')
653 self
.assert_qmp(result
, 'return', {})
658 for event
in self
.vm
.get_qmp_events(wait
=True):
659 if event
['event'] == 'BLOCK_JOB_ERROR':
660 self
.assert_qmp(event
, 'data/device', 'drive0')
661 self
.assert_qmp(event
, 'data/operation', 'read')
663 elif event
['event'] == 'BLOCK_JOB_COMPLETED':
664 self
.assertTrue(error
, 'job completed unexpectedly')
665 self
.assert_qmp(event
, 'data/type', 'stream')
666 self
.assert_qmp(event
, 'data/device', 'drive0')
667 self
.assert_qmp(event
, 'data/error', 'Input/output error')
668 self
.assert_qmp(event
, 'data/offset', self
.STREAM_BUFFER_SIZE
)
669 self
.assert_qmp(event
, 'data/len', self
.image_len
)
671 elif event
['event'] == 'JOB_STATUS_CHANGE':
672 self
.assert_qmp(event
, 'data/id', 'drive0')
674 self
.assert_no_active_block_jobs()
677 class TestENOSPC(TestErrors
):
679 self
.blkdebug_file
= backing_img
+ ".blkdebug"
680 iotests
.create_image(backing_img
, TestErrors
.image_len
)
681 self
.create_blkdebug_file(self
.blkdebug_file
, "read_aio", 28)
682 qemu_img('create', '-f', iotests
.imgfmt
,
683 '-o', 'backing_file=blkdebug:%s:%s,backing_fmt=raw'
684 % (self
.blkdebug_file
, backing_img
),
686 self
.vm
= iotests
.VM().add_drive(test_img
)
692 os
.remove(backing_img
)
693 os
.remove(self
.blkdebug_file
)
695 def test_enospc(self
):
696 self
.assert_no_active_block_jobs()
698 result
= self
.vm
.qmp('block-stream', device
='drive0', on_error
='enospc')
699 self
.assert_qmp(result
, 'return', {})
704 for event
in self
.vm
.get_qmp_events(wait
=True):
705 if event
['event'] == 'BLOCK_JOB_ERROR':
706 self
.assert_qmp(event
, 'data/device', 'drive0')
707 self
.assert_qmp(event
, 'data/operation', 'read')
710 result
= self
.vm
.qmp('query-block-jobs')
711 self
.assert_qmp(result
, 'return[0]/paused', True)
712 self
.assert_qmp(result
, 'return[0]/offset', self
.STREAM_BUFFER_SIZE
)
713 self
.assert_qmp(result
, 'return[0]/io-status', 'nospace')
715 result
= self
.vm
.qmp('block-job-resume', device
='drive0')
716 self
.assert_qmp(result
, 'return', {})
718 result
= self
.vm
.qmp('query-block-jobs')
719 if result
== {'return': []}:
720 # Race; likely already finished. Check.
722 self
.assert_qmp(result
, 'return[0]/paused', False)
723 self
.assert_qmp(result
, 'return[0]/io-status', 'ok')
724 elif event
['event'] == 'BLOCK_JOB_COMPLETED':
725 self
.assertTrue(error
, 'job completed unexpectedly')
726 self
.assert_qmp(event
, 'data/type', 'stream')
727 self
.assert_qmp(event
, 'data/device', 'drive0')
728 self
.assert_qmp_absent(event
, 'data/error')
729 self
.assert_qmp(event
, 'data/offset', self
.image_len
)
730 self
.assert_qmp(event
, 'data/len', self
.image_len
)
732 elif event
['event'] == 'JOB_STATUS_CHANGE':
733 self
.assert_qmp(event
, 'data/id', 'drive0')
735 self
.assert_no_active_block_jobs()
738 class TestStreamStop(iotests
.QMPTestCase
):
739 image_len
= 8 * 1024 * 1024 * 1024 # GB
742 qemu_img('create', backing_img
, str(TestStreamStop
.image_len
))
743 qemu_io('-f', 'raw', '-c', 'write -P 0x1 0 32M', backing_img
)
744 qemu_img('create', '-f', iotests
.imgfmt
, '-o', 'backing_file=%s' % backing_img
, test_img
)
745 qemu_io('-f', iotests
.imgfmt
, '-c', 'write -P 0x1 32M 32M', test_img
)
746 self
.vm
= iotests
.VM().add_drive("blkdebug::" + test_img
)
752 os
.remove(backing_img
)
754 def test_stream_stop(self
):
755 self
.assert_no_active_block_jobs()
757 self
.vm
.pause_drive('drive0')
758 result
= self
.vm
.qmp('block-stream', device
='drive0')
759 self
.assert_qmp(result
, 'return', {})
762 events
= self
.vm
.get_qmp_events(wait
=False)
764 self
.assert_qmp(e
, 'event', 'JOB_STATUS_CHANGE')
765 self
.assert_qmp(e
, 'data/id', 'drive0')
767 self
.cancel_and_wait(resume
=True)
769 class TestSetSpeed(iotests
.QMPTestCase
):
770 image_len
= 80 * 1024 * 1024 # MB
773 qemu_img('create', backing_img
, str(TestSetSpeed
.image_len
))
774 qemu_io('-f', 'raw', '-c', 'write -P 0x1 0 32M', backing_img
)
775 qemu_img('create', '-f', iotests
.imgfmt
, '-o', 'backing_file=%s' % backing_img
, test_img
)
776 qemu_io('-f', iotests
.imgfmt
, '-c', 'write -P 0x1 32M 32M', test_img
)
777 self
.vm
= iotests
.VM().add_drive('blkdebug::' + test_img
)
783 os
.remove(backing_img
)
785 # This is a short performance test which is not run by default.
786 # Invoke "IMGFMT=qed ./030 TestSetSpeed.perf_test_throughput"
787 def perf_test_throughput(self
):
788 self
.assert_no_active_block_jobs()
790 result
= self
.vm
.qmp('block-stream', device
='drive0')
791 self
.assert_qmp(result
, 'return', {})
793 result
= self
.vm
.qmp('block-job-set-speed', device
='drive0', speed
=8 * 1024 * 1024)
794 self
.assert_qmp(result
, 'return', {})
796 self
.wait_until_completed()
798 self
.assert_no_active_block_jobs()
800 def test_set_speed(self
):
801 self
.assert_no_active_block_jobs()
803 self
.vm
.pause_drive('drive0')
804 result
= self
.vm
.qmp('block-stream', device
='drive0')
805 self
.assert_qmp(result
, 'return', {})
808 result
= self
.vm
.qmp('query-block-jobs')
809 self
.assert_qmp(result
, 'return[0]/device', 'drive0')
810 self
.assert_qmp(result
, 'return[0]/speed', 0)
812 result
= self
.vm
.qmp('block-job-set-speed', device
='drive0', speed
=8 * 1024 * 1024)
813 self
.assert_qmp(result
, 'return', {})
815 # Ensure the speed we set was accepted
816 result
= self
.vm
.qmp('query-block-jobs')
817 self
.assert_qmp(result
, 'return[0]/device', 'drive0')
818 self
.assert_qmp(result
, 'return[0]/speed', 8 * 1024 * 1024)
820 self
.cancel_and_wait(resume
=True)
821 self
.vm
.pause_drive('drive0')
823 # Check setting speed in block-stream works
824 result
= self
.vm
.qmp('block-stream', device
='drive0', speed
=4 * 1024 * 1024)
825 self
.assert_qmp(result
, 'return', {})
827 result
= self
.vm
.qmp('query-block-jobs')
828 self
.assert_qmp(result
, 'return[0]/device', 'drive0')
829 self
.assert_qmp(result
, 'return[0]/speed', 4 * 1024 * 1024)
831 self
.cancel_and_wait(resume
=True)
833 def test_set_speed_invalid(self
):
834 self
.assert_no_active_block_jobs()
836 result
= self
.vm
.qmp('block-stream', device
='drive0', speed
=-1)
837 self
.assert_qmp(result
, 'error/class', 'GenericError')
839 self
.assert_no_active_block_jobs()
841 self
.vm
.pause_drive('drive0')
842 result
= self
.vm
.qmp('block-stream', device
='drive0')
843 self
.assert_qmp(result
, 'return', {})
845 result
= self
.vm
.qmp('block-job-set-speed', device
='drive0', speed
=-1)
846 self
.assert_qmp(result
, 'error/class', 'GenericError')
848 self
.cancel_and_wait(resume
=True)
850 if __name__
== '__main__':
851 iotests
.main(supported_fmts
=['qcow2', 'qed'])