File: test_json_reader.c

package info (click to toggle)
yyjson 0.12.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,484 kB
  • sloc: ansic: 28,930; xml: 253; javascript: 99; sh: 13; cpp: 8; makefile: 8; objc: 7
file content (743 lines) | stat: -rw-r--r-- 25,222 bytes parent folder | download
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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
// This file is used to test the functionality of JSON reader.

#include "yyjson.h"
#include "yy_test_utils.h"

#if !YYJSON_DISABLE_READER



// Expect result
typedef enum {
    EXPECT_NONE,
    EXPECT_PASS,
    EXPECT_FAIL,
} expect_type;

// All feature flags
static const yyjson_read_flag ALL_FLAGS[] = {
    1 << 1, // YYJSON_READ_STOP_WHEN_DONE
    1 << 7, // YYJSON_READ_BIGNUM_AS_RAW
    1 << 5, // YYJSON_READ_NUMBER_AS_RAW
    1 << 2, // YYJSON_READ_ALLOW_TRAILING_COMMAS
    1 << 3, // YYJSON_READ_ALLOW_COMMENTS
    1 << 4, // YYJSON_READ_ALLOW_INF_AND_NAN
    1 << 6, // YYJSON_READ_ALLOW_INVALID_UNICODE
    1 << 8, // YYJSON_READ_ALLOW_BOM
    1 << 9, // YYJSON_READ_ALLOW_EXT_NUMBER
    1 << 10, // YYJSON_READ_ALLOW_EXT_ESCAPE
    1 << 11, // YYJSON_READ_ALLOW_EXT_WHITESPACE
    1 << 12, // YYJSON_READ_ALLOW_SINGLE_QUOTED_STR
    1 << 13, // YYJSON_READ_ALLOW_UNQUOTED_KEY
};



/*==============================================================================
 * MARK: - Helper
 *============================================================================*/

