check-qdict.c 8.4 KB
Newer Older
L
Luiz Capitulino 已提交
1 2 3 4 5 6 7
/*
 * QDict unit-tests.
 *
 * Copyright (C) 2009 Red Hat Inc.
 *
 * Authors:
 *  Luiz Capitulino <lcapitulino@redhat.com>
L
Luiz Capitulino 已提交
8 9 10
 *
 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
 * See the COPYING.LIB file in the top-level directory.
L
Luiz Capitulino 已提交
11 12
 */

13
#include "qemu/osdep.h"
14
#include "qapi/qmp/qdict.h"
15 16
#include "qapi/qmp/qnum.h"
#include "qapi/qmp/qstring.h"
L
Luiz Capitulino 已提交
17 18 19 20 21 22 23

/*
 * Public Interface test-cases
 *
 * (with some violations to access 'private' data)
 */

A
Anthony Liguori 已提交
24
static void qdict_new_test(void)
L
Luiz Capitulino 已提交
25 26 27 28
{
    QDict *qdict;

    qdict = qdict_new();
A
Anthony Liguori 已提交
29 30 31 32
    g_assert(qdict != NULL);
    g_assert(qdict_size(qdict) == 0);
    g_assert(qdict->base.refcnt == 1);
    g_assert(qobject_type(QOBJECT(qdict)) == QTYPE_QDICT);
L
Luiz Capitulino 已提交
33

34
    qobject_unref(qdict);
L
Luiz Capitulino 已提交
35 36
}

A
Anthony Liguori 已提交
37
static void qdict_put_obj_test(void)
L
Luiz Capitulino 已提交
38
{
39
    QNum *qn;
L
Luiz Capitulino 已提交
40 41 42 43 44 45 46
    QDict *qdict;
    QDictEntry *ent;
    const int num = 42;

    qdict = qdict_new();

    // key "" will have tdb hash 12345
47
    qdict_put_int(qdict, "", num);
L
Luiz Capitulino 已提交
48

A
Anthony Liguori 已提交
49
    g_assert(qdict_size(qdict) == 1);
50
    ent = QLIST_FIRST(&qdict->table[12345 % QDICT_BUCKET_MAX]);
51
    qn = qobject_to(QNum, ent->value);
52
    g_assert_cmpint(qnum_get_int(qn), ==, num);
L
Luiz Capitulino 已提交
53

54
    qobject_unref(qdict);
L
Luiz Capitulino 已提交
55 56
}

A
Anthony Liguori 已提交
57
static void qdict_destroy_simple_test(void)
L
Luiz Capitulino 已提交
58 59 60 61
{
    QDict *qdict;

    qdict = qdict_new();
62 63
    qdict_put_int(qdict, "num", 0);
    qdict_put_str(qdict, "str", "foo");
L
Luiz Capitulino 已提交
64

65
    qobject_unref(qdict);
L
Luiz Capitulino 已提交
66 67
}

A
Anthony Liguori 已提交
68
static void qdict_get_test(void)
L
Luiz Capitulino 已提交
69
{
70
    QNum *qn;
L
Luiz Capitulino 已提交
71 72 73
    QObject *obj;
    const int value = -42;
    const char *key = "test";
A
Anthony Liguori 已提交
74
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
75

76
    qdict_put_int(tests_dict, key, value);
L
Luiz Capitulino 已提交
77 78

    obj = qdict_get(tests_dict, key);
A
Anthony Liguori 已提交
79
    g_assert(obj != NULL);
L
Luiz Capitulino 已提交
80

81
    qn = qobject_to(QNum, obj);
82
    g_assert_cmpint(qnum_get_int(qn), ==, value);
A
Anthony Liguori 已提交
83

84
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
85 86
}

