]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/functional: Add hotplug_scsi test to hotplug virtio-scsi disk
authorSiddhi Katage <siddhi.katage@oracle.com>
Tue, 10 Feb 2026 11:31:35 +0000 (11:31 +0000)
committerThomas Huth <th.huth@posteo.eu>
Fri, 3 Jul 2026 13:34:10 +0000 (15:34 +0200)
Signed-off-by: Siddhi Katage <siddhi.katage@oracle.com>
Message-ID: <20260210113135.771697-1-siddhi.katage@oracle.com>
[thuth: Add the new .py file to the MAINTAINERS file]
Signed-off-by: Thomas Huth <th.huth@posteo.eu>
MAINTAINERS
tests/functional/x86_64/meson.build
tests/functional/x86_64/test_hotplug_scsi.py [new file with mode: 0755]

index 97dcc78ded612335c717c07f20b029e8adf13d53..ed6565469811a8b78a1bb5997576edc33d7d318e 100644 (file)
@@ -2338,6 +2338,7 @@ F: tests/qtest/virtio-scsi-test.c
 F: tests/qtest/fuzz-virtio-scsi-test.c
 F: tests/qtest/am53c974-test.c
 F: tests/qtest/fuzz-lsi53c895a-test.c
+F: tests/functional/x86_64/test_hotplug_scsi.py
 T: git https://github.com/bonzini/qemu.git scsi-next
 
 SSI
index 1ed10ad6c29505c50f1f0a23c9ad61b122e85664..d237ca156e72faee08c43e10a233e74e3bdb62ce 100644 (file)
@@ -31,6 +31,7 @@ endif
 tests_x86_64_system_thorough = [
   'acpi_bits',
   'hotplug_blk',
+  'hotplug_scsi',
   'hotplug_cpu',
   'intel_iommu',
   'kvm_xen',
diff --git a/tests/functional/x86_64/test_hotplug_scsi.py b/tests/functional/x86_64/test_hotplug_scsi.py
new file mode 100755 (executable)
index 0000000..10fd306
--- /dev/null
@@ -0,0 +1,86 @@
+#!/usr/bin/env python3
+#
+# Functional test that hotplugs a virtio scsi disk and checks it on a Linux
+# guest
+#
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+from qemu_test import LinuxKernelTest, Asset, exec_command_and_wait_for_pattern
+
+class HotPlugScsi(LinuxKernelTest):
+    ASSET_KERNEL = Asset(
+        ('https://archives.fedoraproject.org/pub/archive/fedora/linux/releases'
+         '/31/Server/x86_64/os/images/pxeboot/vmlinuz'),
+        'd4738d03dbbe083ca610d0821d0a8f1488bebbdccef54ce33e3adb35fda00129')
+
+    ASSET_INITRD = Asset(
+        ('https://archives.fedoraproject.org/pub/archive/fedora/linux/releases'
+         '/31/Server/x86_64/os/images/pxeboot/initrd.img'),
+        '277cd6c7adf77c7e63d73bbb2cded8ef9e2d3a2f100000e92ff1f8396513cd8b')
+
+    def blockdev_add(self) -> None:
+        self.vm.cmd('blockdev-add', **{
+            'driver': 'null-co',
+            'size': 1073741824,
+            'node-name': 'disk0'
+        })
+
+    def add_scsi_controller(self) -> None:
+        self.vm.cmd('device_add', {
+            'driver': 'virtio-scsi-pci',
+            'id': 'scsi0',
+            'bus': 'pci.1',
+            'addr': '1',
+        })
+
+    def assert_sda(self) -> None:
+        exec_command_and_wait_for_pattern(self, 'while ! test -e /sys/block/sda ;'
+                                                ' do sleep 0.2 ; done', '# ')
+
+    def assert_no_sda(self) -> None:
+        exec_command_and_wait_for_pattern(self, 'while test -e /sys/block/sda ;'
+                                                ' do sleep 0.2 ; done', '# ')
+
+    def plug(self) -> None:
+        args = {
+            'driver':'scsi-hd',
+            'drive':'disk0',
+            'bus':'scsi0.0',
+            'id':'scsi-disk0',
+        }
+
+        self.assert_no_sda()
+        self.vm.cmd('device_add', args)
+        self.wait_for_console_pattern('[sda] Attached SCSI disk')
+        self.assert_sda()
+
+    def unplug(self) -> None:
+        self.vm.cmd('device_del', id='scsi-disk0')
+
+        self.vm.event_wait('DEVICE_DELETED', 1.0,
+                           match={'data': {'device': 'scsi-disk0'}})
+
+        self.assert_no_sda()
+
+    def test(self) -> None:
+        self.require_accelerator('kvm')
+        self.set_machine('q35')
+        self.vm.add_args('-accel', 'kvm')
+        self.vm.add_args('-device', 'pcie-pci-bridge,id=pci.1,bus=pcie.0')
+        self.vm.add_args('-m', '1G')
+        self.vm.add_args('-append', 'console=ttyS0 rd.rescue')
+
+        self.launch_kernel(self.ASSET_KERNEL.fetch(),
+                           self.ASSET_INITRD.fetch(),
+                           wait_for='Entering emergency mode.')
+        self.wait_for_console_pattern('# ')
+
+        self.blockdev_add()
+        self.add_scsi_controller()
+        self.plug()
+        self.unplug()
+
+
+if __name__ == '__main__':
+    LinuxKernelTest.main()
+