2 * qapi event unit-tests.
4 * Copyright (c) 2014 Wenchao Xia
7 * Wenchao Xia <wenchaoqemu@gmail.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
14 #include "qemu/osdep.h"
16 #include "qemu-common.h"
17 #include "test-qapi-visit.h"
18 #include "test-qapi-event.h"
19 #include "qapi/error.h"
20 #include "qapi/qmp/qbool.h"
21 #include "qapi/qmp/qdict.h"
22 #include "qapi/qmp/qnum.h"
23 #include "qapi/qmp/qstring.h"
24 #include "qapi/qmp-event.h"
26 typedef struct TestEventData
{
30 typedef struct QDictCmpData
{
35 TestEventData
*test_event_data
;
36 static CompatGMutex test_event_lock
;
38 /* Only compares bool, int, string */
40 void qdict_cmp_do_simple(const char *key
, QObject
*obj1
, void *opaque
)
44 QDictCmpData d_new
, *d
= opaque
;
51 obj2
= qdict_get(d
->expect
, key
);
57 if (qobject_type(obj1
) != qobject_type(obj2
)) {
62 switch (qobject_type(obj1
)) {
64 d
->result
= (qbool_get_bool(qobject_to_qbool(obj1
)) ==
65 qbool_get_bool(qobject_to_qbool(obj2
)));
68 g_assert(qnum_get_try_int(qobject_to_qnum(obj1
), &val1
));
69 g_assert(qnum_get_try_int(qobject_to_qnum(obj2
), &val2
));
70 d
->result
= val1
== val2
;
73 d
->result
= g_strcmp0(qstring_get_str(qobject_to_qstring(obj1
)),
74 qstring_get_str(qobject_to_qstring(obj2
))) == 0;
77 d_new
.expect
= qobject_to_qdict(obj2
);
79 qdict_iter(qobject_to_qdict(obj1
), qdict_cmp_do_simple
, &d_new
);
80 d
->result
= d_new
.result
;
87 static bool qdict_cmp_simple(QDict
*a
, QDict
*b
)
93 qdict_iter(a
, qdict_cmp_do_simple
, &d
);
97 /* This function is hooked as final emit function, which can verify the
99 static void event_test_emit(test_QAPIEvent event
, QDict
*d
, Error
**errp
)
104 /* Verify that we have timestamp, then remove it to compare other fields */
105 t
= qdict_get_qdict(d
, "timestamp");
107 s
= qdict_get_try_int(t
, "seconds", -2);
108 ms
= qdict_get_try_int(t
, "microseconds", -2);
113 g_assert(ms
>= 0 && ms
<= 999999);
115 g_assert(qdict_size(t
) == 2);
117 qdict_del(d
, "timestamp");
119 g_assert(qdict_cmp_simple(d
, test_event_data
->expect
));
123 static void event_prepare(TestEventData
*data
,
126 /* Global variable test_event_data was used to pass the expectation, so
127 test cases can't be executed at same time. */
128 g_mutex_lock(&test_event_lock
);
130 data
->expect
= qdict_new();
131 test_event_data
= data
;
134 static void event_teardown(TestEventData
*data
,
137 QDECREF(data
->expect
);
138 test_event_data
= NULL
;
140 g_mutex_unlock(&test_event_lock
);
143 static void event_test_add(const char *testpath
,
144 void (*test_func
)(TestEventData
*data
,
145 const void *user_data
))
147 g_test_add(testpath
, TestEventData
, NULL
, event_prepare
, test_func
,
154 static void test_event_a(TestEventData
*data
,
159 qdict_put_str(d
, "event", "EVENT_A");
160 qapi_event_send_event_a(&error_abort
);
163 static void test_event_b(TestEventData
*data
,
168 qdict_put_str(d
, "event", "EVENT_B");
169 qapi_event_send_event_b(&error_abort
);
172 static void test_event_c(TestEventData
*data
,
175 QDict
*d
, *d_data
, *d_b
;
179 b
.string
= g_strdup("test1");
183 qdict_put_int(d_b
, "integer", 2);
184 qdict_put_str(d_b
, "string", "test1");
186 d_data
= qdict_new();
187 qdict_put_int(d_data
, "a", 1);
188 qdict_put(d_data
, "b", d_b
);
189 qdict_put_str(d_data
, "c", "test2");
192 qdict_put_str(d
, "event", "EVENT_C");
193 qdict_put(d
, "data", d_data
);
195 qapi_event_send_event_c(true, 1, true, &b
, "test2", &error_abort
);
201 static void test_event_d(TestEventData
*data
,
206 QDict
*d
, *d_data
, *d_a
, *d_struct1
;
209 struct1
.string
= g_strdup("test1");
210 struct1
.has_enum1
= true;
211 struct1
.enum1
= ENUM_ONE_VALUE1
;
213 a
.struct1
= &struct1
;
214 a
.string
= g_strdup("test2");
216 a
.enum2
= ENUM_ONE_VALUE2
;
218 d_struct1
= qdict_new();
219 qdict_put_int(d_struct1
, "integer", 2);
220 qdict_put_str(d_struct1
, "string", "test1");
221 qdict_put_str(d_struct1
, "enum1", "value1");
224 qdict_put(d_a
, "struct1", d_struct1
);
225 qdict_put_str(d_a
, "string", "test2");
226 qdict_put_str(d_a
, "enum2", "value2");
228 d_data
= qdict_new();
229 qdict_put(d_data
, "a", d_a
);
230 qdict_put_str(d_data
, "b", "test3");
231 qdict_put_str(d_data
, "enum3", "value3");
234 qdict_put_str(d
, "event", "EVENT_D");
235 qdict_put(d
, "data", d_data
);
237 qapi_event_send_event_d(&a
, "test3", false, NULL
, true, ENUM_ONE_VALUE3
,
240 g_free(struct1
.string
);
244 int main(int argc
, char **argv
)
246 #if !GLIB_CHECK_VERSION(2, 31, 0)
247 if (!g_thread_supported()) {
252 qmp_event_set_func_emit(event_test_emit
);
254 g_test_init(&argc
, &argv
, NULL
);
256 event_test_add("/event/event_a", test_event_a
);
257 event_test_add("/event/event_b", test_event_b
);
258 event_test_add("/event/event_c", test_event_c
);
259 event_test_add("/event/event_d", test_event_d
);