test-clone-visitor: Wean off UserDefListUnion
[qemu.git] / tests / unit / test-clone-visitor.c
blob8357a90e60c56e736e42cf9ece981fc13b7e87cb
1 /*
2 * QAPI Clone Visitor unit-tests.
4 * Copyright (C) 2016 Red Hat Inc.
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.
8 */
10 #include "qemu/osdep.h"
12 #include "qemu-common.h"
13 #include "qapi/clone-visitor.h"
14 #include "test-qapi-visit.h"
16 static void test_clone_struct(void)
18 UserDefOne *src, *dst;
20 src = g_new0(UserDefOne, 1);
21 src->integer = 42;
22 src->string = g_strdup("Hello");
23 src->has_enum1 = false;
24 src->enum1 = ENUM_ONE_VALUE2;
26 dst = QAPI_CLONE(UserDefOne, src);
27 g_assert(dst);
28 g_assert_cmpint(dst->integer, ==, 42);
29 g_assert(dst->string != src->string);
30 g_assert_cmpstr(dst->string, ==, "Hello");
31 g_assert_cmpint(dst->has_enum1, ==, false);
32 /* Our implementation does this, but it is not required:
33 g_assert_cmpint(dst->enum1, ==, ENUM_ONE_VALUE2);
36 qapi_free_UserDefOne(src);
37 qapi_free_UserDefOne(dst);
40 static void test_clone_alternate(void)
42 AltEnumBool *b_src, *s_src, *b_dst, *s_dst;
44 b_src = g_new0(AltEnumBool, 1);
45 b_src->type = QTYPE_QBOOL;
46 b_src->u.b = true;
47 s_src = g_new0(AltEnumBool, 1);
48 s_src->type = QTYPE_QSTRING;
49 s_src->u.e = ENUM_ONE_VALUE1;
51 b_dst = QAPI_CLONE(AltEnumBool, b_src);
52 g_assert(b_dst);
53 g_assert_cmpint(b_dst->type, ==, b_src->type);
54 g_assert_cmpint(b_dst->u.b, ==, b_src->u.b);
55 s_dst = QAPI_CLONE(AltEnumBool, s_src);
56 g_assert(s_dst);
57 g_assert_cmpint(s_dst->type, ==, s_src->type);
58 g_assert_cmpint(s_dst->u.e, ==, s_src->u.e);
60 qapi_free_AltEnumBool(b_src);
61 qapi_free_AltEnumBool(s_src);
62 qapi_free_AltEnumBool(b_dst);
63 qapi_free_AltEnumBool(s_dst);
66 static void test_clone_list_union(void)
68 uint8List *src = NULL, *dst;
69 uint8List *tmp = NULL;
70 int i;
72 /* Build list in reverse */
73 for (i = 10; i; i--) {
74 QAPI_LIST_PREPEND(src, i);
77 dst = QAPI_CLONE(uint8List, src);
78 for (tmp = dst, i = 1; i <= 10; i++) {
79 g_assert(tmp);
80 g_assert_cmpint(tmp->value, ==, i);
81 tmp = tmp->next;
83 g_assert(!tmp);
85 qapi_free_uint8List(src);
86 qapi_free_uint8List(dst);
89 static void test_clone_empty(void)
91 Empty2 *src, *dst;
93 src = g_new0(Empty2, 1);
94 dst = QAPI_CLONE(Empty2, src);
95 g_assert(dst);
96 qapi_free_Empty2(src);
97 qapi_free_Empty2(dst);
100 static void test_clone_complex1(void)
102 UserDefFlatUnion *src, *dst;
104 src = g_new0(UserDefFlatUnion, 1);
105 src->integer = 123;
106 src->string = g_strdup("abc");
107 src->enum1 = ENUM_ONE_VALUE1;
108 src->u.value1.boolean = true;
110 dst = QAPI_CLONE(UserDefFlatUnion, src);
111 g_assert(dst);
113 g_assert_cmpint(dst->integer, ==, 123);
114 g_assert_cmpstr(dst->string, ==, "abc");
115 g_assert_cmpint(dst->enum1, ==, ENUM_ONE_VALUE1);
116 g_assert(dst->u.value1.boolean);
117 g_assert(!dst->u.value1.has_a_b);
118 g_assert_cmpint(dst->u.value1.a_b, ==, 0);
120 qapi_free_UserDefFlatUnion(src);
121 qapi_free_UserDefFlatUnion(dst);
124 static void test_clone_complex2(void)
126 WrapAlternate *src, *dst;
128 src = g_new0(WrapAlternate, 1);
129 src->alt = g_new(UserDefAlternate, 1);
130 src->alt->type = QTYPE_QDICT;
131 src->alt->u.udfu.integer = 42;
132 /* Clone intentionally converts NULL into "" for strings */
133 src->alt->u.udfu.string = NULL;
134 src->alt->u.udfu.enum1 = ENUM_ONE_VALUE3;
135 src->alt->u.udfu.u.value3.intb = 99;
136 src->alt->u.udfu.u.value3.has_a_b = true;
137 src->alt->u.udfu.u.value3.a_b = true;
139 dst = QAPI_CLONE(WrapAlternate, src);
140 g_assert(dst);
141 g_assert(dst->alt);
142 g_assert_cmpint(dst->alt->type, ==, QTYPE_QDICT);
143 g_assert_cmpint(dst->alt->u.udfu.integer, ==, 42);
144 g_assert_cmpstr(dst->alt->u.udfu.string, ==, "");
145 g_assert_cmpint(dst->alt->u.udfu.enum1, ==, ENUM_ONE_VALUE3);
146 g_assert_cmpint(dst->alt->u.udfu.u.value3.intb, ==, 99);
147 g_assert_cmpint(dst->alt->u.udfu.u.value3.has_a_b, ==, true);
148 g_assert_cmpint(dst->alt->u.udfu.u.value3.a_b, ==, true);
150 qapi_free_WrapAlternate(src);
151 qapi_free_WrapAlternate(dst);
154 static void test_clone_complex3(void)
156 __org_qemu_x_Struct2 *src, *dst;
157 __org_qemu_x_Union1List *tmp;
159 src = g_new0(__org_qemu_x_Struct2, 1);
160 tmp = src->array = g_new0(__org_qemu_x_Union1List, 1);
161 tmp->value = g_new0(__org_qemu_x_Union1, 1);
162 tmp->value->type = ORG_QEMU_X_UNION1_KIND___ORG_QEMU_X_BRANCH;
163 tmp->value->u.__org_qemu_x_branch.data = g_strdup("one");
164 tmp = tmp->next = g_new0(__org_qemu_x_Union1List, 1);
165 tmp->value = g_new0(__org_qemu_x_Union1, 1);
166 tmp->value->type = ORG_QEMU_X_UNION1_KIND___ORG_QEMU_X_BRANCH;
167 tmp->value->u.__org_qemu_x_branch.data = g_strdup("two");
168 tmp = tmp->next = g_new0(__org_qemu_x_Union1List, 1);
169 tmp->value = g_new0(__org_qemu_x_Union1, 1);
170 tmp->value->type = ORG_QEMU_X_UNION1_KIND___ORG_QEMU_X_BRANCH;
171 tmp->value->u.__org_qemu_x_branch.data = g_strdup("three");
173 dst = QAPI_CLONE(__org_qemu_x_Struct2, src);
174 g_assert(dst);
175 tmp = dst->array;
176 g_assert(tmp);
177 g_assert(tmp->value);
178 g_assert_cmpstr(tmp->value->u.__org_qemu_x_branch.data, ==, "one");
179 tmp = tmp->next;
180 g_assert(tmp);
181 g_assert(tmp->value);
182 g_assert_cmpstr(tmp->value->u.__org_qemu_x_branch.data, ==, "two");
183 tmp = tmp->next;
184 g_assert(tmp);
185 g_assert(tmp->value);
186 g_assert_cmpstr(tmp->value->u.__org_qemu_x_branch.data, ==, "three");
187 tmp = tmp->next;
188 g_assert(!tmp);
190 qapi_free___org_qemu_x_Struct2(src);
191 qapi_free___org_qemu_x_Struct2(dst);
194 int main(int argc, char **argv)
196 g_test_init(&argc, &argv, NULL);
198 g_test_add_func("/visitor/clone/struct", test_clone_struct);
199 g_test_add_func("/visitor/clone/alternate", test_clone_alternate);
200 g_test_add_func("/visitor/clone/list_union", test_clone_list_union);
201 g_test_add_func("/visitor/clone/empty", test_clone_empty);
202 g_test_add_func("/visitor/clone/complex1", test_clone_complex1);
203 g_test_add_func("/visitor/clone/complex2", test_clone_complex2);
204 g_test_add_func("/visitor/clone/complex3", test_clone_complex3);
206 return g_test_run();