From: "Daniel P. Berrangé" <berrange@redhat.com>
To: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: qemu-devel@nongnu.org, "John Snow" <jsnow@redhat.com>,
"Denis V. Lunev" <den@openvz.org>,
"Fabiano Rosas" <farosas@suse.de>,
"Laurent Vivier" <lvivier@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
qemu-block@nongnu.org, "Peter Maydell" <peter.maydell@linaro.org>,
"Thomas Huth" <th.huth+qemu@posteo.eu>,
"Philippe Mathieu-Daudé" <philmd@oss.qualcomm.com>,
"Aurelien Jarno" <aurelien@aurel32.net>,
qemu-arm@nongnu.org, "Halil Pasic" <pasic@linux.ibm.com>,
"Christian Borntraeger" <borntraeger@linux.ibm.com>,
"Eric Farman" <farman@linux.ibm.com>,
"Matthew Rosato" <mjrosato@linux.ibm.com>,
"Cornelia Huck" <cohuck@redhat.com>,
qemu-s390x@nongnu.org, "Glenn Miles" <milesg@linux.ibm.com>,
qemu-ppc@nongnu.org
Subject: Re: [PATCH 4/9] tests/qtest: add qtest_qmp_job_wait()
Date: Mon, 7 Sep 2026 10:50:59 +0100 [thread overview]
Message-ID: <ap6JAy9jaHzDakvw@redhat.com> (raw)
In-Reply-To: <20260906-nohmp-v1-4-daee96491c43@redhat.com>
On Sun, Sep 06, 2026 at 12:42:35PM +0400, Marc-André Lureau wrote:
> Add a helper to wait for job conclusion, used in next changes.
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> tests/qtest/libqtest.c | 37 +++++++++++++++++++++++++++++++++++++
> tests/qtest/libqtest.h | 11 +++++++++++
> 2 files changed, 48 insertions(+)
>
> diff --git a/tests/qtest/libqtest.c b/tests/qtest/libqtest.c
> index 28bb72bfaecf..370f79a3b6fb 100644
> --- a/tests/qtest/libqtest.c
> +++ b/tests/qtest/libqtest.c
> @@ -984,6 +984,43 @@ void qtest_qmp_eventwait(QTestState *s, const char *event)
> qobject_unref(response);
> }
>
> +void qtest_qmp_job_wait(QTestState *s, const char *job_id)
> +{
> + QDict *response, *data, *error;
> + QList *jobs;
> + const QListEntry *entry;
> +
> + for (;;) {
> + response = qtest_qmp_eventwait_ref(s, "JOB_STATUS_CHANGE");
> + data = qdict_get_qdict(response, "data");
> + if (!strcmp(qdict_get_str(data, "id"), job_id) &&
> + !strcmp(qdict_get_str(data, "status"), "concluded")) {
> + qobject_unref(response);
> + break;
> + }
> + qobject_unref(response);
> + }
> +
> + response = qtest_qmp(s, "{ 'execute': 'query-jobs' }");
> + g_assert(qdict_haskey(response, "return"));
> + jobs = qobject_to(QList, qdict_get(response, "return"));
> + g_assert(jobs);
> + QLIST_FOREACH_ENTRY(jobs, entry) {
> + QDict *job = qobject_to(QDict, qlist_entry_obj(entry));
> + if (!strcmp(qdict_get_str(job, "id"), job_id)) {
> + g_assert_null(qdict_get_try_str(job, "error"));
If "job" did contain "error", then wouldn't we have hit
a SEGV in the qdict_get_str() call due to missing 'id'
field.
IOW, we should likely validate this is NOT an error
response first.
> + break;
> + }
> + }
> + qobject_unref(response);
> +
> + response = qtest_qmp(s,
> + "{ 'execute': 'job-dismiss', 'arguments': { 'id': %s } }", job_id);
> + error = qdict_get_qdict(response, "error");
> + g_assert_null(error);
> + qobject_unref(response);
> +}
> +
With regards,
Daniel
--
|: https://berrange.com ~~ https://hachyderm.io/@berrange :|
|: https://libvirt.org ~~ https://entangle-photo.org :|
|: https://pixelfed.art/berrange ~~ https://fstop138.berrange.com :|
next prev parent reply other threads:[~2026-09-07 9:51 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-06 8:42 [PATCH 0/9] Make HMP optional - follow-up Marc-André Lureau
2026-09-06 8:42 ` [PATCH 1/9] tests/ahci-test: replace HMP usage with QMP Marc-André Lureau
2026-09-07 9:24 ` Daniel P. Berrangé
2026-09-06 8:42 ` [PATCH 2/9] tests/functional: replace HMP " Marc-André Lureau
2026-09-06 11:06 ` Thomas Huth
2026-09-07 10:16 ` Marc-André Lureau
2026-09-06 8:42 ` [PATCH 3/9] tests/functional/s390x: use QMP for balloon Marc-André Lureau
2026-09-06 11:07 ` Thomas Huth
2026-09-07 9:29 ` Daniel P. Berrangé
2026-09-06 8:42 ` [PATCH 4/9] tests/qtest: add qtest_qmp_job_wait() Marc-André Lureau
2026-09-07 9:50 ` Daniel P. Berrangé [this message]
2026-09-07 10:13 ` Marc-André Lureau
2026-09-07 10:16 ` Daniel P. Berrangé
2026-09-06 8:42 ` [PATCH 5/9] tests/ide-test: convert to QMP Marc-André Lureau
2026-09-07 9:33 ` Daniel P. Berrangé
2026-09-06 8:42 ` [PATCH 6/9] tests/drive_del-test: compile out HMP-dependent tests when !CONFIG_HMP Marc-André Lureau
2026-09-07 9:44 ` Daniel P. Berrangé
2026-09-06 8:42 ` [PATCH 7/9] qtest: compile out HMP helper " Marc-André Lureau
2026-09-07 9:44 ` Daniel P. Berrangé
2026-09-06 8:42 ` [PATCH 8/9] tests/functional: add skipTestIfNoHMP() helper Marc-André Lureau
2026-09-06 11:08 ` Thomas Huth
2026-09-06 8:42 ` [PATCH 9/9] tests/functional: fix some tests that require HMP Marc-André Lureau
2026-09-06 11:10 ` Thomas Huth
2026-09-07 9:45 ` Daniel P. Berrangé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ap6JAy9jaHzDakvw@redhat.com \
--to=berrange@redhat.com \
--cc=aurelien@aurel32.net \
--cc=borntraeger@linux.ibm.com \
--cc=cohuck@redhat.com \
--cc=den@openvz.org \
--cc=farman@linux.ibm.com \
--cc=farosas@suse.de \
--cc=jsnow@redhat.com \
--cc=lvivier@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=milesg@linux.ibm.com \
--cc=mjrosato@linux.ibm.com \
--cc=pasic@linux.ibm.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@oss.qualcomm.com \
--cc=qemu-arm@nongnu.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=th.huth+qemu@posteo.eu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.