2 * QTest testcase for QOM
4 * Copyright (c) 2013 SUSE LINUX Products GmbH
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
10 #include "qemu/osdep.h"
12 #include "qapi/qmp/qdict.h"
13 #include "qapi/qmp/qlist.h"
14 #include "qemu/cutils.h"
17 static int verbosity_level
;
19 static void test_properties(QTestState
*qts
, const char *path
, bool recurse
)
22 QDict
*response
, *tuple
, *tmp
;
25 GSList
*children
= NULL
, *links
= NULL
;
27 if (verbosity_level
>= 2) {
28 g_test_message("Obtaining properties of %s", path
);
30 response
= qtest_qmp(qts
, "{ 'execute': 'qom-list',"
31 " 'arguments': { 'path': %s } }", path
);
35 qobject_unref(response
);
39 g_assert(qdict_haskey(response
, "return"));
40 list
= qobject_to(QList
, qdict_get(response
, "return"));
41 QLIST_FOREACH_ENTRY(list
, entry
) {
42 tuple
= qobject_to(QDict
, qlist_entry_obj(entry
));
43 bool is_child
= strstart(qdict_get_str(tuple
, "type"), "child<", NULL
);
44 bool is_link
= strstart(qdict_get_str(tuple
, "type"), "link<", NULL
);
46 if (is_child
|| is_link
) {
47 child_path
= g_strdup_printf("%s/%s",
48 path
, qdict_get_str(tuple
, "name"));
50 children
= g_slist_prepend(children
, child_path
);
52 links
= g_slist_prepend(links
, child_path
);
55 const char *prop
= qdict_get_str(tuple
, "name");
56 if (verbosity_level
>= 3) {
57 g_test_message("-> %s", prop
);
60 "{ 'execute': 'qom-get',"
61 " 'arguments': { 'path': %s, 'property': %s } }",
63 /* qom-get may fail but should not, e.g., segfault. */
70 test_properties(qts
, links
->data
, false);
72 links
= g_slist_delete_link(links
, links
);
75 test_properties(qts
, children
->data
, true);
76 g_free(children
->data
);
77 children
= g_slist_delete_link(children
, children
);
80 qobject_unref(response
);
83 static void test_machine(gconstpointer data
)
85 const char *machine
= data
;
89 qts
= qtest_initf("-machine %s", machine
);
91 test_properties(qts
, "/machine", true);
93 response
= qtest_qmp(qts
, "{ 'execute': 'quit' }");
94 g_assert(qdict_haskey(response
, "return"));
95 qobject_unref(response
);
98 g_free((void *)machine
);
101 static void add_machine_test_case(const char *mname
)
105 path
= g_strdup_printf("qom/%s", mname
);
106 qtest_add_data_func(path
, g_strdup(mname
), test_machine
);
110 int main(int argc
, char **argv
)
112 char *v_env
= getenv("V");
115 verbosity_level
= atoi(v_env
);
118 g_test_init(&argc
, &argv
, NULL
);
120 qtest_cb_for_every_machine(add_machine_test_case
, g_test_quick());