4 * Copyright (C) 2009 Red Hat Inc.
7 * Luiz Capitulino <lcapitulino@redhat.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 "qapi/qmp/qint.h"
15 #include "qapi/qmp/qdict.h"
16 #include "qapi/qmp/qstring.h"
17 #include "qemu-common.h"
20 * Public Interface test-cases
22 * (with some violations to access 'private' data)
25 static void qdict_new_test(void)
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
);
35 // destroy doesn't exit yet
39 static void qdict_put_obj_test(void)
48 // key "" will have tdb hash 12345
49 qdict_put_obj(qdict
, "", QOBJECT(qint_from_int(num
)));
51 g_assert(qdict_size(qdict
) == 1);
52 ent
= QLIST_FIRST(&qdict
->table
[12345 % QDICT_BUCKET_MAX
]);
53 qi
= qobject_to_qint(ent
->value
);
54 g_assert(qint_get_int(qi
) == num
);
56 // destroy doesn't exit yet
63 static void qdict_destroy_simple_test(void)
68 qdict_put_obj(qdict
, "num", QOBJECT(qint_from_int(0)));
69 qdict_put_obj(qdict
, "str", QOBJECT(qstring_from_str("foo")));
74 static void qdict_get_test(void)
78 const int value
= -42;
79 const char *key
= "test";
80 QDict
*tests_dict
= qdict_new();
82 qdict_put(tests_dict
, key
, qint_from_int(value
));
84 obj
= qdict_get(tests_dict
, key
);
85 g_assert(obj
!= NULL
);
87 qi
= qobject_to_qint(obj
);
88 g_assert(qint_get_int(qi
) == value
);
93 static void qdict_get_int_test(void)
96 const int value
= 100;
97 const char *key
= "int";
98 QDict
*tests_dict
= qdict_new();
100 qdict_put(tests_dict
, key
, qint_from_int(value
));
102 ret
= qdict_get_int(tests_dict
, key
);
103 g_assert(ret
== value
);
108 static void qdict_get_try_int_test(void)
111 const int value
= 100;
112 const char *key
= "int";
113 QDict
*tests_dict
= qdict_new();
115 qdict_put(tests_dict
, key
, qint_from_int(value
));
117 ret
= qdict_get_try_int(tests_dict
, key
, 0);
118 g_assert(ret
== value
);
123 static void qdict_get_str_test(void)
126 const char *key
= "key";
127 const char *str
= "string";
128 QDict
*tests_dict
= qdict_new();
130 qdict_put(tests_dict
, key
, qstring_from_str(str
));
132 p
= qdict_get_str(tests_dict
, key
);
134 g_assert(strcmp(p
, str
) == 0);
139 static void qdict_get_try_str_test(void)
142 const char *key
= "key";
143 const char *str
= "string";
144 QDict
*tests_dict
= qdict_new();
146 qdict_put(tests_dict
, key
, qstring_from_str(str
));
148 p
= qdict_get_try_str(tests_dict
, key
);
150 g_assert(strcmp(p
, str
) == 0);
155 static void qdict_haskey_not_test(void)
157 QDict
*tests_dict
= qdict_new();
158 g_assert(qdict_haskey(tests_dict
, "test") == 0);
163 static void qdict_haskey_test(void)
165 const char *key
= "test";
166 QDict
*tests_dict
= qdict_new();
168 qdict_put(tests_dict
, key
, qint_from_int(0));
169 g_assert(qdict_haskey(tests_dict
, key
) == 1);
174 static void qdict_del_test(void)
176 const char *key
= "key test";
177 QDict
*tests_dict
= qdict_new();
179 qdict_put(tests_dict
, key
, qstring_from_str("foo"));
180 g_assert(qdict_size(tests_dict
) == 1);
182 qdict_del(tests_dict
, key
);
184 g_assert(qdict_size(tests_dict
) == 0);
185 g_assert(qdict_haskey(tests_dict
, key
) == 0);
190 static void qobject_to_qdict_test(void)
192 QDict
*tests_dict
= qdict_new();
193 g_assert(qobject_to_qdict(QOBJECT(tests_dict
)) == tests_dict
);
198 static void qdict_iterapi_test(void)
201 const QDictEntry
*ent
;
202 QDict
*tests_dict
= qdict_new();
204 g_assert(qdict_first(tests_dict
) == NULL
);
206 qdict_put(tests_dict
, "key1", qint_from_int(1));
207 qdict_put(tests_dict
, "key2", qint_from_int(2));
208 qdict_put(tests_dict
, "key3", qint_from_int(3));
211 for (ent
= qdict_first(tests_dict
); ent
; ent
= qdict_next(tests_dict
, ent
)){
212 g_assert(qdict_haskey(tests_dict
, qdict_entry_key(ent
)) == 1);
216 g_assert(count
== qdict_size(tests_dict
));
218 /* Do it again to test restarting */
220 for (ent
= qdict_first(tests_dict
); ent
; ent
= qdict_next(tests_dict
, ent
)){
221 g_assert(qdict_haskey(tests_dict
, qdict_entry_key(ent
)) == 1);
225 g_assert(count
== qdict_size(tests_dict
));
230 static void qdict_flatten_test(void)
232 QList
*list1
= qlist_new();
233 QList
*list2
= qlist_new();
234 QDict
*dict1
= qdict_new();
235 QDict
*dict2
= qdict_new();
236 QDict
*dict3
= qdict_new();
239 * Test the flattening of
274 qdict_put(dict1
, "a", qint_from_int(0));
275 qdict_put(dict1
, "b", qint_from_int(1));
277 qlist_append_obj(list1
, QOBJECT(qint_from_int(23)));
278 qlist_append_obj(list1
, QOBJECT(qint_from_int(66)));
279 qlist_append_obj(list1
, QOBJECT(dict1
));
280 qlist_append_obj(list2
, QOBJECT(qint_from_int(42)));
281 qlist_append_obj(list2
, QOBJECT(list1
));
283 qdict_put(dict2
, "c", qint_from_int(2));
284 qdict_put(dict2
, "d", qint_from_int(3));
285 qdict_put_obj(dict3
, "e", QOBJECT(list2
));
286 qdict_put_obj(dict3
, "f", QOBJECT(dict2
));
287 qdict_put(dict3
, "g", qint_from_int(4));
289 qdict_flatten(dict3
);
291 g_assert(qdict_get_int(dict3
, "e.0") == 42);
292 g_assert(qdict_get_int(dict3
, "e.1.0") == 23);
293 g_assert(qdict_get_int(dict3
, "e.1.1") == 66);
294 g_assert(qdict_get_int(dict3
, "e.1.2.a") == 0);
295 g_assert(qdict_get_int(dict3
, "e.1.2.b") == 1);
296 g_assert(qdict_get_int(dict3
, "f.c") == 2);
297 g_assert(qdict_get_int(dict3
, "f.d") == 3);
298 g_assert(qdict_get_int(dict3
, "g") == 4);
300 g_assert(qdict_size(dict3
) == 8);
305 static void qdict_array_split_test(void)
307 QDict
*test_dict
= qdict_new();
308 QDict
*dict1
, *dict2
;
344 * (remaining in the old QDict)
346 * This example is given in the comment of qdict_array_split().
349 qdict_put(test_dict
, "1.x", qint_from_int(0));
350 qdict_put(test_dict
, "4.y", qint_from_int(1));
351 qdict_put(test_dict
, "0.a", qint_from_int(42));
352 qdict_put(test_dict
, "o.o", qint_from_int(7));
353 qdict_put(test_dict
, "0.b", qint_from_int(23));
354 qdict_put(test_dict
, "2", qint_from_int(66));
356 qdict_array_split(test_dict
, &test_list
);
358 dict1
= qobject_to_qdict(qlist_pop(test_list
));
359 dict2
= qobject_to_qdict(qlist_pop(test_list
));
360 int1
= qobject_to_qint(qlist_pop(test_list
));
365 g_assert(qlist_empty(test_list
));
369 g_assert(qdict_get_int(dict1
, "a") == 42);
370 g_assert(qdict_get_int(dict1
, "b") == 23);
372 g_assert(qdict_size(dict1
) == 2);
376 g_assert(qdict_get_int(dict2
, "x") == 0);
378 g_assert(qdict_size(dict2
) == 1);
382 g_assert(qint_get_int(int1
) == 66);
386 g_assert(qdict_get_int(test_dict
, "4.y") == 1);
387 g_assert(qdict_get_int(test_dict
, "o.o") == 7);
389 g_assert(qdict_size(test_dict
) == 2);
416 * That is, test whether splitting stops if there is both an entry with key
417 * of "%u" and other entries with keys prefixed "%u." for the same index.
420 test_dict
= qdict_new();
422 qdict_put(test_dict
, "0", qint_from_int(42));
423 qdict_put(test_dict
, "1", qint_from_int(23));
424 qdict_put(test_dict
, "1.x", qint_from_int(84));
426 qdict_array_split(test_dict
, &test_list
);
428 int1
= qobject_to_qint(qlist_pop(test_list
));
431 g_assert(qlist_empty(test_list
));
435 g_assert(qint_get_int(int1
) == 42);
439 g_assert(qdict_get_int(test_dict
, "1") == 23);
440 g_assert(qdict_get_int(test_dict
, "1.x") == 84);
442 g_assert(qdict_size(test_dict
) == 2);
447 static void qdict_join_test(void)
449 QDict
*dict1
, *dict2
;
450 bool overwrite
= false;
457 /* Test everything once without overwrite and once with */
460 /* Test empty dicts */
461 qdict_join(dict1
, dict2
, overwrite
);
463 g_assert(qdict_size(dict1
) == 0);
464 g_assert(qdict_size(dict2
) == 0);
467 /* First iteration: Test movement */
468 /* Second iteration: Test empty source and non-empty destination */
469 qdict_put(dict2
, "foo", qint_from_int(42));
471 for (i
= 0; i
< 2; i
++) {
472 qdict_join(dict1
, dict2
, overwrite
);
474 g_assert(qdict_size(dict1
) == 1);
475 g_assert(qdict_size(dict2
) == 0);
477 g_assert(qdict_get_int(dict1
, "foo") == 42);
481 /* Test non-empty source and destination without conflict */
482 qdict_put(dict2
, "bar", qint_from_int(23));
484 qdict_join(dict1
, dict2
, overwrite
);
486 g_assert(qdict_size(dict1
) == 2);
487 g_assert(qdict_size(dict2
) == 0);
489 g_assert(qdict_get_int(dict1
, "foo") == 42);
490 g_assert(qdict_get_int(dict1
, "bar") == 23);
494 qdict_put(dict2
, "foo", qint_from_int(84));
496 qdict_join(dict1
, dict2
, overwrite
);
498 g_assert(qdict_size(dict1
) == 2);
499 g_assert(qdict_size(dict2
) == !overwrite
);
501 g_assert(qdict_get_int(dict1
, "foo") == overwrite
? 84 : 42);
502 g_assert(qdict_get_int(dict1
, "bar") == 23);
505 g_assert(qdict_get_int(dict2
, "foo") == 84);
509 /* Check the references */
510 g_assert(qdict_get(dict1
, "foo")->refcnt
== 1);
511 g_assert(qdict_get(dict1
, "bar")->refcnt
== 1);
514 g_assert(qdict_get(dict2
, "foo")->refcnt
== 1);
519 qdict_del(dict1
, "foo");
520 qdict_del(dict1
, "bar");
523 qdict_del(dict2
, "foo");
526 while (overwrite
^= true);
537 static void qdict_put_exists_test(void)
540 const char *key
= "exists";
541 QDict
*tests_dict
= qdict_new();
543 qdict_put(tests_dict
, key
, qint_from_int(1));
544 qdict_put(tests_dict
, key
, qint_from_int(2));
546 value
= qdict_get_int(tests_dict
, key
);
547 g_assert(value
== 2);
549 g_assert(qdict_size(tests_dict
) == 1);
554 static void qdict_get_not_exists_test(void)
556 QDict
*tests_dict
= qdict_new();
557 g_assert(qdict_get(tests_dict
, "foo") == NULL
);
565 * This is a lot big for a unit-test, but there is no other place
569 static void remove_dots(char *string
)
571 char *p
= strchr(string
, ':');
576 static QString
*read_line(FILE *file
, char *key
)
580 if (fscanf(file
, "%127s%127s", key
, value
) == EOF
) {
584 return qstring_from_str(value
);
587 #define reset_file(file) fseek(file, 0L, SEEK_SET)
589 static void qdict_stress_test(void)
596 const char *test_file_path
= "qdict-test-data.txt";
598 test_file
= fopen(test_file_path
, "r");
599 g_assert(test_file
!= NULL
);
603 g_assert(qdict
!= NULL
);
605 // Add everything from the test file
606 for (lines
= 0;; lines
++) {
607 value
= read_line(test_file
, key
);
611 qdict_put(qdict
, key
, value
);
613 g_assert(qdict_size(qdict
) == lines
);
615 // Check if everything is really in there
616 reset_file(test_file
);
618 const char *str1
, *str2
;
620 value
= read_line(test_file
, key
);
624 str1
= qstring_get_str(value
);
626 str2
= qdict_get_str(qdict
, key
);
627 g_assert(str2
!= NULL
);
629 g_assert(strcmp(str1
, str2
) == 0);
635 reset_file(test_file
);
637 value
= read_line(test_file
, key
);
641 qdict_del(qdict
, key
);
644 g_assert(qdict_haskey(qdict
, key
) == 0);
648 g_assert(qdict_size(qdict
) == 0);
652 int main(int argc
, char **argv
)
654 g_test_init(&argc
, &argv
, NULL
);
656 g_test_add_func("/public/new", qdict_new_test
);
657 g_test_add_func("/public/put_obj", qdict_put_obj_test
);
658 g_test_add_func("/public/destroy_simple", qdict_destroy_simple_test
);
660 /* Continue, but now with fixtures */
661 g_test_add_func("/public/get", qdict_get_test
);
662 g_test_add_func("/public/get_int", qdict_get_int_test
);
663 g_test_add_func("/public/get_try_int", qdict_get_try_int_test
);
664 g_test_add_func("/public/get_str", qdict_get_str_test
);
665 g_test_add_func("/public/get_try_str", qdict_get_try_str_test
);
666 g_test_add_func("/public/haskey_not", qdict_haskey_not_test
);
667 g_test_add_func("/public/haskey", qdict_haskey_test
);
668 g_test_add_func("/public/del", qdict_del_test
);
669 g_test_add_func("/public/to_qdict", qobject_to_qdict_test
);
670 g_test_add_func("/public/iterapi", qdict_iterapi_test
);
671 g_test_add_func("/public/flatten", qdict_flatten_test
);
672 g_test_add_func("/public/array_split", qdict_array_split_test
);
673 g_test_add_func("/public/join", qdict_join_test
);
675 g_test_add_func("/errors/put_exists", qdict_put_exists_test
);
676 g_test_add_func("/errors/get_not_exists", qdict_get_not_exists_test
);
680 g_test_add_func("/stress/test", qdict_stress_test
);