jsontest.c 7.2 KB
Newer Older
1 2 3 4 5 6 7 8
#include <config.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

#include "internal.h"
9
#include "virjson.h"
10 11 12 13
#include "testutils.h"

struct testInfo {
    const char *doc;
14
    const char *expect;
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
    bool pass;
};


static int
testJSONFromString(const void *data)
{
    const struct testInfo *info = data;
    virJSONValuePtr json;
    int ret = -1;

    json = virJSONValueFromString(info->doc);

    if (info->pass) {
        if (!json) {
30
            VIR_TEST_VERBOSE("Fail to parse %s\n", info->doc);
31 32 33
            ret = -1;
            goto cleanup;
        } else {
34
            VIR_TEST_DEBUG("Parsed %s\n", info->doc);
35 36 37
        }
    } else {
        if (json) {
38
            VIR_TEST_VERBOSE("Should not have parsed %s\n", info->doc);
39 40 41
            ret = -1;
            goto cleanup;
        } else {
42
            VIR_TEST_DEBUG("Fail to parse %s\n", info->doc);
43 44 45 46 47
        }
    }

    ret = 0;

48
 cleanup:
49 50 51 52 53
    virJSONValueFree(json);
    return ret;
}


54 55 56 57 58
static int
testJSONAddRemove(const void *data)
{
    const struct testInfo *info = data;
    virJSONValuePtr json;
59
    virJSONValuePtr name = NULL;
60 61 62 63
    char *result = NULL;
    int ret = -1;

    json = virJSONValueFromString(info->doc);
64
    if (!json) {
65
        VIR_TEST_VERBOSE("Fail to parse %s\n", info->doc);
66 67 68
        ret = -1;
        goto cleanup;
    }
69 70 71 72

    switch (virJSONValueObjectRemoveKey(json, "name", &name)) {
    case 1:
        if (!info->pass) {
73
            VIR_TEST_VERBOSE("should not remove from non-object %s\n",
74
                             info->doc);
75 76 77 78 79 80
            goto cleanup;
        }
        break;
    case -1:
        if (!info->pass)
            ret = 0;
81 82
        else
            VIR_TEST_VERBOSE("Fail to recognize non-object %s\n", info->doc);
83 84
        goto cleanup;
    default:
85
        VIR_TEST_VERBOSE("unexpected result when removing from %s\n",
86
                         info->doc);
87 88 89
        goto cleanup;
    }
    if (STRNEQ_NULLABLE(virJSONValueGetString(name), "sample")) {
90
        VIR_TEST_VERBOSE("unexpected value after removing name: %s\n",
91
                         NULLSTR(virJSONValueGetString(name)));
92 93 94
        goto cleanup;
    }
    if (virJSONValueObjectRemoveKey(json, "name", NULL)) {
95
        VIR_TEST_VERBOSE("%s",
96
                         "unexpected success when removing missing key\n");
97 98 99
        goto cleanup;
    }
    if (virJSONValueObjectAppendString(json, "newname", "foo") < 0) {
100
        VIR_TEST_VERBOSE("%s", "unexpected failure adding new key\n");
101 102 103
        goto cleanup;
    }
    if (!(result = virJSONValueToString(json, false))) {
104
        VIR_TEST_VERBOSE("%s", "failed to stringize result\n");
105 106 107
        goto cleanup;
    }
    if (STRNEQ(info->expect, result)) {
108
        virtTestDifference(stderr, info->expect, result);
109 110 111 112
        goto cleanup;
    }
    ret = 0;

113
 cleanup:
114 115 116 117 118 119 120
    virJSONValueFree(json);
    virJSONValueFree(name);
    VIR_FREE(result);
    return ret;
}


