summary refs log tree commit diff stats
path: root/tests/functional/test_arm_canona1100.py
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2024-12-17 15:59:44 +0000
committerThomas Huth <thuth@redhat.com>2024-12-17 19:39:53 +0100
commit5831ed84e7e450a652f215721aba34ed4e1ffb97 (patch)
tree3e694461d1f99da21aa3e9f5cdd77d50e8ef12af /tests/functional/test_arm_canona1100.py
parent239fd29d6f82724c95a7a7f840c9f9244bcbe6d4 (diff)
downloadfocaccia-qemu-5831ed84e7e450a652f215721aba34ed4e1ffb97.tar.gz
focaccia-qemu-5831ed84e7e450a652f215721aba34ed4e1ffb97.zip
tests/functional: convert tests to new archive_extract helper
Replace use of utils.archive_extract and extract_from_deb with the
new archive_extract helper.

Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20241217155953.3950506-24-berrange@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/functional/test_arm_canona1100.py')
-rwxr-xr-xtests/functional/test_arm_canona1100.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/tests/functional/test_arm_canona1100.py b/tests/functional/test_arm_canona1100.py
index b4e3633422..21a1a596a0 100755
--- a/tests/functional/test_arm_canona1100.py
+++ b/tests/functional/test_arm_canona1100.py
@@ -12,7 +12,7 @@
 
 from qemu_test import QemuSystemTest, Asset
 from qemu_test import wait_for_console_pattern
-from qemu_test.utils import archive_extract
+
 
 class CanonA1100Machine(QemuSystemTest):
     """Boots the barebox firmware and checks that the console is operational"""
@@ -26,13 +26,10 @@ class CanonA1100Machine(QemuSystemTest):
     def test_arm_canona1100(self):
         self.set_machine('canon-a1100')
 
-        file_path = self.ASSET_BIOS.fetch()
-        archive_extract(file_path, dest_dir=self.workdir,
-                        member="day18/barebox.canon-a1100.bin")
+        bios = self.archive_extract(self.ASSET_BIOS,
+                                    member="day18/barebox.canon-a1100.bin")
         self.vm.set_console()
-        self.vm.add_args('-bios',
-                         self.scratch_file('day18',
-                                           'barebox.canon-a1100.bin'))
+        self.vm.add_args('-bios', bios)
         self.vm.launch()
         wait_for_console_pattern(self, 'running /env/bin/init')