File: test_string_calls_unicode.c

package info (click to toggle)
xrdp 0.10.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 15,088 kB
  • sloc: ansic: 107,426; sh: 5,852; asm: 4,742; cpp: 2,555; makefile: 1,474
file content (835 lines) | stat: -rw-r--r-- 28,923 bytes parent folder | download | duplicates (3)
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
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
/*
 * The UTF-8 decoder tests are based on the UTF-8 decoder capability
 * and stress test" 2015-08-26 by Markus Kuhn. A copy of that file
 * named "UTF-8-test.txt" should be in the source directory for this file */

#if defined(HAVE_CONFIG_H)
#include "config_ac.h"
#endif

#include "string_calls.h"

#include "test_common.h"

// Abbreviate UCS_REPLACEMENT_CHARACTER for utf8_decode_sub_test arrays
#define URC UCS_REPLACEMENT_CHARACTER

struct utf8_decode_sub_test
{
    const char *testref;
    const char *utf8str;
    // This array will contain 0 values after the initialised part
    const char32_t expected[65];
};

// Abbreviate UCS_REPLACEMENT_CHARACTER for utf8_encode_sub_test arrays
#define E_URC { 0xef, 0xbf, 0xbd }

struct utf8_encode_sub_test
{
    const char *testref;
    char32_t c32;
    unsigned int expected_len;
    char expected_str[MAXLEN_UTF8_CHAR];
};

// Used as the simple test in UTF-8-test.txt
const static char greek_kosme[] =
    "\xce\xba" // GREEK SMALL LETTER KAPPA
    "\xe1\xbd\xb9" // GREEK SMALL LETTER OMICRON WITH OXIA
    "\xcf\x83" // GREEK SMALL LETTER SIGMA
    "\xce\xbc" // GREEK SMALL LETTER MU
    "\xce\xb5"; // GREEK SMALL LETTER EPSILON

// See Issue #2603
const static char simple_test_with_emoji[] =
    "Simple Test."
    "\xf0\x9f\x98\xa5"; // U+1F625 Disappointed But Relieved Face

/******************************************************************************/
/**
 * Function to decode a UTF-8 string and check the expected result
 *
 * @param st Pointer to the sub-test to run
 */
static void
run_utf8_decode_sub_test(const struct utf8_decode_sub_test *st)
{
    char32_t c;
    const char *p = st->utf8str;
    unsigned int index = 0;

    do
    {
        c = utf8_get_next_char(&p, NULL);

        if (c != st->expected[index])
        {
            ck_abort_msg("Sub-test section %s Index %u expected %x, got %x",
                         st->testref,
                         index, st->expected[index], c);
        }
        ++index;
    }
    while (c != 0);
}

/******************************************************************************/
/**
 * Function to run an array of decode sub-tests
 *
 * @param st Pointer to the first sub-test to run
 */
static void
run_decode_sub_test_array(const struct utf8_decode_sub_test *st)
{
    while (st->utf8str != NULL)
    {
        run_utf8_decode_sub_test(st++);
    }
}

/******************************************************************************/
/**
 * Function to encode a UTF-8 value and check the expected result
 *
 * @param st Pointer to the sub-test to run
 */
static void
run_utf8_encode_sub_test(const struct utf8_encode_sub_test *st)
{
    char actual_str[MAXLEN_UTF8_CHAR];
    unsigned int index;
    unsigned int actual_len = utf_char32_to_utf8(st->c32, actual_str);

    if (actual_len != st->expected_len)
    {
        ck_abort_msg("Sub-test %s Expected length of %u, got %u",
                     st->testref,
                     st->expected_len, actual_len);
    }

    for (index = 0 ; index < actual_len; ++index)
    {
        if (actual_str[index] != st->expected_str[index])
        {
            ck_abort_msg("Sub-test %s Character %u, expected %02x got %02x",
                         st->testref, index,
                         (int)(unsigned char)st->expected_str[index],
                         (int)(unsigned char)actual_str[index]);
        }
    }
}

/******************************************************************************/
/**
 * Function to run an array of encode sub-tests
 *
 * @param st Pointer to the first sub-test to run
 */
static void
run_encode_sub_test_array(const struct utf8_encode_sub_test *st)
{
    while (st->expected_len > 0)
    {
        run_utf8_encode_sub_test(st++);
    }
}


