From: Amador Pahim <apahim@redhat.com>
Fixed in commit 243afe858b95765b98d16a1f0dd50dca262858ad.
According to the RHBZ1436616, the issue is: usb-storage device under
pci-bridge is unusable after migration.
Test consists in create a VM with an usb-storage device and check
whether it's still available after a live migration.
A parameters.yaml file is provided in order to customize the guest
image location and credentials. Execute with:
avocado run test_nec-usb-xhci.py \
-m test_nec-usb-xhci.py.data/parameters.yaml
Signed-off-by: Amador Pahim <apahim@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
tests/avocado/test_nec-usb-xhci.py | 55 ++++++++++++++++++++++
.../test_nec-usb-xhci.py.data/parameters.yaml | 4 ++
2 files changed, 59 insertions(+)
create mode 100644 tests/avocado/test_nec-usb-xhci.py
create mode 100644 tests/avocado/test_nec-usb-xhci.py.data/parameters.yaml
diff --git a/tests/avocado/test_nec-usb-xhci.py b/tests/avocado/test_nec-usb-xhci.py
new file mode 100644
index 0000000000..3f0d645032
--- /dev/null
+++ b/tests/avocado/test_nec-usb-xhci.py
@@ -0,0 +1,55 @@
+import copy
+import os
+import tempfile
+
+from avocado_qemu import test
+from avocado.utils import process
+
+class TestNecUsbXhci(test.QemuTest):
+ """
+ Run with:
+
+ avocado run test_nec-usb-xhci.py \
+ -m test_nec-usb-xhci.py.data/parameters.yaml
+
+ :avocado: enable
+ :avocado: tags=usbstorage
+ """
+
+ def setUp(self):
+ usbdevice = os.path.join(self.workdir, 'usb.img')
+ self.request_image()
+ process.run('dd if=/dev/zero of=%s bs=1M count=10' % usbdevice)
+ self.vm.args.extend(['-device', 'pci-bridge,id=bridge1,chassis_nr=1'])
+ self.vm.args.extend(['-device', 'nec-usb-xhci,id=xhci1,bus=bridge1,addr=0x3'])
+ self.vm.args.extend(['-drive', 'file=%s,format=raw,id=drive_usb,if=none' % usbdevice])
+ self.vm.args.extend(['-device', 'usb-storage,drive=drive_usb,id=device_usb,bus=xhci1.0'])
+ self.vm.launch()
+
+ def test_available_after_migration(self):
+ """
+ According to the RHBZ1436616, the issue is: usb-storage device
+ under pci-bridge is unusable after migration.
+
+ Fixed in commit 243afe858b95765b98d16a1f0dd50dca262858ad.
+
+ :avocado: tags=migration,RHBZ1436616
+ """
+ console = self.vm.get_console()
+ console.sendline('fdisk -l')
+ result = console.read_nonblocking()
+ console.close()
+ self.assertIn('Disk /dev/sdb: 10 MiB, 10485760 bytes, 20480 sectors',
+ result)
+
+ self.vm_dst = self.vm.migrate()
+ console = self.vm_dst.get_console()
+ console.sendline('fdisk -l')
+ result = console.read_nonblocking()
+ console.close()
+ self.assertIn('Disk /dev/sdb: 10 MiB, 10485760 bytes, 20480 sectors',
+ result)
+
+ def tearDown(self):
+ self.vm.shutdown()
+ self.vm_dst.shutdown()
diff --git a/tests/avocado/test_nec-usb-xhci.py.data/parameters.yaml b/tests/avocado/test_nec-usb-xhci.py.data/parameters.yaml
new file mode 100644
index 0000000000..37a4e9dc37
--- /dev/null
+++ b/tests/avocado/test_nec-usb-xhci.py.data/parameters.yaml
@@ -0,0 +1,4 @@
+machine_accel: kvm
+image_path: /var/lib/images/fedora-25.img
+image_user: root
+image_pass: p4ssw0rd
--
2.14.3