A
Anthony Liguori 已提交
87
static void qdict_get_int_test(void)
L
Luiz Capitulino 已提交
88 89 90 91
{
    int ret;
    const int value = 100;
    const char *key = "int";
A
Anthony Liguori 已提交
92
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
93

94
    qdict_put_int(tests_dict, key, value);
L
Luiz Capitulino 已提交
95 96

    ret = qdict_get_int(tests_dict, key);
A
Anthony Liguori 已提交
97 98
    g_assert(ret == value);

99
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
100 101
}

A
Anthony Liguori 已提交
102
static void qdict_get_try_int_test(void)
L
Luiz Capitulino 已提交
103 104 105 106
{
    int ret;
    const int value = 100;
    const char *key = "int";
A
Anthony Liguori 已提交
107
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
108

109
    qdict_put_int(tests_dict, key, value);
110
    qdict_put_str(tests_dict, "string", "test");
L
Luiz Capitulino 已提交
111 112

    ret = qdict_get_try_int(tests_dict, key, 0);
A
Anthony Liguori 已提交
113 114
    g_assert(ret == value);

115 116 117 118 119 120
    ret = qdict_get_try_int(tests_dict, "missing", -42);
    g_assert_cmpuint(ret, ==, -42);

    ret = qdict_get_try_int(tests_dict, "string", -42);
    g_assert_cmpuint(ret, ==, -42);

121
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
122 123
}

A
Anthony Liguori 已提交
124
static void qdict_get_str_test(void)
L
Luiz Capitulino 已提交
125 126 127 128
{
    const char *p;
    const char *key = "key";
    const char *str = "string";
A
Anthony Liguori 已提交
129
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
130

131
    qdict_put_str(tests_dict, key, str);
L
Luiz Capitulino 已提交
132 133

    p = qdict_get_str(tests_dict, key);
A
Anthony Liguori 已提交
134 135 136
    g_assert(p != NULL);
    g_assert(strcmp(p, str) == 0);

137
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
138 139
}

A
Anthony Liguori 已提交
140
static void qdict_get_try_str_test(void)
L
Luiz Capitulino 已提交
141 142 143 144
{
    const char *p;
    const char *key = "key";
    const char *str = "string";
A
Anthony Liguori 已提交
145
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
146

147
    qdict_put_str(tests_dict, key, str);
L
Luiz Capitulino 已提交
148 149

    p = qdict_get_try_str(tests_dict, key);
A
Anthony Liguori 已提交
150 151 152
    g_assert(p != NULL);
    g_assert(strcmp(p, str) == 0);

153
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
154 155
}

A
Anthony Liguori 已提交
156
static void qdict_haskey_not_test(void)
L
Luiz Capitulino 已提交
157
{
A
Anthony Liguori 已提交
158 159 160
    QDict *tests_dict = qdict_new();
    g_assert(qdict_haskey(tests_dict, "test") == 0);

161
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
162 163
}

A
Anthony Liguori 已提交
164
static void qdict_haskey_test(void)
L
Luiz Capitulino 已提交
165 166
{
    const char *key = "test";
A
Anthony Liguori 已提交
167
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
168

169
    qdict_put_int(tests_dict, key, 0);
A
Anthony Liguori 已提交
170 171
    g_assert(qdict_haskey(tests_dict, key) == 1);

172
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
173 174
}

A
Anthony Liguori 已提交
175
static void qdict_del_test(void)
L
Luiz Capitulino 已提交
176 177
{
    const char *key = "key test";
A
Anthony Liguori 已提交
178
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
179

180
    qdict_put_str(tests_dict, key, "foo");
A
Anthony Liguori 已提交
181
    g_assert(qdict_size(tests_dict) == 1);
L
Luiz Capitulino 已提交
182 183 184

    qdict_del(tests_dict, key);

A
Anthony Liguori 已提交
185 186 187
    g_assert(qdict_size(tests_dict) == 0);
    g_assert(qdict_haskey(tests_dict, key) == 0);

188
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
189 190
}