static void test_read_data(const char *path, char *dat, usize len,
                           yyjson_read_flag flg, expect_type expect) {
#if YYJSON_DISABLE_UTF8_VALIDATION
    bool is_utf8 = yy_str_is_utf8(dat, len);
    if (!is_utf8) return;
#endif

    // test read
    yyjson_read_err err;
    yyjson_doc *doc = yyjson_read_opts(dat, len, flg, NULL, &err);
    if (expect == EXPECT_PASS) {
        yy_assertf(doc != NULL, "should pass but fail (0x%X): %s", flg, path);
        yy_assert(yyjson_doc_get_read_size(doc) > 0);
        yy_assert(yyjson_doc_get_val_count(doc) > 0);
        yy_assert(err.code == YYJSON_READ_SUCCESS);
        yy_assert(err.msg == NULL);
    }
    if (expect == EXPECT_FAIL) {
        yy_assertf(doc == NULL, "should fail but pass (0x%X): %s", flg, path);
        yy_assert(yyjson_doc_get_read_size(doc) == 0);
        yy_assert(yyjson_doc_get_val_count(doc) == 0);
        yy_assert(err.code != YYJSON_READ_SUCCESS);
        yy_assert(err.msg != NULL);
    }
    
    // test write again
#if !YYJSON_DISABLE_WRITER
    if (doc) {
        usize ret_len;
        char *ret;
        ret = yyjson_write(doc, YYJSON_WRITE_INF_AND_NAN_AS_NULL, &ret_len);
        yy_assert(ret && ret_len);
        free(ret);
        ret = yyjson_write(doc, YYJSON_WRITE_INF_AND_NAN_AS_NULL | YYJSON_WRITE_PRETTY, &ret_len);
        yy_assert(ret && ret_len);
        free(ret);
    }
#endif
    yyjson_doc_free(doc);
    
    
    // test read insitu
    flg |= YYJSON_READ_INSITU;
    
    char *dat_cpy = malloc(len + YYJSON_PADDING_SIZE);
    yy_assert(dat_cpy);
    memcpy(dat_cpy, dat, len);
    memset(dat_cpy + len, 0, YYJSON_PADDING_SIZE);
    
    usize max_mem_len = yyjson_read_max_memory_usage(len, flg);
    void *buf = malloc(max_mem_len);
    yyjson_alc alc;
    yyjson_alc_pool_init(&alc, buf, max_mem_len);
    
    doc = yyjson_read_opts(dat_cpy, len, flg, &alc, &err);
    if (expect == EXPECT_PASS) {
        yy_assertf(doc != NULL, "should pass but fail (0x%X): %s", flg, path);
        yy_assert(yyjson_doc_get_read_size(doc) > 0);
        yy_assert(yyjson_doc_get_val_count(doc) > 0);
        yy_assert(err.code == YYJSON_READ_SUCCESS);
        yy_assert(err.msg == NULL);
    }
    if (expect == EXPECT_FAIL) {
        yy_assertf(doc == NULL, "should fail but pass (0x%X): %s", flg, path);
        yy_assert(yyjson_doc_get_read_size(doc) == 0);
        yy_assert(yyjson_doc_get_val_count(doc) == 0);
        yy_assert(err.code != YYJSON_READ_SUCCESS);
        yy_assert(err.msg != NULL);
    }
    yyjson_doc_free(doc);
    free(buf);
    free(dat_cpy);


    // test incremental read
#if !YYJSON_DISABLE_INCR_READER
    // incremental read only support standard JSON
    yyjson_read_flag non_std_flg =
        YYJSON_READ_JSON5 |
        YYJSON_READ_ALLOW_BOM |
        YYJSON_READ_ALLOW_INVALID_UNICODE;
    if (flg & non_std_flg) return;
    
    // extend input length in chunks of one byte at a time
    const size_t chunk_len = 1;
    size_t read_len = 0;
    flg &= ~YYJSON_READ_INSITU;
    
    dat_cpy = malloc(len + YYJSON_PADDING_SIZE);
    yy_assert(dat_cpy);
    memcpy(dat_cpy, dat, len);
    memset(dat_cpy + len, 0, YYJSON_PADDING_SIZE);
    
    yyjson_incr_state *state = NULL;
restart_incr_read:
    state = yyjson_incr_new((char *)dat, len, flg, NULL);
    yy_assert(state != NULL);
    yy_assert(!yyjson_incr_read(NULL, read_len, &err));
    yy_assert(!yyjson_incr_read(state, 0, &err));
    yy_assert(!yyjson_incr_read(state, 0, NULL));
    yy_assert(!yyjson_incr_read(state, len + 1, NULL));
    
    while (read_len < len || len == 0) {
        read_len += chunk_len;
        if (read_len > len) {
            read_len = len;
        }
        doc = yyjson_incr_read(state, read_len, &err);
        if (doc != NULL && read_len < len) {
            /* Incremental parsing is complete but there is more data to parse.
               This can happen when we are parsing a number on the root level
               and not all digits have been provided to the parser yet.

               Discard incremental state and restart parsing. */
            yyjson_doc_free(doc);
            yyjson_incr_free(state);
            goto restart_incr_read;
        }
        if (doc != NULL || err.code != YYJSON_READ_ERROR_MORE) {
            break;
        }
    }
    if (doc) { // test write again
#if !YYJSON_DISABLE_WRITER
        char *ret = yyjson_write(doc, 0, NULL);
        yy_assert(ret);
        free(ret);
#endif
    }
    if (expect == EXPECT_PASS) {
        yy_assertf(doc != NULL, "should pass but fail (0x%X): %s", flg, path);
        yy_assert(yyjson_doc_get_read_size(doc) > 0);
        yy_assert(yyjson_doc_get_val_count(doc) > 0);
        yy_assert(err.code == YYJSON_READ_SUCCESS);
        yy_assert(err.msg == NULL);
    }
    if (expect == EXPECT_FAIL) {
        yy_assertf(doc == NULL, "should fail but pass (0x%X): %s", flg, path);
        yy_assert(yyjson_doc_get_read_size(doc) == 0);
        yy_assert(yyjson_doc_get_val_count(doc) == 0);
        yy_assert(err.code != YYJSON_READ_SUCCESS);
        yy_assert(err.msg != NULL);
    }
    yyjson_incr_free(state);
    yyjson_doc_free(doc);
    free(dat_cpy);
#endif
}

static void test_read_file(const char *path, yyjson_read_flag flg, expect_type expect) {
    u8 *dat;
    usize len;
    yy_assertf(yy_file_read(path, &dat, &len), "fail to read file: %s", path);
    test_read_data(path, (char *)dat, len, flg, expect);
    free(dat);
}



/*==============================================================================
 * MARK: - Datasets
 *============================================================================*/