/******************************************************************************/
START_TEST(test_get_next_char__section_1)
{
    const struct utf8_decode_sub_test st =
    {
        "1",
        greek_kosme,
        {
            0x03ba, // GREEK SMALL LETTER KAPPA
            0x1f79, // GREEK SMALL LETTER OMICRON WITH OXIA
            0x03c3, // GREEK SMALL LETTER SIGMA
            0x03bc, // GREEK SMALL LETTER MU
            0x03b5  // GREEK SMALL LETTER EPSILON
        }
    };

    run_utf8_decode_sub_test(&st);
}
END_TEST

/******************************************************************************/
START_TEST(test_get_next_char__section_2)
{
    struct utf8_decode_sub_test tests[] =
    {
        // 2.1  First possible sequence of a certain length
        //
        // (2.1.1 Is tested separately)
        { "2.1.2", "\xc2\x80", { 0x80 } },
        { "2.1.3", "\xe0\xa0\x80", { 0x800 } },
        { "2.1.4", "\xf0\x90\x80\x80", { 0x10000 } },
        { "2.1.5", "\xf8\x88\x80\x80\x80", { URC } },
        { "2.1.6", "\xfc\x84\x80\x80\x80\x80", { URC } },

        // 2.2  Last possible sequence of a certain length
        { "2.2.1", "\x7f", { 0x7f } },
        { "2.2.2", "\xdf\xbf", { 0x7ff } },
        // Use U+0000FFFC instead of U+0000FFFF as our decoder
        // treats non-characters as an input error
        { "2.2.3", "\xef\xbf\xbc", { 0xfffc } },
        // U+001FFFFF is out-of-range
        { "2.2.4", "\xf7\xbf\xbf\xbf", { URC } },
        { "2.2.5", "\xfb\xbf\xbf\xbf\xbf", { URC } },
        { "2.2.6", "\xfd\xbf\xbf\xbf\xbf\xbf", { URC } },

        // 2.3  Other boundary conditions
        { "2.3.1", "\xed\x9f\xbf", { 0xd7ff } },
        { "2.3.2", "\xee\x80\x80", { 0xe000 } },
        { "2.3.3", "\xef\xbf\xbd", { 0xfffd } },
        // Don't use U+10FFFF (non-character)
        { "2.3.4", "\xf4\x8f\xbf\xbd", { 0x10fffd } },
        { "2.3.5", "\xf4\x90\x80\x80", { URC } },
        // Terminator
        { 0 }
    };

    // 2.1.1 is a '\0' which we use to terminate our strings. Test
    // it separately
    {
        const char *p = "";

        ck_assert_int_eq(utf8_get_next_char(&p, NULL), 0);
    }

    // Do the rest of the section 2 tests
    run_decode_sub_test_array(tests);
}
END_TEST

