Blame SOURCES/kvm-qemu-iotests-Add-VM.run_job.patch

1bdc94
From f841d0a47ba5ba9a731d41e949f4261bd335a2c2 Mon Sep 17 00:00:00 2001
1bdc94
From: Kevin Wolf <kwolf@redhat.com>
1bdc94
Date: Tue, 26 Jun 2018 09:48:44 +0200
1bdc94
Subject: [PATCH 75/89] qemu-iotests: Add VM.run_job()
1bdc94
1bdc94
RH-Author: Kevin Wolf <kwolf@redhat.com>
1bdc94
Message-id: <20180626094856.6924-62-kwolf@redhat.com>
1bdc94
Patchwork-id: 81080
1bdc94
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 61/73] qemu-iotests: Add VM.run_job()
1bdc94
Bugzilla: 1513543
1bdc94
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
1bdc94
RH-Acked-by: Max Reitz <mreitz@redhat.com>
1bdc94
RH-Acked-by: Fam Zheng <famz@redhat.com>
1bdc94
1bdc94
Add an iotests.py function that runs a job and only returns when it is
1bdc94
destroyed. An error is logged when the job failed and job-finalize and
1bdc94
job-dismiss commands are issued if necessary.
1bdc94
1bdc94
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
1bdc94
Reviewed-by: Max Reitz <mreitz@redhat.com>
1bdc94
Reviewed-by: Jeff Cody <jcody@redhat.com>
1bdc94
(cherry picked from commit fc47d8513b45b1968b0ae32d4bb2f96d3aca066a)
1bdc94
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
1bdc94
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
---
1bdc94
 tests/qemu-iotests/iotests.py | 19 +++++++++++++++++++
1bdc94
 1 file changed, 19 insertions(+)
1bdc94
1bdc94
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
1bdc94
index 4b0760f..390da6b 100644
1bdc94
--- a/tests/qemu-iotests/iotests.py
1bdc94
+++ b/tests/qemu-iotests/iotests.py
1bdc94
@@ -427,6 +427,25 @@ class VM(qtest.QEMUQtestMachine):
1bdc94
         log(str(result), filters)
1bdc94
         return result
1bdc94
 
1bdc94
+    def run_job(self, job, auto_finalize=True, auto_dismiss=False):
1bdc94
+        while True:
1bdc94
+            for ev in self.get_qmp_events_filtered(wait=True):
1bdc94
+                if ev['event'] == 'JOB_STATUS_CHANGE':
1bdc94
+                    status = ev['data']['status']
1bdc94
+                    if status == 'aborting':
1bdc94
+                        result = self.qmp('query-jobs')
1bdc94
+                        for j in result['return']:
1bdc94
+                            if j['id'] == job:
1bdc94
+                                log('Job failed: %s' % (j['error']))
1bdc94
+                    elif status == 'pending' and not auto_finalize:
1bdc94
+                        self.qmp_log('job-finalize', id=job)
1bdc94
+                    elif status == 'concluded' and not auto_dismiss:
1bdc94
+                        self.qmp_log('job-dismiss', id=job)
1bdc94
+                    elif status == 'null':
1bdc94
+                        return
1bdc94
+                else:
1bdc94
+                    iotests.log(ev)
1bdc94
+
1bdc94
 
1bdc94
 index_re = re.compile(r'([^\[]+)\[([^\]]+)\]')
1bdc94
 
1bdc94
-- 
1bdc94
1.8.3.1
1bdc94