// yyjson test data
static void test_json_yyjson(void) {
    // read dir
    char dir[YY_MAX_PATH];
    yy_path_combine(dir, YYJSON_TEST_DATA_PATH, "data", "json", "test_yyjson", NULL);
    int count;
    char **names = yy_dir_read(dir, &count);
    yy_assertf(names != NULL && count != 0, "read dir fail:%s\n", dir);

    for (int i = 0; i < count; i++) {
        // read file
        char *name = names[i];
        if (name[0] == '.') continue;
        char path[YY_MAX_PATH];
        yy_path_combine(path, dir, name, NULL);
        u8 *dat;
        usize len;
        yy_assertf(yy_file_read(path, &dat, &len), "fail to read file: %s", path);
        
        // check file name
        bool has_fail       = yy_str_contains(name, "(fail)");
        bool has_garbage    = yy_str_contains(name, "(garbage)");
        bool has_bignum     = yy_str_contains(name, "(bignum)");
        bool has_bighex     = yy_str_contains(name, "(bighex)");
        bool has_comma      = yy_str_contains(name, "(comma)");
        bool has_comment    = yy_str_contains(name, "(comment)");
        bool has_endcomment = yy_str_contains(name, "(endcomment)");
        bool has_inf        = yy_str_contains(name, "(inf)");
        bool has_nan        = yy_str_contains(name, "(nan)");
        bool has_str_err    = yy_str_contains(name, "(str_err)");
        bool has_bom        = yy_str_contains(name, "(bom)");
        bool has_ext_num    = yy_str_contains(name, "(ext_num)");
        bool has_ext_esc    = yy_str_contains(name, "(ext_esc)");
        bool has_ext_ws     = yy_str_contains(name, "(ext_ws)");
        bool has_str_sq     = yy_str_contains(name, "(str_sq)");
        bool has_str_uq     = yy_str_contains(name, "(str_uq)");
        bool has_non_std = (has_bighex | has_comma | has_comment |
                            has_inf | has_nan | has_str_err | has_bom |
                            has_ext_num | has_ext_esc |
                            has_ext_ws | has_str_sq | has_str_uq);
        
        // test all flag combination
        u32 flg_num = (u32)yy_nelems(ALL_FLAGS);
        u32 flg_comb_num = 1 << flg_num;
        for (u32 c = 0; c < flg_comb_num; c++) {
            yyjson_write_flag flg = 0;
            for (u32 f = 0; f < flg_num; f++) {
                if (c & (1 << f)) flg |= ALL_FLAGS[f];
            }
            
            // check if the current combined flag is valid
            bool pass = !has_fail;
            pass &= !has_garbage    || (flg & (YYJSON_READ_STOP_WHEN_DONE));
            pass &= !has_bignum     || (flg & (YYJSON_READ_BIGNUM_AS_RAW |
                                               YYJSON_READ_NUMBER_AS_RAW |
                                               YYJSON_READ_ALLOW_INF_AND_NAN));
            pass &= !has_bighex     || (flg & (YYJSON_READ_BIGNUM_AS_RAW |
                                               YYJSON_READ_NUMBER_AS_RAW));
            pass &= !has_comma      || (flg & (YYJSON_READ_ALLOW_TRAILING_COMMAS));
            pass &= !has_comment    || (flg & (YYJSON_READ_ALLOW_COMMENTS));
            pass &= !has_endcomment || (flg & (YYJSON_READ_ALLOW_COMMENTS |
                                               YYJSON_READ_STOP_WHEN_DONE));
            pass &= !has_inf        || (flg & (YYJSON_READ_ALLOW_INF_AND_NAN));
            pass &= !has_nan        || (flg & (YYJSON_READ_ALLOW_INF_AND_NAN));
            pass &= !has_str_err    || (flg & (YYJSON_READ_ALLOW_INVALID_UNICODE));
            pass &= !has_bom        || (flg & (YYJSON_READ_ALLOW_BOM |
                                               YYJSON_READ_ALLOW_EXT_WHITESPACE));
            pass &= !has_ext_num    || (flg & (YYJSON_READ_ALLOW_EXT_NUMBER));
            pass &= !has_ext_esc    || (flg & (YYJSON_READ_ALLOW_EXT_ESCAPE));
            pass &= !has_ext_ws     || (flg & (YYJSON_READ_ALLOW_EXT_WHITESPACE));
            pass &= !has_str_sq     || (flg & (YYJSON_READ_ALLOW_SINGLE_QUOTED_STR));
            pass &= !has_str_uq     || (flg & (YYJSON_READ_ALLOW_UNQUOTED_KEY));
#if YYJSON_DISABLE_NON_STANDARD
            pass &= !has_non_std;
            pass &= !has_bignum     || (flg & (YYJSON_READ_BIGNUM_AS_RAW |
                                               YYJSON_READ_NUMBER_AS_RAW));
            pass &= !has_endcomment || (flg & YYJSON_READ_STOP_WHEN_DONE);
#endif
            test_read_data(path, (char *)dat, len, flg, pass ? EXPECT_PASS : EXPECT_FAIL);
        }
        
        // free file data
        free(dat);
    }
    yy_dir_free(names);
    
    
    // test invalid input
    yy_assert(!yyjson_read_opts(NULL, 0, 0, NULL, NULL));
    yy_assert(!yyjson_read_opts("1", 0, 0, NULL, NULL));
    yy_assert(!yyjson_read_opts("1", SIZE_MAX, 0, NULL, NULL));
    
    // test read file
    yy_path_combine(dir, YYJSON_TEST_DATA_PATH, "data", "json", "test_yyjson", "blns.json", NULL);
    yyjson_doc *doc = yyjson_read_file(dir, 0, NULL, NULL);
    yy_assert(yyjson_is_arr(yyjson_doc_get_root(doc)));
    yyjson_doc_free(doc);
    
    // test read file fail
    yyjson_read_err err;
    yy_assert(!yyjson_read_file(NULL, 0, NULL, NULL));
    yy_assert(!yyjson_read_file("...not a valid file...", 0, NULL, &err));
    yy_assert(err.code == YYJSON_READ_ERROR_FILE_OPEN);
    
    // test alloc fail
    yyjson_alc alc_small;
    char alc_buf[64];
    yy_assert(yyjson_alc_pool_init(&alc_small, alc_buf, sizeof(void *) * 8));
    yy_assert(!yyjson_read_opts("[]", 2, 0, &alc_small, NULL));
    yy_assert(!yyjson_read_opts("[  ]", 4, 0, &alc_small, NULL));
    yy_assert(!yyjson_read_opts("123", 3, 0, &alc_small, NULL));
    yy_assert(!yyjson_read_file(dir, 0, &alc_small, NULL));
}



