check-qdict.c 12.2 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
 */
A
Anthony Liguori 已提交
12
#include <glib.h>
L
Luiz Capitulino 已提交
13

14 15 16
#include "qapi/qmp/qint.h"
#include "qapi/qmp/qdict.h"
#include "qapi/qmp/qstring.h"
L
Luiz Capitulino 已提交
17 18 19 20 21 22 23 24
#include "qemu-common.h"

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

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

    qdict = qdict_new();
A
Anthony Liguori 已提交
30 31 32 33
    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 已提交
34 35

    // destroy doesn't exit yet
A
Anthony Liguori 已提交
36
    g_free(qdict);
L
Luiz Capitulino 已提交
37 38
}

A
Anthony Liguori 已提交
39
static void qdict_put_obj_test(void)
L
Luiz Capitulino 已提交
40 41 42 43 44 45 46 47 48 49 50
{
    QInt *qi;
    QDict *qdict;
    QDictEntry *ent;
    const int num = 42;

    qdict = qdict_new();

    // key "" will have tdb hash 12345
    qdict_put_obj(qdict, "", QOBJECT(qint_from_int(num)));

A
Anthony Liguori 已提交
51
    g_assert(qdict_size(qdict) == 1);
52
    ent = QLIST_FIRST(&qdict->table[12345 % QDICT_BUCKET_MAX]);
L
Luiz Capitulino 已提交
53
    qi = qobject_to_qint(ent->value);
A
Anthony Liguori 已提交
54
    g_assert(qint_get_int(qi) == num);
L
Luiz Capitulino 已提交
55 56 57

    // destroy doesn't exit yet
    QDECREF(qi);
58 59 60
    g_free(ent->key);
    g_free(ent);
    g_free(qdict);
L
Luiz Capitulino 已提交
61 62
}

A
Anthony Liguori 已提交
63
static void qdict_destroy_simple_test(void)
L
Luiz Capitulino 已提交
64 65 66 67 68 69 70 71 72 73
{
    QDict *qdict;

    qdict = qdict_new();
    qdict_put_obj(qdict, "num", QOBJECT(qint_from_int(0)));
    qdict_put_obj(qdict, "str", QOBJECT(qstring_from_str("foo")));

    QDECREF(qdict);
}

A
Anthony Liguori 已提交
74
static void qdict_get_test(void)
L
Luiz Capitulino 已提交
75 76 77 78 79
{
    QInt *qi;
    QObject *obj;
    const int value = -42;
    const char *key = "test";
A
Anthony Liguori 已提交
80
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
81 82 83 84

    qdict_put(tests_dict, key, qint_from_int(value));

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

    qi = qobject_to_qint(obj);
A
Anthony Liguori 已提交
88 89 90
    g_assert(qint_get_int(qi) == value);

    QDECREF(tests_dict);
L
Luiz Capitulino 已提交
91 92
}

A
Anthony Liguori 已提交
93
static void qdict_get_int_test(void)
L
Luiz Capitulino 已提交
94 95 96 97
{
    int ret;
    const int value = 100;
    const char *key = "int";
A
Anthony Liguori 已提交
98
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
99 100 101 102

    qdict_put(tests_dict, key, qint_from_int(value));

    ret = qdict_get_int(tests_dict, key);
A
Anthony Liguori 已提交
103 104 105
    g_assert(ret == value);

    QDECREF(tests_dict);
L
Luiz Capitulino 已提交
106 107
}

A
Anthony Liguori 已提交
108
static void qdict_get_try_int_test(void)
L
Luiz Capitulino 已提交
109 110 111 112
{
    int ret;
    const int value = 100;
    const char *key = "int";
A
Anthony Liguori 已提交
113
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
114 115 116 117

    qdict_put(tests_dict, key, qint_from_int(value));

    ret = qdict_get_try_int(tests_dict, key, 0);
A
Anthony Liguori 已提交
118 119 120
    g_assert(ret == value);

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

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

    qdict_put(tests_dict, key, qstring_from_str(str));

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

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

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

    qdict_put(tests_dict, key, qstring_from_str(str));

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

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

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

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

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

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

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

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

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

    qdict_del(tests_dict, key);

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

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

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

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

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

A
Anthony Liguori 已提交
204
    g_assert(qdict_first(tests_dict) == NULL);
205 206 207 208 209 210 211

    qdict_put(tests_dict, "key1", qint_from_int(1));
    qdict_put(tests_dict, "key2", qint_from_int(2));
    qdict_put(tests_dict, "key3", qint_from_int(3));

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

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

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

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

    QDECREF(tests_dict);
228 229
}

