aboutsummaryrefslogtreecommitdiff
path: root/tests/qom-test.c
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2019-09-09 12:04:01 +0200
committerThomas Huth <thuth@redhat.com>2020-01-12 11:42:41 +0100
commit1e8a1fae7464ef79c9e50aa0f807d2c511be3c8e (patch)
tree80d1a4f0454b9a75c09461e69f969213350540ea /tests/qom-test.c
parent10ae5b303a0de07f0659a2c90d9c1266b3908b97 (diff)
test: Move qtests to a separate directory
The tests directory itself is pretty overcrowded, and it's hard to see which test belongs to which test subsystem (unit, qtest, ...). Let's move the qtests to a separate folder for more clarity. Message-Id: <20191218103059.11729-6-thuth@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qom-test.c')
-rw-r--r--tests/qom-test.c127
1 files changed, 0 insertions, 127 deletions
diff --git a/tests/qom-test.c b/tests/qom-test.c
deleted file mode 100644
index 4f94cc678c..0000000000
--- a/tests/qom-test.c
+++ /dev/null
@@ -1,127 +0,0 @@
-/*
- * QTest testcase for QOM
- *
- * Copyright (c) 2013 SUSE LINUX Products GmbH
- *
- * This work is licensed under the terms of the GNU GPL, version 2 or later.
- * See the COPYING file in the top-level directory.
- */
-
-#include "qemu/osdep.h"
-
-#include "qemu-common.h"
-#include "qapi/qmp/qdict.h"
-#include "qapi/qmp/qlist.h"
-#include "qemu/cutils.h"
-#include "libqtest.h"
-
-static const char *blacklist_x86[] = {
- "xenfv", "xenpv", NULL
-};
-
-static const struct {
- const char *arch;
- const char **machine;
-} blacklists[] = {
- { "i386", blacklist_x86 },
- { "x86_64", blacklist_x86 },
-};
-
-static bool is_blacklisted(const char *arch, const char *mach)
-{
- int i;
- const char **p;
-
- for (i = 0; i < ARRAY_SIZE(blacklists); i++) {
- if (!strcmp(blacklists[i].arch, arch)) {
- for (p = blacklists[i].machine; *p; p++) {
- if (!strcmp(*p, mach)) {
- return true;
- }
- }
- }
- }
- return false;
-}
-
-static void test_properties(QTestState *qts, const char *path, bool recurse)
-{
- char *child_path;
- QDict *response, *tuple, *tmp;
- QList *list;
- QListEntry *entry;
-
- g_test_message("Obtaining properties of %s", path);
- response = qtest_qmp(qts, "{ 'execute': 'qom-list',"
- " 'arguments': { 'path': %s } }", path);
- g_assert(response);
-
- if (!recurse) {
- qobject_unref(response);
- return;
- }
-
- g_assert(qdict_haskey(response, "return"));
- list = qobject_to(QList, qdict_get(response, "return"));
- QLIST_FOREACH_ENTRY(list, entry) {
- tuple = qobject_to(QDict, qlist_entry_obj(entry));
- bool is_child = strstart(qdict_get_str(tuple, "type"), "child<", NULL);
- bool is_link = strstart(qdict_get_str(tuple, "type"), "link<", NULL);
-
- if (is_child || is_link) {
- child_path = g_strdup_printf("%s/%s",
- path, qdict_get_str(tuple, "name"));
- test_properties(qts, child_path, is_child);
- g_free(child_path);
- } else {
- const char *prop = qdict_get_str(tuple, "name");
- g_test_message("Testing property %s.%s", path, prop);
- tmp = qtest_qmp(qts,
- "{ 'execute': 'qom-get',"
- " 'arguments': { 'path': %s, 'property': %s } }",
- path, prop);
- /* qom-get may fail but should not, e.g., segfault. */
- g_assert(tmp);
- qobject_unref(tmp);
- }
- }
- qobject_unref(response);
-}
-
-static void test_machine(gconstpointer data)
-{
- const char *machine = data;
- QDict *response;
- QTestState *qts;
-
- qts = qtest_initf("-machine %s", machine);
-
- test_properties(qts, "/machine", true);
-
- response = qtest_qmp(qts, "{ 'execute': 'quit' }");
- g_assert(qdict_haskey(response, "return"));
- qobject_unref(response);
-
- qtest_quit(qts);
- g_free((void *)machine);
-}
-
-static void add_machine_test_case(const char *mname)
-{
- const char *arch = qtest_get_arch();
-
- if (!is_blacklisted(arch, mname)) {
- char *path = g_strdup_printf("qom/%s", mname);
- qtest_add_data_func(path, g_strdup(mname), test_machine);
- g_free(path);
- }
-}
-
-int main(int argc, char **argv)
-{
- g_test_init(&argc, &argv, NULL);
-
- qtest_cb_for_every_machine(add_machine_test_case, g_test_quick());
-
- return g_test_run();
-}