// http://www.json.org/JSON_checker/
static void test_json_checker(void) {
    char dir[YY_MAX_PATH];
    yy_path_combine(dir, YYJSON_TEST_DATA_PATH, "data", "json", "test_checker", NULL);
    int count;
    char **names = yy_dir_read(dir, &count);
    yy_assertf(names != NULL && count != 0, "read dir fail:%s\n", dir);
    
    for (int i = 0; i < count; i++) {
        char *name = names[i];
        char path[YY_MAX_PATH];
        yy_path_combine(path, dir, name, NULL);
        if (yy_str_has_prefix(name, "pass_")) {
            test_read_file(path, 0, EXPECT_PASS);
        } else if (yy_str_has_prefix(name, "fail_") &&
                   !yy_str_contains(name, "EXCLUDE")) {
            test_read_file(path, 0, EXPECT_FAIL);
        } else {
            test_read_file(path, 0, EXPECT_NONE);
        }
    }
    
    yy_dir_free(names);
}

// https://github.com/nst/JSONTestSuite
static void test_json_parsing(void) {
    char dir[YY_MAX_PATH];
    yy_path_combine(dir, YYJSON_TEST_DATA_PATH, "data", "json", "test_parsing", NULL);
    int count;
    char **names = yy_dir_read(dir, &count);
    yy_assertf(names != NULL && count != 0, "read dir fail:%s\n", dir);
    
    for (int i = 0; i < count; i++) {
        char *name = names[i];
        if (*name == '.') continue;
        char path[YY_MAX_PATH];
        yy_path_combine(path, dir, name, NULL);
        
        if (yy_str_has_prefix(name, "y_")) {
            test_read_file(path, 0, EXPECT_PASS);
        } else if (yy_str_has_prefix(name, "n_")) {
            test_read_file(path, 0, EXPECT_FAIL);
        } else {
            test_read_file(path, 0, EXPECT_NONE);
        }
    }
    yy_dir_free(names);
}

