All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Steve Sistare <steven.sistare@oracle.com>
Cc: qemu-devel@nongnu.org,  John Snow <jsnow@redhat.com>,
	 Cleber Rosa <crosa@redhat.com>,  Eric Blake <eblake@redhat.com>,
	 Paolo Bonzini <pbonzini@redhat.com>,
	 "Daniel P. Berrange" <berrange@redhat.com>,
	Eduardo Habkost <eduardo@habkost.net>,
	 Fabiano Rosas <farosas@suse.de>,
	Laurent Vivier <lvivier@redhat.com>,
	 Philippe Mathieu-Daude <philmd@linaro.org>
Subject: Re: [PATCH V4 3/3] tests/qtest/qom-test: unit test for qom-list-getv
Date: Fri, 11 Jul 2025 17:02:20 +0200	[thread overview]
Message-ID: <87qzymvkhv.fsf@pond.sub.org> (raw)
In-Reply-To: <1752164694-215567-4-git-send-email-steven.sistare@oracle.com> (Steve Sistare's message of "Thu, 10 Jul 2025 09:24:54 -0700")

Steve Sistare <steven.sistare@oracle.com> writes:

> Add a unit test for qom-list-getv.

qom-list-get here and in subject.  Could scratch this line, subject
suffices.

>
> Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
>  tests/qtest/qom-test.c | 116 ++++++++++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 115 insertions(+), 1 deletion(-)
>
> diff --git a/tests/qtest/qom-test.c b/tests/qtest/qom-test.c
> index 27d70bc..4ade1c7 100644
> --- a/tests/qtest/qom-test.c
> +++ b/tests/qtest/qom-test.c
> @@ -11,11 +11,119 @@
>  
>  #include "qobject/qdict.h"
>  #include "qobject/qlist.h"
> +#include "qobject/qstring.h"
>  #include "qemu/cutils.h"
>  #include "libqtest.h"
>  
> +#define RAM_NAME "node0"
> +#define RAM_SIZE 65536
> +
>  static int verbosity_level;
>  
> +/*
> + * Verify that the /object/RAM_NAME 'size' property is RAM_SIZE.
> + */
> +static void test_list_get_value(QTestState *qts)
> +{
> +    QDict *args = qdict_new();
> +    g_autoptr(QDict) response = NULL;
> +    g_autoptr(QList) paths = qlist_new();
> +    QListEntry *entry, *prop_entry;
> +    const char *prop_name;
> +    QList *properties, *return_list;
> +    QDict *obj;
> +
> +    qlist_append_str(paths, "/objects/" RAM_NAME);
> +    qdict_put_obj(args, "paths", QOBJECT(qlist_copy(paths)));

Could probably avoid copying @paths.  Good enough.

> +    response = qtest_qmp(qts, "{ 'execute': 'qom-list-get',"
> +                              "  'arguments': %p }", args);
> +    g_assert(response);
> +    g_assert(qdict_haskey(response, "return"));
> +    return_list = qobject_to(QList, qdict_get(response, "return"));
> +
> +    entry = QTAILQ_FIRST(&return_list->head);
> +    obj = qobject_to(QDict, qlist_entry_obj(entry));
> +    g_assert(qdict_haskey(obj, "properties"));
> +    properties = qobject_to(QList, qdict_get(obj, "properties"));
> +
> +    QLIST_FOREACH_ENTRY(properties, prop_entry) {
> +        QDict *prop = qobject_to(QDict, qlist_entry_obj(prop_entry));
> +
> +        g_assert(qdict_haskey(prop, "name"));
> +        g_assert(qdict_haskey(prop, "value"));
> +
> +        prop_name = qdict_get_str(prop, "name");
> +        if (!strcmp(prop_name, "type")) {
> +            g_assert_cmpstr(qdict_get_str(prop, "value"), ==,
> +                            "memory-backend-ram");
> +
> +        } else if (!strcmp(prop_name, "size")) {
> +            g_assert_cmpint(qdict_get_int(prop, "value"), ==, RAM_SIZE);
> +        }
> +    }
> +}
> +
> +static void test_list_get(QTestState *qts, QList *paths)
> +{
> +    QListEntry *entry, *prop_entry, *path_entry;
> +    g_autoptr(QDict) response = NULL;
> +    QDict *args = qdict_new();
> +    QDict *prop;
> +    QList *return_list;
> +
> +    if (verbosity_level >= 2) {
> +        g_test_message("Obtaining properties for paths:");
> +        QLIST_FOREACH_ENTRY(paths, path_entry) {
> +            QString *qstr = qobject_to(QString, qlist_entry_obj(path_entry));
> +            g_test_message("  %s", qstring_get_str(qstr));
> +        }
> +    }
> +
> +    qdict_put_obj(args, "paths", QOBJECT(qlist_copy(paths)));
> +    response = qtest_qmp(qts, "{ 'execute': 'qom-list-get',"
> +                              "  'arguments': %p }", args);
> +    g_assert(response);
> +    g_assert(qdict_haskey(response, "return"));
> +    return_list = qobject_to(QList, qdict_get(response, "return"));
> +    g_assert(!qlist_empty(return_list));
> +
> +    path_entry = QTAILQ_FIRST(&paths->head);
> +    QLIST_FOREACH_ENTRY(return_list, entry) {
> +        QDict *obj = qobject_to(QDict, qlist_entry_obj(entry));
> +        g_assert(qdict_haskey(obj, "properties"));
> +        QList *properties = qobject_to(QList, qdict_get(obj, "properties"));
> +        bool has_child = false;
> +
> +        QLIST_FOREACH_ENTRY(properties, prop_entry) {
> +            prop = qobject_to(QDict, qlist_entry_obj(prop_entry));
> +            g_assert(qdict_haskey(prop, "name"));
> +            g_assert(qdict_haskey(prop, "type"));
> +            has_child |= strstart(qdict_get_str(prop, "type"), "child<", NULL);
> +        }
> +
> +        if (has_child) {
> +            /* build a list of child paths */
> +            QString *qstr = qobject_to(QString, qlist_entry_obj(path_entry));
> +            const char *path = qstring_get_str(qstr);
> +            g_autoptr(QList) child_paths = qlist_new();
> +
> +            QLIST_FOREACH_ENTRY(properties, prop_entry) {
> +                prop = qobject_to(QDict, qlist_entry_obj(prop_entry));
> +                if (strstart(qdict_get_str(prop, "type"), "child<", NULL)) {
> +                    g_autofree char *child_path = g_strdup_printf(
> +                        "%s/%s", path, qdict_get_str(prop, "name"));
> +                    qlist_append_str(child_paths, child_path);
> +                }
> +            }
> +
> +            /* fetch props for all children with one qom-list-get call */
> +            test_list_get(qts, child_paths);
> +        }
> +
> +        path_entry = QTAILQ_NEXT(path_entry, next);
> +    }
> +}
> +
>  static void test_properties(QTestState *qts, const char *path, bool recurse)
>  {
>      char *child_path;
> @@ -85,8 +193,10 @@ static void test_machine(gconstpointer data)
>      const char *machine = data;
>      QDict *response;
>      QTestState *qts;
> +    g_autoptr(QList) paths = qlist_new();
>  
> -    qts = qtest_initf("-machine %s", machine);
> +    qts = qtest_initf("-machine %s -object memory-backend-ram,id=%s,size=%d",
> +                      machine, RAM_NAME, RAM_SIZE);
>  
>      if (g_test_slow()) {
>          /* Make sure we can get the machine class properties: */
> @@ -101,6 +211,10 @@ static void test_machine(gconstpointer data)
>  
>      test_properties(qts, "/machine", true);
>  
> +    qlist_append_str(paths, "/machine");
> +    test_list_get(qts, paths);
> +    test_list_get_value(qts);
> +
>      response = qtest_qmp(qts, "{ 'execute': 'quit' }");
>      g_assert(qdict_haskey(response, "return"));
>      qobject_unref(response);

Reviewed-by: Markus Armbruster <armbru@redhat.com>



  reply	other threads:[~2025-07-11 15:10 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-10 16:24 [PATCH V4 0/3] fast qom tree get Steve Sistare
2025-07-10 16:24 ` [PATCH V4 1/3] qom: qom-list-get Steve Sistare
2025-07-11 14:35   ` Markus Armbruster
2025-07-11 15:22     ` Steven Sistare
2025-07-10 16:24 ` [PATCH V4 2/3] python: use qom-list-get Steve Sistare
2025-07-11 14:47   ` Markus Armbruster
2025-07-11 15:23     ` Steven Sistare
2025-07-11 16:50       ` Markus Armbruster
2025-07-11 17:08         ` Steven Sistare
2025-07-15 17:27     ` John Snow
2025-07-16  8:32       ` Markus Armbruster
2025-08-07 22:04         ` John Snow
2025-08-08  6:28           ` Markus Armbruster
2025-08-08 16:16             ` John Snow
2025-07-10 16:24 ` [PATCH V4 3/3] tests/qtest/qom-test: unit test for qom-list-getv Steve Sistare
2025-07-11 15:02   ` Markus Armbruster [this message]
2025-07-11 15:23     ` Steven Sistare
2025-07-11 15:06 ` [PATCH V4 0/3] fast qom tree get Markus Armbruster
2025-07-11 15:27   ` Steven Sistare

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=87qzymvkhv.fsf@pond.sub.org \
    --to=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=crosa@redhat.com \
    --cc=eblake@redhat.com \
    --cc=eduardo@habkost.net \
    --cc=farosas@suse.de \
    --cc=jsnow@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=steven.sistare@oracle.com \
    /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.