2019-02-12 20:38:55 +01:00
|
|
|
# Migration test
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Cleber Rosa <crosa@redhat.com>
|
|
|
|
# Caio Carrara <ccarrara@redhat.com>
|
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
# later. See the COPYING file in the top-level directory.
|
|
|
|
|
|
|
|
|
2020-02-03 12:16:31 +01:00
|
|
|
import tempfile
|
2021-09-27 18:14:33 +02:00
|
|
|
from avocado_qemu import QemuSystemTest
|
2020-02-03 12:16:31 +01:00
|
|
|
from avocado import skipUnless
|
2019-02-12 20:38:55 +01:00
|
|
|
|
|
|
|
from avocado.utils import network
|
|
|
|
from avocado.utils import wait
|
2020-02-03 12:16:31 +01:00
|
|
|
from avocado.utils.path import find_command
|
2019-02-12 20:38:55 +01:00
|
|
|
|
|
|
|
|
2021-09-27 18:14:33 +02:00
|
|
|
class Migration(QemuSystemTest):
|
2020-02-04 17:33:04 +01:00
|
|
|
"""
|
|
|
|
:avocado: tags=migration
|
|
|
|
"""
|
2019-02-12 20:38:55 +01:00
|
|
|
|
|
|
|
timeout = 10
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def migration_finished(vm):
|
|
|
|
return vm.command('query-migrate')['status'] in ('completed', 'failed')
|
|
|
|
|
2020-02-03 12:16:30 +01:00
|
|
|
def assert_migration(self, src_vm, dst_vm):
|
|
|
|
wait.wait_for(self.migration_finished,
|
|
|
|
timeout=self.timeout,
|
|
|
|
step=0.1,
|
|
|
|
args=(src_vm,))
|
2020-05-28 13:24:04 +02:00
|
|
|
wait.wait_for(self.migration_finished,
|
|
|
|
timeout=self.timeout,
|
|
|
|
step=0.1,
|
|
|
|
args=(dst_vm,))
|
2020-02-03 12:16:30 +01:00
|
|
|
self.assertEqual(src_vm.command('query-migrate')['status'], 'completed')
|
|
|
|
self.assertEqual(dst_vm.command('query-migrate')['status'], 'completed')
|
|
|
|
self.assertEqual(dst_vm.command('query-status')['status'], 'running')
|
|
|
|
self.assertEqual(src_vm.command('query-status')['status'],'postmigrate')
|
|
|
|
|
2020-02-03 12:16:30 +01:00
|
|
|
def do_migrate(self, dest_uri, src_uri=None):
|
|
|
|
dest_vm = self.get_vm('-incoming', dest_uri)
|
2020-01-29 22:23:43 +01:00
|
|
|
dest_vm.add_args('-nodefaults')
|
2020-02-03 12:16:30 +01:00
|
|
|
dest_vm.launch()
|
|
|
|
if src_uri is None:
|
|
|
|
src_uri = dest_uri
|
2020-01-29 22:23:43 +01:00
|
|
|
source_vm = self.get_vm()
|
|
|
|
source_vm.add_args('-nodefaults')
|
2020-02-03 12:16:30 +01:00
|
|
|
source_vm.launch()
|
|
|
|
source_vm.qmp('migrate', uri=src_uri)
|
|
|
|
self.assert_migration(source_vm, dest_vm)
|
|
|
|
|
2019-02-12 20:38:55 +01:00
|
|
|
def _get_free_port(self):
|
|
|
|
port = network.find_free_port()
|
|
|
|
if port is None:
|
|
|
|
self.cancel('Failed to find a free port')
|
|
|
|
return port
|
|
|
|
|
|
|
|
|
|
|
|
def test_migration_with_tcp_localhost(self):
|
|
|
|
dest_uri = 'tcp:localhost:%u' % self._get_free_port()
|
2020-02-03 12:16:30 +01:00
|
|
|
self.do_migrate(dest_uri)
|
2020-02-03 12:16:31 +01:00
|
|
|
|
|
|
|
def test_migration_with_unix(self):
|
|
|
|
with tempfile.TemporaryDirectory(prefix='socket_') as socket_path:
|
|
|
|
dest_uri = 'unix:%s/qemu-test.sock' % socket_path
|
|
|
|
self.do_migrate(dest_uri)
|
2020-02-03 12:16:31 +01:00
|
|
|
|
|
|
|
@skipUnless(find_command('nc', default=False), "'nc' command not found")
|
|
|
|
def test_migration_with_exec(self):
|
2020-03-25 12:31:37 +01:00
|
|
|
"""The test works for both netcat-traditional and netcat-openbsd packages."""
|
2020-02-03 12:16:31 +01:00
|
|
|
free_port = self._get_free_port()
|
|
|
|
dest_uri = 'exec:nc -l localhost %u' % free_port
|
2020-03-25 12:31:37 +01:00
|
|
|
src_uri = 'exec:nc localhost %u' % free_port
|
|
|
|
self.do_migrate(dest_uri, src_uri)
|