// https://github.com/nst/JSONTestSuite
static void test_json_transform(void) {
    char dir[YY_MAX_PATH];
    yy_path_combine(dir, YYJSON_TEST_DATA_PATH, "data", "json", "test_transform", NULL);
    int count;
    char **names = yy_dir_read(dir, &count);
    yy_assertf(names != NULL && count != 0, "read dir fail:%s\n", dir);
    
    for (int i = 0; i < count; i++) {
        char *name = names[i];
        if (*name == '.') continue;
        char path[YY_MAX_PATH];
        yy_path_combine(path, dir, name, NULL);
        
        if (yy_str_contains(name, "invalid")) {
            test_read_file(path, 0, EXPECT_FAIL);
        } else {
            test_read_file(path, 0, EXPECT_PASS);
        }
    }
    
    yy_dir_free(names);
}

// https://github.com/miloyip/nativejson-benchmark
static void test_json_encoding(void) {
    char dir[YY_MAX_PATH];
    yy_path_combine(dir, YYJSON_TEST_DATA_PATH, "data", "json", "test_encoding", NULL);
    int count;
    char **names = yy_dir_read(dir, &count);
    yy_assertf(names != NULL && count != 0, "read dir fail:%s\n", dir);
    
    for (int i = 0; i < count; i++) {
        char *name = names[i];
        if (*name == '.') continue;
        char path[YY_MAX_PATH];
        yy_path_combine(path, dir, name, NULL);
        
        if (strcmp(name, "utf8.json") == 0) {
            test_read_file(path, 0, EXPECT_PASS);
        } else if (strcmp(name, "utf8bom.json") == 0) {
            test_read_file(path, 0, EXPECT_FAIL);
#if !YYJSON_DISABLE_NON_STANDARD
            test_read_file(path, YYJSON_READ_ALLOW_BOM, EXPECT_PASS);
            test_read_file(path, YYJSON_READ_ALLOW_EXT_WHITESPACE, EXPECT_PASS);
#else
            test_read_file(path, YYJSON_READ_ALLOW_BOM, EXPECT_FAIL);
            test_read_file(path, YYJSON_READ_ALLOW_EXT_WHITESPACE, EXPECT_FAIL);
#endif
        } else {
            test_read_file(path, 0, EXPECT_FAIL);
            test_read_file(path, YYJSON_READ_ALLOW_BOM, EXPECT_FAIL);
            test_read_file(path, YYJSON_READ_ALLOW_EXT_WHITESPACE, EXPECT_FAIL);
        }
    }
    yy_dir_free(names);
}



/*==============================================================================
 * MARK: - Whitespace
 *============================================================================*/

/// Validate `read(src, flg) == read(dst)`.
static void validate_whitespace(const char *src, const char *dst, yyjson_read_flag flg) {
    yyjson_doc *doc_src = yyjson_read(src, src ? strlen(src) : 0, flg);
    yyjson_doc *doc_dst = yyjson_read(dst, dst ? strlen(dst) : 0, 0);

#if !YYJSON_DISABLE_NON_STANDARD
    if (doc_dst) {
        yy_assert(doc_src);
        yy_assert(yyjson_equals(yyjson_doc_get_root(doc_src), yyjson_doc_get_root(doc_dst)));
    } else {
        yy_assert(!doc_src);
    }
#endif
    
    yyjson_doc_free(doc_src);
    yyjson_doc_free(doc_dst);
}

