cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone
2bc292
From c21502a220d107261c9a8627158f357489d86543 Mon Sep 17 00:00:00 2001
2bc292
From: Hanna Reitz <hreitz@redhat.com>
2bc292
Date: Fri, 4 Feb 2022 12:10:09 +0100
2bc292
Subject: [PATCH 5/8] iotests.py: Add QemuStorageDaemon class
2bc292
2bc292
RH-Author: Hanna Reitz <hreitz@redhat.com>
2bc292
RH-MergeRequest: 74: block/nbd: Handle AioContext changes
2bc292
RH-Commit: [3/6] 5da1cda4d025c1bd7029ed8071b4ccf25459a878 (hreitz/qemu-kvm-c-9-s)
2bc292
RH-Bugzilla: 2033626
2bc292
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
2bc292
RH-Acked-by: Eric Blake <eblake@redhat.com>
2bc292
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
2bc292
2bc292
This is a rather simple class that allows creating a QSD instance
2bc292
running in the background and stopping it when no longer needed.
2bc292
2bc292
The __del__ handler is a safety net for when something goes so wrong in
2bc292
a test that e.g. the tearDown() method is not called (e.g. setUp()
2bc292
launches the QSD, but then launching a VM fails).  We do not want the
2bc292
QSD to continue running after the test has failed, so __del__() will
2bc292
take care to kill it.
2bc292
2bc292
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2bc292
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
2bc292
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2bc292
(cherry picked from commit 091dc7b2b5553a529bff9a7bf9ad3bc85bc5bdcd)
2bc292
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
2bc292
---
2bc292
 tests/qemu-iotests/iotests.py | 40 +++++++++++++++++++++++++++++++++++
2bc292
 1 file changed, 40 insertions(+)
2bc292
2bc292
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
2bc292
index 83bfedb902..a51b5ce8cd 100644
2bc292
--- a/tests/qemu-iotests/iotests.py
2bc292
+++ b/tests/qemu-iotests/iotests.py
2bc292
@@ -72,6 +72,8 @@
2bc292
 qemu_prog = os.environ.get('QEMU_PROG', 'qemu')
2bc292
 qemu_opts = os.environ.get('QEMU_OPTIONS', '').strip().split(' ')
2bc292
 
2bc292
+qsd_prog = os.environ.get('QSD_PROG', 'qemu-storage-daemon')
2bc292
+
2bc292
 gdb_qemu_env = os.environ.get('GDB_OPTIONS')
2bc292
 qemu_gdb = []
2bc292
 if gdb_qemu_env:
2bc292
@@ -312,6 +314,44 @@ def cmd(self, cmd):
2bc292
         return self._read_output()
2bc292
 
2bc292
 
2bc292
+class QemuStorageDaemon:
2bc292
+    def __init__(self, *args: str, instance_id: str = 'a'):
2bc292
+        assert '--pidfile' not in args
2bc292
+        self.pidfile = os.path.join(test_dir, f'qsd-{instance_id}-pid')
2bc292
+        all_args = [qsd_prog] + list(args) + ['--pidfile', self.pidfile]
2bc292
+
2bc292
+        # Cannot use with here, we want the subprocess to stay around
2bc292
+        # pylint: disable=consider-using-with
2bc292
+        self._p = subprocess.Popen(all_args)
2bc292
+        while not os.path.exists(self.pidfile):
2bc292
+            if self._p.poll() is not None:
2bc292
+                cmd = ' '.join(all_args)
2bc292
+                raise RuntimeError(
2bc292
+                    'qemu-storage-daemon terminated with exit code ' +
2bc292
+                    f'{self._p.returncode}: {cmd}')
2bc292
+
2bc292
+            time.sleep(0.01)
2bc292
+
2bc292
+        with open(self.pidfile, encoding='utf-8') as f:
2bc292
+            self._pid = int(f.read().strip())
2bc292
+
2bc292
+        assert self._pid == self._p.pid
2bc292
+
2bc292
+    def stop(self, kill_signal=15):
2bc292
+        self._p.send_signal(kill_signal)
2bc292
+        self._p.wait()
2bc292
+        self._p = None
2bc292
+
2bc292
+        try:
2bc292
+            os.remove(self.pidfile)
2bc292
+        except OSError:
2bc292
+            pass
2bc292
+
2bc292
+    def __del__(self):
2bc292
+        if self._p is not None:
2bc292
+            self.stop(kill_signal=9)
2bc292
+
2bc292
+
2bc292
 def qemu_nbd(*args):
2bc292
     '''Run qemu-nbd in daemon mode and return the parent's exit code'''
2bc292
     return subprocess.call(qemu_nbd_args + ['--fork'] + list(args))
2bc292
-- 
2bc292
2.27.0
2bc292