ae23c9
From 9bc557fe1998a5e7f77fe3f39ceaf09690b3b7dc Mon Sep 17 00:00:00 2001
ae23c9
From: Kevin Wolf <kwolf@redhat.com>
ae23c9
Date: Tue, 26 Jun 2018 09:48:43 +0200
ae23c9
Subject: [PATCH 135/268] qemu-iotests: Add iotests.img_info_log()
ae23c9
ae23c9
RH-Author: Kevin Wolf <kwolf@redhat.com>
ae23c9
Message-id: <20180626094856.6924-61-kwolf@redhat.com>
ae23c9
Patchwork-id: 81082
ae23c9
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 60/73] qemu-iotests: Add iotests.img_info_log()
ae23c9
Bugzilla: 1513543
ae23c9
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
ae23c9
RH-Acked-by: Max Reitz <mreitz@redhat.com>
ae23c9
RH-Acked-by: Fam Zheng <famz@redhat.com>
ae23c9
ae23c9
This adds a filter function to postprocess 'qemu-img info' input
ae23c9
(similar to what _img_info does), and an img_info_log() function that
ae23c9
calls 'qemu-img info' and logs the filtered output.
ae23c9
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Reviewed-by: Max Reitz <mreitz@redhat.com>
ae23c9
Reviewed-by: Jeff Cody <jcody@redhat.com>
ae23c9
(cherry picked from commit 6b605adec4d7491488d9cfb50bc256e667d8caf1)
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
ae23c9
---
ae23c9
 tests/qemu-iotests/iotests.py | 18 ++++++++++++++++++
ae23c9
 1 file changed, 18 insertions(+)
ae23c9
ae23c9
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
ae23c9
index e3de6b0..db4206f 100644
ae23c9
--- a/tests/qemu-iotests/iotests.py
ae23c9
+++ b/tests/qemu-iotests/iotests.py
ae23c9
@@ -110,6 +110,12 @@ def qemu_img_pipe(*args):
ae23c9
         sys.stderr.write('qemu-img received signal %i: %s\n' % (-exitcode, ' '.join(qemu_img_args + list(args))))
ae23c9
     return subp.communicate()[0]
ae23c9
 
ae23c9
+def img_info_log(filename, filter_path=None):
ae23c9
+    output = qemu_img_pipe('info', '-f', imgfmt, filename)
ae23c9
+    if not filter_path:
ae23c9
+        filter_path = filename
ae23c9
+    log(filter_img_info(output, filter_path))
ae23c9
+
ae23c9
 def qemu_io(*args):
ae23c9
     '''Run qemu-io and return the stdout data'''
ae23c9
     args = qemu_io_args + list(args)
ae23c9
@@ -220,6 +226,18 @@ def filter_testfiles(msg):
ae23c9
     prefix = os.path.join(test_dir, "%s-" % (os.getpid()))
ae23c9
     return msg.replace(prefix, 'TEST_DIR/PID-')
ae23c9
 
ae23c9
+def filter_img_info(output, filename):
ae23c9
+    lines = []
ae23c9
+    for line in output.split('\n'):
ae23c9
+        if 'disk size' in line or 'actual-size' in line:
ae23c9
+            continue
ae23c9
+        line = line.replace(filename, 'TEST_IMG') \
ae23c9
+                   .replace(imgfmt, 'IMGFMT')
ae23c9
+        line = re.sub('iters: [0-9]+', 'iters: XXX', line)
ae23c9
+        line = re.sub('uuid: [-a-f0-9]+', 'uuid: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', line)
ae23c9
+        lines.append(line)
ae23c9
+    return '\n'.join(lines)
ae23c9
+
ae23c9
 def log(msg, filters=[]):
ae23c9
     for flt in filters:
ae23c9
         msg = flt(msg)
ae23c9
-- 
ae23c9
1.8.3.1
ae23c9