M
Max Reitz 已提交
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
static void qdict_flatten_test(void)
{
    QList *list1 = qlist_new();
    QList *list2 = qlist_new();
    QDict *dict1 = qdict_new();
    QDict *dict2 = qdict_new();
    QDict *dict3 = qdict_new();

    /*
     * Test the flattening of
     *
     * {
     *     "e": [
     *         42,
     *         [
     *             23,
     *             66,
     *             {
     *                 "a": 0,
     *                 "b": 1
     *             }
     *         ]
     *     ],
     *     "f": {
     *         "c": 2,
     *         "d": 3,
     *     },
     *     "g": 4
     * }
     *
     * to
     *
     * {
     *     "e.0": 42,
     *     "e.1.0": 23,
     *     "e.1.1": 66,
     *     "e.1.2.a": 0,
     *     "e.1.2.b": 1,
     *     "f.c": 2,
     *     "f.d": 3,
     *     "g": 4
     * }
     */

    qdict_put(dict1, "a", qint_from_int(0));
    qdict_put(dict1, "b", qint_from_int(1));

    qlist_append_obj(list1, QOBJECT(qint_from_int(23)));
    qlist_append_obj(list1, QOBJECT(qint_from_int(66)));
    qlist_append_obj(list1, QOBJECT(dict1));
    qlist_append_obj(list2, QOBJECT(qint_from_int(42)));
    qlist_append_obj(list2, QOBJECT(list1));

    qdict_put(dict2, "c", qint_from_int(2));
    qdict_put(dict2, "d", qint_from_int(3));
    qdict_put_obj(dict3, "e", QOBJECT(list2));
    qdict_put_obj(dict3, "f", QOBJECT(dict2));
    qdict_put(dict3, "g", qint_from_int(4));

    qdict_flatten(dict3);

    g_assert(qdict_get_int(dict3, "e.0") == 42);
    g_assert(qdict_get_int(dict3, "e.1.0") == 23);
    g_assert(qdict_get_int(dict3, "e.1.1") == 66);
    g_assert(qdict_get_int(dict3, "e.1.2.a") == 0);
    g_assert(qdict_get_int(dict3, "e.1.2.b") == 1);
    g_assert(qdict_get_int(dict3, "f.c") == 2);
    g_assert(qdict_get_int(dict3, "f.d") == 3);
    g_assert(qdict_get_int(dict3, "g") == 4);

    g_assert(qdict_size(dict3) == 8);

    QDECREF(dict3);
}

305 306 307 308
static void qdict_array_split_test(void)
{
    QDict *test_dict = qdict_new();
    QDict *dict1, *dict2;
309
    QInt *int1;
310 311 312 313 314 315 316
    QList *test_list;

    /*
     * Test the split of
     *
     * {
     *     "1.x": 0,
317
     *     "4.y": 1,
318 319
     *     "0.a": 42,
     *     "o.o": 7,
320 321
     *     "0.b": 23,
     *     "2": 66
322 323 324 325 326 327 328 329 330 331 332
     * }
     *
     * to
     *
     * [
     *     {
     *         "a": 42,
     *         "b": 23
     *     },
     *     {
     *         "x": 0
333 334
     *     },
     *     66
335 336 337 338 339
     * ]
     *
     * and
     *
     * {
340
     *     "4.y": 1,
341 342 343 344 345 346 347 348 349
     *     "o.o": 7
     * }
     *
     * (remaining in the old QDict)
     *
     * This example is given in the comment of qdict_array_split().
     */

    qdict_put(test_dict, "1.x", qint_from_int(0));
350
    qdict_put(test_dict, "4.y", qint_from_int(1));
351 352 353
    qdict_put(test_dict, "0.a", qint_from_int(42));
    qdict_put(test_dict, "o.o", qint_from_int(7));
    qdict_put(test_dict, "0.b", qint_from_int(23));
354
    qdict_put(test_dict, "2", qint_from_int(66));
355 356 357 358 359

    qdict_array_split(test_dict, &test_list);

    dict1 = qobject_to_qdict(qlist_pop(test_list));
    dict2 = qobject_to_qdict(qlist_pop(test_list));
360
    int1 = qobject_to_qint(qlist_pop(test_list));
361 362 363

    g_assert(dict1);
    g_assert(dict2);
364
    g_assert(int1);
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
    g_assert(qlist_empty(test_list));

    QDECREF(test_list);

    g_assert(qdict_get_int(dict1, "a") == 42);
    g_assert(qdict_get_int(dict1, "b") == 23);

    g_assert(qdict_size(dict1) == 2);

    QDECREF(dict1);

    g_assert(qdict_get_int(dict2, "x") == 0);

    g_assert(qdict_size(dict2) == 1);

    QDECREF(dict2);

382 383 384 385 386
    g_assert(qint_get_int(int1) == 66);

    QDECREF(int1);

    g_assert(qdict_get_int(test_dict, "4.y") == 1);
387 388 389 390 391 392 393
    g_assert(qdict_get_int(test_dict, "o.o") == 7);

    g_assert(qdict_size(test_dict) == 2);

    QDECREF(test_dict);
}

