]>
Commit | Line | Data |
---|---|---|
7b8c51ad LC |
1 | /* |
2 | * QDict unit-tests. | |
3 | * | |
4 | * Copyright (C) 2009 Red Hat Inc. | |
5 | * | |
6 | * Authors: | |
7 | * Luiz Capitulino <[email protected]> | |
41836a9f LC |
8 | * |
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. | |
7b8c51ad | 11 | */ |
681c28a3 | 12 | #include "qemu/osdep.h" |
7b8c51ad | 13 | |
7b1b5d19 PB |
14 | #include "qapi/qmp/qint.h" |
15 | #include "qapi/qmp/qdict.h" | |
16 | #include "qapi/qmp/qstring.h" | |
7b8c51ad LC |
17 | #include "qemu-common.h" |
18 | ||
19 | /* | |
20 | * Public Interface test-cases | |
21 | * | |
22 | * (with some violations to access 'private' data) | |
23 | */ | |
24 | ||
ac531cb6 | 25 | static void qdict_new_test(void) |
7b8c51ad LC |
26 | { |
27 | QDict *qdict; | |
28 | ||
29 | qdict = qdict_new(); | |
ac531cb6 AL |
30 | g_assert(qdict != NULL); |
31 | g_assert(qdict_size(qdict) == 0); | |
32 | g_assert(qdict->base.refcnt == 1); | |
33 | g_assert(qobject_type(QOBJECT(qdict)) == QTYPE_QDICT); | |
7b8c51ad LC |
34 | |
35 | // destroy doesn't exit yet | |
ac531cb6 | 36 | g_free(qdict); |
7b8c51ad | 37 | } |
7b8c51ad | 38 | |
ac531cb6 | 39 | static void qdict_put_obj_test(void) |
7b8c51ad LC |
40 | { |
41 | QInt *qi; | |
42 | QDict *qdict; | |
43 | QDictEntry *ent; | |
44 | const int num = 42; | |
45 | ||
46 | qdict = qdict_new(); | |
47 | ||
48 | // key "" will have tdb hash 12345 | |
49 | qdict_put_obj(qdict, "", QOBJECT(qint_from_int(num))); | |
50 | ||
ac531cb6 | 51 | g_assert(qdict_size(qdict) == 1); |
c8bc3cd7 | 52 | ent = QLIST_FIRST(&qdict->table[12345 % QDICT_BUCKET_MAX]); |
7b8c51ad | 53 | qi = qobject_to_qint(ent->value); |
ac531cb6 | 54 | g_assert(qint_get_int(qi) == num); |
7b8c51ad LC |
55 | |
56 | // destroy doesn't exit yet | |
57 | QDECREF(qi); | |
7267c094 AL |
58 | g_free(ent->key); |
59 | g_free(ent); | |
60 | g_free(qdict); | |
7b8c51ad | 61 | } |
7b8c51ad | 62 | |
ac531cb6 | 63 | static void qdict_destroy_simple_test(void) |
7b8c51ad LC |
64 | { |
65 | QDict *qdict; | |
66 | ||
67 | qdict = qdict_new(); | |
68 | qdict_put_obj(qdict, "num", QOBJECT(qint_from_int(0))); | |
69 | qdict_put_obj(qdict, "str", QOBJECT(qstring_from_str("foo"))); | |
70 | ||
71 | QDECREF(qdict); | |
72 | } | |
7b8c51ad | 73 | |
ac531cb6 | 74 | static void qdict_get_test(void) |
7b8c51ad LC |
75 | { |
76 | QInt *qi; | |
77 | QObject *obj; | |
78 | const int value = -42; | |
79 | const char *key = "test"; | |
ac531cb6 | 80 | QDict *tests_dict = qdict_new(); |
7b8c51ad LC |
81 | |
82 | qdict_put(tests_dict, key, qint_from_int(value)); | |
83 | ||
84 | obj = qdict_get(tests_dict, key); | |
ac531cb6 | 85 | g_assert(obj != NULL); |
7b8c51ad LC |
86 | |
87 | qi = qobject_to_qint(obj); | |
ac531cb6 AL |
88 | g_assert(qint_get_int(qi) == value); |
89 | ||
90 | QDECREF(tests_dict); | |
7b8c51ad | 91 | } |
7b8c51ad | 92 | |
ac531cb6 | 93 | static void qdict_get_int_test(void) |
7b8c51ad LC |
94 | { |
95 | int ret; | |
96 | const int value = 100; | |
97 | const char *key = "int"; | |
ac531cb6 | 98 | QDict *tests_dict = qdict_new(); |
7b8c51ad LC |
99 | |
100 | qdict_put(tests_dict, key, qint_from_int(value)); | |
101 | ||
102 | ret = qdict_get_int(tests_dict, key); | |
ac531cb6 AL |
103 | g_assert(ret == value); |
104 | ||
105 | QDECREF(tests_dict); | |
7b8c51ad | 106 | } |
7b8c51ad | 107 | |
ac531cb6 | 108 | static void qdict_get_try_int_test(void) |
7b8c51ad LC |
109 | { |
110 | int ret; | |
111 | const int value = 100; | |
112 | const char *key = "int"; | |
ac531cb6 | 113 | QDict *tests_dict = qdict_new(); |
7b8c51ad LC |
114 | |
115 | qdict_put(tests_dict, key, qint_from_int(value)); | |
116 | ||
117 | ret = qdict_get_try_int(tests_dict, key, 0); | |
ac531cb6 AL |
118 | g_assert(ret == value); |
119 | ||
120 | QDECREF(tests_dict); | |
7b8c51ad | 121 | } |
7b8c51ad | 122 | |
ac531cb6 | 123 | static void qdict_get_str_test(void) |
7b8c51ad LC |
124 | { |
125 | const char *p; | |
126 | const char *key = "key"; | |
127 | const char *str = "string"; | |
ac531cb6 | 128 | QDict *tests_dict = qdict_new(); |
7b8c51ad LC |
129 | |
130 | qdict_put(tests_dict, key, qstring_from_str(str)); | |
131 | ||
132 | p = qdict_get_str(tests_dict, key); | |
ac531cb6 AL |
133 | g_assert(p != NULL); |
134 | g_assert(strcmp(p, str) == 0); | |
135 | ||
136 | QDECREF(tests_dict); | |
7b8c51ad | 137 | } |
7b8c51ad | 138 | |
ac531cb6 | 139 | static void qdict_get_try_str_test(void) |
7b8c51ad LC |
140 | { |
141 | const char *p; | |
142 | const char *key = "key"; | |
143 | const char *str = "string"; | |
ac531cb6 | 144 | QDict *tests_dict = qdict_new(); |
7b8c51ad LC |
145 | |
146 | qdict_put(tests_dict, key, qstring_from_str(str)); | |
147 | ||
148 | p = qdict_get_try_str(tests_dict, key); | |
ac531cb6 AL |
149 | g_assert(p != NULL); |
150 | g_assert(strcmp(p, str) == 0); | |
151 | ||
152 | QDECREF(tests_dict); | |
7b8c51ad | 153 | } |
7b8c51ad | 154 | |
ef1919df KW |
155 | static void qdict_defaults_test(void) |
156 | { | |
157 | QDict *dict, *copy; | |
158 | ||
159 | dict = qdict_new(); | |
160 | copy = qdict_new(); | |
161 | ||
162 | qdict_set_default_str(dict, "foo", "abc"); | |
163 | qdict_set_default_str(dict, "foo", "def"); | |
164 | g_assert_cmpstr(qdict_get_str(dict, "foo"), ==, "abc"); | |
165 | qdict_set_default_str(dict, "bar", "ghi"); | |
166 | ||
167 | qdict_copy_default(copy, dict, "foo"); | |
168 | g_assert_cmpstr(qdict_get_str(copy, "foo"), ==, "abc"); | |
169 | qdict_set_default_str(copy, "bar", "xyz"); | |
170 | qdict_copy_default(copy, dict, "bar"); | |
171 | g_assert_cmpstr(qdict_get_str(copy, "bar"), ==, "xyz"); | |
172 | ||
173 | QDECREF(copy); | |
174 | QDECREF(dict); | |
175 | } | |
176 | ||
ac531cb6 | 177 | static void qdict_haskey_not_test(void) |
7b8c51ad | 178 | { |
ac531cb6 AL |
179 | QDict *tests_dict = qdict_new(); |
180 | g_assert(qdict_haskey(tests_dict, "test") == 0); | |
181 | ||
182 | QDECREF(tests_dict); | |
7b8c51ad | 183 | } |
7b8c51ad | 184 | |
ac531cb6 | 185 | static void qdict_haskey_test(void) |
7b8c51ad LC |
186 | { |
187 | const char *key = "test"; | |
ac531cb6 | 188 | QDict *tests_dict = qdict_new(); |
7b8c51ad LC |
189 | |
190 | qdict_put(tests_dict, key, qint_from_int(0)); | |
ac531cb6 AL |
191 | g_assert(qdict_haskey(tests_dict, key) == 1); |
192 | ||
193 | QDECREF(tests_dict); | |
7b8c51ad | 194 | } |
7b8c51ad | 195 | |
ac531cb6 | 196 | static void qdict_del_test(void) |
7b8c51ad LC |
197 | { |
198 | const char *key = "key test"; | |
ac531cb6 | 199 | QDict *tests_dict = qdict_new(); |
7b8c51ad LC |
200 | |
201 | qdict_put(tests_dict, key, qstring_from_str("foo")); | |
ac531cb6 | 202 | g_assert(qdict_size(tests_dict) == 1); |
7b8c51ad LC |
203 | |
204 | qdict_del(tests_dict, key); | |
205 | ||
ac531cb6 AL |
206 | g_assert(qdict_size(tests_dict) == 0); |
207 | g_assert(qdict_haskey(tests_dict, key) == 0); | |
208 | ||
209 | QDECREF(tests_dict); | |
7b8c51ad | 210 | } |
7b8c51ad | 211 | |
ac531cb6 | 212 | static void qobject_to_qdict_test(void) |
7b8c51ad | 213 | { |
ac531cb6 AL |
214 | QDict *tests_dict = qdict_new(); |
215 | g_assert(qobject_to_qdict(QOBJECT(tests_dict)) == tests_dict); | |
216 | ||
217 | QDECREF(tests_dict); | |
7b8c51ad | 218 | } |
7b8c51ad | 219 | |
ac531cb6 | 220 | static void qdict_iterapi_test(void) |
d02c6bd4 LC |
221 | { |
222 | int count; | |
223 | const QDictEntry *ent; | |
ac531cb6 | 224 | QDict *tests_dict = qdict_new(); |
d02c6bd4 | 225 | |
ac531cb6 | 226 | g_assert(qdict_first(tests_dict) == NULL); |
d02c6bd4 LC |
227 | |
228 | qdict_put(tests_dict, "key1", qint_from_int(1)); | |
229 | qdict_put(tests_dict, "key2", qint_from_int(2)); | |
230 | qdict_put(tests_dict, "key3", qint_from_int(3)); | |
231 | ||
232 | count = 0; | |
233 | for (ent = qdict_first(tests_dict); ent; ent = qdict_next(tests_dict, ent)){ | |
ac531cb6 | 234 | g_assert(qdict_haskey(tests_dict, qdict_entry_key(ent)) == 1); |
d02c6bd4 LC |
235 | count++; |
236 | } | |
237 | ||
ac531cb6 | 238 | g_assert(count == qdict_size(tests_dict)); |
d02c6bd4 LC |
239 | |
240 | /* Do it again to test restarting */ | |
241 | count = 0; | |
242 | for (ent = qdict_first(tests_dict); ent; ent = qdict_next(tests_dict, ent)){ | |
ac531cb6 | 243 | g_assert(qdict_haskey(tests_dict, qdict_entry_key(ent)) == 1); |
d02c6bd4 LC |
244 | count++; |
245 | } | |
246 | ||
ac531cb6 AL |
247 | g_assert(count == qdict_size(tests_dict)); |
248 | ||
249 | QDECREF(tests_dict); | |
d02c6bd4 | 250 | } |
d02c6bd4 | 251 | |
3fb11779 HR |
252 | static void qdict_flatten_test(void) |
253 | { | |
254 | QList *list1 = qlist_new(); | |
255 | QList *list2 = qlist_new(); | |
256 | QDict *dict1 = qdict_new(); | |
257 | QDict *dict2 = qdict_new(); | |
258 | QDict *dict3 = qdict_new(); | |
259 | ||
260 | /* | |
261 | * Test the flattening of | |
262 | * | |
263 | * { | |
264 | * "e": [ | |
265 | * 42, | |
266 | * [ | |
267 | * 23, | |
268 | * 66, | |
269 | * { | |
270 | * "a": 0, | |
271 | * "b": 1 | |
272 | * } | |
273 | * ] | |
274 | * ], | |
275 | * "f": { | |
276 | * "c": 2, | |
277 | * "d": 3, | |
278 | * }, | |
279 | * "g": 4 | |
280 | * } | |
281 | * | |
282 | * to | |
283 | * | |
284 | * { | |
285 | * "e.0": 42, | |
286 | * "e.1.0": 23, | |
287 | * "e.1.1": 66, | |
288 | * "e.1.2.a": 0, | |
289 | * "e.1.2.b": 1, | |
290 | * "f.c": 2, | |
291 | * "f.d": 3, | |
292 | * "g": 4 | |
293 | * } | |
294 | */ | |
295 | ||
296 | qdict_put(dict1, "a", qint_from_int(0)); | |
297 | qdict_put(dict1, "b", qint_from_int(1)); | |
298 | ||
299 | qlist_append_obj(list1, QOBJECT(qint_from_int(23))); | |
300 | qlist_append_obj(list1, QOBJECT(qint_from_int(66))); | |
301 | qlist_append_obj(list1, QOBJECT(dict1)); | |
302 | qlist_append_obj(list2, QOBJECT(qint_from_int(42))); | |
303 | qlist_append_obj(list2, QOBJECT(list1)); | |
304 | ||
305 | qdict_put(dict2, "c", qint_from_int(2)); | |
306 | qdict_put(dict2, "d", qint_from_int(3)); | |
307 | qdict_put_obj(dict3, "e", QOBJECT(list2)); | |
308 | qdict_put_obj(dict3, "f", QOBJECT(dict2)); | |
309 | qdict_put(dict3, "g", qint_from_int(4)); | |
310 | ||
311 | qdict_flatten(dict3); | |
312 | ||
313 | g_assert(qdict_get_int(dict3, "e.0") == 42); | |
314 | g_assert(qdict_get_int(dict3, "e.1.0") == 23); | |
315 | g_assert(qdict_get_int(dict3, "e.1.1") == 66); | |
316 | g_assert(qdict_get_int(dict3, "e.1.2.a") == 0); | |
317 | g_assert(qdict_get_int(dict3, "e.1.2.b") == 1); | |
318 | g_assert(qdict_get_int(dict3, "f.c") == 2); | |
319 | g_assert(qdict_get_int(dict3, "f.d") == 3); | |
320 | g_assert(qdict_get_int(dict3, "g") == 4); | |
321 | ||
322 | g_assert(qdict_size(dict3) == 8); | |
323 | ||
324 | QDECREF(dict3); | |
325 | } | |
326 | ||
be331341 HR |
327 | static void qdict_array_split_test(void) |
328 | { | |
329 | QDict *test_dict = qdict_new(); | |
330 | QDict *dict1, *dict2; | |
7841c768 | 331 | QInt *int1; |
be331341 HR |
332 | QList *test_list; |
333 | ||
334 | /* | |
335 | * Test the split of | |
336 | * | |
337 | * { | |
338 | * "1.x": 0, | |
7841c768 | 339 | * "4.y": 1, |
be331341 HR |
340 | * "0.a": 42, |
341 | * "o.o": 7, | |
7841c768 HR |
342 | * "0.b": 23, |
343 | * "2": 66 | |
be331341 HR |
344 | * } |
345 | * | |
346 | * to | |
347 | * | |
348 | * [ | |
349 | * { | |
350 | * "a": 42, | |
351 | * "b": 23 | |
352 | * }, | |
353 | * { | |
354 | * "x": 0 | |
7841c768 HR |
355 | * }, |
356 | * 66 | |
be331341 HR |
357 | * ] |
358 | * | |
359 | * and | |
360 | * | |
361 | * { | |
7841c768 | 362 | * "4.y": 1, |
be331341 HR |
363 | * "o.o": 7 |
364 | * } | |
365 | * | |
366 | * (remaining in the old QDict) | |
367 | * | |
368 | * This example is given in the comment of qdict_array_split(). | |
369 | */ | |
370 | ||
371 | qdict_put(test_dict, "1.x", qint_from_int(0)); | |
7841c768 | 372 | qdict_put(test_dict, "4.y", qint_from_int(1)); |
be331341 HR |
373 | qdict_put(test_dict, "0.a", qint_from_int(42)); |
374 | qdict_put(test_dict, "o.o", qint_from_int(7)); | |
375 | qdict_put(test_dict, "0.b", qint_from_int(23)); | |
7841c768 | 376 | qdict_put(test_dict, "2", qint_from_int(66)); |
be331341 HR |
377 | |
378 | qdict_array_split(test_dict, &test_list); | |
379 | ||
380 | dict1 = qobject_to_qdict(qlist_pop(test_list)); | |
381 | dict2 = qobject_to_qdict(qlist_pop(test_list)); | |
7841c768 | 382 | int1 = qobject_to_qint(qlist_pop(test_list)); |
be331341 HR |
383 | |
384 | g_assert(dict1); | |
385 | g_assert(dict2); | |
7841c768 | 386 | g_assert(int1); |
be331341 HR |
387 | g_assert(qlist_empty(test_list)); |
388 | ||
389 | QDECREF(test_list); | |
390 | ||
391 | g_assert(qdict_get_int(dict1, "a") == 42); | |
392 | g_assert(qdict_get_int(dict1, "b") == 23); | |
393 | ||
394 | g_assert(qdict_size(dict1) == 2); | |
395 | ||
396 | QDECREF(dict1); | |
397 | ||
398 | g_assert(qdict_get_int(dict2, "x") == 0); | |
399 | ||
400 | g_assert(qdict_size(dict2) == 1); | |
401 | ||
402 | QDECREF(dict2); | |
403 | ||
7841c768 HR |
404 | g_assert(qint_get_int(int1) == 66); |
405 | ||
406 | QDECREF(int1); | |
407 | ||
408 | g_assert(qdict_get_int(test_dict, "4.y") == 1); | |
be331341 HR |
409 | g_assert(qdict_get_int(test_dict, "o.o") == 7); |
410 | ||
411 | g_assert(qdict_size(test_dict) == 2); | |
412 | ||
413 | QDECREF(test_dict); | |
64757582 HR |
414 | |
415 | ||
416 | /* | |
417 | * Test the split of | |
418 | * | |
419 | * { | |
420 | * "0": 42, | |
421 | * "1": 23, | |
422 | * "1.x": 84 | |
423 | * } | |
424 | * | |
425 | * to | |
426 | * | |
427 | * [ | |
428 | * 42 | |
429 | * ] | |
430 | * | |
431 | * and | |
432 | * | |
433 | * { | |
434 | * "1": 23, | |
435 | * "1.x": 84 | |
436 | * } | |
437 | * | |
438 | * That is, test whether splitting stops if there is both an entry with key | |
439 | * of "%u" and other entries with keys prefixed "%u." for the same index. | |
440 | */ | |
441 | ||
442 | test_dict = qdict_new(); | |
443 | ||
444 | qdict_put(test_dict, "0", qint_from_int(42)); | |
445 | qdict_put(test_dict, "1", qint_from_int(23)); | |
446 | qdict_put(test_dict, "1.x", qint_from_int(84)); | |
447 | ||
448 | qdict_array_split(test_dict, &test_list); | |
449 | ||
450 | int1 = qobject_to_qint(qlist_pop(test_list)); | |
451 | ||
452 | g_assert(int1); | |
453 | g_assert(qlist_empty(test_list)); | |
454 | ||
455 | QDECREF(test_list); | |
456 | ||
457 | g_assert(qint_get_int(int1) == 42); | |
458 | ||
459 | QDECREF(int1); | |
460 | ||
461 | g_assert(qdict_get_int(test_dict, "1") == 23); | |
462 | g_assert(qdict_get_int(test_dict, "1.x") == 84); | |
463 | ||
464 | g_assert(qdict_size(test_dict) == 2); | |
465 | ||
466 | QDECREF(test_dict); | |
be331341 HR |
467 | } |
468 | ||
ef1919df KW |
469 | static void qdict_array_entries_test(void) |
470 | { | |
471 | QDict *dict = qdict_new(); | |
472 | ||
473 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, 0); | |
474 | ||
475 | qdict_put(dict, "bar", qint_from_int(0)); | |
476 | qdict_put(dict, "baz.0", qint_from_int(0)); | |
477 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, 0); | |
478 | ||
479 | qdict_put(dict, "foo.1", qint_from_int(0)); | |
480 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, -EINVAL); | |
481 | qdict_put(dict, "foo.0", qint_from_int(0)); | |
482 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, 2); | |
483 | qdict_put(dict, "foo.bar", qint_from_int(0)); | |
484 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, -EINVAL); | |
485 | qdict_del(dict, "foo.bar"); | |
486 | ||
487 | qdict_put(dict, "foo.2.a", qint_from_int(0)); | |
488 | qdict_put(dict, "foo.2.b", qint_from_int(0)); | |
489 | qdict_put(dict, "foo.2.c", qint_from_int(0)); | |
490 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, 3); | |
491 | g_assert_cmpint(qdict_array_entries(dict, ""), ==, -EINVAL); | |
492 | ||
493 | QDECREF(dict); | |
494 | ||
495 | dict = qdict_new(); | |
496 | qdict_put(dict, "1", qint_from_int(0)); | |
497 | g_assert_cmpint(qdict_array_entries(dict, ""), ==, -EINVAL); | |
498 | qdict_put(dict, "0", qint_from_int(0)); | |
499 | g_assert_cmpint(qdict_array_entries(dict, ""), ==, 2); | |
500 | qdict_put(dict, "bar", qint_from_int(0)); | |
501 | g_assert_cmpint(qdict_array_entries(dict, ""), ==, -EINVAL); | |
502 | qdict_del(dict, "bar"); | |
503 | ||
504 | qdict_put(dict, "2.a", qint_from_int(0)); | |
505 | qdict_put(dict, "2.b", qint_from_int(0)); | |
506 | qdict_put(dict, "2.c", qint_from_int(0)); | |
507 | g_assert_cmpint(qdict_array_entries(dict, ""), ==, 3); | |
508 | ||
509 | QDECREF(dict); | |
510 | } | |
511 | ||
8a5eb36a HR |
512 | static void qdict_join_test(void) |
513 | { | |
514 | QDict *dict1, *dict2; | |
515 | bool overwrite = false; | |
516 | int i; | |
517 | ||
518 | dict1 = qdict_new(); | |
519 | dict2 = qdict_new(); | |
520 | ||
521 | ||
522 | /* Test everything once without overwrite and once with */ | |
523 | do | |
524 | { | |
525 | /* Test empty dicts */ | |
526 | qdict_join(dict1, dict2, overwrite); | |
527 | ||
528 | g_assert(qdict_size(dict1) == 0); | |
529 | g_assert(qdict_size(dict2) == 0); | |
530 | ||
531 | ||
532 | /* First iteration: Test movement */ | |
533 | /* Second iteration: Test empty source and non-empty destination */ | |
534 | qdict_put(dict2, "foo", qint_from_int(42)); | |
535 | ||
536 | for (i = 0; i < 2; i++) { | |
537 | qdict_join(dict1, dict2, overwrite); | |
538 | ||
539 | g_assert(qdict_size(dict1) == 1); | |
540 | g_assert(qdict_size(dict2) == 0); | |
541 | ||
542 | g_assert(qdict_get_int(dict1, "foo") == 42); | |
543 | } | |
544 | ||
545 | ||
546 | /* Test non-empty source and destination without conflict */ | |
547 | qdict_put(dict2, "bar", qint_from_int(23)); | |
548 | ||
549 | qdict_join(dict1, dict2, overwrite); | |
550 | ||
551 | g_assert(qdict_size(dict1) == 2); | |
552 | g_assert(qdict_size(dict2) == 0); | |
553 | ||
554 | g_assert(qdict_get_int(dict1, "foo") == 42); | |
555 | g_assert(qdict_get_int(dict1, "bar") == 23); | |
556 | ||
557 | ||
558 | /* Test conflict */ | |
559 | qdict_put(dict2, "foo", qint_from_int(84)); | |
560 | ||
561 | qdict_join(dict1, dict2, overwrite); | |
562 | ||
563 | g_assert(qdict_size(dict1) == 2); | |
564 | g_assert(qdict_size(dict2) == !overwrite); | |
565 | ||
566 | g_assert(qdict_get_int(dict1, "foo") == overwrite ? 84 : 42); | |
567 | g_assert(qdict_get_int(dict1, "bar") == 23); | |
568 | ||
569 | if (!overwrite) { | |
570 | g_assert(qdict_get_int(dict2, "foo") == 84); | |
571 | } | |
572 | ||
573 | ||
574 | /* Check the references */ | |
575 | g_assert(qdict_get(dict1, "foo")->refcnt == 1); | |
576 | g_assert(qdict_get(dict1, "bar")->refcnt == 1); | |
577 | ||
578 | if (!overwrite) { | |
579 | g_assert(qdict_get(dict2, "foo")->refcnt == 1); | |
580 | } | |
581 | ||
582 | ||
583 | /* Clean up */ | |
584 | qdict_del(dict1, "foo"); | |
585 | qdict_del(dict1, "bar"); | |
586 | ||
587 | if (!overwrite) { | |
588 | qdict_del(dict2, "foo"); | |
589 | } | |
590 | } | |
591 | while (overwrite ^= true); | |
592 | ||
593 | ||
594 | QDECREF(dict1); | |
595 | QDECREF(dict2); | |
596 | } | |
597 | ||
7b8c51ad LC |
598 | /* |
599 | * Errors test-cases | |
600 | */ | |
601 | ||
ac531cb6 | 602 | static void qdict_put_exists_test(void) |
7b8c51ad LC |
603 | { |
604 | int value; | |
605 | const char *key = "exists"; | |
ac531cb6 | 606 | QDict *tests_dict = qdict_new(); |
7b8c51ad LC |
607 | |
608 | qdict_put(tests_dict, key, qint_from_int(1)); | |
609 | qdict_put(tests_dict, key, qint_from_int(2)); | |
610 | ||
611 | value = qdict_get_int(tests_dict, key); | |
ac531cb6 | 612 | g_assert(value == 2); |
29ec3156 | 613 | |
ac531cb6 AL |
614 | g_assert(qdict_size(tests_dict) == 1); |
615 | ||
616 | QDECREF(tests_dict); | |
7b8c51ad | 617 | } |
7b8c51ad | 618 | |
ac531cb6 | 619 | static void qdict_get_not_exists_test(void) |
7b8c51ad | 620 | { |
ac531cb6 AL |
621 | QDict *tests_dict = qdict_new(); |
622 | g_assert(qdict_get(tests_dict, "foo") == NULL); | |
623 | ||
624 | QDECREF(tests_dict); | |
7b8c51ad | 625 | } |
7b8c51ad LC |
626 | |
627 | /* | |
628 | * Stress test-case | |
629 | * | |
630 | * This is a lot big for a unit-test, but there is no other place | |
631 | * to have it. | |
632 | */ | |
633 | ||
634 | static void remove_dots(char *string) | |
635 | { | |
636 | char *p = strchr(string, ':'); | |
637 | if (p) | |
638 | *p = '\0'; | |
639 | } | |
640 | ||
641 | static QString *read_line(FILE *file, char *key) | |
642 | { | |
643 | char value[128]; | |
644 | ||
7464f058 | 645 | if (fscanf(file, "%127s%127s", key, value) == EOF) { |
7b8c51ad | 646 | return NULL; |
7464f058 | 647 | } |
7b8c51ad LC |
648 | remove_dots(key); |
649 | return qstring_from_str(value); | |
650 | } | |
651 | ||
652 | #define reset_file(file) fseek(file, 0L, SEEK_SET) | |
653 | ||
ac531cb6 | 654 | static void qdict_stress_test(void) |
7b8c51ad LC |
655 | { |
656 | size_t lines; | |
657 | char key[128]; | |
658 | FILE *test_file; | |
659 | QDict *qdict; | |
660 | QString *value; | |
661 | const char *test_file_path = "qdict-test-data.txt"; | |
662 | ||
663 | test_file = fopen(test_file_path, "r"); | |
ac531cb6 | 664 | g_assert(test_file != NULL); |
7b8c51ad LC |
665 | |
666 | // Create the dict | |
667 | qdict = qdict_new(); | |
ac531cb6 | 668 | g_assert(qdict != NULL); |
7b8c51ad LC |
669 | |
670 | // Add everything from the test file | |
671 | for (lines = 0;; lines++) { | |
672 | value = read_line(test_file, key); | |
673 | if (!value) | |
674 | break; | |
675 | ||
676 | qdict_put(qdict, key, value); | |
677 | } | |
ac531cb6 | 678 | g_assert(qdict_size(qdict) == lines); |
7b8c51ad LC |
679 | |
680 | // Check if everything is really in there | |
681 | reset_file(test_file); | |
682 | for (;;) { | |
683 | const char *str1, *str2; | |
684 | ||
685 | value = read_line(test_file, key); | |
686 | if (!value) | |
687 | break; | |
688 | ||
689 | str1 = qstring_get_str(value); | |
690 | ||
691 | str2 = qdict_get_str(qdict, key); | |
ac531cb6 | 692 | g_assert(str2 != NULL); |
7b8c51ad | 693 | |
ac531cb6 | 694 | g_assert(strcmp(str1, str2) == 0); |
7b8c51ad LC |
695 | |
696 | QDECREF(value); | |
697 | } | |
698 | ||
699 | // Delete everything | |
700 | reset_file(test_file); | |
701 | for (;;) { | |
702 | value = read_line(test_file, key); | |
703 | if (!value) | |
704 | break; | |
705 | ||
706 | qdict_del(qdict, key); | |
707 | QDECREF(value); | |
708 | ||
ac531cb6 | 709 | g_assert(qdict_haskey(qdict, key) == 0); |
7b8c51ad LC |
710 | } |
711 | fclose(test_file); | |
712 | ||
ac531cb6 | 713 | g_assert(qdict_size(qdict) == 0); |
7b8c51ad LC |
714 | QDECREF(qdict); |
715 | } | |
7b8c51ad | 716 | |
ac531cb6 | 717 | int main(int argc, char **argv) |
7b8c51ad | 718 | { |
ac531cb6 | 719 | g_test_init(&argc, &argv, NULL); |
7b8c51ad | 720 | |
ac531cb6 AL |
721 | g_test_add_func("/public/new", qdict_new_test); |
722 | g_test_add_func("/public/put_obj", qdict_put_obj_test); | |
723 | g_test_add_func("/public/destroy_simple", qdict_destroy_simple_test); | |
7b8c51ad LC |
724 | |
725 | /* Continue, but now with fixtures */ | |
ac531cb6 AL |
726 | g_test_add_func("/public/get", qdict_get_test); |
727 | g_test_add_func("/public/get_int", qdict_get_int_test); | |
728 | g_test_add_func("/public/get_try_int", qdict_get_try_int_test); | |
729 | g_test_add_func("/public/get_str", qdict_get_str_test); | |
730 | g_test_add_func("/public/get_try_str", qdict_get_try_str_test); | |
ef1919df | 731 | g_test_add_func("/public/defaults", qdict_defaults_test); |
ac531cb6 AL |
732 | g_test_add_func("/public/haskey_not", qdict_haskey_not_test); |
733 | g_test_add_func("/public/haskey", qdict_haskey_test); | |
734 | g_test_add_func("/public/del", qdict_del_test); | |
735 | g_test_add_func("/public/to_qdict", qobject_to_qdict_test); | |
736 | g_test_add_func("/public/iterapi", qdict_iterapi_test); | |
3fb11779 | 737 | g_test_add_func("/public/flatten", qdict_flatten_test); |
be331341 | 738 | g_test_add_func("/public/array_split", qdict_array_split_test); |
ef1919df | 739 | g_test_add_func("/public/array_entries", qdict_array_entries_test); |
8a5eb36a | 740 | g_test_add_func("/public/join", qdict_join_test); |
ac531cb6 AL |
741 | |
742 | g_test_add_func("/errors/put_exists", qdict_put_exists_test); | |
743 | g_test_add_func("/errors/get_not_exists", qdict_get_not_exists_test); | |
7b8c51ad LC |
744 | |
745 | /* The Big one */ | |
ac531cb6 AL |
746 | if (g_test_slow()) { |
747 | g_test_add_func("/stress/test", qdict_stress_test); | |
748 | } | |
7b8c51ad | 749 | |
ac531cb6 | 750 | return g_test_run(); |
7b8c51ad | 751 | } |