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 | */ |
Peter Maydell | 681c28a | 2016-02-08 18:08:51 +0000 | [diff] [blame] | 12 | #include "qemu/osdep.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" |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 17 | #include "qapi/error.h" |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 18 | #include "qemu-common.h" |
| 19 | |
| 20 | /* |
| 21 | * Public Interface test-cases |
| 22 | * |
| 23 | * (with some violations to access 'private' data) |
| 24 | */ |
| 25 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 26 | static void qdict_new_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 27 | { |
| 28 | QDict *qdict; |
| 29 | |
| 30 | qdict = qdict_new(); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 31 | g_assert(qdict != NULL); |
| 32 | g_assert(qdict_size(qdict) == 0); |
| 33 | g_assert(qdict->base.refcnt == 1); |
| 34 | g_assert(qobject_type(QOBJECT(qdict)) == QTYPE_QDICT); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 35 | |
| 36 | // destroy doesn't exit yet |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 37 | g_free(qdict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 38 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 39 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 40 | static void qdict_put_obj_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 41 | { |
| 42 | QInt *qi; |
| 43 | QDict *qdict; |
| 44 | QDictEntry *ent; |
| 45 | const int num = 42; |
| 46 | |
| 47 | qdict = qdict_new(); |
| 48 | |
| 49 | // key "" will have tdb hash 12345 |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 50 | qdict_put_int(qdict, "", num); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 51 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 52 | g_assert(qdict_size(qdict) == 1); |
Luiz Capitulino | c8bc3cd | 2010-06-07 15:45:22 -0300 | [diff] [blame] | 53 | ent = QLIST_FIRST(&qdict->table[12345 % QDICT_BUCKET_MAX]); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 54 | qi = qobject_to_qint(ent->value); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 55 | g_assert(qint_get_int(qi) == num); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 56 | |
| 57 | // destroy doesn't exit yet |
| 58 | QDECREF(qi); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 59 | g_free(ent->key); |
| 60 | g_free(ent); |
| 61 | g_free(qdict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 62 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 63 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 64 | static void qdict_destroy_simple_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 65 | { |
| 66 | QDict *qdict; |
| 67 | |
| 68 | qdict = qdict_new(); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 69 | qdict_put_int(qdict, "num", 0); |
| 70 | qdict_put_str(qdict, "str", "foo"); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 71 | |
| 72 | QDECREF(qdict); |
| 73 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 74 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 75 | static void qdict_get_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 76 | { |
| 77 | QInt *qi; |
| 78 | QObject *obj; |
| 79 | const int value = -42; |
| 80 | const char *key = "test"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 81 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 82 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 83 | qdict_put_int(tests_dict, key, value); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 84 | |
| 85 | obj = qdict_get(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 86 | g_assert(obj != NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 87 | |
| 88 | qi = qobject_to_qint(obj); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 89 | g_assert(qint_get_int(qi) == value); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 90 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 91 | QDECREF(tests_dict); |
| 92 | } |
| 93 | |
| 94 | static void qdict_get_int_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 95 | { |
| 96 | int ret; |
| 97 | const int value = 100; |
| 98 | const char *key = "int"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 99 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 100 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 101 | qdict_put_int(tests_dict, key, value); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 102 | |
| 103 | ret = qdict_get_int(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 104 | g_assert(ret == value); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 105 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 106 | QDECREF(tests_dict); |
| 107 | } |
| 108 | |
| 109 | static void qdict_get_try_int_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 110 | { |
| 111 | int ret; |
| 112 | const int value = 100; |
| 113 | const char *key = "int"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 114 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 115 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 116 | qdict_put_int(tests_dict, key, value); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 117 | |
| 118 | ret = qdict_get_try_int(tests_dict, key, 0); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 119 | g_assert(ret == value); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 120 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 121 | QDECREF(tests_dict); |
| 122 | } |
| 123 | |
| 124 | static void qdict_get_str_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 125 | { |
| 126 | const char *p; |
| 127 | const char *key = "key"; |
| 128 | const char *str = "string"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 129 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 130 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 131 | qdict_put_str(tests_dict, key, str); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 132 | |
| 133 | p = qdict_get_str(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 134 | g_assert(p != NULL); |
| 135 | g_assert(strcmp(p, str) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 136 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 137 | QDECREF(tests_dict); |
| 138 | } |
| 139 | |
| 140 | static void qdict_get_try_str_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 141 | { |
| 142 | const char *p; |
| 143 | const char *key = "key"; |
| 144 | const char *str = "string"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 145 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 146 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 147 | qdict_put_str(tests_dict, key, str); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 148 | |
| 149 | p = qdict_get_try_str(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 150 | g_assert(p != NULL); |
| 151 | g_assert(strcmp(p, str) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 152 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 153 | QDECREF(tests_dict); |
| 154 | } |
| 155 | |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 156 | static void qdict_defaults_test(void) |
| 157 | { |
| 158 | QDict *dict, *copy; |
| 159 | |
| 160 | dict = qdict_new(); |
| 161 | copy = qdict_new(); |
| 162 | |
| 163 | qdict_set_default_str(dict, "foo", "abc"); |
| 164 | qdict_set_default_str(dict, "foo", "def"); |
| 165 | g_assert_cmpstr(qdict_get_str(dict, "foo"), ==, "abc"); |
| 166 | qdict_set_default_str(dict, "bar", "ghi"); |
| 167 | |
| 168 | qdict_copy_default(copy, dict, "foo"); |
| 169 | g_assert_cmpstr(qdict_get_str(copy, "foo"), ==, "abc"); |
| 170 | qdict_set_default_str(copy, "bar", "xyz"); |
| 171 | qdict_copy_default(copy, dict, "bar"); |
| 172 | g_assert_cmpstr(qdict_get_str(copy, "bar"), ==, "xyz"); |
| 173 | |
| 174 | QDECREF(copy); |
| 175 | QDECREF(dict); |
| 176 | } |
| 177 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 178 | static void qdict_haskey_not_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 179 | { |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 180 | QDict *tests_dict = qdict_new(); |
| 181 | g_assert(qdict_haskey(tests_dict, "test") == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 182 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 183 | QDECREF(tests_dict); |
| 184 | } |
| 185 | |
| 186 | static void qdict_haskey_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 187 | { |
| 188 | const char *key = "test"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 189 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 190 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 191 | qdict_put_int(tests_dict, key, 0); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 192 | g_assert(qdict_haskey(tests_dict, key) == 1); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 193 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 194 | QDECREF(tests_dict); |
| 195 | } |
| 196 | |
| 197 | static void qdict_del_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 198 | { |
| 199 | const char *key = "key test"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 200 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 201 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 202 | qdict_put_str(tests_dict, key, "foo"); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 203 | g_assert(qdict_size(tests_dict) == 1); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 204 | |
| 205 | qdict_del(tests_dict, key); |
| 206 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 207 | g_assert(qdict_size(tests_dict) == 0); |
| 208 | g_assert(qdict_haskey(tests_dict, key) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 209 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 210 | QDECREF(tests_dict); |
| 211 | } |
| 212 | |
| 213 | static void qobject_to_qdict_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 214 | { |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 215 | QDict *tests_dict = qdict_new(); |
| 216 | g_assert(qobject_to_qdict(QOBJECT(tests_dict)) == tests_dict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 217 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 218 | QDECREF(tests_dict); |
| 219 | } |
| 220 | |
| 221 | static void qdict_iterapi_test(void) |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 222 | { |
| 223 | int count; |
| 224 | const QDictEntry *ent; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 225 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 226 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 227 | g_assert(qdict_first(tests_dict) == NULL); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 228 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 229 | qdict_put_int(tests_dict, "key1", 1); |
| 230 | qdict_put_int(tests_dict, "key2", 2); |
| 231 | qdict_put_int(tests_dict, "key3", 3); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 232 | |
| 233 | count = 0; |
| 234 | 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] | 235 | g_assert(qdict_haskey(tests_dict, qdict_entry_key(ent)) == 1); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 236 | count++; |
| 237 | } |
| 238 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 239 | g_assert(count == qdict_size(tests_dict)); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 240 | |
| 241 | /* Do it again to test restarting */ |
| 242 | count = 0; |
| 243 | 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] | 244 | g_assert(qdict_haskey(tests_dict, qdict_entry_key(ent)) == 1); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 245 | count++; |
| 246 | } |
| 247 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 248 | g_assert(count == qdict_size(tests_dict)); |
| 249 | |
| 250 | QDECREF(tests_dict); |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 251 | } |
Luiz Capitulino | d02c6bd | 2010-06-07 15:29:58 -0300 | [diff] [blame] | 252 | |
Max Reitz | 3fb1177 | 2013-12-20 19:28:22 +0100 | [diff] [blame] | 253 | static void qdict_flatten_test(void) |
| 254 | { |
| 255 | QList *list1 = qlist_new(); |
| 256 | QList *list2 = qlist_new(); |
| 257 | QDict *dict1 = qdict_new(); |
| 258 | QDict *dict2 = qdict_new(); |
| 259 | QDict *dict3 = qdict_new(); |
| 260 | |
| 261 | /* |
| 262 | * Test the flattening of |
| 263 | * |
| 264 | * { |
| 265 | * "e": [ |
| 266 | * 42, |
| 267 | * [ |
| 268 | * 23, |
| 269 | * 66, |
| 270 | * { |
| 271 | * "a": 0, |
| 272 | * "b": 1 |
| 273 | * } |
| 274 | * ] |
| 275 | * ], |
| 276 | * "f": { |
| 277 | * "c": 2, |
| 278 | * "d": 3, |
| 279 | * }, |
| 280 | * "g": 4 |
| 281 | * } |
| 282 | * |
| 283 | * to |
| 284 | * |
| 285 | * { |
| 286 | * "e.0": 42, |
| 287 | * "e.1.0": 23, |
| 288 | * "e.1.1": 66, |
| 289 | * "e.1.2.a": 0, |
| 290 | * "e.1.2.b": 1, |
| 291 | * "f.c": 2, |
| 292 | * "f.d": 3, |
| 293 | * "g": 4 |
| 294 | * } |
| 295 | */ |
| 296 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 297 | qdict_put_int(dict1, "a", 0); |
| 298 | qdict_put_int(dict1, "b", 1); |
Max Reitz | 3fb1177 | 2013-12-20 19:28:22 +0100 | [diff] [blame] | 299 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 300 | qlist_append_int(list1, 23); |
| 301 | qlist_append_int(list1, 66); |
Eric Blake | de6e795 | 2017-04-27 16:58:15 -0500 | [diff] [blame] | 302 | qlist_append(list1, dict1); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 303 | qlist_append_int(list2, 42); |
Eric Blake | de6e795 | 2017-04-27 16:58:15 -0500 | [diff] [blame] | 304 | qlist_append(list2, list1); |
Max Reitz | 3fb1177 | 2013-12-20 19:28:22 +0100 | [diff] [blame] | 305 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 306 | qdict_put_int(dict2, "c", 2); |
| 307 | qdict_put_int(dict2, "d", 3); |
Eric Blake | de6e795 | 2017-04-27 16:58:15 -0500 | [diff] [blame] | 308 | qdict_put(dict3, "e", list2); |
| 309 | qdict_put(dict3, "f", dict2); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 310 | qdict_put_int(dict3, "g", 4); |
Max Reitz | 3fb1177 | 2013-12-20 19:28:22 +0100 | [diff] [blame] | 311 | |
| 312 | qdict_flatten(dict3); |
| 313 | |
| 314 | g_assert(qdict_get_int(dict3, "e.0") == 42); |
| 315 | g_assert(qdict_get_int(dict3, "e.1.0") == 23); |
| 316 | g_assert(qdict_get_int(dict3, "e.1.1") == 66); |
| 317 | g_assert(qdict_get_int(dict3, "e.1.2.a") == 0); |
| 318 | g_assert(qdict_get_int(dict3, "e.1.2.b") == 1); |
| 319 | g_assert(qdict_get_int(dict3, "f.c") == 2); |
| 320 | g_assert(qdict_get_int(dict3, "f.d") == 3); |
| 321 | g_assert(qdict_get_int(dict3, "g") == 4); |
| 322 | |
| 323 | g_assert(qdict_size(dict3) == 8); |
| 324 | |
| 325 | QDECREF(dict3); |
| 326 | } |
| 327 | |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 328 | static void qdict_array_split_test(void) |
| 329 | { |
| 330 | QDict *test_dict = qdict_new(); |
| 331 | QDict *dict1, *dict2; |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 332 | QInt *int1; |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 333 | QList *test_list; |
| 334 | |
| 335 | /* |
| 336 | * Test the split of |
| 337 | * |
| 338 | * { |
| 339 | * "1.x": 0, |
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 | * "0.a": 42, |
| 342 | * "o.o": 7, |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 343 | * "0.b": 23, |
| 344 | * "2": 66 |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 345 | * } |
| 346 | * |
| 347 | * to |
| 348 | * |
| 349 | * [ |
| 350 | * { |
| 351 | * "a": 42, |
| 352 | * "b": 23 |
| 353 | * }, |
| 354 | * { |
| 355 | * "x": 0 |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 356 | * }, |
| 357 | * 66 |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 358 | * ] |
| 359 | * |
| 360 | * and |
| 361 | * |
| 362 | * { |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 363 | * "4.y": 1, |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 364 | * "o.o": 7 |
| 365 | * } |
| 366 | * |
| 367 | * (remaining in the old QDict) |
| 368 | * |
| 369 | * This example is given in the comment of qdict_array_split(). |
| 370 | */ |
| 371 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 372 | qdict_put_int(test_dict, "1.x", 0); |
| 373 | qdict_put_int(test_dict, "4.y", 1); |
| 374 | qdict_put_int(test_dict, "0.a", 42); |
| 375 | qdict_put_int(test_dict, "o.o", 7); |
| 376 | qdict_put_int(test_dict, "0.b", 23); |
| 377 | qdict_put_int(test_dict, "2", 66); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 378 | |
| 379 | qdict_array_split(test_dict, &test_list); |
| 380 | |
| 381 | dict1 = qobject_to_qdict(qlist_pop(test_list)); |
| 382 | dict2 = qobject_to_qdict(qlist_pop(test_list)); |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 383 | int1 = qobject_to_qint(qlist_pop(test_list)); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 384 | |
| 385 | g_assert(dict1); |
| 386 | g_assert(dict2); |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 387 | g_assert(int1); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 388 | g_assert(qlist_empty(test_list)); |
| 389 | |
| 390 | QDECREF(test_list); |
| 391 | |
| 392 | g_assert(qdict_get_int(dict1, "a") == 42); |
| 393 | g_assert(qdict_get_int(dict1, "b") == 23); |
| 394 | |
| 395 | g_assert(qdict_size(dict1) == 2); |
| 396 | |
| 397 | QDECREF(dict1); |
| 398 | |
| 399 | g_assert(qdict_get_int(dict2, "x") == 0); |
| 400 | |
| 401 | g_assert(qdict_size(dict2) == 1); |
| 402 | |
| 403 | QDECREF(dict2); |
| 404 | |
Max Reitz | 7841c76 | 2014-02-21 19:11:41 +0100 | [diff] [blame] | 405 | g_assert(qint_get_int(int1) == 66); |
| 406 | |
| 407 | QDECREF(int1); |
| 408 | |
| 409 | g_assert(qdict_get_int(test_dict, "4.y") == 1); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 410 | g_assert(qdict_get_int(test_dict, "o.o") == 7); |
| 411 | |
| 412 | g_assert(qdict_size(test_dict) == 2); |
| 413 | |
| 414 | QDECREF(test_dict); |
Max Reitz | 6475758 | 2014-02-21 21:05:13 +0100 | [diff] [blame] | 415 | |
Max Reitz | 6475758 | 2014-02-21 21:05:13 +0100 | [diff] [blame] | 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 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 444 | qdict_put_int(test_dict, "0", 42); |
| 445 | qdict_put_int(test_dict, "1", 23); |
| 446 | qdict_put_int(test_dict, "1.x", 84); |
Max Reitz | 6475758 | 2014-02-21 21:05:13 +0100 | [diff] [blame] | 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); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 467 | } |
| 468 | |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 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 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 475 | qdict_put_int(dict, "bar", 0); |
| 476 | qdict_put_int(dict, "baz.0", 0); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 477 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, 0); |
| 478 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 479 | qdict_put_int(dict, "foo.1", 0); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 480 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, -EINVAL); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 481 | qdict_put_int(dict, "foo.0", 0); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 482 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, 2); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 483 | qdict_put_int(dict, "foo.bar", 0); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 484 | g_assert_cmpint(qdict_array_entries(dict, "foo."), ==, -EINVAL); |
| 485 | qdict_del(dict, "foo.bar"); |
| 486 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 487 | qdict_put_int(dict, "foo.2.a", 0); |
| 488 | qdict_put_int(dict, "foo.2.b", 0); |
| 489 | qdict_put_int(dict, "foo.2.c", 0); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 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(); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 496 | qdict_put_int(dict, "1", 0); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 497 | g_assert_cmpint(qdict_array_entries(dict, ""), ==, -EINVAL); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 498 | qdict_put_int(dict, "0", 0); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 499 | g_assert_cmpint(qdict_array_entries(dict, ""), ==, 2); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 500 | qdict_put_int(dict, "bar", 0); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 501 | g_assert_cmpint(qdict_array_entries(dict, ""), ==, -EINVAL); |
| 502 | qdict_del(dict, "bar"); |
| 503 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 504 | qdict_put_int(dict, "2.a", 0); |
| 505 | qdict_put_int(dict, "2.b", 0); |
| 506 | qdict_put_int(dict, "2.c", 0); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 507 | g_assert_cmpint(qdict_array_entries(dict, ""), ==, 3); |
| 508 | |
| 509 | QDECREF(dict); |
| 510 | } |
| 511 | |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 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 | |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 521 | /* Test everything once without overwrite and once with */ |
| 522 | do |
| 523 | { |
| 524 | /* Test empty dicts */ |
| 525 | qdict_join(dict1, dict2, overwrite); |
| 526 | |
| 527 | g_assert(qdict_size(dict1) == 0); |
| 528 | g_assert(qdict_size(dict2) == 0); |
| 529 | |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 530 | /* First iteration: Test movement */ |
| 531 | /* Second iteration: Test empty source and non-empty destination */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 532 | qdict_put_int(dict2, "foo", 42); |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 533 | |
| 534 | for (i = 0; i < 2; i++) { |
| 535 | qdict_join(dict1, dict2, overwrite); |
| 536 | |
| 537 | g_assert(qdict_size(dict1) == 1); |
| 538 | g_assert(qdict_size(dict2) == 0); |
| 539 | |
| 540 | g_assert(qdict_get_int(dict1, "foo") == 42); |
| 541 | } |
| 542 | |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 543 | /* Test non-empty source and destination without conflict */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 544 | qdict_put_int(dict2, "bar", 23); |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 545 | |
| 546 | qdict_join(dict1, dict2, overwrite); |
| 547 | |
| 548 | g_assert(qdict_size(dict1) == 2); |
| 549 | g_assert(qdict_size(dict2) == 0); |
| 550 | |
| 551 | g_assert(qdict_get_int(dict1, "foo") == 42); |
| 552 | g_assert(qdict_get_int(dict1, "bar") == 23); |
| 553 | |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 554 | /* Test conflict */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 555 | qdict_put_int(dict2, "foo", 84); |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 556 | |
| 557 | qdict_join(dict1, dict2, overwrite); |
| 558 | |
| 559 | g_assert(qdict_size(dict1) == 2); |
| 560 | g_assert(qdict_size(dict2) == !overwrite); |
| 561 | |
Dr. David Alan Gilbert | de4598f | 2017-04-06 16:41:07 +0100 | [diff] [blame] | 562 | g_assert(qdict_get_int(dict1, "foo") == (overwrite ? 84 : 42)); |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 563 | g_assert(qdict_get_int(dict1, "bar") == 23); |
| 564 | |
| 565 | if (!overwrite) { |
| 566 | g_assert(qdict_get_int(dict2, "foo") == 84); |
| 567 | } |
| 568 | |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 569 | /* Check the references */ |
| 570 | g_assert(qdict_get(dict1, "foo")->refcnt == 1); |
| 571 | g_assert(qdict_get(dict1, "bar")->refcnt == 1); |
| 572 | |
| 573 | if (!overwrite) { |
| 574 | g_assert(qdict_get(dict2, "foo")->refcnt == 1); |
| 575 | } |
| 576 | |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 577 | /* Clean up */ |
| 578 | qdict_del(dict1, "foo"); |
| 579 | qdict_del(dict1, "bar"); |
| 580 | |
| 581 | if (!overwrite) { |
| 582 | qdict_del(dict2, "foo"); |
| 583 | } |
| 584 | } |
| 585 | while (overwrite ^= true); |
| 586 | |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 587 | QDECREF(dict1); |
| 588 | QDECREF(dict2); |
| 589 | } |
| 590 | |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 591 | static void qdict_crumple_test_recursive(void) |
| 592 | { |
| 593 | QDict *src, *dst, *rule, *vnc, *acl, *listen; |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 594 | QList *rules; |
| 595 | |
| 596 | src = qdict_new(); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 597 | qdict_put_str(src, "vnc.listen.addr", "127.0.0.1"); |
| 598 | qdict_put_str(src, "vnc.listen.port", "5901"); |
| 599 | qdict_put_str(src, "vnc.acl.rules.0.match", "fred"); |
| 600 | qdict_put_str(src, "vnc.acl.rules.0.policy", "allow"); |
| 601 | qdict_put_str(src, "vnc.acl.rules.1.match", "bob"); |
| 602 | qdict_put_str(src, "vnc.acl.rules.1.policy", "deny"); |
| 603 | qdict_put_str(src, "vnc.acl.default", "deny"); |
| 604 | qdict_put_str(src, "vnc.acl..name", "acl0"); |
| 605 | qdict_put_str(src, "vnc.acl.rule..name", "acl0"); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 606 | |
Markus Armbruster | ca6b6e1 | 2017-02-17 21:38:18 +0100 | [diff] [blame] | 607 | dst = qobject_to_qdict(qdict_crumple(src, &error_abort)); |
| 608 | g_assert(dst); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 609 | g_assert_cmpint(qdict_size(dst), ==, 1); |
| 610 | |
Markus Armbruster | ff9d389 | 2017-02-17 21:38:13 +0100 | [diff] [blame] | 611 | vnc = qdict_get_qdict(dst, "vnc"); |
| 612 | g_assert(vnc); |
Markus Armbruster | a68931e | 2017-02-17 21:38:14 +0100 | [diff] [blame] | 613 | g_assert_cmpint(qdict_size(vnc), ==, 3); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 614 | |
Markus Armbruster | ff9d389 | 2017-02-17 21:38:13 +0100 | [diff] [blame] | 615 | listen = qdict_get_qdict(vnc, "listen"); |
| 616 | g_assert(listen); |
Markus Armbruster | a68931e | 2017-02-17 21:38:14 +0100 | [diff] [blame] | 617 | g_assert_cmpint(qdict_size(listen), ==, 2); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 618 | g_assert_cmpstr("127.0.0.1", ==, qdict_get_str(listen, "addr")); |
| 619 | g_assert_cmpstr("5901", ==, qdict_get_str(listen, "port")); |
| 620 | |
Markus Armbruster | ff9d389 | 2017-02-17 21:38:13 +0100 | [diff] [blame] | 621 | acl = qdict_get_qdict(vnc, "acl"); |
| 622 | g_assert(acl); |
Markus Armbruster | a68931e | 2017-02-17 21:38:14 +0100 | [diff] [blame] | 623 | g_assert_cmpint(qdict_size(acl), ==, 3); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 624 | |
Markus Armbruster | ff9d389 | 2017-02-17 21:38:13 +0100 | [diff] [blame] | 625 | rules = qdict_get_qlist(acl, "rules"); |
| 626 | g_assert(rules); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 627 | g_assert_cmpint(qlist_size(rules), ==, 2); |
| 628 | |
| 629 | rule = qobject_to_qdict(qlist_pop(rules)); |
Markus Armbruster | a68931e | 2017-02-17 21:38:14 +0100 | [diff] [blame] | 630 | g_assert(rule); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 631 | g_assert_cmpint(qdict_size(rule), ==, 2); |
| 632 | g_assert_cmpstr("fred", ==, qdict_get_str(rule, "match")); |
| 633 | g_assert_cmpstr("allow", ==, qdict_get_str(rule, "policy")); |
| 634 | QDECREF(rule); |
| 635 | |
| 636 | rule = qobject_to_qdict(qlist_pop(rules)); |
Markus Armbruster | a68931e | 2017-02-17 21:38:14 +0100 | [diff] [blame] | 637 | g_assert(rule); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 638 | g_assert_cmpint(qdict_size(rule), ==, 2); |
| 639 | g_assert_cmpstr("bob", ==, qdict_get_str(rule, "match")); |
| 640 | g_assert_cmpstr("deny", ==, qdict_get_str(rule, "policy")); |
| 641 | QDECREF(rule); |
| 642 | |
| 643 | /* With recursive crumpling, we should see all names unescaped */ |
| 644 | g_assert_cmpstr("acl0", ==, qdict_get_str(vnc, "acl.name")); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 645 | g_assert_cmpstr("acl0", ==, qdict_get_str(acl, "rule.name")); |
| 646 | |
| 647 | QDECREF(src); |
| 648 | QDECREF(dst); |
| 649 | } |
| 650 | |
| 651 | static void qdict_crumple_test_empty(void) |
| 652 | { |
| 653 | QDict *src, *dst; |
| 654 | |
| 655 | src = qdict_new(); |
| 656 | |
| 657 | dst = (QDict *)qdict_crumple(src, &error_abort); |
| 658 | |
| 659 | g_assert_cmpint(qdict_size(dst), ==, 0); |
| 660 | |
| 661 | QDECREF(src); |
| 662 | QDECREF(dst); |
| 663 | } |
| 664 | |
| 665 | static void qdict_crumple_test_bad_inputs(void) |
| 666 | { |
| 667 | QDict *src; |
| 668 | Error *error = NULL; |
| 669 | |
| 670 | src = qdict_new(); |
| 671 | /* rule.0 can't be both a string and a dict */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 672 | qdict_put_str(src, "rule.0", "fred"); |
| 673 | qdict_put_str(src, "rule.0.policy", "allow"); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 674 | |
| 675 | g_assert(qdict_crumple(src, &error) == NULL); |
| 676 | g_assert(error != NULL); |
| 677 | error_free(error); |
| 678 | error = NULL; |
| 679 | QDECREF(src); |
| 680 | |
| 681 | src = qdict_new(); |
| 682 | /* rule can't be both a list and a dict */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 683 | qdict_put_str(src, "rule.0", "fred"); |
| 684 | qdict_put_str(src, "rule.a", "allow"); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 685 | |
| 686 | g_assert(qdict_crumple(src, &error) == NULL); |
| 687 | g_assert(error != NULL); |
| 688 | error_free(error); |
| 689 | error = NULL; |
| 690 | QDECREF(src); |
| 691 | |
| 692 | src = qdict_new(); |
| 693 | /* The input should be flat, ie no dicts or lists */ |
| 694 | qdict_put(src, "rule.a", qdict_new()); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 695 | qdict_put_str(src, "rule.b", "allow"); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 696 | |
| 697 | g_assert(qdict_crumple(src, &error) == NULL); |
| 698 | g_assert(error != NULL); |
| 699 | error_free(error); |
| 700 | error = NULL; |
| 701 | QDECREF(src); |
| 702 | |
| 703 | src = qdict_new(); |
| 704 | /* List indexes must not have gaps */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 705 | qdict_put_str(src, "rule.0", "deny"); |
| 706 | qdict_put_str(src, "rule.3", "allow"); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 707 | |
| 708 | g_assert(qdict_crumple(src, &error) == NULL); |
| 709 | g_assert(error != NULL); |
| 710 | error_free(error); |
| 711 | error = NULL; |
| 712 | QDECREF(src); |
| 713 | |
| 714 | src = qdict_new(); |
| 715 | /* List indexes must be in %zu format */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 716 | qdict_put_str(src, "rule.0", "deny"); |
| 717 | qdict_put_str(src, "rule.+1", "allow"); |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 718 | |
| 719 | g_assert(qdict_crumple(src, &error) == NULL); |
| 720 | g_assert(error != NULL); |
| 721 | error_free(error); |
| 722 | error = NULL; |
| 723 | QDECREF(src); |
| 724 | } |
| 725 | |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 726 | /* |
| 727 | * Errors test-cases |
| 728 | */ |
| 729 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 730 | static void qdict_put_exists_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 731 | { |
| 732 | int value; |
| 733 | const char *key = "exists"; |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 734 | QDict *tests_dict = qdict_new(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 735 | |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 736 | qdict_put_int(tests_dict, key, 1); |
| 737 | qdict_put_int(tests_dict, key, 2); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 738 | |
| 739 | value = qdict_get_int(tests_dict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 740 | g_assert(value == 2); |
Luiz Capitulino | 29ec315 | 2009-12-14 18:53:20 -0200 | [diff] [blame] | 741 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 742 | g_assert(qdict_size(tests_dict) == 1); |
| 743 | |
| 744 | QDECREF(tests_dict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 745 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 746 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 747 | static void qdict_get_not_exists_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 748 | { |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 749 | QDict *tests_dict = qdict_new(); |
| 750 | g_assert(qdict_get(tests_dict, "foo") == NULL); |
| 751 | |
| 752 | QDECREF(tests_dict); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 753 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 754 | |
| 755 | /* |
| 756 | * Stress test-case |
| 757 | * |
| 758 | * This is a lot big for a unit-test, but there is no other place |
| 759 | * to have it. |
| 760 | */ |
| 761 | |
| 762 | static void remove_dots(char *string) |
| 763 | { |
| 764 | char *p = strchr(string, ':'); |
| 765 | if (p) |
| 766 | *p = '\0'; |
| 767 | } |
| 768 | |
| 769 | static QString *read_line(FILE *file, char *key) |
| 770 | { |
| 771 | char value[128]; |
| 772 | |
Stefan Weil | 7464f05 | 2011-01-21 22:50:30 +0100 | [diff] [blame] | 773 | if (fscanf(file, "%127s%127s", key, value) == EOF) { |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 774 | return NULL; |
Stefan Weil | 7464f05 | 2011-01-21 22:50:30 +0100 | [diff] [blame] | 775 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 776 | remove_dots(key); |
| 777 | return qstring_from_str(value); |
| 778 | } |
| 779 | |
| 780 | #define reset_file(file) fseek(file, 0L, SEEK_SET) |
| 781 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 782 | static void qdict_stress_test(void) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 783 | { |
| 784 | size_t lines; |
| 785 | char key[128]; |
| 786 | FILE *test_file; |
| 787 | QDict *qdict; |
| 788 | QString *value; |
| 789 | const char *test_file_path = "qdict-test-data.txt"; |
| 790 | |
| 791 | test_file = fopen(test_file_path, "r"); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 792 | g_assert(test_file != NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 793 | |
| 794 | // Create the dict |
| 795 | qdict = qdict_new(); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 796 | g_assert(qdict != NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 797 | |
| 798 | // Add everything from the test file |
| 799 | for (lines = 0;; lines++) { |
| 800 | value = read_line(test_file, key); |
| 801 | if (!value) |
| 802 | break; |
| 803 | |
| 804 | qdict_put(qdict, key, value); |
| 805 | } |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 806 | g_assert(qdict_size(qdict) == lines); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 807 | |
| 808 | // Check if everything is really in there |
| 809 | reset_file(test_file); |
| 810 | for (;;) { |
| 811 | const char *str1, *str2; |
| 812 | |
| 813 | value = read_line(test_file, key); |
| 814 | if (!value) |
| 815 | break; |
| 816 | |
| 817 | str1 = qstring_get_str(value); |
| 818 | |
| 819 | str2 = qdict_get_str(qdict, key); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 820 | g_assert(str2 != NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 821 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 822 | g_assert(strcmp(str1, str2) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 823 | |
| 824 | QDECREF(value); |
| 825 | } |
| 826 | |
| 827 | // Delete everything |
| 828 | reset_file(test_file); |
| 829 | for (;;) { |
| 830 | value = read_line(test_file, key); |
| 831 | if (!value) |
| 832 | break; |
| 833 | |
| 834 | qdict_del(qdict, key); |
| 835 | QDECREF(value); |
| 836 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 837 | g_assert(qdict_haskey(qdict, key) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 838 | } |
| 839 | fclose(test_file); |
| 840 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 841 | g_assert(qdict_size(qdict) == 0); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 842 | QDECREF(qdict); |
| 843 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 844 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 845 | int main(int argc, char **argv) |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 846 | { |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 847 | g_test_init(&argc, &argv, NULL); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 848 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 849 | g_test_add_func("/public/new", qdict_new_test); |
| 850 | g_test_add_func("/public/put_obj", qdict_put_obj_test); |
| 851 | g_test_add_func("/public/destroy_simple", qdict_destroy_simple_test); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 852 | |
| 853 | /* Continue, but now with fixtures */ |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 854 | g_test_add_func("/public/get", qdict_get_test); |
| 855 | g_test_add_func("/public/get_int", qdict_get_int_test); |
| 856 | g_test_add_func("/public/get_try_int", qdict_get_try_int_test); |
| 857 | g_test_add_func("/public/get_str", qdict_get_str_test); |
| 858 | g_test_add_func("/public/get_try_str", qdict_get_try_str_test); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 859 | g_test_add_func("/public/defaults", qdict_defaults_test); |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 860 | g_test_add_func("/public/haskey_not", qdict_haskey_not_test); |
| 861 | g_test_add_func("/public/haskey", qdict_haskey_test); |
| 862 | g_test_add_func("/public/del", qdict_del_test); |
| 863 | g_test_add_func("/public/to_qdict", qobject_to_qdict_test); |
| 864 | g_test_add_func("/public/iterapi", qdict_iterapi_test); |
Max Reitz | 3fb1177 | 2013-12-20 19:28:22 +0100 | [diff] [blame] | 865 | g_test_add_func("/public/flatten", qdict_flatten_test); |
Max Reitz | be33134 | 2013-12-20 19:28:21 +0100 | [diff] [blame] | 866 | g_test_add_func("/public/array_split", qdict_array_split_test); |
Kevin Wolf | ef1919d | 2015-05-28 17:37:55 +0200 | [diff] [blame] | 867 | g_test_add_func("/public/array_entries", qdict_array_entries_test); |
Max Reitz | 8a5eb36 | 2014-05-08 20:12:40 +0200 | [diff] [blame] | 868 | g_test_add_func("/public/join", qdict_join_test); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 869 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 870 | g_test_add_func("/errors/put_exists", qdict_put_exists_test); |
| 871 | 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] | 872 | |
Daniel P. Berrange | 603476c | 2016-09-30 15:45:25 +0100 | [diff] [blame] | 873 | g_test_add_func("/public/crumple/recursive", |
| 874 | qdict_crumple_test_recursive); |
| 875 | g_test_add_func("/public/crumple/empty", |
| 876 | qdict_crumple_test_empty); |
| 877 | g_test_add_func("/public/crumple/bad_inputs", |
| 878 | qdict_crumple_test_bad_inputs); |
| 879 | |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 880 | /* The Big one */ |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 881 | if (g_test_slow()) { |
| 882 | g_test_add_func("/stress/test", qdict_stress_test); |
| 883 | } |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 884 | |
Anthony Liguori | ac531cb | 2012-01-10 13:10:44 -0600 | [diff] [blame] | 885 | return g_test_run(); |
Luiz Capitulino | 7b8c51a | 2009-08-28 15:27:32 -0300 | [diff] [blame] | 886 | } |