tests/functional: Convert the ppc_hv avocado test into a standalone test

A straight forward conversion, we just also have to remove the decorator
@skipUnless(os.getenv('SPEED')) since all non-trivial functional tests
are running in SPEED=thorough mode now. Also make sure that the extracted
assets are writable, so that the test does not fail if it gets re-run
and there are stale read-only files already around.

Message-ID: <20240830133841.142644-28-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
Thomas Huth 2024-08-30 15:38:21 +02:00
parent cef1becb9f
commit 88c907199a
3 changed files with 24 additions and 32 deletions

View file

@ -1531,7 +1531,7 @@ F: tests/qtest/libqos/*spapr*
F: tests/qtest/rtas* F: tests/qtest/rtas*
F: tests/qtest/libqos/rtas* F: tests/qtest/libqos/rtas*
F: tests/functional/test_ppc64_pseries.py F: tests/functional/test_ppc64_pseries.py
F: tests/avocado/ppc_hv_tests.py F: tests/functional/test_ppc64_hv.py
PowerNV (Non-Virtualized) PowerNV (Non-Virtualized)
M: Cédric Le Goater <clg@kaod.org> M: Cédric Le Goater <clg@kaod.org>

View file

@ -13,6 +13,7 @@ endif
test_timeouts = { test_timeouts = {
'netdev_ethtool' : 180, 'netdev_ethtool' : 180,
'ppc_40p' : 240, 'ppc_40p' : 240,
'ppc64_hv' : 1000,
'ppc64_powernv' : 120, 'ppc64_powernv' : 120,
'ppc64_pseries' : 120, 'ppc64_pseries' : 120,
's390x_ccw_virtio' : 180, 's390x_ccw_virtio' : 180,
@ -68,6 +69,7 @@ tests_ppc_system_thorough = [
] ]
tests_ppc64_system_thorough = [ tests_ppc64_system_thorough = [
'ppc64_hv',
'ppc64_powernv', 'ppc64_powernv',
'ppc64_pseries', 'ppc64_pseries',
] ]

View file

@ -1,3 +1,5 @@
#!/usr/bin/env python3
#
# Tests that specifically try to exercise hypervisor features of the # Tests that specifically try to exercise hypervisor features of the
# target machines. powernv supports the Power hypervisor ISA, and # target machines. powernv supports the Power hypervisor ISA, and
# pseries supports the nested-HV hypervisor spec. # pseries supports the nested-HV hypervisor spec.
@ -7,10 +9,9 @@
# This work is licensed under the terms of the GNU GPL, version 2 or # This work is licensed under the terms of the GNU GPL, version 2 or
# later. See the COPYING file in the top-level directory. # later. See the COPYING file in the top-level directory.
from avocado import skipIf, skipUnless from unittest import skipIf, skipUnless
from avocado.utils import archive from qemu_test import QemuSystemTest, Asset
from avocado_qemu import QemuSystemTest from qemu_test import wait_for_console_pattern, exec_command
from avocado_qemu import wait_for_console_pattern, exec_command
import os import os
import time import time
import subprocess import subprocess
@ -45,8 +46,7 @@ def missing_deps():
# QEMU already installed and use that. # QEMU already installed and use that.
# XXX: The order of these tests seems to matter, see git blame. # XXX: The order of these tests seems to matter, see git blame.
@skipIf(missing_deps(), 'dependencies (%s) not installed' % ','.join(deps)) @skipIf(missing_deps(), 'dependencies (%s) not installed' % ','.join(deps))
@skipUnless(os.getenv('AVOCADO_ALLOW_LARGE_STORAGE'), 'storage limited') @skipUnless(os.getenv('QEMU_TEST_ALLOW_LARGE_STORAGE'), 'storage limited')
@skipUnless(os.getenv('SPEED') == 'slow', 'runtime limited')
class HypervisorTest(QemuSystemTest): class HypervisorTest(QemuSystemTest):
timeout = 1000 timeout = 1000
@ -54,6 +54,11 @@ class HypervisorTest(QemuSystemTest):
panic_message = 'Kernel panic - not syncing' panic_message = 'Kernel panic - not syncing'
good_message = 'VFS: Cannot open root device' good_message = 'VFS: Cannot open root device'
ASSET_ISO = Asset(
('https://dl-cdn.alpinelinux.org/alpine/v3.18/'
'releases/ppc64le/alpine-standard-3.18.4-ppc64le.iso'),
'c26b8d3e17c2f3f0fed02b4b1296589c2390e6d5548610099af75300edd7b3ff')
def extract_from_iso(self, iso, path): def extract_from_iso(self, iso, path):
""" """
Extracts a file from an iso file into the test workdir Extracts a file from an iso file into the test workdir
@ -72,6 +77,7 @@ class HypervisorTest(QemuSystemTest):
subprocess.run(cmd.split(), subprocess.run(cmd.split(),
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
os.chmod(filename, 0o600)
os.chdir(cwd) os.chdir(cwd)
# Return complete path to extracted file. Because callers to # Return complete path to extracted file. Because callers to
@ -83,16 +89,9 @@ class HypervisorTest(QemuSystemTest):
def setUp(self): def setUp(self):
super().setUp() super().setUp()
iso_url = ('https://dl-cdn.alpinelinux.org/alpine/v3.18/releases/ppc64le/alpine-standard-3.18.4-ppc64le.iso') self.iso_path = self.ASSET_ISO.fetch()
self.vmlinuz = self.extract_from_iso(self.iso_path, '/boot/vmlinuz-lts')
# Alpine use sha256 so I recalculated this myself self.initramfs = self.extract_from_iso(self.iso_path, '/boot/initramfs-lts')
iso_sha256 = 'c26b8d3e17c2f3f0fed02b4b1296589c2390e6d5548610099af75300edd7b3ff'
iso_path = self.fetch_asset(iso_url, asset_hash=iso_sha256,
algorithm = "sha256")
self.iso_path = iso_path
self.vmlinuz = self.extract_from_iso(iso_path, '/boot/vmlinuz-lts')
self.initramfs = self.extract_from_iso(iso_path, '/boot/initramfs-lts')
def do_start_alpine(self): def do_start_alpine(self):
self.vm.set_console() self.vm.set_console()
@ -158,12 +157,8 @@ class HypervisorTest(QemuSystemTest):
wait_for_console_pattern(self, 'alpine:~#') wait_for_console_pattern(self, 'alpine:~#')
def test_hv_pseries(self): def test_hv_pseries(self):
"""
:avocado: tags=arch:ppc64
:avocado: tags=machine:pseries
:avocado: tags=accel:tcg
"""
self.require_accelerator("tcg") self.require_accelerator("tcg")
self.set_machine('pseries')
self.vm.add_args("-accel", "tcg,thread=multi") self.vm.add_args("-accel", "tcg,thread=multi")
self.vm.add_args('-device', 'nvme,serial=1234,drive=drive0') self.vm.add_args('-device', 'nvme,serial=1234,drive=drive0')
self.vm.add_args("-machine", "x-vof=on,cap-nested-hv=on") self.vm.add_args("-machine", "x-vof=on,cap-nested-hv=on")
@ -173,12 +168,8 @@ class HypervisorTest(QemuSystemTest):
self.do_stop_alpine() self.do_stop_alpine()
def test_hv_pseries_kvm(self): def test_hv_pseries_kvm(self):
"""
:avocado: tags=arch:ppc64
:avocado: tags=machine:pseries
:avocado: tags=accel:kvm
"""
self.require_accelerator("kvm") self.require_accelerator("kvm")
self.set_machine('pseries')
self.vm.add_args("-accel", "kvm") self.vm.add_args("-accel", "kvm")
self.vm.add_args('-device', 'nvme,serial=1234,drive=drive0') self.vm.add_args('-device', 'nvme,serial=1234,drive=drive0')
self.vm.add_args("-machine", "x-vof=on,cap-nested-hv=on,cap-ccf-assist=off") self.vm.add_args("-machine", "x-vof=on,cap-nested-hv=on,cap-ccf-assist=off")
@ -188,12 +179,8 @@ class HypervisorTest(QemuSystemTest):
self.do_stop_alpine() self.do_stop_alpine()
def test_hv_powernv(self): def test_hv_powernv(self):
"""
:avocado: tags=arch:ppc64
:avocado: tags=machine:powernv
:avocado: tags=accel:tcg
"""
self.require_accelerator("tcg") self.require_accelerator("tcg")
self.set_machine('powernv')
self.vm.add_args("-accel", "tcg,thread=multi") self.vm.add_args("-accel", "tcg,thread=multi")
self.vm.add_args('-device', 'nvme,bus=pcie.2,addr=0x0,serial=1234,drive=drive0', self.vm.add_args('-device', 'nvme,bus=pcie.2,addr=0x0,serial=1234,drive=drive0',
'-device', 'e1000e,netdev=net0,mac=C0:FF:EE:00:00:02,bus=pcie.0,addr=0x0', '-device', 'e1000e,netdev=net0,mac=C0:FF:EE:00:00:02,bus=pcie.0,addr=0x0',
@ -203,3 +190,6 @@ class HypervisorTest(QemuSystemTest):
self.do_test_kvm() self.do_test_kvm()
self.do_test_kvm(True) self.do_test_kvm(True)
self.do_stop_alpine() self.do_stop_alpine()
if __name__ == '__main__':
QemuSystemTest.main()