Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 1 | /* |
| 2 | * QDict unit-tests. |
| 3 | * |
| 4 | * Copyright (C) 2009 Red Hat Inc. |
| 5 | * |
| 6 | * Authors: |
| 7 | * Luiz Capitulino <lcapitulino@redhat.com> |
Luiz Capitulino | 41836a9 | 2010-05-12 16:34:42 -0300 | [diff] [blame] | 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. |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 11 | */ |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 12 | #include <glib.h> |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 13 | |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 14 | #include "qapi/qmp/qint.h" |
| 15 | #include "qapi/qmp/qdict.h" |
| 16 | #include "qapi/qmp/qstring.h" |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 17 | #include "qemu-common.h" |
| 18 | |
| 19 | /* |
| 20 | * Public Interface test-cases |
| 21 | * |
| 22 | * (with some violations to access 'private' data) |
| 23 | */ |
| 24 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 25 | static void qdict_new_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 26 | { |
| 27 | QDict *qdict; |
| 28 | |
| 29 | qdict = qdict_new(); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 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); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 34 | |
| 35 | // destroy doesn't exit yet |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 36 | g_free(qdict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 37 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 38 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 39 | static void qdict_put_obj_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 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 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 51 | g_assert(qdict_size(qdict) == 1); |
Luiz Capitulino | c8bc3cd | 2010-06-07 15:45:22 -0300 | [diff] [blame] | 52 | ent = QLIST_FIRST(&qdict->table[12345 % QDICT_BUCKET_MAX]); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 53 | qi = qobject_to_qint(ent->value); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 54 | g_assert(qint_get_int(qi) == num); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 55 | |
| 56 | // destroy doesn't exit yet |
| 57 | QDECREF(qi); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 58 | g_free(ent->key); |
| 59 | g_free(ent); |
| 60 | g_free(qdict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 61 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 62 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 63 | static void qdict_destroy_simple_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 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 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 73 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 74 | static void qdict_get_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 75 | { |
| 76 | QInt *qi; |
| 77 | QObject *obj; |
| 78 | const int value = -42; |
| 79 | const char *key = "test"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 80 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 81 | |
| 82 | qdict_put(tests_dict, key, qint_from_int(value)); |
| 83 | |
| 84 | obj = qdict_get(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 85 | g_assert(obj != NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 86 | |
| 87 | qi = qobject_to_qint(obj); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 88 | g_assert(qint_get_int(qi) == value); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 89 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 90 | QDECREF(tests_dict); |
| 91 | } |
| 92 | |
| 93 | static void qdict_get_int_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 94 | { |
| 95 | int ret; |
| 96 | const int value = 100; |
| 97 | const char *key = "int"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 98 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 99 | |
| 100 | qdict_put(tests_dict, key, qint_from_int(value)); |
| 101 | |
| 102 | ret = qdict_get_int(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 103 | g_assert(ret == value); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 104 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 105 | QDECREF(tests_dict); |
| 106 | } |
| 107 | |
| 108 | static void qdict_get_try_int_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 109 | { |
| 110 | int ret; |
| 111 | const int value = 100; |
| 112 | const char *key = "int"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 113 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 114 | |
| 115 | qdict_put(tests_dict, key, qint_from_int(value)); |
| 116 | |
| 117 | ret = qdict_get_try_int(tests_dict, key, 0); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 118 | g_assert(ret == value); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 119 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 120 | QDECREF(tests_dict); |
| 121 | } |
| 122 | |
| 123 | static void qdict_get_str_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 124 | { |
| 125 | const char *p; |
| 126 | const char *key = "key"; |
| 127 | const char *str = "string"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 128 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 129 | |
| 130 | qdict_put(tests_dict, key, qstring_from_str(str)); |
| 131 | |
| 132 | p = qdict_get_str(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 133 | g_assert(p != NULL); |
| 134 | g_assert(strcmp(p, str) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 135 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 136 | QDECREF(tests_dict); |
| 137 | } |
| 138 | |
| 139 | static void qdict_get_try_str_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 140 | { |
| 141 | const char *p; |
| 142 | const char *key = "key"; |
| 143 | const char *str = "string"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 144 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 145 | |
| 146 | qdict_put(tests_dict, key, qstring_from_str(str)); |
| 147 | |
| 148 | p = qdict_get_try_str(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 149 | g_assert(p != NULL); |
| 150 | g_assert(strcmp(p, str) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 151 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 152 | QDECREF(tests_dict); |
| 153 | } |
| 154 | |
| 155 | static void qdict_haskey_not_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 156 | { |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 157 | QDict *tests_dict = qdict_new(); |
| 158 | g_assert(qdict_haskey(tests_dict, "test") == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 159 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 160 | QDECREF(tests_dict); |
| 161 | } |
| 162 | |
| 163 | static void qdict_haskey_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 164 | { |
| 165 | const char *key = "test"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 166 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 167 | |
| 168 | qdict_put(tests_dict, key, qint_from_int(0)); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 169 | g_assert(qdict_haskey(tests_dict, key) == 1); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 170 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 171 | QDECREF(tests_dict); |
| 172 | } |
| 173 | |
| 174 | static void qdict_del_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 175 | { |
| 176 | const char *key = "key test"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 177 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 178 | |
| 179 | qdict_put(tests_dict, key, qstring_from_str("foo")); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 180 | g_assert(qdict_size(tests_dict) == 1); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 181 | |
| 182 | qdict_del(tests_dict, key); |
| 183 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 184 | g_assert(qdict_size(tests_dict) == 0); |
| 185 | g_assert(qdict_haskey(tests_dict, key) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 186 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 187 | QDECREF(tests_dict); |
| 188 | } |
| 189 | |
| 190 | static void qobject_to_qdict_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 191 | { |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 192 | QDict *tests_dict = qdict_new(); |
| 193 | g_assert(qobject_to_qdict(QOBJECT(tests_dict)) == tests_dict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 194 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 195 | QDECREF(tests_dict); |
| 196 | } |
| 197 | |
| 198 | static void qdict_iterapi_test(void) |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 199 | { |
| 200 | int count; |
| 201 | const QDictEntry *ent; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 202 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 203 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 204 | g_assert(qdict_first(tests_dict) == NULL); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 205 | |
| 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)); |
| 209 | |
| 210 | count = 0; |
| 211 | for (ent = qdict_first(tests_dict); ent; ent = qdict_next(tests_dict, ent)){ |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 212 | g_assert(qdict_haskey(tests_dict, qdict_entry_key(ent)) == 1); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 213 | count++; |
| 214 | } |
| 215 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 216 | g_assert(count == qdict_size(tests_dict)); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 217 | |
| 218 | /* Do it again to test restarting */ |
| 219 | count = 0; |
| 220 | for (ent = qdict_first(tests_dict); ent; ent = qdict_next(tests_dict, ent)){ |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 221 | g_assert(qdict_haskey(tests_dict, qdict_entry_key(ent)) == 1); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 222 | count++; |
| 223 | } |
| 224 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 225 | g_assert(count == qdict_size(tests_dict)); |
| 226 | |
| 227 | QDECREF(tests_dict); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 228 | } |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 229 | |
Max Reitz | 3fb1177 | 2013-12-20 19:28:22 +0100 | [diff] [blame] | 230 | static void qdict_flatten_test(void) |
| 231 | { |
| 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(); |
| 237 | |
| 238 | /* |
| 239 | * Test the flattening of |
| 240 | * |
| 241 | * { |
| 242 | * "e": [ |
| 243 | * 42, |
| 244 | * [ |
| 245 | * 23, |
| 246 | * 66, |
| 247 | * { |
| 248 | * "a": 0, |
| 249 | * "b": 1 |
| 250 | * } |
| 251 | * ] |
| 252 | * ], |
| 253 | * "f": { |
| 254 | * "c": 2, |
| 255 | * "d": 3, |
| 256 | * }, |
| 257 | * "g": 4 |
| 258 | * } |
| 259 | * |
| 260 | * to |
| 261 | * |
| 262 | * { |
| 263 | * "e.0": 42, |
| 264 | * "e.1.0": 23, |
| 265 | * "e.1.1": 66, |
| 266 | * "e.1.2.a": 0, |
| 267 | * "e.1.2.b": 1, |
| 268 | * "f.c": 2, |
| 269 | * "f.d": 3, |
| 270 | * "g": 4 |
| 271 | * } |
| 272 | */ |
| 273 | |
| 274 | qdict_put(dict1, "a", qint_from_int(0)); |
| 275 | qdict_put(dict1, "b", qint_from_int(1)); |
| 276 | |
| 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)); |
| 282 | |
| 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)); |
| 288 | |
| 289 | qdict_flatten(dict3); |
| 290 | |
| 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); |
| 299 | |
| 300 | g_assert(qdict_size(dict3) == 8); |
| 301 | |
| 302 | QDECREF(dict3); |
| 303 | } |
| 304 | |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 305 | static void qdict_array_split_test(void) |
| 306 | { |
| 307 | QDict *test_dict = qdict_new(); |
| 308 | QDict *dict1, *dict2; |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 309 | QInt *int1; |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 310 | QList *test_list; |
| 311 | |
| 312 | /* |
| 313 | * Test the split of |
| 314 | * |
| 315 | * { |
| 316 | * "1.x": 0, |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 317 | * "4.y": 1, |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 318 | * "0.a": 42, |
| 319 | * "o.o": 7, |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 320 | * "0.b": 23, |
| 321 | * "2": 66 |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 322 | * } |
| 323 | * |
| 324 | * to |
| 325 | * |
| 326 | * [ |
| 327 | * { |
| 328 | * "a": 42, |
| 329 | * "b": 23 |
| 330 | * }, |
| 331 | * { |
| 332 | * "x": 0 |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 333 | * }, |
| 334 | * 66 |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 335 | * ] |
| 336 | * |
| 337 | * and |
| 338 | * |
| 339 | * { |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 340 | * "4.y": 1, |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 341 | * "o.o": 7 |
| 342 | * } |
| 343 | * |
| 344 | * (remaining in the old QDict) |
| 345 | * |
| 346 | * This example is given in the comment of qdict_array_split(). |
| 347 | */ |
| 348 | |
| 349 | qdict_put(test_dict, "1.x", qint_from_int(0)); |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 350 | qdict_put(test_dict, "4.y", qint_from_int(1)); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 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)); |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 354 | qdict_put(test_dict, "2", qint_from_int(66)); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 355 | |
| 356 | qdict_array_split(test_dict, &test_list); |
| 357 | |
| 358 | dict1 = qobject_to_qdict(qlist_pop(test_list)); |
| 359 | dict2 = qobject_to_qdict(qlist_pop(test_list)); |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 360 | int1 = qobject_to_qint(qlist_pop(test_list)); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 361 | |
| 362 | g_assert(dict1); |
| 363 | g_assert(dict2); |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 364 | g_assert(int1); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 365 | g_assert(qlist_empty(test_list)); |
| 366 | |
| 367 | QDECREF(test_list); |
| 368 | |
| 369 | g_assert(qdict_get_int(dict1, "a") == 42); |
| 370 | g_assert(qdict_get_int(dict1, "b") == 23); |
| 371 | |
| 372 | g_assert(qdict_size(dict1) == 2); |
| 373 | |
| 374 | QDECREF(dict1); |
| 375 | |
| 376 | g_assert(qdict_get_int(dict2, "x") == 0); |
| 377 | |
| 378 | g_assert(qdict_size(dict2) == 1); |
| 379 | |
| 380 | QDECREF(dict2); |
| 381 | |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 382 | g_assert(qint_get_int(int1) == 66); |
| 383 | |
| 384 | QDECREF(int1); |
| 385 | |
| 386 | g_assert(qdict_get_int(test_dict, "4.y") == 1); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 387 | g_assert(qdict_get_int(test_dict, "o.o") == 7); |
| 388 | |
| 389 | g_assert(qdict_size(test_dict) == 2); |
| 390 | |
| 391 | QDECREF(test_dict); |
Max Reitz | 6475758 | 2014-02-21 21:05:13 +0100 | [diff] [blame] | 392 | |
| 393 | |
| 394 | /* |
| 395 | * Test the split of |
| 396 | * |
| 397 | * { |
| 398 | * "0": 42, |
| 399 | * "1": 23, |
| 400 | * "1.x": 84 |
| 401 | * } |
| 402 | * |
| 403 | * to |
| 404 | * |
| 405 | * [ |
| 406 | * 42 |
| 407 | * ] |
| 408 | * |
| 409 | * and |
| 410 | * |
| 411 | * { |
| 412 | * "1": 23, |
| 413 | * "1.x": 84 |
| 414 | * } |
| 415 | * |
| 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. |
| 418 | */ |
| 419 | |
| 420 | test_dict = qdict_new(); |
| 421 | |
| 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)); |
| 425 | |
| 426 | qdict_array_split(test_dict, &test_list); |
| 427 | |
| 428 | int1 = qobject_to_qint(qlist_pop(test_list)); |
| 429 | |
| 430 | g_assert(int1); |
| 431 | g_assert(qlist_empty(test_list)); |
| 432 | |
| 433 | QDECREF(test_list); |
| 434 | |
| 435 | g_assert(qint_get_int(int1) == 42); |
| 436 | |
| 437 | QDECREF(int1); |
| 438 | |
| 439 | g_assert(qdict_get_int(test_dict, "1") == 23); |
| 440 | g_assert(qdict_get_int(test_dict, "1.x") == 84); |
| 441 | |
| 442 | g_assert(qdict_size(test_dict) == 2); |
| 443 | |
| 444 | QDECREF(test_dict); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 445 | } |
| 446 | |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 447 | static void qdict_join_test(void) |
| 448 | { |
| 449 | QDict *dict1, *dict2; |
| 450 | bool overwrite = false; |
| 451 | int i; |
| 452 | |
| 453 | dict1 = qdict_new(); |
| 454 | dict2 = qdict_new(); |
| 455 | |
| 456 | |
| 457 | /* Test everything once without overwrite and once with */ |
| 458 | do |
| 459 | { |
| 460 | /* Test empty dicts */ |
| 461 | qdict_join(dict1, dict2, overwrite); |
| 462 | |
| 463 | g_assert(qdict_size(dict1) == 0); |
| 464 | g_assert(qdict_size(dict2) == 0); |
| 465 | |
| 466 | |
| 467 | /* First iteration: Test movement */ |
| 468 | /* Second iteration: Test empty source and non-empty destination */ |
| 469 | qdict_put(dict2, "foo", qint_from_int(42)); |
| 470 | |
| 471 | for (i = 0; i < 2; i++) { |
| 472 | qdict_join(dict1, dict2, overwrite); |
| 473 | |
| 474 | g_assert(qdict_size(dict1) == 1); |
| 475 | g_assert(qdict_size(dict2) == 0); |
| 476 | |
| 477 | g_assert(qdict_get_int(dict1, "foo") == 42); |
| 478 | } |
| 479 | |
| 480 | |
| 481 | /* Test non-empty source and destination without conflict */ |
| 482 | qdict_put(dict2, "bar", qint_from_int(23)); |
| 483 | |
| 484 | qdict_join(dict1, dict2, overwrite); |
| 485 | |
| 486 | g_assert(qdict_size(dict1) == 2); |
| 487 | g_assert(qdict_size(dict2) == 0); |
| 488 | |
| 489 | g_assert(qdict_get_int(dict1, "foo") == 42); |
| 490 | g_assert(qdict_get_int(dict1, "bar") == 23); |
| 491 | |
| 492 | |
| 493 | /* Test conflict */ |
| 494 | qdict_put(dict2, "foo", qint_from_int(84)); |
| 495 | |
| 496 | qdict_join(dict1, dict2, overwrite); |
| 497 | |
| 498 | g_assert(qdict_size(dict1) == 2); |
| 499 | g_assert(qdict_size(dict2) == !overwrite); |
| 500 | |
| 501 | g_assert(qdict_get_int(dict1, "foo") == overwrite ? 84 : 42); |
| 502 | g_assert(qdict_get_int(dict1, "bar") == 23); |
| 503 | |
| 504 | if (!overwrite) { |
| 505 | g_assert(qdict_get_int(dict2, "foo") == 84); |
| 506 | } |
| 507 | |
| 508 | |
| 509 | /* Check the references */ |
| 510 | g_assert(qdict_get(dict1, "foo")->refcnt == 1); |
| 511 | g_assert(qdict_get(dict1, "bar")->refcnt == 1); |
| 512 | |
| 513 | if (!overwrite) { |
| 514 | g_assert(qdict_get(dict2, "foo")->refcnt == 1); |
| 515 | } |
| 516 | |
| 517 | |
| 518 | /* Clean up */ |
| 519 | qdict_del(dict1, "foo"); |
| 520 | qdict_del(dict1, "bar"); |
| 521 | |
| 522 | if (!overwrite) { |
| 523 | qdict_del(dict2, "foo"); |
| 524 | } |
| 525 | } |
| 526 | while (overwrite ^= true); |
| 527 | |
| 528 | |
| 529 | QDECREF(dict1); |
| 530 | QDECREF(dict2); |
| 531 | } |
| 532 | |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 533 | /* |
| 534 | * Errors test-cases |
| 535 | */ |
| 536 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 537 | static void qdict_put_exists_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 538 | { |
| 539 | int value; |
| 540 | const char *key = "exists"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 541 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 542 | |
| 543 | qdict_put(tests_dict, key, qint_from_int(1)); |
| 544 | qdict_put(tests_dict, key, qint_from_int(2)); |
| 545 | |
| 546 | value = qdict_get_int(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 547 | g_assert(value == 2); |
Luiz Capitulino | 29ec315 | 2009-12-14 18:53:20 -0200 | [diff] [blame] | 548 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 549 | g_assert(qdict_size(tests_dict) == 1); |
| 550 | |
| 551 | QDECREF(tests_dict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 552 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 553 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 554 | static void qdict_get_not_exists_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 555 | { |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 556 | QDict *tests_dict = qdict_new(); |
| 557 | g_assert(qdict_get(tests_dict, "foo") == NULL); |
| 558 | |
| 559 | QDECREF(tests_dict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 560 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 561 | |
| 562 | /* |
| 563 | * Stress test-case |
| 564 | * |
| 565 | * This is a lot big for a unit-test, but there is no other place |
| 566 | * to have it. |
| 567 | */ |
| 568 | |
| 569 | static void remove_dots(char *string) |
| 570 | { |
| 571 | char *p = strchr(string, ':'); |
| 572 | if (p) |
| 573 | *p = '\0'; |
| 574 | } |
| 575 | |
| 576 | static QString *read_line(FILE *file, char *key) |
| 577 | { |
| 578 | char value[128]; |
| 579 | |
Stefan Weil | 7464f05 | 2011-01-21 22:50:30 +0100 | [diff] [blame] | 580 | if (fscanf(file, "%127s%127s", key, value) == EOF) { |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 581 | return NULL; |
Stefan Weil | 7464f05 | 2011-01-21 22:50:30 +0100 | [diff] [blame] | 582 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 583 | remove_dots(key); |
| 584 | return qstring_from_str(value); |
| 585 | } |
| 586 | |
| 587 | #define reset_file(file) fseek(file, 0L, SEEK_SET) |
| 588 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 589 | static void qdict_stress_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 590 | { |
| 591 | size_t lines; |
| 592 | char key[128]; |
| 593 | FILE *test_file; |
| 594 | QDict *qdict; |
| 595 | QString *value; |
| 596 | const char *test_file_path = "qdict-test-data.txt"; |
| 597 | |
| 598 | test_file = fopen(test_file_path, "r"); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 599 | g_assert(test_file != NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 600 | |
| 601 | // Create the dict |
| 602 | qdict = qdict_new(); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 603 | g_assert(qdict != NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 604 | |
| 605 | // Add everything from the test file |
| 606 | for (lines = 0;; lines++) { |
| 607 | value = read_line(test_file, key); |
| 608 | if (!value) |
| 609 | break; |
| 610 | |
| 611 | qdict_put(qdict, key, value); |
| 612 | } |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 613 | g_assert(qdict_size(qdict) == lines); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 614 | |
| 615 | // Check if everything is really in there |
| 616 | reset_file(test_file); |
| 617 | for (;;) { |
| 618 | const char *str1, *str2; |
| 619 | |
| 620 | value = read_line(test_file, key); |
| 621 | if (!value) |
| 622 | break; |
| 623 | |
| 624 | str1 = qstring_get_str(value); |
| 625 | |
| 626 | str2 = qdict_get_str(qdict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 627 | g_assert(str2 != NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 628 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 629 | g_assert(strcmp(str1, str2) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 630 | |
| 631 | QDECREF(value); |
| 632 | } |
| 633 | |
| 634 | // Delete everything |
| 635 | reset_file(test_file); |
| 636 | for (;;) { |
| 637 | value = read_line(test_file, key); |
| 638 | if (!value) |
| 639 | break; |
| 640 | |
| 641 | qdict_del(qdict, key); |
| 642 | QDECREF(value); |
| 643 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 644 | g_assert(qdict_haskey(qdict, key) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 645 | } |
| 646 | fclose(test_file); |
| 647 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 648 | g_assert(qdict_size(qdict) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 649 | QDECREF(qdict); |
| 650 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 651 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 652 | int main(int argc, char **argv) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 653 | { |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 654 | g_test_init(&argc, &argv, NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 655 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 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); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 659 | |
| 660 | /* Continue, but now with fixtures */ |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 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); |
Max Reitz | 3fb1177 | 2013-12-20 19:28:22 +0100 | [diff] [blame] | 671 | g_test_add_func("/public/flatten", qdict_flatten_test); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 672 | g_test_add_func("/public/array_split", qdict_array_split_test); |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 673 | g_test_add_func("/public/join", qdict_join_test); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 674 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 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); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 677 | |
| 678 | /* The Big one */ |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 679 | if (g_test_slow()) { |
| 680 | g_test_add_func("/stress/test", qdict_stress_test); |
| 681 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 682 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 683 | return g_test_run(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 684 | } |