static void test_json_whitespace(void) {
    // ---------------------------------
    // standard whitespace
    validate_whitespace
    (
     "[1, 2]",
     "[1,2]", 0);
    validate_whitespace
    (
     "[1, 2]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
    validate_whitespace
    (
     "[1,\n2]",
     "[1,2]", 0);
    validate_whitespace
    (
     "[1,\n2]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
    
    // ---------------------------------
    // single-byte whitespace
    validate_whitespace
    (
     "[1,\v2]",
     NULL, 0);
    validate_whitespace
    (
     "[1,\v2]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    validate_whitespace
    (
     "[1,\f2]",
     NULL, 0);
    validate_whitespace
    (
     "[1,\f2]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
    
    // ---------------------------------
    // multe-byte whitespace
    validate_whitespace
    (
     "[1, \xC2\xA0 2]",
     NULL, 0);
    validate_whitespace
    (
     "[1, \xC2\xA0 2]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    validate_whitespace
    (
     "[1, \xE1\x9A\x80\xE2\x80\x80\xE2\x80\x81\xE2\x80\x8A 2]",
     NULL, 0);
    validate_whitespace
    (
     "[1, \xE1\x9A\x80\xE2\x80\x80\xE2\x80\x81\xE2\x80\x8A 2]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    validate_whitespace
    (
     "[1, \xE2\x80\x8A\xE2\x80\xA8\xE2\x80\xA9\xE2\x80\xAF 2]",
     NULL, 0);
    validate_whitespace
    (
     "[1, \xE2\x80\x8A\xE2\x80\xA8\xE2\x80\xA9\xE2\x80\xAF 2]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    validate_whitespace
    (
     "[1, \xE2\x81\x9F\xE3\x80\x80 2]",
     NULL, 0);
    validate_whitespace
    (
     "[1, \xE2\x81\x9F\xE3\x80\x80 2]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
    
    // ---------------------------------
    // BOM head
    validate_whitespace
    (
     "\xEF\xBB\xBF[1,2]",
     NULL, 0);
    validate_whitespace
    (
     "\xEF\xBB\xBF[1,2]",
     "[1,2]", YYJSON_READ_ALLOW_BOM);
    validate_whitespace
    (
     "\xEF\xBB\xBF[1,2]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    validate_whitespace
    (
     "\xEF\xBB\xBF[1,2]",
     "[1,2]", YYJSON_READ_ALLOW_BOM | YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
    
    // ---------------------------------
    // BOM inside
    validate_whitespace
    (
     "[1,2\xEF\xBB\xBF]",
     NULL, 0);
    validate_whitespace
    (
     "[1,2\xEF\xBB\xBF]",
     NULL, YYJSON_READ_ALLOW_BOM);
    validate_whitespace
    (
     "[1,2\xEF\xBB\xBF]",
     "[1,2]", YYJSON_READ_ALLOW_EXT_WHITESPACE);
    validate_whitespace
    (
     "[1,2\xEF\xBB\xBF]",
     "[1,2]", YYJSON_READ_ALLOW_BOM | YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
    
    // ---------------------------------
    // single-line comment
    validate_whitespace
    (
     "[1,//test\n 2]",
     "[1,2]", YYJSON_READ_ALLOW_COMMENTS);
    validate_whitespace
    (
     "[1,//test\n 2]",
     "[1,2]", YYJSON_READ_ALLOW_COMMENTS | YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
    validate_whitespace
    (
     "[1,//test\xE2\x80\xA8 2]",
     NULL, YYJSON_READ_ALLOW_COMMENTS);
    validate_whitespace
    (
     "[1,//test\xE2\x80\xA8 2]",
     "[1,2]", YYJSON_READ_ALLOW_COMMENTS | YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
    validate_whitespace
    (
     "[1,//test\xE2\x80\xA9 2]",
     NULL, YYJSON_READ_ALLOW_COMMENTS);
    validate_whitespace
    (
     "[1,//test\xE2\x80\xA9 2]",
     "[1,2]", YYJSON_READ_ALLOW_COMMENTS | YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
    validate_whitespace
    (
     "[1,//test\xE2\x80\xAF 2]",
     NULL, YYJSON_READ_ALLOW_COMMENTS);
    validate_whitespace
    (
     "[1,//test\xE2\x80\xAF 2]",
     NULL, YYJSON_READ_ALLOW_COMMENTS | YYJSON_READ_ALLOW_EXT_WHITESPACE);
    
}



/*==============================================================================
 * MARK: - Incremental
 *============================================================================*/

#if !YYJSON_DISABLE_INCR_READER

static yyjson_doc *test_incr_read_insitu(char *dat, usize len, usize chunk_len, yyjson_read_flag flg) {
#if YYJSON_DISABLE_UTF8_VALIDATION
    if (!yy_str_is_utf8(dat, len)) return NULL;
#endif

    yyjson_read_err err;
    yyjson_incr_state *state = yyjson_incr_new(dat, len, flg, NULL);
    size_t read_len = 0;
    yyjson_doc *doc = NULL;
    while (read_len < len) {
        read_len += chunk_len;
        if (read_len > len) {
            read_len = len;
        }
        /* put some garbage where the parser is supposed to stop */
        u8 saved_end = dat[read_len];
        dat[read_len] = 'X';
        doc = yyjson_incr_read(state, read_len, &err);
        dat[read_len] = saved_end;
        if (doc != NULL || err.code != YYJSON_READ_ERROR_MORE) {
            break;
        }
    }
    if (doc != NULL) {
        yy_assert(yyjson_doc_get_read_size(doc) > 0);
        yy_assert(yyjson_doc_get_val_count(doc) > 0);
        yy_assert(err.code == YYJSON_READ_SUCCESS);
        yy_assert(err.msg == NULL);
    } else {
        yy_assert(yyjson_doc_get_read_size(doc) == 0);
        yy_assert(yyjson_doc_get_val_count(doc) == 0);
        yy_assert(err.code != YYJSON_READ_SUCCESS);
        yy_assert(err.msg != NULL);
    }
    yy_assert(err.code != YYJSON_READ_ERROR_MORE);
    yyjson_incr_free(state);
    return doc;
}

/** Returns an allocated minified JSON string representation of an object with
    obj_len keys. The values are arrays of length arr_len. The elements in the
    arrays are strings, booleans, nulls, numbers, empty arrays and empty
    objects. The returned string is padded with four null bytes. */
static char *create_json(usize obj_len, usize arr_len) {
    yy_buf buf;
    char *values[] = {"12.5", "45", "\"hello\"", "false",
                      "null", "{}", "[]", "\"\\u066Dhey\\\"\\/\""};
    usize i, j;
    if (!yy_buf_init(&buf, 1024)) return NULL;
    if (!yy_buf_append(&buf, (u8 *)"{", 1)) goto error;
    for (i = 0; i < obj_len; i++) {
        char key[32];
        if (i > 0 && !yy_buf_append(&buf, (u8 *)",", 1)) goto error;
        sprintf(key, "\"key%zu\":[", i);
        if (!yy_buf_append(&buf, (u8 *)key, strlen(key))) goto error;
        for (j = 0; j < arr_len; j++) {
            char *tmp;
            if (j > 0 && !yy_buf_append(&buf, (u8 *)",", 1)) goto error;
            tmp = values[(i + j) % (sizeof(values) / sizeof(char *))];
            if (!yy_buf_append(&buf, (u8 *)tmp, strlen(tmp))) goto error;
        }
        if (!yy_buf_append(&buf, (u8 *)"]", 1)) goto error;
    }
    if (!yy_buf_append(&buf, (u8 *)"}", 1)) goto error;
    if (!yy_buf_append(&buf, (u8 *)"\0\0\0\0", 4)) goto error;
    return (char *)buf.hdr;

error:
    yy_buf_release(&buf);
    return NULL;
}

// yyjson incremental with insitu
static void test_json_incremental(void) {
    char *dat = create_json(3, 10);
    usize len = strlen(dat);
    char *dat_dup = yy_str_copy(dat);
    yyjson_doc *doc = test_incr_read_insitu(dat, len, 1, 0);
    yy_assertf(doc != NULL, "incremental read should pass but fail\n");

#if !YYJSON_DISABLE_WRITER
    usize pretty_len;
    char *pretty;
    pretty = yyjson_write(doc, YYJSON_WRITE_PRETTY, &pretty_len);
    yy_assert(pretty && pretty_len);
    yyjson_doc_free(doc);
    pretty = realloc(pretty, pretty_len + YYJSON_PADDING_SIZE); /* for insitu */
    doc = test_incr_read_insitu(pretty, pretty_len, 1, 0);
    yy_assertf(doc != NULL, "incremental read pretty should pass but fail\n");
    usize minify_len;
    char *minify;
    minify = yyjson_write(doc, YYJSON_WRITE_ESCAPE_UNICODE | YYJSON_WRITE_ESCAPE_SLASHES, &minify_len);
    free(pretty);
#if !YYJSON_DISABLE_FAST_FP_CONV
    yy_assertf(strcmp(minify, dat_dup) == 0, "roundtrip to minified JSON mismatch\n");
#endif
    free(minify);
#endif

    yyjson_doc_free(doc);
    free(dat);
    free(dat_dup);
}

#else
static void test_json_incremental() {}
#endif



/*==============================================================================
 * MARK: - Entry
 *============================================================================*/

yy_test_case(test_json_reader) {
    test_json_yyjson();
    test_json_checker();
    test_json_parsing();
    test_json_transform();
    test_json_encoding();
    test_json_whitespace();
    test_json_incremental();
}

#else
yy_test_case(test_json_reader) {}
#endif