xref: /openbmc/qemu/tests/qemu-iotests/262 (revision 4d804b5305ffb4d5fa414c38d4f1bdfb987c8d0b)
15b96e6a0SKevin Wolf#!/usr/bin/env python
25b96e6a0SKevin Wolf#
35b96e6a0SKevin Wolf# Copyright (C) 2019 Red Hat, Inc.
45b96e6a0SKevin Wolf#
55b96e6a0SKevin Wolf# This program is free software; you can redistribute it and/or modify
65b96e6a0SKevin Wolf# it under the terms of the GNU General Public License as published by
75b96e6a0SKevin Wolf# the Free Software Foundation; either version 2 of the License, or
85b96e6a0SKevin Wolf# (at your option) any later version.
95b96e6a0SKevin Wolf#
105b96e6a0SKevin Wolf# This program is distributed in the hope that it will be useful,
115b96e6a0SKevin Wolf# but WITHOUT ANY WARRANTY; without even the implied warranty of
125b96e6a0SKevin Wolf# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
135b96e6a0SKevin Wolf# GNU General Public License for more details.
145b96e6a0SKevin Wolf#
155b96e6a0SKevin Wolf# You should have received a copy of the GNU General Public License
165b96e6a0SKevin Wolf# along with this program.  If not, see <http://www.gnu.org/licenses/>.
175b96e6a0SKevin Wolf#
185b96e6a0SKevin Wolf# Creator/Owner: Kevin Wolf <kwolf@redhat.com>
195b96e6a0SKevin Wolf#
205b96e6a0SKevin Wolf# Test migration with filter drivers present. Keep everything in an
215b96e6a0SKevin Wolf# iothread just for fun.
225b96e6a0SKevin Wolf
235b96e6a0SKevin Wolfimport iotests
245b96e6a0SKevin Wolfimport os
255b96e6a0SKevin Wolf
265b96e6a0SKevin Wolfiotests.verify_image_format(supported_fmts=['qcow2'])
275b96e6a0SKevin Wolfiotests.verify_platform(['linux'])
285b96e6a0SKevin Wolf
295b96e6a0SKevin Wolfwith iotests.FilePath('img') as img_path, \
305b96e6a0SKevin Wolf     iotests.FilePath('mig_fifo') as fifo, \
315b96e6a0SKevin Wolf     iotests.VM(path_suffix='a') as vm_a, \
325b96e6a0SKevin Wolf     iotests.VM(path_suffix='b') as vm_b:
335b96e6a0SKevin Wolf
345b96e6a0SKevin Wolf    def add_opts(vm):
355b96e6a0SKevin Wolf        vm.add_object('iothread,id=iothread0')
365b96e6a0SKevin Wolf        vm.add_object('throttle-group,id=tg0,x-bps-total=65536')
375b96e6a0SKevin Wolf        vm.add_blockdev('file,filename=%s,node-name=drive0-file' % (img_path))
385b96e6a0SKevin Wolf        vm.add_blockdev('%s,file=drive0-file,node-name=drive0-fmt' % (iotests.imgfmt))
395b96e6a0SKevin Wolf        vm.add_blockdev('copy-on-read,file=drive0-fmt,node-name=drive0-cor')
405b96e6a0SKevin Wolf        vm.add_blockdev('throttle,file=drive0-cor,node-name=drive0-throttle,throttle-group=tg0')
415b96e6a0SKevin Wolf        vm.add_blockdev('blkdebug,image=drive0-throttle,node-name=drive0-dbg')
425b96e6a0SKevin Wolf        vm.add_blockdev('null-co,node-name=null,read-zeroes=on')
435b96e6a0SKevin Wolf        vm.add_blockdev('blkverify,test=drive0-dbg,raw=null,node-name=drive0-verify')
445b96e6a0SKevin Wolf
455b96e6a0SKevin Wolf        if iotests.supports_quorum():
465b96e6a0SKevin Wolf            vm.add_blockdev('quorum,children.0=drive0-verify,vote-threshold=1,node-name=drive0-quorum')
475b96e6a0SKevin Wolf            root = "drive0-quorum"
485b96e6a0SKevin Wolf        else:
495b96e6a0SKevin Wolf            root = "drive0-verify"
505b96e6a0SKevin Wolf
515b96e6a0SKevin Wolf        vm.add_device('virtio-blk,drive=%s,iothread=iothread0' % root)
525b96e6a0SKevin Wolf
535b96e6a0SKevin Wolf    iotests.qemu_img_pipe('create', '-f', iotests.imgfmt, img_path, '64M')
545b96e6a0SKevin Wolf
555b96e6a0SKevin Wolf    os.mkfifo(fifo)
565b96e6a0SKevin Wolf
575b96e6a0SKevin Wolf    iotests.log('Launching destination VM...')
585b96e6a0SKevin Wolf    add_opts(vm_b)
595b96e6a0SKevin Wolf    vm_b.add_incoming("exec: cat '%s'" % (fifo))
605b96e6a0SKevin Wolf    vm_b.launch()
615b96e6a0SKevin Wolf
625b96e6a0SKevin Wolf    vm_b.enable_migration_events('B')
635b96e6a0SKevin Wolf
64*4d804b53SMax Reitz    iotests.log('Launching source VM...')
65*4d804b53SMax Reitz    add_opts(vm_a)
66*4d804b53SMax Reitz    vm_a.launch()
67*4d804b53SMax Reitz
68*4d804b53SMax Reitz    vm_a.enable_migration_events('A')
69*4d804b53SMax Reitz
705b96e6a0SKevin Wolf    iotests.log('Starting migration to B...')
715b96e6a0SKevin Wolf    iotests.log(vm_a.qmp('migrate', uri='exec:cat >%s' % (fifo)))
725b96e6a0SKevin Wolf    with iotests.Timeout(3, 'Migration does not complete'):
735b96e6a0SKevin Wolf        # Wait for the source first (which includes setup=setup)
745b96e6a0SKevin Wolf        vm_a.wait_migration()
755b96e6a0SKevin Wolf        # Wait for the destination second (which does not)
765b96e6a0SKevin Wolf        vm_b.wait_migration()
775b96e6a0SKevin Wolf
785b96e6a0SKevin Wolf    iotests.log(vm_a.qmp('query-migrate')['return']['status'])
795b96e6a0SKevin Wolf    iotests.log(vm_b.qmp('query-migrate')['return']['status'])
805b96e6a0SKevin Wolf
815b96e6a0SKevin Wolf    iotests.log(vm_a.qmp('query-status'))
825b96e6a0SKevin Wolf    iotests.log(vm_b.qmp('query-status'))
83