/******************************************************************************/
START_TEST(test_get_next_char__section_3)
{
    struct utf8_decode_sub_test tests[] =
    {
        // 3.1  Unexpected continuation bytes
        //
        // Each unexpected continuation byte should be separately
        // signalled as a malformed sequence of its own.
        { "3.1.1", "\x80", { URC } },
        { "3.1.2", "\xbf", { URC } },
        { "3.1.3", "\x80\xbf", { URC, URC } },
        { "3.1.4", "\x80\xbf\x80", { URC, URC, URC } },
        { "3.1.5", "\x80\xbf\x80\xbf", { URC, URC, URC, URC } },
        { "3.1.6", "\x80\xbf\x80\xbf\x80", { URC, URC, URC, URC, URC } },
        {
            "3.1.7",
            "\x80\xbf\x80\xbf\x80\xbf",
            { URC, URC, URC, URC, URC, URC }
        },
        {
            "3.1.8",
            "\x80\xbf\x80\xbf\x80\xbf\x80",
            { URC, URC, URC, URC, URC, URC, URC }
        },
        {
            "3.1.9",
            "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f"
            "\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f"
            "\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf"
            "\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf",
            {
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC
            }
        },

        // 3.2  Lonely start characters
        {
            "3.2.1",
            "\xc0 \xc1 \xc2 \xc3 \xc4 \xc5 \xc6 \xc7 "
            "\xc8 \xc9 \xca \xcb \xcc \xcd \xce \xcf "
            "\xd0 \xd1 \xd2 \xd3 \xd4 \xd5 \xd6 \xd7 "
            "\xd8 \xd9 \xda \xdb \xdc \xdd \xde \xdf ",
            {
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' '
            }
        },
        {
            "3.2.2",
            "\xe0 \xe1 \xe2 \xe3 \xe4 \xe5 \xe6 \xe7 "
            "\xe8 \xe9 \xea \xeb \xec \xed \xee \xef ",
            {
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' '
            }
        },
        {
            "3.2.3",
            "\xf0 \xf1 \xf2 \xf3 \xf4 \xf5 \xf6 \xf7 ",
            {
                URC, ' ', URC, ' ', URC, ' ', URC, ' ',
                URC, ' ', URC, ' ', URC, ' ', URC, ' '
            }
        },
        {
            "3.2.4",
            "\xf8 \xf9 \xfa \xfb ",
            {
                URC, ' ', URC, ' ', URC, ' ', URC, ' '
            }
        },
        {
            "3.2.5", "\xfc \xfd ", { URC, ' ', URC, ' ' }
        },

        // 3.3  Sequences with last continuation byte missing
        //
        // From  UTF-8-test.txt:-
        //     All bytes of an incomplete sequence should be signalled as
        //     a single malformed sequence, i.e., you should see only a
        //     single replacement character in each of the next 10 tests.
        { "3.3.1", "\xc0", { URC } },
        { "3.3.2", "\xe0\x80", { URC } },
        { "3.3.3", "\xf0\x80\x80", { URC } },
        { "3.3.4", "\xf8\x80\x80\x80", { URC } },
        { "3.3.5", "\xfc\x80\x80\x80\x80", { URC } },

        { "3.3.6", "\xdf", { URC } },
        { "3.3.7", "\xef\xbf", { URC } },
        { "3.3.8", "\xf7\xbf\xbf", { URC} },
        { "3.3.9", "\xfb\xbf\xbf\xbf", { URC } },
        { "3.3.10", "\xfd\xbf\xbf\xbf\xbf", { URC } },

        // 3.4  Concatenation of incomplete sequences
        {
            "3,4",
            "\xc0"
            "\xe0\x80"
            "\xf0\x80\x80"
            "\xf8\x80\x80\x80"
            "\xfc\x80\x80\x80\x80"
            "\xdf"
            "\xef\xbf"
            "\xf7\xbf\xbf"
            "\xfb\xbf\xbf\xbf"
            "\xfd\xbf\xbf\xbf\xbf",
            {
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC
            }
        },

        // 3.5  Impossible bytes
        { "3.5.1", "\xfe", { URC } },
        { "3.5.2", "\xff", { URC } },
        { "3.5.3", "\xfe\xfe\xff\xff", { URC, URC, URC, URC } },
        // Terminator
        { 0 }
    };

    run_decode_sub_test_array(tests);
}
END_TEST

/******************************************************************************/
START_TEST(test_get_next_char__section_4)
{
    struct utf8_decode_sub_test tests[] =
    {
        // 4.1  Examples of an overlong ASCII character
        //
        // With a safe UTF-8 decoder, all of the following five
        // overlong representations of the ASCII character slash ("/")
        // should be rejected like a malformed UTF-8 sequence, for
        // instance by substituting it with a replacement character. If
        // you see a slash below, you do not have a safe UTF-8 decoder!
        { "4.1.1", "\xc0\xaf", { URC } },
        { "4.1.2", "\xe0\x80\xaf", { URC } },
        { "4.1.3", "\xf0\x80\x80\xaf", { URC } },
        { "4.1.4", "\xf8\x80\x80\x80\xaf", { URC } },
        { "4.1.5", "\xfc\x80\x80\x80\x80\xaf", { URC } },

        // 4.2  Maximum overlong sequences

        // Below you see the highest Unicode value that is still resulting
        // in an overlong sequence if represented with the given number of
        // bytes. This is a boundary test for safe UTF-8 decoders. All
        // five characters should be rejected like malformed UTF-8
        // sequences.
        { "4.2.1", "\xc1\xbf", { URC } },
        { "4.2.2", "\xe0\x9f\xbf", { URC } },
        { "4.2.3", "\xf0\x8f\xbf\xbf", { URC } },
        { "4.2.4", "\xf8\x87\xbf\xbf\xbf", { URC } },
        { "4.2.5", "\xfc\x83\xbf\xbf\xbf\xbf", { URC } },

        // 4.3  Overlong representation of the NUL character

        // The following five sequences should also be rejected like
        // malformed UTF-8 sequences and should not be treated like the
        // ASCII NUL character.
        { "4.3.1", "\xc0\x80", { URC } },
        { "4.3.2", "\xe0\x80\x80", { URC } },
        { "4.3.3", "\xf0\x80\x80\x80", { URC } },
        { "4.3.4", "\xf8\x80\x80\x80\x80", { URC } },
        { "4.3.5", "\xfc\x80\x80\x80\x80\x80", { URC } },

        // Terminator
        { 0 }
    };

    run_decode_sub_test_array(tests);
}
END_TEST

