summaryrefslogtreecommitdiff
path: root/tests/test-json.c
blob: 6cf5eb75deff64c6b90237415b2f44e8390a1d70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/*
 * Copyright (c) 2009, 2010, 2014 Nicira, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <config.h>
#undef NDEBUG
#include "openvswitch/json.h"
#include <ctype.h>
#include <errno.h>
#include <getopt.h>
#include <stdio.h>
#include "ovstest.h"
#include "random.h"
#include "timeval.h"
#include "util.h"

/* --pretty: If set, the JSON output is pretty-printed, instead of printed as
 * compactly as possible.  */
static int pretty = 0;

/* --multiple: If set, the input is a sequence of JSON objects or arrays,
 * instead of exactly one object or array. */
static int multiple = 0;

static void test_json_equal(const struct json *a, const struct json *b,
                            bool allow_the_same);

static void
test_json_equal_object(const struct shash *a, const struct shash *b,
                       bool allow_the_same)
{
    struct shash_node *a_node;

    ovs_assert(allow_the_same || a != b);

    if (a == b) {
        return;
    }

    ovs_assert(shash_count(a) == shash_count(b));

    SHASH_FOR_EACH (a_node, a) {
        struct shash_node *b_node = shash_find(b, a_node->name);

        ovs_assert(b_node);
        test_json_equal(a_node->data, b_node->data, allow_the_same);
    }
}

static void
test_json_equal_array(const struct json_array *a, const struct json_array *b,
                      bool allow_the_same)
{
    ovs_assert(allow_the_same || a != b);

    if (a == b) {
        return;
    }

    ovs_assert(a->n == b->n);

    for (size_t i = 0; i < a->n; i++) {
        test_json_equal(a->elems[i], b->elems[i], allow_the_same);
    }
}

static void
test_json_equal(const struct json *a, const struct json *b,
                bool allow_the_same)
{
    ovs_assert(allow_the_same || a != b);
    ovs_assert(a && b);

    if (a == b) {
        ovs_assert(a->count > 1);
        return;
    }

    ovs_assert(a->type == b->type);

    switch (a->type) {
    case JSON_OBJECT:
        test_json_equal_object(a->object, b->object, allow_the_same);
        return;

    case JSON_ARRAY:
        test_json_equal_array(&a->array, &b->array, allow_the_same);
        return;

    case JSON_STRING:
    case JSON_SERIALIZED_OBJECT:
        ovs_assert(a->string != b->string);
        ovs_assert(!strcmp(a->string, b->string));
        return;

    case JSON_NULL:
    case JSON_FALSE:
    case JSON_TRUE:
        return;

    case JSON_INTEGER:
        ovs_assert(a->integer == b->integer);
        return;

    case JSON_REAL:
        ovs_assert(a->real == b->real);
        return;

    case JSON_N_TYPES:
    default:
        OVS_NOT_REACHED();
    }
}

static void
test_json_clone(struct json *json)
{
    struct json *copy, *deep_copy;

    copy = json_clone(json);

    ovs_assert(json_equal(json, copy));
    test_json_equal(json, copy, true);
    ovs_assert(json->count == 2);

    json_destroy(copy);
    ovs_assert(json->count == 1);

    deep_copy = json_deep_clone(json);

    ovs_assert(json_equal(json, deep_copy));
    test_json_equal(json, deep_copy, false);
    ovs_assert(json->count == 1);
    ovs_assert(deep_copy->count == 1);

    json_destroy(deep_copy);
    ovs_assert(json->count == 1);
}

static bool
print_test_and_free_json(struct json *json)
{
    bool ok;
    if (json->type == JSON_STRING) {
        printf("error: %s\n", json->string);
        ok = false;
    } else {
        char *s = json_to_string(json, JSSF_SORT | (pretty ? JSSF_PRETTY : 0));
        puts(s);
        free(s);
        ok = true;
    }
    test_json_clone(json);
    json_destroy(json);
    return ok;
}

static bool
refill(FILE *file, void *buffer, size_t buffer_size, size_t *n, size_t *used)
{
    *used = 0;
    if (feof(file)) {
        *n = 0;
        return false;
    } else {
        *n = fread(buffer, 1, buffer_size, file);
        if (ferror(file)) {
            ovs_fatal(errno, "Error reading input file");
        }
        return *n > 0;
    }
}

