[PATCH 00/15] Switch iotests to using Async QMP

John Snow posted 15 patches 2 years, 6 months ago
Failed in applying to current master (apply log)
There is a newer version of this series
tests/qemu-iotests/socket_scm_helper.c    | 136 ---------------------
python/qemu/aqmp/__init__.py              |  14 ---
python/qemu/aqmp/events.py                |  15 ++-
python/qemu/aqmp/legacy.py                | 131 ++++++++++++++++++++
python/qemu/aqmp/models.py                |  67 ++++++++---
python/qemu/aqmp/qmp_client.py            |  22 ++++
python/qemu/machine/machine.py            | 139 +++++++++++++---------
python/qemu/machine/qtest.py              |   2 -
python/qemu/qmp/__init__.py               |  25 ++--
python/qemu/qmp/qmp_shell.py              |   1 -
scripts/simplebench/bench_block_job.py    |   3 +-
tests/Makefile.include                    |   1 -
tests/meson.build                         |   4 -
tests/qemu-iotests/040                    |   7 +-
tests/qemu-iotests/218                    |   2 +-
tests/qemu-iotests/255                    |   2 +-
tests/qemu-iotests/iotests.py             |   5 +-
tests/qemu-iotests/meson.build            |   5 -
tests/qemu-iotests/testenv.py             |   8 +-
tests/qemu-iotests/tests/mirror-top-perms |   6 +-
20 files changed, 321 insertions(+), 274 deletions(-)
delete mode 100644 tests/qemu-iotests/socket_scm_helper.c
create mode 100644 python/qemu/aqmp/legacy.py
delete mode 100644 tests/qemu-iotests/meson.build
[PATCH 00/15] Switch iotests to using Async QMP
Posted by John Snow 2 years, 6 months ago
Based-on: <20210916220716.1353698-1-jsnow@redhat.com>
Based-on: <20210915162955.333025-1-jsnow@redhat.com>
          [PULL 0/2] Python patches
          [PATCH v4 00/27] python: introduce Asynchronous QMP package

Hiya,

This series continues where the first AQMP series left off and adds a
synchronous 'legacy' wrapper around the new AQMP interface, then drops
it straight into iotests to prove that AQMP is functional and totally
cool and fine.

In the event that a regression happens and I am not physically proximate
to inflict damage upon, one may set the QEMU_PYTHON_LEGACY_QMP variable
to any non-empty string as it pleases you to engage the QMP machinery
you are used to.

I'd like to try and get this committed early in the 6.2 development
cycle to give ample time to smooth over any possible regressions.
I've tested it locally and via gitlab CI and "worksforme".

John Snow (15):
  python/aqmp: add greeting property to QMPClient
  python/aqmp: add .empty() method to EventListener
  python/aqmp: Return cleared events from EventListener.clear()
  python/qmp: clear events on get_events() call
  python/qmp: add send_fd_scm directly to QEMUMonitorProtocol
  python, iotests: remove socket_scm_helper
  python/aqmp: add send_fd_scm
  python/aqmp: Create MessageModel and StandaloneModel classes
  python/machine: remove has_quit argument
  python/machine: Add support for AQMP backend
  python/aqmp: Create sync QMP wrapper for iotests
  iotests: Disable AQMP logging under non-debug modes
  iotests: Accommodate async QMP Exception classes
  python/aqmp: Remove scary message
  python, iotests: replace qmp with aqmp

 tests/qemu-iotests/socket_scm_helper.c    | 136 ---------------------
 python/qemu/aqmp/__init__.py              |  14 ---
 python/qemu/aqmp/events.py                |  15 ++-
 python/qemu/aqmp/legacy.py                | 131 ++++++++++++++++++++
 python/qemu/aqmp/models.py                |  67 ++++++++---
 python/qemu/aqmp/qmp_client.py            |  22 ++++
 python/qemu/machine/machine.py            | 139 +++++++++++++---------
 python/qemu/machine/qtest.py              |   2 -
 python/qemu/qmp/__init__.py               |  25 ++--
 python/qemu/qmp/qmp_shell.py              |   1 -
 scripts/simplebench/bench_block_job.py    |   3 +-
 tests/Makefile.include                    |   1 -
 tests/meson.build                         |   4 -
 tests/qemu-iotests/040                    |   7 +-
 tests/qemu-iotests/218                    |   2 +-
 tests/qemu-iotests/255                    |   2 +-
 tests/qemu-iotests/iotests.py             |   5 +-
 tests/qemu-iotests/meson.build            |   5 -
 tests/qemu-iotests/testenv.py             |   8 +-
 tests/qemu-iotests/tests/mirror-top-perms |   6 +-
 20 files changed, 321 insertions(+), 274 deletions(-)
 delete mode 100644 tests/qemu-iotests/socket_scm_helper.c
 create mode 100644 python/qemu/aqmp/legacy.py
 delete mode 100644 tests/qemu-iotests/meson.build

-- 
2.31.1