/******************************************************************************/
START_TEST(test_get_next_char__section_5)
{
    struct utf8_decode_sub_test tests[] =
    {
        // 5  Illegal code positions

        // The following UTF-8 sequences should be rejected like
        // malformed sequences, because they never represent valid
        // ISO 10646 characters and a UTF-8 decoder that accepts them
        // might introduce security problems comparable to overlong
        // UTF-8 sequences.

        // 5.1 Single UTF-16 surrogates
        { "5.1.1", "\xed\xa0\x80", { URC } },
        { "5.1.2", "\xed\xad\xbf", { URC } },
        { "5.1.3", "\xed\xae\x80", { URC } },
        { "5.1.4", "\xed\xaf\xbf", { URC } },
        { "5.1.5", "\xed\xb0\x80", { URC } },
        { "5.1.6", "\xed\xbe\x80", { URC } },
        { "5.1.7", "\xed\xbf\xbf", { URC } },

        // 5.2 Paired UTF-16 surrogates
        { "5.2.1", "\xed\xa0\x80\xed\xb0\x80", { URC, URC } },
        { "5.2.2", "\xed\xa0\x80\xed\xbf\xbf", { URC, URC } },
        { "5.2.3", "\xed\xad\xbf\xed\xb0\x80", { URC, URC } },
        { "5.2.4", "\xed\xad\xbf\xed\xbf\xbf", { URC, URC } },
        { "5.2.5", "\xed\xae\x80\xed\xb0\x80", { URC, URC } },
        { "5.2.6", "\xed\xae\x80\xed\xbf\xbf", { URC, URC } },
        { "5.2.7", "\xed\xaf\xbf\xed\xb0\x80", { URC, URC } },
        { "5.2.8", "\xed\xaf\xbf\xed\xbf\xbf", { URC, URC } },

        // 5.3 Noncharacter code positions

        // The following "noncharacters" are "reserved for internal
        // use" by applications, and according to older versions of
        // the Unicode Standard "should never be interchanged". Unicode
        // Corrigendum #9 dropped the latter restriction. Nevertheless,
        // their presence in incoming UTF-8 data can remain a potential
        // security risk, depending on what use is made of these codes
        // subsequently. Examples of such internal use:
        //
        //  - Some file APIs with 16-bit characters may use the integer
        //    value -1 = U+FFFF to signal an end-of-file (EOF) or error
        //    condition.
        //
        //  - In some UTF-16 receivers, code point U+FFFE might trigger
        //    a byte-swap operation (to convert between UTF-16LE and
        //    UTF-16BE).
        // With such internal use of noncharacters, it may be desirable
        // and safer to block those code points in UTF-8 decoders, as
        // they should never occur legitimately in incoming UTF-8 data,
        // and could trigger unsafe behaviour in subsequent processing.

        // Particularly problematic noncharacters in 16-bit applications:
        { "5.3.1", "\xef\xbf\xbe", { URC } },
        { "5.3.2", "\xef\xbf\xbf", { URC } },

        // Other noncharacters:
        {
            "5.3.3",
            // Non-characters in "Arabic Presentation Forms-A" (BMP)
            "\xef\xb7\x90" "\xef\xb7\x91" "\xef\xb7\x92" "\xef\xb7\x93"
            "\xef\xb7\x94" "\xef\xb7\x95" "\xef\xb7\x96" "\xef\xb7\x97"
            "\xef\xb7\x98" "\xef\xb7\x99" "\xef\xb7\x9a" "\xef\xb7\x9b"
            "\xef\xb7\x9c" "\xef\xb7\x9d" "\xef\xb7\x9e" "\xef\xb7\x9f"
            "\xef\xb7\xa0" "\xef\xb7\xa1" "\xef\xb7\xa2" "\xef\xb7\xa3"
            "\xef\xb7\xa4" "\xef\xb7\xa5" "\xef\xb7\xa6" "\xef\xb7\xa7"
            "\xef\xb7\xa8" "\xef\xb7\xa9" "\xef\xb7\xaa" "\xef\xb7\xab"
            "\xef\xb7\xac" "\xef\xb7\xad" "\xef\xb7\xae" "\xef\xb7\xaf",
            {
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC
            }
        },

        {
            "5.3.4",
            "\xf0\x9f\xbf\xbe" "\xf0\x9f\xbf\xbf" // U+0001FFFE U+0001FFFF
            "\xf0\xaf\xbf\xbe" "\xf0\xaf\xbf\xbf" // U+0002FFFE U+0002FFFF
            "\xf0\xbf\xbf\xbe" "\xf0\xbf\xbf\xbf" // U+0003FFFE U+0003FFFF
            "\xf1\x8f\xbf\xbe" "\xf1\x8f\xbf\xbf" // U+0004FFFE U+0004FFFF
            "\xf1\x9f\xbf\xbe" "\xf1\x9f\xbf\xbf" // U+0005FFFE U+0005FFFF
            "\xf1\xaf\xbf\xbe" "\xf1\xaf\xbf\xbf" // U+0006FFFE U+0006FFFF
            "\xf1\xbf\xbf\xbe" "\xf1\xbf\xbf\xbf" // U+0007FFFE U+0007FFFF
            "\xf2\x8f\xbf\xbe" "\xf2\x8f\xbf\xbf" // U+0008FFFE U+0008FFFF
            "\xf2\x9f\xbf\xbe" "\xf2\x9f\xbf\xbf" // U+0009FFFE U+0009FFFF
            "\xf2\xaf\xbf\xbe" "\xf2\xaf\xbf\xbf" // U+000AFFFE U+000AFFFF
            "\xf2\xbf\xbf\xbe" "\xf2\xbf\xbf\xbf" // U+000BFFFE U+000BFFFF
            "\xf3\x8f\xbf\xbe" "\xf3\x8f\xbf\xbf" // U+000CFFFE U+000CFFFF
            "\xf3\x9f\xbf\xbe" "\xf3\x9f\xbf\xbf" // U+000DFFFE U+000DFFFF
            "\xf3\xaf\xbf\xbe" "\xf3\xaf\xbf\xbf" // U+000EFFFE U+000EFFFF
            "\xf3\xbf\xbf\xbe" "\xf3\xbf\xbf\xbf" // U+000FFFFE U+000FFFFF
            "\xf4\x8f\xbf\xbe" "\xf4\x8f\xbf\xbf",// U+0010FFFE U+0010FFFF
            {
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC,
                URC, URC, URC, URC, URC, URC, URC, URC
            }
        },

        // Last line of UTF8-test.txt
        { "TheEnd", "THE END\n", { 'T', 'H', 'E', ' ', 'E', 'N', 'D', '\n'} },

        // Terminator
        { 0 }

    };

    run_decode_sub_test_array(tests);
}
END_TEST

