3 # Copyright (c) 2019 Red Hat, Inc.
6 # Cleber Rosa <crosa@redhat.com>
7 # Caio Carrara <ccarrara@redhat.com>
9 # This work is licensed under the terms of the GNU GPL, version 2 or
10 # later. See the COPYING file in the top-level directory.
14 from avocado_qemu
import Test
15 from avocado
import skipUnless
17 from avocado
.utils
import network
18 from avocado
.utils
import wait
19 from avocado
.utils
.path
import find_command
22 class Migration(Test
):
24 :avocado: tags=migration
30 def migration_finished(vm
):
31 return vm
.command('query-migrate')['status'] in ('completed', 'failed')
33 def assert_migration(self
, src_vm
, dst_vm
):
34 wait
.wait_for(self
.migration_finished
,
38 wait
.wait_for(self
.migration_finished
,
42 self
.assertEqual(src_vm
.command('query-migrate')['status'], 'completed')
43 self
.assertEqual(dst_vm
.command('query-migrate')['status'], 'completed')
44 self
.assertEqual(dst_vm
.command('query-status')['status'], 'running')
45 self
.assertEqual(src_vm
.command('query-status')['status'],'postmigrate')
47 def do_migrate(self
, dest_uri
, src_uri
=None):
48 dest_vm
= self
.get_vm('-incoming', dest_uri
)
49 dest_vm
.add_args('-nodefaults')
53 source_vm
= self
.get_vm()
54 source_vm
.add_args('-nodefaults')
56 source_vm
.qmp('migrate', uri
=src_uri
)
57 self
.assert_migration(source_vm
, dest_vm
)
59 def _get_free_port(self
):
60 port
= network
.find_free_port()
62 self
.cancel('Failed to find a free port')
66 def test_migration_with_tcp_localhost(self
):
67 dest_uri
= 'tcp:localhost:%u' % self
._get
_free
_port
()
68 self
.do_migrate(dest_uri
)
70 def test_migration_with_unix(self
):
71 with tempfile
.TemporaryDirectory(prefix
='socket_') as socket_path
:
72 dest_uri
= 'unix:%s/qemu-test.sock' % socket_path
73 self
.do_migrate(dest_uri
)
75 @skipUnless(find_command('nc', default
=False), "'nc' command not found")
76 def test_migration_with_exec(self
):
77 """The test works for both netcat-traditional and netcat-openbsd packages."""
78 free_port
= self
._get
_free
_port
()
79 dest_uri
= 'exec:nc -l localhost %u' % free_port
80 src_uri
= 'exec:nc localhost %u' % free_port
81 self
.do_migrate(dest_uri
, src_uri
)