3 # Copyright (C) 2019 Red Hat, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Creator/Owner: Kevin Wolf <kwolf@redhat.com>
20 # Test migration with filter drivers present. Keep everything in an
21 # iothread just for fun.
26 iotests
.verify_image_format(supported_fmts
=['qcow2'])
27 iotests
.verify_platform(['linux'])
29 with iotests
.FilePath('img') as img_path
, \
30 iotests
.FilePath('mig_fifo') as fifo
, \
31 iotests
.VM(path_suffix
='a') as vm_a
, \
32 iotests
.VM(path_suffix
='b') as vm_b
:
35 vm
.add_object('iothread,id=iothread0')
36 vm
.add_object('throttle-group,id=tg0,x-bps-total=65536')
37 vm
.add_blockdev('file,filename=%s,node-name=drive0-file' % (img_path
))
38 vm
.add_blockdev('%s,file=drive0-file,node-name=drive0-fmt' % (iotests
.imgfmt
))
39 vm
.add_blockdev('copy-on-read,file=drive0-fmt,node-name=drive0-cor')
40 vm
.add_blockdev('throttle,file=drive0-cor,node-name=drive0-throttle,throttle-group=tg0')
41 vm
.add_blockdev('blkdebug,image=drive0-throttle,node-name=drive0-dbg')
42 vm
.add_blockdev('null-co,node-name=null,read-zeroes=on')
43 vm
.add_blockdev('blkverify,test=drive0-dbg,raw=null,node-name=drive0-verify')
45 if iotests
.supports_quorum():
46 vm
.add_blockdev('quorum,children.0=drive0-verify,vote-threshold=1,node-name=drive0-quorum')
47 root
= "drive0-quorum"
49 root
= "drive0-verify"
51 vm
.add_device('virtio-blk,drive=%s,iothread=iothread0' % root
)
53 iotests
.qemu_img_pipe('create', '-f', iotests
.imgfmt
, img_path
, '64M')
57 iotests
.log('Launching source VM...')
61 vm_a
.enable_migration_events('A')
63 iotests
.log('Launching destination VM...')
65 vm_b
.add_incoming("exec: cat '%s'" % (fifo
))
68 vm_b
.enable_migration_events('B')
70 iotests
.log('Starting migration to B...')
71 iotests
.log(vm_a
.qmp('migrate', uri
='exec:cat >%s' % (fifo
)))
72 with iotests
.Timeout(3, 'Migration does not complete'):
73 # Wait for the source first (which includes setup=setup)
75 # Wait for the destination second (which does not)
78 iotests
.log(vm_a
.qmp('query-migrate')['return']['status'])
79 iotests
.log(vm_b
.qmp('query-migrate')['return']['status'])
81 iotests
.log(vm_a
.qmp('query-status'))
82 iotests
.log(vm_b
.qmp('query-status'))