1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#include "qemu/osdep.h"
21#include "qemu-common.h"
22#include "qapi/qmp/qstring.h"
23#include "qapi/qmp/qdict.h"
24#include "qapi/qmp/qlist.h"
25#include "libqtest.h"
26
27const char common_args[] = "-nodefaults -machine none";
28
29static QList *qom_list_types(QTestState * qts, const char *implements,
30 bool abstract)
31{
32 QDict *resp;
33 QList *ret;
34 QDict *args = qdict_new();
35
36 qdict_put_bool(args, "abstract", abstract);
37 if (implements) {
38 qdict_put_str(args, "implements", implements);
39 }
40 resp = qtest_qmp(qts, "{'execute': 'qom-list-types', 'arguments': %p }",
41 args);
42 g_assert(qdict_haskey(resp, "return"));
43 ret = qdict_get_qlist(resp, "return");
44 qobject_ref(ret);
45 qobject_unref(resp);
46 return ret;
47}
48
49
50static QDict *qom_type_index(QList *types)
51{
52 QDict *index = qdict_new();
53 QListEntry *e;
54
55 QLIST_FOREACH_ENTRY(types, e) {
56 QDict *d = qobject_to(QDict, qlist_entry_obj(e));
57 const char *name = qdict_get_str(d, "name");
58 qobject_ref(d);
59 qdict_put(index, name, d);
60 }
61 return index;
62}
63
64
65static bool qom_has_parent(QDict *index, const char *type, const char *parent)
66{
67 while (type) {
68 QDict *d = qdict_get_qdict(index, type);
69 const char *p = d && qdict_haskey(d, "parent") ?
70 qdict_get_str(d, "parent") :
71 NULL;
72
73 if (!strcmp(type, parent)) {
74 return true;
75 }
76
77 type = p;
78 }
79
80 return false;
81}
82
83
84static QDict *type_list_find(QList *types, const char *name)
85{
86 QListEntry *e;
87
88 QLIST_FOREACH_ENTRY(types, e) {
89 QDict *d = qobject_to(QDict, qlist_entry_obj(e));
90 const char *ename = qdict_get_str(d, "name");
91 if (!strcmp(ename, name)) {
92 return d;
93 }
94 }
95
96 return NULL;
97}
98
99static QList *device_type_list(QTestState *qts, bool abstract)
100{
101 return qom_list_types(qts, "device", abstract);
102}
103
104static void test_one_device(QTestState *qts, const char *type)
105{
106 QDict *resp;
107 char *help;
108 char *qom_tree_start, *qom_tree_end;
109 char *qtree_start, *qtree_end;
110
111 g_test_message("Testing device '%s'", type);
112
113 qom_tree_start = qtest_hmp(qts, "info qom-tree");
114 qtree_start = qtest_hmp(qts, "info qtree");
115
116 resp = qtest_qmp(qts, "{'execute': 'device-list-properties',"
117 " 'arguments': {'typename': %s}}",
118 type);
119 qobject_unref(resp);
120
121 help = qtest_hmp(qts, "device_add \"%s,help\"", type);
122 g_free(help);
123
124
125
126
127
128
129 qom_tree_end = qtest_hmp(qts, "info qom-tree");
130 g_assert_cmpstr(qom_tree_start, ==, qom_tree_end);
131 g_free(qom_tree_start);
132 g_free(qom_tree_end);
133
134 qtree_end = qtest_hmp(qts, "info qtree");
135 g_assert_cmpstr(qtree_start, ==, qtree_end);
136 g_free(qtree_start);
137 g_free(qtree_end);
138}
139
140static void test_device_intro_list(void)
141{
142 QList *types;
143 char *help;
144 QTestState *qts;
145
146 qts = qtest_init(common_args);
147
148 types = device_type_list(qts, true);
149 qobject_unref(types);
150
151 help = qtest_hmp(qts, "device_add help");
152 g_free(help);
153
154 qtest_quit(qts);
155}
156
157
158
159
160
161static void test_qom_list_parents(QTestState *qts, const char *parent)
162{
163 QList *types;
164 QListEntry *e;
165 QDict *index;
166
167 types = qom_list_types(qts, parent, true);
168 index = qom_type_index(types);
169
170 QLIST_FOREACH_ENTRY(types, e) {
171 QDict *d = qobject_to(QDict, qlist_entry_obj(e));
172 const char *name = qdict_get_str(d, "name");
173
174 g_assert(qom_has_parent(index, name, parent));
175 }
176
177 qobject_unref(types);
178 qobject_unref(index);
179}
180
181static void test_qom_list_fields(void)
182{
183 QList *all_types;
184 QList *non_abstract;
185 QListEntry *e;
186 QTestState *qts;
187
188 qts = qtest_init(common_args);
189
190 all_types = qom_list_types(qts, NULL, true);
191 non_abstract = qom_list_types(qts, NULL, false);
192
193 QLIST_FOREACH_ENTRY(all_types, e) {
194 QDict *d = qobject_to(QDict, qlist_entry_obj(e));
195 const char *name = qdict_get_str(d, "name");
196 bool abstract = qdict_haskey(d, "abstract") ?
197 qdict_get_bool(d, "abstract") :
198 false;
199 bool expected_abstract = !type_list_find(non_abstract, name);
200
201 g_assert(abstract == expected_abstract);
202 }
203
204 test_qom_list_parents(qts, "object");
205 test_qom_list_parents(qts, "device");
206 test_qom_list_parents(qts, "sys-bus-device");
207
208 qobject_unref(all_types);
209 qobject_unref(non_abstract);
210 qtest_quit(qts);
211}
212
213static void test_device_intro_none(void)
214{
215 QTestState *qts = qtest_init(common_args);
216
217 test_one_device(qts, "nonexistent");
218 qtest_quit(qts);
219}
220
221static void test_device_intro_abstract(void)
222{
223 QTestState *qts = qtest_init(common_args);
224
225 test_one_device(qts, "device");
226 qtest_quit(qts);
227}
228
229static void test_device_intro_concrete(const void *args)
230{
231 QList *types;
232 QListEntry *entry;
233 const char *type;
234 QTestState *qts;
235
236 qts = qtest_init(args);
237 types = device_type_list(qts, false);
238
239 QLIST_FOREACH_ENTRY(types, entry) {
240 type = qdict_get_try_str(qobject_to(QDict, qlist_entry_obj(entry)),
241 "name");
242 g_assert(type);
243 test_one_device(qts, type);
244 }
245
246 qobject_unref(types);
247 qtest_quit(qts);
248 g_free((void *)args);
249}
250
251static void test_abstract_interfaces(void)
252{
253 QList *all_types;
254 QListEntry *e;
255 QDict *index;
256 QTestState *qts;
257
258 qts = qtest_init(common_args);
259
260 all_types = qom_list_types(qts, "interface", true);
261 index = qom_type_index(all_types);
262
263 QLIST_FOREACH_ENTRY(all_types, e) {
264 QDict *d = qobject_to(QDict, qlist_entry_obj(e));
265 const char *name = qdict_get_str(d, "name");
266
267
268
269
270
271
272
273 if (!qom_has_parent(index, name, "interface")) {
274
275 continue;
276 }
277
278 g_assert(qdict_haskey(d, "abstract") && qdict_get_bool(d, "abstract"));
279 }
280
281 qobject_unref(all_types);
282 qobject_unref(index);
283 qtest_quit(qts);
284}
285
286static void add_machine_test_case(const char *mname)
287{
288 char *path, *args;
289
290
291 if (!memcmp("xenfv", mname, 5) || g_str_equal("xenpv", mname)) {
292 return;
293 }
294
295 path = g_strdup_printf("device/introspect/concrete/defaults/%s", mname);
296 args = g_strdup_printf("-M %s", mname);
297 qtest_add_data_func(path, args, test_device_intro_concrete);
298 g_free(path);
299
300 path = g_strdup_printf("device/introspect/concrete/nodefaults/%s", mname);
301 args = g_strdup_printf("-nodefaults -M %s", mname);
302 qtest_add_data_func(path, args, test_device_intro_concrete);
303 g_free(path);
304}
305
306int main(int argc, char **argv)
307{
308 g_test_init(&argc, &argv, NULL);
309
310 qtest_add_func("device/introspect/list", test_device_intro_list);
311 qtest_add_func("device/introspect/list-fields", test_qom_list_fields);
312 qtest_add_func("device/introspect/none", test_device_intro_none);
313 qtest_add_func("device/introspect/abstract", test_device_intro_abstract);
314 qtest_add_func("device/introspect/abstract-interfaces", test_abstract_interfaces);
315 if (g_test_quick()) {
316 qtest_add_data_func("device/introspect/concrete/defaults/none",
317 g_strdup(common_args), test_device_intro_concrete);
318 } else {
319 qtest_cb_for_every_machine(add_machine_test_case, true);
320 }
321
322 return g_test_run();
323}
324