/******************************************************************************/
START_TEST(test_utf_char32_to_utf8)
{
    struct utf8_encode_sub_test tests[] =
    {

        // E2.1  First possible sequence of a certain length
        //
        { "E2.1.1", 0, 1, { 0 } },
        { "E2.1.2", 0x80, 2, { 0xc2, 0x80 } },
        { "E2.1.3", 0x800, 3, { 0xe0, 0xa0, 0x80 } },
        { "E2.1.4", 0x10000, 4, { 0xf0, 0x90, 0x80, 0x80 } },

        // E2.2  Last possible sequence of a certain length
        { "E2.2.1", 0x7f, 1, { 0x7f } },
        { "E2.2.2", 0x7ff, 2, { 0xdf, 0xbf } },
        { "E2.2.3", 0xfffc, 3, { 0xef, 0xbf, 0xbc } }, // See 2.1.3 above
        { "E2.2.4", 0x1FFFFF, 3, E_URC }, // out-of-range

        // E2.3  Other boundary conditions
        { "E2.3.1", 0xd7ff, 3, { 0xed, 0x9f, 0xbf } },
        { "E2.3.2", 0xe000, 3, { 0xee, 0x80, 0x80 } },
        { "E2.3.3", 0xfffd, 3, { 0xef, 0xbf, 0xbd } },
        { "E2.3.4", 0x10fffd, 4, { 0xf4, 0x8f, 0xbf, 0xbd } }, // See 2.3.4 above
        // E2.3.5 - not tested

        // E5.1 Single UTF-16 surrogates
        { "E5.1.1", 0xd800, 3, E_URC },
        { "E5.1.2", 0xdb7f, 3, E_URC },
        { "E5.1.3", 0xdb80, 3, E_URC },
        { "E5.1.4", 0xdbff, 3, E_URC },
        { "E5.1.5", 0xdc00, 3, E_URC },
        { "E5.1.6", 0xdf80, 3, E_URC },
        { "E5.1.7", 0xdfff, 3, E_URC },

        // E5.3 Non-character code positions
        { "E5.3.3(0)", 0xfdd0, 3, E_URC },
        { "E5.3.3(1)", 0xfdd1, 3, E_URC },
        { "E5.3.3(2)", 0xfdd2, 3, E_URC },
        { "E5.3.3(3)", 0xfdd3, 3, E_URC },
        { "E5.3.3(4)", 0xfdd4, 3, E_URC },
        { "E5.3.3(5)", 0xfdd5, 3, E_URC },
        { "E5.3.3(6)", 0xfdd6, 3, E_URC },
        { "E5.3.3(7)", 0xfdd7, 3, E_URC },
        { "E5.3.3(8)", 0xfdd8, 3, E_URC },
        { "E5.3.3(9)", 0xfdd9, 3, E_URC },
        { "E5.3.3(10)", 0xfdda, 3, E_URC },
        { "E5.3.3(11)", 0xfddb, 3, E_URC },
        { "E5.3.3(12)", 0xfddc, 3, E_URC },
        { "E5.3.3(13)", 0xfddd, 3, E_URC },
        { "E5.3.3(14)", 0xfdde, 3, E_URC },
        { "E5.3.3(15)", 0xfddf, 3, E_URC },
        { "E5.3.3(16)", 0xfde0, 3, E_URC },
        { "E5.3.3(17)", 0xfde1, 3, E_URC },
        { "E5.3.3(18)", 0xfde2, 3, E_URC },
        { "E5.3.3(19)", 0xfde3, 3, E_URC },
        { "E5.3.3(20)", 0xfde4, 3, E_URC },
        { "E5.3.3(21)", 0xfde5, 3, E_URC },
        { "E5.3.3(22)", 0xfde6, 3, E_URC },
        { "E5.3.3(23)", 0xfde7, 3, E_URC },
        { "E5.3.3(24)", 0xfde8, 3, E_URC },
        { "E5.3.3(25)", 0xfde9, 3, E_URC },
        { "E5.3.3(26)", 0xfdea, 3, E_URC },
        { "E5.3.3(27)", 0xfdeb, 3, E_URC },
        { "E5.3.3(28)", 0xfdec, 3, E_URC },
        { "E5.3.3(29)", 0xfded, 3, E_URC },
        { "E5.3.3(30)", 0xfdee, 3, E_URC },
        { "E5.3.3(31)", 0xfdef, 3, E_URC },
        { "E5.3.4(0)", 0x1fffe, 3, E_URC },
        { "E5.3.4(1)", 0x1ffff, 3, E_URC },
        { "E5.3.4(2)", 0x2fffe, 3, E_URC },
        { "E5.3.4(3)", 0x2ffff, 3, E_URC },
        { "E5.3.4(4)", 0x3fffe, 3, E_URC },
        { "E5.3.4(5)", 0x3ffff, 3, E_URC },
        { "E5.3.4(6)", 0x4fffe, 3, E_URC },
        { "E5.3.4(7)", 0x4ffff, 3, E_URC },
        { "E5.3.4(8)", 0x5fffe, 3, E_URC },
        { "E5.3.4(9)", 0x5ffff, 3, E_URC },
        { "E5.3.4(10)", 0x6fffe, 3, E_URC },
        { "E5.3.4(11)", 0x6ffff, 3, E_URC },
        { "E5.3.4(12)", 0x7fffe, 3, E_URC },
        { "E5.3.4(13)", 0x7ffff, 3, E_URC },
        { "E5.3.4(14)", 0x8fffe, 3, E_URC },
        { "E5.3.4(15)", 0x8ffff, 3, E_URC },
        { "E5.3.4(16)", 0x9fffe, 3, E_URC },
        { "E5.3.4(17)", 0x9ffff, 3, E_URC },
        { "E5.3.4(18)", 0xafffe, 3, E_URC },
        { "E5.3.4(19)", 0xaffff, 3, E_URC },
        { "E5.3.4(20)", 0xbfffe, 3, E_URC },
        { "E5.3.4(21)", 0xbffff, 3, E_URC },
        { "E5.3.4(22)", 0xcfffe, 3, E_URC },
        { "E5.3.4(23)", 0xcffff, 3, E_URC },
        { "E5.3.4(24)", 0xdfffe, 3, E_URC },
        { "E5.3.4(25)", 0xdffff, 3, E_URC },
        { "E5.3.4(26)", 0xefffe, 3, E_URC },
        { "E5.3.4(27)", 0xeffff, 3, E_URC },
        { "E5.3.4(28)", 0xffffe, 3, E_URC },
        { "E5.3.4(29)", 0xfffff, 3, E_URC },
        { "E5.3.4(30)", 0x10fffe, 3, E_URC },
        { "E5.3.4(31)", 0x10ffff, 3, E_URC },
        { "E5.99.0", 'T', 1, { 'T' } },
        { "E5.99.1", 'H', 1, { 'H' } },
        { "E5.99.2", 'E', 1, { 'E' } },
        { "E5.99.3", ' ', 1, { ' ' } },
        { "E5.99.4", 'E', 1, { 'E' } },
        { "E5.99.5", 'N', 1, { 'N' } },
        { "E5.99.6", 'D', 1, { 'D' } },

        // Terminator
        { 0 }
    };

    run_encode_sub_test_array(tests);
}
END_TEST