static bool
parse_multiple(FILE *stream)
{
    struct json_parser *parser;
    char buffer[BUFSIZ];
    size_t n, used;
    bool ok;

    parser = NULL;
    n = used = 0;
    ok = true;
    while (used < n || refill(stream, buffer, sizeof buffer, &n, &used)) {
        if (!parser && isspace((unsigned char) buffer[used])) {
            /* Skip white space. */
            used++;
        } else {
            if (!parser) {
                parser = json_parser_create(0);
            }

            used += json_parser_feed(parser, &buffer[used], n - used);
            if (used < n) {
                if (!print_test_and_free_json(json_parser_finish(parser))) {
                    ok = false;
                }
                parser = NULL;
            }
        }
    }
    if (parser) {
        if (!print_test_and_free_json(json_parser_finish(parser))) {
            ok = false;
        }
    }
    return ok;
}

static void
test_json_main(int argc, char *argv[])
{
    const char *input_file;
    FILE *stream;
    bool ok;

    set_program_name(argv[0]);

    for (;;) {
        static const struct option options[] = {
            {"pretty", no_argument, &pretty, 1},
            {"multiple", no_argument, &multiple, 1},
        };
        int option_index = 0;
        int c = getopt_long (argc, argv, "", options, &option_index);

        if (c == -1) {
            break;
        }
        switch (c) {
        case 0:
            break;

        case '?':
            exit(1);

        default:
            abort();
        }
    }

    if (argc - optind != 1) {
        ovs_fatal(0, "usage: %s [--pretty] [--multiple] INPUT.json",
                  program_name);
    }

    input_file = argv[optind];
    stream = !strcmp(input_file, "-") ? stdin : fopen(input_file, "r");
    if (!stream) {
        ovs_fatal(errno, "Cannot open \"%s\"", input_file);
    }

    if (multiple) {
        ok = parse_multiple(stream);
    } else {
        ok = print_test_and_free_json(json_from_stream(stream));
    }

    fclose(stream);

    exit(!ok);
}

OVSTEST_REGISTER("test-json", test_json_main);

static void
json_string_benchmark_main(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
{
    struct {
        int n;
        int quote_probablility;
        int special_probability;
        int iter;
    } configs[] = {
        { 100000,     0, 0, 1000, },
        { 100000,     2, 1, 1000, },
        { 100000,    10, 1, 1000, },
        { 10000000,   0, 0, 100,  },
        { 10000000,   2, 1, 100,  },
        { 10000000,  10, 1, 100,  },
        { 100000000,  0, 0, 10.   },
        { 100000000,  2, 1, 10,   },
        { 100000000, 10, 1, 10,   },
    };

    printf("  SIZE      Q  S         TO STRING      FROM STRING\n");
    printf("----------------------------------------------------\n");

    for (int i = 0; i < ARRAY_SIZE(configs); i++) {
        int iter = configs[i].iter;
        int n = configs[i].n;
        char *str = xzalloc(n);

        for (int j = 0; j < n - 1; j++) {
            int r = random_range(100);

            if (r < configs[i].special_probability) {
                str[j] = random_range(' ' - 1) + 1;
            } else if (r < (configs[i].special_probability
                            + configs[i].quote_probablility)) {
                str[j] = '"';
            } else {
                str[j] = random_range(256 - ' ') + ' ';
            }
        }

        printf("%-11d %-2d %-2d: ", n, configs[i].quote_probablility,
                                       configs[i].special_probability);
        fflush(stdout);

        struct json *json = json_array_create_1(
                                json_string_create_nocopy(str));
        uint64_t start = time_msec();

        char **res = xzalloc(iter * sizeof *res);
        for (int j = 0; j < iter; j++) {
            res[j] = json_to_string(json, 0);
        }

        printf("%12.3lf ms", (double) (time_msec() - start) / iter);

        struct json **json_parsed = xzalloc(iter * sizeof *json_parsed);

        start = time_msec();
        for (int j = 0; j < iter; j++) {
            json_parsed[j] = json_from_string(res[j]);
        }
        printf("%12.3lf ms\n", (double) (time_msec() - start) / iter);

        for (int j = 0; j < iter; j++) {
            ovs_assert(json_equal(json, json_parsed[j]));
            json_destroy(json_parsed[j]);
            free(res[j]);
        }
        json_destroy(json);
        free(res);
        free(json_parsed);
    }

    exit(0);
}

OVSTEST_REGISTER("json-string-benchmark", json_string_benchmark_main);