L
Luiz Capitulino 已提交
394 395 396 397
/*
 * Errors test-cases
 */

A
Anthony Liguori 已提交
398
static void qdict_put_exists_test(void)
L
Luiz Capitulino 已提交
399 400 401
{
    int value;
    const char *key = "exists";
A
Anthony Liguori 已提交
402
    QDict *tests_dict = qdict_new();
L
Luiz Capitulino 已提交
403 404 405 406 407

    qdict_put(tests_dict, key, qint_from_int(1));
    qdict_put(tests_dict, key, qint_from_int(2));

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

A
Anthony Liguori 已提交
410 411 412
    g_assert(qdict_size(tests_dict) == 1);

    QDECREF(tests_dict);
L
Luiz Capitulino 已提交
413 414
}

A
Anthony Liguori 已提交
415
static void qdict_get_not_exists_test(void)
L
Luiz Capitulino 已提交
416
{
A
Anthony Liguori 已提交
417 418 419 420
    QDict *tests_dict = qdict_new();
    g_assert(qdict_get(tests_dict, "foo") == NULL);

    QDECREF(tests_dict);
L
Luiz Capitulino 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
}

/*
 * 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 已提交
441
    if (fscanf(file, "%127s%127s", key, value) == EOF) {
L
Luiz Capitulino 已提交
442
        return NULL;
S
Stefan Weil 已提交
443
    }
L
Luiz Capitulino 已提交
444 445 446 447 448 449
    remove_dots(key);
    return qstring_from_str(value);
}

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

A
Anthony Liguori 已提交
450
static void qdict_stress_test(void)
L
Luiz Capitulino 已提交
451 452 453 454 455 456 457 458 459
{
    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 已提交
460
    g_assert(test_file != NULL);
L
Luiz Capitulino 已提交
461 462 463

    // Create the dict
    qdict = qdict_new();
A
Anthony Liguori 已提交
464
    g_assert(qdict != NULL);
L
Luiz Capitulino 已提交
465 466 467 468 469 470 471 472 473

    // 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 已提交
474
    g_assert(qdict_size(qdict) == lines);
L
Luiz Capitulino 已提交
475 476 477 478 479 480 481 482 483 484 485 486 487

    // 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 已提交
488
        g_assert(str2 != NULL);
L
Luiz Capitulino 已提交
489

A
Anthony Liguori 已提交
490
        g_assert(strcmp(str1, str2) == 0);
L
Luiz Capitulino 已提交
491 492 493 494 495 496 497 498 499 500 501 502 503 504

        QDECREF(value);
    }

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

        qdict_del(qdict, key);
        QDECREF(value);

A
Anthony Liguori 已提交
505
        g_assert(qdict_haskey(qdict, key) == 0);
L
Luiz Capitulino 已提交
506 507 508
    }
    fclose(test_file);

A
Anthony Liguori 已提交
509
    g_assert(qdict_size(qdict) == 0);
L
Luiz Capitulino 已提交
510 511 512
    QDECREF(qdict);
}

A
Anthony Liguori 已提交
513
int main(int argc, char **argv)
L
Luiz Capitulino 已提交
514
{
A
Anthony Liguori 已提交
515
    g_test_init(&argc, &argv, NULL);
L
Luiz Capitulino 已提交
516

A
Anthony Liguori 已提交
517 518 519
    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 已提交
520 521

    /* Continue, but now with fixtures */
A
Anthony Liguori 已提交
522 523 524 525 526 527 528 529 530 531
    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);
M
Max Reitz 已提交
532
    g_test_add_func("/public/flatten", qdict_flatten_test);
533
    g_test_add_func("/public/array_split", qdict_array_split_test);
A
Anthony Liguori 已提交
534 535 536

    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 已提交
537 538

    /* The Big one */
A
Anthony Liguori 已提交
539 540 541
    if (g_test_slow()) {
        g_test_add_func("/stress/test", qdict_stress_test);
    }
L
Luiz Capitulino 已提交
542

A
Anthony Liguori 已提交
543
    return g_test_run();
L
Luiz Capitulino 已提交
544
}