/******************************************************************************/
START_TEST(test_utf8_char_count)
{
    // Check function can cope with NULL argument
    ck_assert_int_eq(utf8_char_count(NULL), 0);

    unsigned int kosme_strlen = strlen(greek_kosme);
    unsigned int kosme_len = utf8_char_count(greek_kosme);

    // All characters map to two bytes except for the 'omicrom with oxia'
    // which maps to three
    ck_assert_int_eq(kosme_strlen, 2 + 3 + 2 + 2 + 2);
    ck_assert_int_eq(kosme_len, 5);

    unsigned int simple_test_strlen = strlen(simple_test_with_emoji);
    unsigned int simple_test_len = utf8_char_count(simple_test_with_emoji);

    ck_assert_int_eq(simple_test_strlen,
                     (1 + 1 + 1 + 1 + 1 + 1 ) + // Simple
                     1 +
                     (1 + 1 + 1 + 1 ) + // Test
                     1 +
                     4);               // emoji
    // The emoji is 4 bytes - all others are 1
    ck_assert_int_eq(simple_test_len, simple_test_strlen - 3);
}
END_TEST

/******************************************************************************/
START_TEST(test_utf8_as_utf16_word_count)
{
    unsigned int kosme_count =
        utf8_as_utf16_word_count(greek_kosme, strlen(greek_kosme));

    ck_assert_int_eq(kosme_count, 5); // All characters in BMP

    unsigned int simple_test_count =
        utf8_as_utf16_word_count(simple_test_with_emoji,
                                 strlen(simple_test_with_emoji));

    ck_assert_int_eq(simple_test_count,
                     (1 + 1 + 1 + 1 + 1 + 1 ) + // Simple
                     1 +
                     (1 + 1 + 1 + 1 ) + // Test
                     1 +
                     2); // emoji
}
END_TEST