A
Anthony Liguori 已提交
191
static void qobject_to_qdict_test(void)
L
Luiz Capitulino 已提交
192
{
A
Anthony Liguori 已提交
193
    QDict *tests_dict = qdict_new();
194
    g_assert(qobject_to(QDict, QOBJECT(tests_dict)) == tests_dict);
A
Anthony Liguori 已提交
195

196
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
197 198
}

A
Anthony Liguori 已提交
199
static void qdict_iterapi_test(void)
200 201 202
{
    int count;
    const QDictEntry *ent;
A
Anthony Liguori 已提交
203
    QDict *tests_dict = qdict_new();
204

A
Anthony Liguori 已提交
205
    g_assert(qdict_first(tests_dict) == NULL);
206

207 208 209
    qdict_put_int(tests_dict, "key1", 1);
    qdict_put_int(tests_dict, "key2", 2);
    qdict_put_int(tests_dict, "key3", 3);
210 211 212

    count = 0;
    for (ent = qdict_first(tests_dict); ent; ent = qdict_next(tests_dict, ent)){
A
Anthony Liguori 已提交
213
        g_assert(qdict_haskey(tests_dict, qdict_entry_key(ent)) == 1);
214 215 216
        count++;
    }

A
Anthony Liguori 已提交
217
    g_assert(count == qdict_size(tests_dict));
218 219 220 221

    /* Do it again to test restarting */
    count = 0;
    for (ent = qdict_first(tests_dict); ent; ent = qdict_next(tests_dict, ent)){
A
Anthony Liguori 已提交
222
        g_assert(qdict_haskey(tests_dict, qdict_entry_key(ent)) == 1);
223 224 225
        count++;
    }

A
Anthony Liguori 已提交
226 227
    g_assert(count == qdict_size(tests_dict));

228
    qobject_unref(tests_dict);
229 230
}

L
Luiz Capitulino 已提交
231 232 233 234
/*
 * Errors test-cases
 */

A
Anthony Liguori 已提交
235
static void qdict_put_exists_test(void)
L
Luiz Capitulino 已提交
236 237 238
{
    int value;
    const char *key = "exists";
A
Anthony Liguori 已提交
239
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
240

241 242
    qdict_put_int(tests_dict, key, 1);
    qdict_put_int(tests_dict, key, 2);
L
Luiz Capitulino 已提交
243 244

    value = qdict_get_int(tests_dict, key);
A
Anthony Liguori 已提交
245
    g_assert(value == 2);
L
Luiz Capitulino 已提交
246

A
Anthony Liguori 已提交
247 248
    g_assert(qdict_size(tests_dict) == 1);

249
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
250 251
}

A
Anthony Liguori 已提交
252
static void qdict_get_not_exists_test(void)
L
Luiz Capitulino 已提交
253
{
A
Anthony Liguori 已提交
254 255 256
    QDict *tests_dict = qdict_new();
    g_assert(qdict_get(tests_dict, "foo") == NULL);

257
    qobject_unref(tests_dict);
L
Luiz Capitulino 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
}

/*
 * Stress test-case
 *
 * This is a lot big for a unit-test, but there is no other place
 * to have it.
 */

static void remove_dots(char *string)
{
    char *p = strchr(string, ':');
    if (p)
        *p = '\0';
}

static QString *read_line(FILE *file, char *key)
{
    char value[128];

S
Stefan Weil 已提交
278
    if (fscanf(file, "%127s%127s", key, value) == EOF) {
L
Luiz Capitulino 已提交
279
        return NULL;
S
Stefan Weil 已提交
280
    }
L
Luiz Capitulino 已提交
281 282 283 284 285 286
    remove_dots(key);
    return qstring_from_str(value);
}

#define reset_file(file)    fseek(file, 0L, SEEK_SET)

