2018-05-30 20:41:52 +02:00
|
|
|
# Test class and utilities for functional tests
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# Author:
|
|
|
|
# Cleber Rosa <crosa@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.
|
|
|
|
|
2019-10-29 00:04:04 +01:00
|
|
|
import logging
|
2018-05-30 20:41:52 +02:00
|
|
|
import os
|
|
|
|
import sys
|
2019-02-12 20:38:54 +01:00
|
|
|
import uuid
|
2019-10-29 00:04:04 +01:00
|
|
|
import tempfile
|
2018-05-30 20:41:52 +02:00
|
|
|
|
|
|
|
import avocado
|
|
|
|
|
2019-02-06 17:29:01 +01:00
|
|
|
SRC_ROOT_DIR = os.path.join(os.path.dirname(__file__), '..', '..', '..')
|
|
|
|
sys.path.append(os.path.join(SRC_ROOT_DIR, 'python'))
|
2018-05-30 20:41:52 +02:00
|
|
|
|
2019-06-27 23:28:14 +02:00
|
|
|
from qemu.machine import QEMUMachine
|
2018-05-30 20:41:52 +02:00
|
|
|
|
|
|
|
def is_readable_executable_file(path):
|
|
|
|
return os.path.isfile(path) and os.access(path, os.R_OK | os.X_OK)
|
|
|
|
|
|
|
|
|
2019-03-12 18:18:08 +01:00
|
|
|
def pick_default_qemu_bin(arch=None):
|
2018-05-30 20:41:52 +02:00
|
|
|
"""
|
|
|
|
Picks the path of a QEMU binary, starting either in the current working
|
|
|
|
directory or in the source tree root directory.
|
2019-03-12 18:18:06 +01:00
|
|
|
|
2019-03-12 18:18:08 +01:00
|
|
|
:param arch: the arch to use when looking for a QEMU binary (the target
|
|
|
|
will match the arch given). If None (the default), arch
|
|
|
|
will be the current host system arch (as given by
|
|
|
|
:func:`os.uname`).
|
|
|
|
:type arch: str
|
2019-03-12 18:18:06 +01:00
|
|
|
:returns: the path to the default QEMU binary or None if one could not
|
|
|
|
be found
|
|
|
|
:rtype: str or None
|
2018-05-30 20:41:52 +02:00
|
|
|
"""
|
2019-03-12 18:18:08 +01:00
|
|
|
if arch is None:
|
|
|
|
arch = os.uname()[4]
|
2019-08-19 10:28:20 +02:00
|
|
|
# qemu binary path does not match arch for powerpc, handle it
|
|
|
|
if 'ppc64le' in arch:
|
|
|
|
arch = 'ppc64'
|
2018-05-30 20:41:52 +02:00
|
|
|
qemu_bin_relative_path = os.path.join("%s-softmmu" % arch,
|
|
|
|
"qemu-system-%s" % arch)
|
|
|
|
if is_readable_executable_file(qemu_bin_relative_path):
|
|
|
|
return qemu_bin_relative_path
|
|
|
|
|
|
|
|
qemu_bin_from_src_dir_path = os.path.join(SRC_ROOT_DIR,
|
|
|
|
qemu_bin_relative_path)
|
|
|
|
if is_readable_executable_file(qemu_bin_from_src_dir_path):
|
|
|
|
return qemu_bin_from_src_dir_path
|
|
|
|
|
|
|
|
|
2019-10-29 00:04:04 +01:00
|
|
|
def wait_for_console_pattern(test, success_message, failure_message=None):
|
|
|
|
"""
|
|
|
|
Waits for messages to appear on the console, while logging the content
|
|
|
|
|
|
|
|
:param test: an Avocado test containing a VM that will have its console
|
|
|
|
read and probed for a success or failure message
|
|
|
|
:type test: :class:`avocado_qemu.Test`
|
|
|
|
:param success_message: if this message appears, test succeeds
|
|
|
|
:param failure_message: if this message appears, test fails
|
|
|
|
"""
|
|
|
|
console = test.vm.console_socket.makefile()
|
|
|
|
console_logger = logging.getLogger('console')
|
|
|
|
while True:
|
|
|
|
msg = console.readline().strip()
|
|
|
|
if not msg:
|
|
|
|
continue
|
|
|
|
console_logger.debug(msg)
|
|
|
|
if success_message in msg:
|
|
|
|
break
|
|
|
|
if failure_message and failure_message in msg:
|
|
|
|
fail = 'Failure message found in console: %s' % failure_message
|
|
|
|
test.fail(fail)
|
|
|
|
|
|
|
|
|
2018-05-30 20:41:52 +02:00
|
|
|
class Test(avocado.Test):
|
|
|
|
def setUp(self):
|
2019-02-12 20:38:54 +01:00
|
|
|
self._vms = {}
|
2019-03-12 18:18:10 +01:00
|
|
|
arches = self.tags.get('arch', [])
|
|
|
|
if len(arches) == 1:
|
|
|
|
arch = arches.pop()
|
|
|
|
else:
|
|
|
|
arch = None
|
|
|
|
self.arch = self.params.get('arch', default=arch)
|
2019-03-12 18:18:08 +01:00
|
|
|
default_qemu_bin = pick_default_qemu_bin(arch=self.arch)
|
2018-05-30 20:41:52 +02:00
|
|
|
self.qemu_bin = self.params.get('qemu_bin',
|
2019-03-12 18:18:08 +01:00
|
|
|
default=default_qemu_bin)
|
2018-05-30 20:41:52 +02:00
|
|
|
if self.qemu_bin is None:
|
|
|
|
self.cancel("No QEMU binary defined or found in the source tree")
|
2019-02-12 20:38:54 +01:00
|
|
|
|
|
|
|
def _new_vm(self, *args):
|
2019-10-29 00:04:04 +01:00
|
|
|
vm = QEMUMachine(self.qemu_bin, sock_dir=tempfile.mkdtemp())
|
2019-02-12 20:38:54 +01:00
|
|
|
if args:
|
|
|
|
vm.add_args(*args)
|
|
|
|
return vm
|
|
|
|
|
|
|
|
@property
|
|
|
|
def vm(self):
|
|
|
|
return self.get_vm(name='default')
|
|
|
|
|
|
|
|
def get_vm(self, *args, name=None):
|
|
|
|
if not name:
|
|
|
|
name = str(uuid.uuid4())
|
|
|
|
if self._vms.get(name) is None:
|
|
|
|
self._vms[name] = self._new_vm(*args)
|
|
|
|
return self._vms[name]
|
2018-05-30 20:41:52 +02:00
|
|
|
|
|
|
|
def tearDown(self):
|
2019-02-12 20:38:54 +01:00
|
|
|
for vm in self._vms.values():
|
|
|
|
vm.shutdown()
|