/******************************************************************************/
START_TEST(test_utf8_add_char_at)
{
#define TEST_SIZE sizeof(simple_test_with_emoji)

    // Type pairing a string position with a Unicode char
    struct pos_to_char_map
    {
        unsigned int pos;
        char32_t c32;
    };

    // Buffer for constructing the string
    char buff[TEST_SIZE];

    // A pseudo-random map of the characters in simple_test_with_emoji
    const struct pos_to_char_map map[] =
    {
        { 0, 'l' },
        { 0, 'S' },
        { 1, 'i' },
        { 2, 'm' },
        { 4, 0x1f625 },
        { 4, '.' },
        { 4, 'e' },
        { 5, 'T' },
        { 3, 'p' },
        { 7, 't' },
        { 7, 'e' },
        { 8, 's' },
        { 6, ' ' },
        { 0 }
    };

    buff[0] = '\0';

    // Construct the string in a pseudo-random fashion

    const struct pos_to_char_map *p;
    for (p = map; p->c32 != 0 ; ++p)
    {
        if (!utf8_add_char_at(buff, TEST_SIZE, p->c32, p->pos))
        {
            ck_abort_msg("test_utf8_add_char_at: "
                         "Can't insert char %x at pos %u",
                         p->c32,
                         p->pos);
        }
    }

    // Should have reached the buffer size by now
    ck_assert_int_eq(strlen(buff), TEST_SIZE - 1);

    // Check the string is what we expect
    ck_assert_int_eq(strcmp(buff, simple_test_with_emoji), 0);

    // Try to insert another character
    if (utf8_add_char_at(buff, TEST_SIZE, ' ', 0))
    {
        ck_abort_msg("test_utf8_add_char_at: "
                     "Insert succeeded but should have failed");
    }

#undef TEST_SIZE
}
END_TEST