A
Anthony Liguori 已提交
287
static void qdict_stress_test(void)
L
Luiz Capitulino 已提交
288 289 290 291 292 293 294 295 296
{
    size_t lines;
    char key[128];
    FILE *test_file;
    QDict *qdict;
    QString *value;
    const char *test_file_path = "qdict-test-data.txt";

    test_file = fopen(test_file_path, "r");
A
Anthony Liguori 已提交
297
    g_assert(test_file != NULL);
L
Luiz Capitulino 已提交
298 299 300

    // Create the dict
    qdict = qdict_new();
A
Anthony Liguori 已提交
301
    g_assert(qdict != NULL);
L
Luiz Capitulino 已提交
302 303 304 305 306 307 308 309 310

    // Add everything from the test file
    for (lines = 0;; lines++) {
        value = read_line(test_file, key);
        if (!value)
            break;

        qdict_put(qdict, key, value);
    }
A
Anthony Liguori 已提交
311
    g_assert(qdict_size(qdict) == lines);
L
Luiz Capitulino 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324

    // Check if everything is really in there
    reset_file(test_file);
    for (;;) {
        const char *str1, *str2;

        value = read_line(test_file, key);
        if (!value)
            break;

        str1 = qstring_get_str(value);

        str2 = qdict_get_str(qdict, key);
A
Anthony Liguori 已提交
325
        g_assert(str2 != NULL);
L
Luiz Capitulino 已提交
326

A
Anthony Liguori 已提交
327
        g_assert(strcmp(str1, str2) == 0);
L
Luiz Capitulino 已提交
328

329
        qobject_unref(value);
L
Luiz Capitulino 已提交
330 331 332 333 334 335 336 337 338 339
    }

    // Delete everything
    reset_file(test_file);
    for (;;) {
        value = read_line(test_file, key);
        if (!value)
            break;

        qdict_del(qdict, key);
340
        qobject_unref(value);
L
Luiz Capitulino 已提交
341

A
Anthony Liguori 已提交
342
        g_assert(qdict_haskey(qdict, key) == 0);
L
Luiz Capitulino 已提交
343 344 345
    }
    fclose(test_file);

A
Anthony Liguori 已提交
346
    g_assert(qdict_size(qdict) == 0);
347
    qobject_unref(qdict);
L
Luiz Capitulino 已提交
348 349
}

A
Anthony Liguori 已提交
350
int main(int argc, char **argv)
L
Luiz Capitulino 已提交
351
{
A
Anthony Liguori 已提交
352
    g_test_init(&argc, &argv, NULL);
L
Luiz Capitulino 已提交
353

A
Anthony Liguori 已提交
354 355 356
    g_test_add_func("/public/new", qdict_new_test);
    g_test_add_func("/public/put_obj", qdict_put_obj_test);
    g_test_add_func("/public/destroy_simple", qdict_destroy_simple_test);
L
Luiz Capitulino 已提交
357 358

    /* Continue, but now with fixtures */
A
Anthony Liguori 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371
    g_test_add_func("/public/get", qdict_get_test);
    g_test_add_func("/public/get_int", qdict_get_int_test);
    g_test_add_func("/public/get_try_int", qdict_get_try_int_test);
    g_test_add_func("/public/get_str", qdict_get_str_test);
    g_test_add_func("/public/get_try_str", qdict_get_try_str_test);
    g_test_add_func("/public/haskey_not", qdict_haskey_not_test);
    g_test_add_func("/public/haskey", qdict_haskey_test);
    g_test_add_func("/public/del", qdict_del_test);
    g_test_add_func("/public/to_qdict", qobject_to_qdict_test);
    g_test_add_func("/public/iterapi", qdict_iterapi_test);

    g_test_add_func("/errors/put_exists", qdict_put_exists_test);
    g_test_add_func("/errors/get_not_exists", qdict_get_not_exists_test);
L
Luiz Capitulino 已提交
372 373

    /* The Big one */
A
Anthony Liguori 已提交
374 375 376
    if (g_test_slow()) {
        g_test_add_func("/stress/test", qdict_stress_test);
    }
L
Luiz Capitulino 已提交
377

A
Anthony Liguori 已提交
378
    return g_test_run();
L
Luiz Capitulino 已提交
379
}