[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [PATCH v2 06/16] qemu-iotests: Add VM.qmp_log()
From: |
Kevin Wolf |
Subject: |
[Qemu-block] [PATCH v2 06/16] qemu-iotests: Add VM.qmp_log() |
Date: |
Tue, 29 May 2018 22:39:00 +0200 |
This adds a helper function that logs both the QMP request and the
received response before returning it.
Signed-off-by: Kevin Wolf <address@hidden>
Reviewed-by: Jeff Cody <address@hidden>
---
tests/qemu-iotests/iotests.py | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index 17aa7c88dc..2f54823db6 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -206,6 +206,10 @@ def filter_qmp_event(event):
event['timestamp']['microseconds'] = 'USECS'
return event
+def filter_testfiles(msg):
+ prefix = os.path.join(test_dir, "%s-" % (os.getpid()))
+ return msg.replace(prefix, 'TEST_DIR/PID-')
+
def log(msg, filters=[]):
for flt in filters:
msg = flt(msg)
@@ -389,6 +393,13 @@ class VM(qtest.QEMUQtestMachine):
result.append(filter_qmp_event(ev))
return result
+ def qmp_log(self, cmd, filters=[filter_testfiles], **kwargs):
+ logmsg = "{'execute': '%s', 'arguments': %s}" % (cmd, kwargs)
+ log(logmsg, filters)
+ result = self.qmp(cmd, **kwargs)
+ log(str(result), filters)
+ return result
+
index_re = re.compile(r'([^\[]+)\[([^\]]+)\]')
--
2.13.6
- Re: [Qemu-block] [PATCH v2 05/16] qemu-iotests: Add VM.get_qmp_events_filtered(), (continued)
- [Qemu-block] [PATCH v2 08/16] qemu-iotests: Add VM.run_job(), Kevin Wolf, 2018/05/29
- [Qemu-block] [PATCH v2 07/16] qemu-iotests: Add iotests.img_info_log(), Kevin Wolf, 2018/05/29
- [Qemu-block] [PATCH v2 09/16] qemu-iotests: iotests.py helper for non-file protocols, Kevin Wolf, 2018/05/29
- [Qemu-block] [PATCH v2 06/16] qemu-iotests: Add VM.qmp_log(),
Kevin Wolf <=
- [Qemu-block] [PATCH v2 11/16] qemu-iotests: Rewrite 207 for blockdev-create job, Kevin Wolf, 2018/05/29
- [Qemu-block] [PATCH v2 12/16] qemu-iotests: Rewrite 210 for blockdev-create job, Kevin Wolf, 2018/05/29
- [Qemu-block] [PATCH v2 10/16] qemu-iotests: Rewrite 206 for blockdev-create job, Kevin Wolf, 2018/05/29
- [Qemu-block] [PATCH v2 13/16] qemu-iotests: Rewrite 211 for blockdev-create job, Kevin Wolf, 2018/05/29
- [Qemu-block] [PATCH v2 14/16] qemu-iotests: Rewrite 212 for blockdev-create job, Kevin Wolf, 2018/05/29
- [Qemu-block] [PATCH v2 15/16] qemu-iotests: Rewrite 213 for blockdev-create job, Kevin Wolf, 2018/05/29
- [Qemu-block] [PATCH v2 16/16] block/create: Mark blockdev-create stable, Kevin Wolf, 2018/05/29