/******************************************************************************/
START_TEST(test_utf8_remove_char_at)
{
#define TEST_SIZE sizeof(simple_test_with_emoji)
    // Type pairing a string position with a Unicode char
    struct pos_to_char_map
    {
        unsigned int pos;
        char32_t c32;
    };

    // Buffer for deconstructing the string
    char buff[TEST_SIZE];

    // A pseudo-random map of the characters in simple_test_with_emoji
    const struct pos_to_char_map map[] =
    {
        { 2, 'm' },
        { 7, 'e' },
        { 5, ' ' },
        { 1, 'i' },
        { 2, 'l' },
        { 3, 'T' },
        { 6, 0x1f625 },
        { 2, 'e' },
        { 3, 't' },
        { 3, '.' },
        { 2, 's' },
        { 1, 'p' },
        { 0, 'S' },
        { 0 }
    };

    char32_t c32;

    strcpy(buff, simple_test_with_emoji);

    // Deconstruct the string in a pseudo-random fashion
    const struct pos_to_char_map *p;
    for (p = map; p->c32 != 0 ; ++p)
    {
        c32 = utf8_remove_char_at(buff, p->pos);
        if (c32 != p->c32)
        {
            ck_abort_msg("test_utf8_remove_char_at: "
                         "remove char at pos %u was %x, expected %x",
                         p->pos, c32, p->c32);
        }
    }

    // Should have emptied the buffer by now
    ck_assert_int_eq(buff[0], '\0');

    // Try to remove other characters
    c32 = utf8_remove_char_at(buff, 0);
    ck_assert_int_eq(c32, 0);
    c32 = utf8_remove_char_at(buff, 99);
    ck_assert_int_eq(c32, 0);
    ck_assert_int_eq(buff[0], '\0');

#undef TEST_SIZE
}
END_TEST

/******************************************************************************/

Suite *
make_suite_test_string_unicode(void)
{
    Suite *s;
    TCase *tc_unicode;

    s = suite_create("String");

    tc_unicode = tcase_create("Unicode");
    suite_add_tcase(s, tc_unicode);
    tcase_add_test(tc_unicode, test_get_next_char__section_1);
    tcase_add_test(tc_unicode, test_get_next_char__section_2);
    tcase_add_test(tc_unicode, test_get_next_char__section_3);
    tcase_add_test(tc_unicode, test_get_next_char__section_4);
    tcase_add_test(tc_unicode, test_get_next_char__section_5);
    tcase_add_test(tc_unicode, test_utf_char32_to_utf8);
    tcase_add_test(tc_unicode, test_utf8_char_count);
    tcase_add_test(tc_unicode, test_utf8_as_utf16_word_count);
    tcase_add_test(tc_unicode, test_utf8_add_char_at);
    tcase_add_test(tc_unicode, test_utf8_remove_char_at);

    return s;
}