121 122 123 124 125
static int
mymain(void)
{
    int ret = 0;

126
#define DO_TEST_FULL(name, cmd, doc, expect, pass)                  \
127
    do {                                                            \
128
        struct testInfo info = { doc, expect, pass };               \
129
        if (virtTestRun(name, testJSON ## cmd, &info) < 0)          \
130 131 132 133
            ret = -1;                                               \
    } while (0)

#define DO_TEST_PARSE(name, doc)                \
134
    DO_TEST_FULL(name, FromString, doc, NULL, true)
135

136 137 138 139
#define DO_TEST_PARSE_FAIL(name, doc)           \
    DO_TEST_FULL(name, FromString, doc, NULL, false)


140 141
    DO_TEST_PARSE("Simple", "{\"return\": {}, \"id\": \"libvirt-1\"}");
    DO_TEST_PARSE("NotSoSimple", "{\"QMP\": {\"version\": {\"qemu\":"
142 143
                  "{\"micro\": 91, \"minor\": 13, \"major\": 0},"
                  "\"package\": \" (qemu-kvm-devel)\"}, \"capabilities\": []}}");
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175


    DO_TEST_PARSE("Harder", "{\"return\": [{\"filename\": "
                  "\"unix:/home/berrange/.libvirt/qemu/lib/tck.monitor,server\","
                  "\"label\": \"charmonitor\"}, {\"filename\": \"pty:/dev/pts/158\","
                  "\"label\": \"charserial0\"}], \"id\": \"libvirt-3\"}");

    DO_TEST_PARSE("VeryHard", "{\"return\": [{\"name\": \"quit\"}, {\"name\":"
                  "\"eject\"}, {\"name\": \"change\"}, {\"name\": \"screendump\"},"
                  "{\"name\": \"stop\"}, {\"name\": \"cont\"}, {\"name\": "
                  "\"system_reset\"}, {\"name\": \"system_powerdown\"}, "
                  "{\"name\": \"device_add\"}, {\"name\": \"device_del\"}, "
                  "{\"name\": \"cpu\"}, {\"name\": \"memsave\"}, {\"name\": "
                  "\"pmemsave\"}, {\"name\": \"migrate\"}, {\"name\": "
                  "\"migrate_cancel\"}, {\"name\": \"migrate_set_speed\"},"
                  "{\"name\": \"client_migrate_info\"}, {\"name\": "
                  "\"migrate_set_downtime\"}, {\"name\": \"netdev_add\"}, "
                  "{\"name\": \"netdev_del\"}, {\"name\": \"block_resize\"},"
                  "{\"name\": \"balloon\"}, {\"name\": \"set_link\"}, {\"name\":"
                  "\"getfd\"}, {\"name\": \"closefd\"}, {\"name\": \"block_passwd\"},"
                  "{\"name\": \"set_password\"}, {\"name\": \"expire_password\"},"
                  "{\"name\": \"qmp_capabilities\"}, {\"name\": "
                  "\"human-monitor-command\"}, {\"name\": \"query-version\"},"
                  "{\"name\": \"query-commands\"}, {\"name\": \"query-chardev\"},"
                  "{\"name\": \"query-block\"}, {\"name\": \"query-blockstats\"}, "
                  "{\"name\": \"query-cpus\"}, {\"name\": \"query-pci\"}, {\"name\":"
                  "\"query-kvm\"}, {\"name\": \"query-status\"}, {\"name\": "
                  "\"query-mice\"}, {\"name\": \"query-vnc\"}, {\"name\": "
                  "\"query-spice\"}, {\"name\": \"query-name\"}, {\"name\": "
                  "\"query-uuid\"}, {\"name\": \"query-migrate\"}, {\"name\": "
                  "\"query-balloon\"}], \"id\": \"libvirt-2\"}");

176 177 178 179 180 181 182
    DO_TEST_FULL("add and remove", AddRemove,
                 "{\"name\": \"sample\", \"value\": true}",
                 "{\"value\":true,\"newname\":\"foo\"}",
                 true);
    DO_TEST_FULL("add and remove", AddRemove,
                 "[ 1 ]", NULL, false);

183 184 185 186 187 188 189 190 191 192 193

    DO_TEST_PARSE("almost nothing", "[]");
    DO_TEST_PARSE_FAIL("nothing", "");

    DO_TEST_PARSE("number without garbage", "[ 234545 ]");
    DO_TEST_PARSE_FAIL("number with garbage", "[ 2345b45 ]");

    DO_TEST_PARSE("float without garbage", "[ 0.0314159e+100 ]");
    DO_TEST_PARSE_FAIL("float with garbage", "[ 0.0314159ee+100 ]");

    DO_TEST_PARSE("string", "[ \"The meaning of life\" ]");
194 195
    DO_TEST_PARSE_FAIL("unterminated string", "[ \"The meaning of lif ]");

196 197

    DO_TEST_PARSE_FAIL("object with numeric keys", "{ 1:1, 2:1, 3:2 }");
198 199 200
    DO_TEST_PARSE_FAIL("unterminated object", "{ \"1\":1, \"2\":1, \"3\":2");
    DO_TEST_PARSE_FAIL("unterminated array of objects",
                       "[ {\"name\": \"John\"}, {\"name\": \"Paul\"}, ");
201 202
    DO_TEST_PARSE_FAIL("array of an object with an array as a key",
                       "[ {[\"key1\", \"key2\"]: \"value\"} ]");
203
    DO_TEST_PARSE_FAIL("object with unterminated key", "{ \"key:7 }");
204

205 206 207 208
    return (ret == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}

VIRT_TEST_MAIN(mymain)