1 // SPDX-License-Identifier: GPL-2.0+
3 * Unit tests for Unicode functions
5 * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de>
12 #include <test/test.h>
13 #include <test/suites.h>
16 /* Linker list entry for a Unicode test */
17 #define UNICODE_TEST(_name) UNIT_TEST(_name, 0, unicode_test)
19 /* Constants c1-c4 and d1-d4 encode the same letters */
21 /* Six characters translating to one utf-8 byte each. */
22 static const u16 c1[] = {0x55, 0x2d, 0x42, 0x6f, 0x6f, 0x74, 0x00};
23 /* One character translating to two utf-8 bytes */
24 static const u16 c2[] = {0x6b, 0x61, 0x66, 0x62, 0xe1, 0x74, 0x75, 0x72, 0x00};
25 /* Three characters translating to three utf-8 bytes each */
26 static const u16 c3[] = {0x6f5c, 0x6c34, 0x8266, 0x00};
27 /* Three letters translating to four utf-8 bytes each */
28 static const u16 c4[] = {0xd801, 0xdc8d, 0xd801, 0xdc96, 0xd801, 0xdc87,
31 /* Illegal utf-16 strings */
32 static const u16 i1[] = {0x69, 0x31, 0xdc87, 0x6c, 0x00};
33 static const u16 i2[] = {0x69, 0x32, 0xd801, 0xd801, 0x6c, 0x00};
34 static const u16 i3[] = {0x69, 0x33, 0xd801, 0x00};
36 /* Six characters translating to one utf-16 word each. */
37 static const char d1[] = {0x55, 0x2d, 0x42, 0x6f, 0x6f, 0x74, 0x00};
38 /* Eight characters translating to one utf-16 word each */
39 static const char d2[] = {0x6b, 0x61, 0x66, 0x62, 0xc3, 0xa1, 0x74, 0x75,
41 /* Three characters translating to one utf-16 word each */
42 static const char d3[] = {0xe6, 0xbd, 0x9c, 0xe6, 0xb0, 0xb4, 0xe8, 0x89,
44 /* Three letters translating to two utf-16 word each */
45 static const char d4[] = {0xf0, 0x90, 0x92, 0x8d, 0xf0, 0x90, 0x92, 0x96,
46 0xf0, 0x90, 0x92, 0x87, 0x00};
48 /* Illegal utf-8 strings */
49 static const char j1[] = {0x6a, 0x31, 0xa1, 0x6c, 0x00};
50 static const char j2[] = {0x6a, 0x32, 0xc3, 0xc3, 0x6c, 0x00};
51 static const char j3[] = {0x6a, 0x33, 0xf0, 0x90, 0xf0, 0x00};
53 static int unicode_test_u16_strdup(struct unit_test_state *uts)
55 u16 *copy = u16_strdup(c4);
57 ut_assert(copy != c4);
58 ut_assert(!memcmp(copy, c4, sizeof(c4)));
62 UNICODE_TEST(unicode_test_u16_strdup);
64 static int unicode_test_u16_strcpy(struct unit_test_state *uts)
69 r = u16_strcpy(copy, c1);
71 ut_assert(!memcmp(copy, c1, sizeof(c1)));
74 UNICODE_TEST(unicode_test_u16_strcpy);
76 /* U-Boot uses UTF-16 strings in the EFI context only. */
77 #if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD)
78 static int unicode_test_string16(struct unit_test_state *uts)
82 /* Test length and precision */
83 memset(buf, 0xff, sizeof(buf));
84 sprintf(buf, "%8.6ls", c2);
85 ut_asserteq(' ', buf[1]);
86 ut_assert(!strncmp(&buf[2], d2, 7));
89 memset(buf, 0xff, sizeof(buf));
90 sprintf(buf, "%8.6ls", c4);
91 ut_asserteq(' ', buf[4]);
92 ut_assert(!strncmp(&buf[5], d4, 12));
95 memset(buf, 0xff, sizeof(buf));
96 sprintf(buf, "%-8.2ls", c4);
97 ut_asserteq(' ', buf[8]);
98 ut_assert(!strncmp(buf, d4, 8));
101 /* Test handling of illegal utf-16 sequences */
102 memset(buf, 0xff, sizeof(buf));
103 sprintf(buf, "%ls", i1);
104 ut_asserteq_str("i1?l", buf);
106 memset(buf, 0xff, sizeof(buf));
107 sprintf(buf, "%ls", i2);
108 ut_asserteq_str("i2?l", buf);
110 memset(buf, 0xff, sizeof(buf));
111 sprintf(buf, "%ls", i3);
112 ut_asserteq_str("i3?", buf);
116 UNICODE_TEST(unicode_test_string16);
119 static int unicode_test_utf8_get(struct unit_test_state *uts)
125 /* Check characters less than 0x800 */
127 for (i = 0; i < 8; ++i) {
128 code = utf8_get((const char **)&s);
129 /* c2 is the utf-8 encoding of d2 */
130 ut_asserteq(c2[i], code);
134 ut_asserteq_ptr(s, d2 + 9)
136 /* Check characters less than 0x10000 */
138 for (i = 0; i < 4; ++i) {
139 code = utf8_get((const char **)&s);
140 /* c3 is the utf-8 encoding of d3 */
141 ut_asserteq(c3[i], code);
145 ut_asserteq_ptr(s, d3 + 9)
147 /* Check character greater 0xffff */
149 code = utf8_get((const char **)&s);
150 ut_asserteq(0x0001048d, code);
151 ut_asserteq_ptr(s, d4 + 4);
155 UNICODE_TEST(unicode_test_utf8_get);
157 static int unicode_test_utf8_put(struct unit_test_state *uts)
159 char buffer[8] = { 0, };
162 /* Commercial at, translates to one character */
164 ut_assert(!utf8_put('@', &pos))
165 ut_asserteq(1, pos - buffer);
166 ut_asserteq('@', buffer[0]);
167 ut_assert(!buffer[1]);
169 /* Latin letter G with acute, translates to two charactes */
171 ut_assert(!utf8_put(0x1f4, &pos));
172 ut_asserteq(2, pos - buffer);
173 ut_asserteq_str("\xc7\xb4", buffer);
175 /* Tagalog letter i, translates to three characters */
177 ut_assert(!utf8_put(0x1701, &pos));
178 ut_asserteq(3, pos - buffer);
179 ut_asserteq_str("\xe1\x9c\x81", buffer);
181 /* Hamster face, translates to four characters */
183 ut_assert(!utf8_put(0x1f439, &pos));
184 ut_asserteq(4, pos - buffer);
185 ut_asserteq_str("\xf0\x9f\x90\xb9", buffer);
189 ut_asserteq(-1, utf8_put(0xd888, &pos));
193 UNICODE_TEST(unicode_test_utf8_put);
195 static int unicode_test_utf8_utf16_strlen(struct unit_test_state *uts)
197 ut_asserteq(6, utf8_utf16_strlen(d1));
198 ut_asserteq(8, utf8_utf16_strlen(d2));
199 ut_asserteq(3, utf8_utf16_strlen(d3));
200 ut_asserteq(6, utf8_utf16_strlen(d4));
202 /* illegal utf-8 sequences */
203 ut_asserteq(4, utf8_utf16_strlen(j1));
204 ut_asserteq(4, utf8_utf16_strlen(j2));
205 ut_asserteq(3, utf8_utf16_strlen(j3));
209 UNICODE_TEST(unicode_test_utf8_utf16_strlen);
211 static int unicode_test_utf8_utf16_strnlen(struct unit_test_state *uts)
213 ut_asserteq(3, utf8_utf16_strnlen(d1, 3));
214 ut_asserteq(6, utf8_utf16_strnlen(d1, 13));
215 ut_asserteq(6, utf8_utf16_strnlen(d2, 6));
216 ut_asserteq(2, utf8_utf16_strnlen(d3, 2));
217 ut_asserteq(4, utf8_utf16_strnlen(d4, 2));
218 ut_asserteq(6, utf8_utf16_strnlen(d4, 3));
220 /* illegal utf-8 sequences */
221 ut_asserteq(4, utf8_utf16_strnlen(j1, 16));
222 ut_asserteq(4, utf8_utf16_strnlen(j2, 16));
223 ut_asserteq(3, utf8_utf16_strnlen(j3, 16));
227 UNICODE_TEST(unicode_test_utf8_utf16_strnlen);
230 * ut_u16_strcmp() - Compare to u16 strings.
234 * @count: number of u16 to compare
235 * Return: -1 if a1 < a2, 0 if a1 == a2, 1 if a1 > a2
237 static int unicode_test_u16_strcmp(const u16 *a1, const u16 *a2, size_t count)
239 for (; (*a1 || *a2) && count; ++a1, ++a2, --count) {
248 static int unicode_test_utf8_utf16_strcpy(struct unit_test_state *uts)
254 utf8_utf16_strcpy(&pos, d1);
255 ut_asserteq(6, pos - buf);
256 ut_assert(!unicode_test_u16_strcmp(buf, c1, SIZE_MAX));
259 utf8_utf16_strcpy(&pos, d2);
260 ut_asserteq(8, pos - buf);
261 ut_assert(!unicode_test_u16_strcmp(buf, c2, SIZE_MAX));
264 utf8_utf16_strcpy(&pos, d3);
265 ut_asserteq(3, pos - buf);
266 ut_assert(!unicode_test_u16_strcmp(buf, c3, SIZE_MAX));
269 utf8_utf16_strcpy(&pos, d4);
270 ut_asserteq(6, pos - buf);
271 ut_assert(!unicode_test_u16_strcmp(buf, c4, SIZE_MAX));
273 /* Illegal utf-8 strings */
275 utf8_utf16_strcpy(&pos, j1);
276 ut_asserteq(4, pos - buf);
277 ut_assert(!unicode_test_u16_strcmp(buf, L"j1?l", SIZE_MAX));
280 utf8_utf16_strcpy(&pos, j2);
281 ut_asserteq(4, pos - buf);
282 ut_assert(!unicode_test_u16_strcmp(buf, L"j2?l", SIZE_MAX));
285 utf8_utf16_strcpy(&pos, j3);
286 ut_asserteq(3, pos - buf);
287 ut_assert(!unicode_test_u16_strcmp(buf, L"j3?", SIZE_MAX));
291 UNICODE_TEST(unicode_test_utf8_utf16_strcpy);
293 static int unicode_test_utf8_utf16_strncpy(struct unit_test_state *uts)
299 memset(buf, 0, sizeof(buf));
300 utf8_utf16_strncpy(&pos, d1, 4);
301 ut_asserteq(4, pos - buf);
303 ut_assert(!unicode_test_u16_strcmp(buf, c1, 4));
306 memset(buf, 0, sizeof(buf));
307 utf8_utf16_strncpy(&pos, d2, 10);
308 ut_asserteq(8, pos - buf);
310 ut_assert(!unicode_test_u16_strcmp(buf, c2, SIZE_MAX));
313 memset(buf, 0, sizeof(buf));
314 utf8_utf16_strncpy(&pos, d3, 2);
315 ut_asserteq(2, pos - buf);
317 ut_assert(!unicode_test_u16_strcmp(buf, c3, 2));
320 memset(buf, 0, sizeof(buf));
321 utf8_utf16_strncpy(&pos, d4, 2);
322 ut_asserteq(4, pos - buf);
324 ut_assert(!unicode_test_u16_strcmp(buf, c4, 4));
327 memset(buf, 0, sizeof(buf));
328 utf8_utf16_strncpy(&pos, d4, 10);
329 ut_asserteq(6, pos - buf);
331 ut_assert(!unicode_test_u16_strcmp(buf, c4, SIZE_MAX));
335 UNICODE_TEST(unicode_test_utf8_utf16_strncpy);
337 static int unicode_test_utf16_get(struct unit_test_state *uts)
343 /* Check characters less than 0x10000 */
345 for (i = 0; i < 9; ++i) {
346 code = utf16_get((const u16 **)&s);
347 ut_asserteq(c2[i], code);
351 ut_asserteq_ptr(c2 + 8, s);
353 /* Check character greater 0xffff */
355 code = utf16_get((const u16 **)&s);
356 ut_asserteq(0x0001048d, code);
357 ut_asserteq_ptr(c4 + 2, s);
361 UNICODE_TEST(unicode_test_utf16_get);
363 static int unicode_test_utf16_put(struct unit_test_state *uts)
365 u16 buffer[4] = { 0, };
368 /* Commercial at, translates to one word */
370 ut_assert(!utf16_put('@', &pos));
371 ut_asserteq(1, pos - buffer);
372 ut_asserteq((u16)'@', buffer[0]);
373 ut_assert(!buffer[1]);
375 /* Hamster face, translates to two words */
377 ut_assert(!utf16_put(0x1f439, &pos));
378 ut_asserteq(2, pos - buffer);
379 ut_asserteq((u16)0xd83d, buffer[0]);
380 ut_asserteq((u16)0xdc39, buffer[1]);
381 ut_assert(!buffer[2]);
385 ut_asserteq(-1, utf16_put(0xd888, &pos));
389 UNICODE_TEST(unicode_test_utf16_put);
391 static int unicode_test_utf16_strnlen(struct unit_test_state *uts)
393 ut_asserteq(3, utf16_strnlen(c1, 3));
394 ut_asserteq(6, utf16_strnlen(c1, 13));
395 ut_asserteq(6, utf16_strnlen(c2, 6));
396 ut_asserteq(2, utf16_strnlen(c3, 2));
397 ut_asserteq(2, utf16_strnlen(c4, 2));
398 ut_asserteq(3, utf16_strnlen(c4, 3));
400 /* illegal utf-16 word sequences */
401 ut_asserteq(4, utf16_strnlen(i1, 16));
402 ut_asserteq(4, utf16_strnlen(i2, 16));
403 ut_asserteq(3, utf16_strnlen(i3, 16));
407 UNICODE_TEST(unicode_test_utf16_strnlen);
409 static int unicode_test_utf16_utf8_strlen(struct unit_test_state *uts)
411 ut_asserteq(6, utf16_utf8_strlen(c1));
412 ut_asserteq(9, utf16_utf8_strlen(c2));
413 ut_asserteq(9, utf16_utf8_strlen(c3));
414 ut_asserteq(12, utf16_utf8_strlen(c4));
416 /* illegal utf-16 word sequences */
417 ut_asserteq(4, utf16_utf8_strlen(i1));
418 ut_asserteq(4, utf16_utf8_strlen(i2));
419 ut_asserteq(3, utf16_utf8_strlen(i3));
423 UNICODE_TEST(unicode_test_utf16_utf8_strlen);
425 static int unicode_test_utf16_utf8_strnlen(struct unit_test_state *uts)
427 ut_asserteq(3, utf16_utf8_strnlen(c1, 3));
428 ut_asserteq(6, utf16_utf8_strnlen(c1, 13));
429 ut_asserteq(7, utf16_utf8_strnlen(c2, 6));
430 ut_asserteq(6, utf16_utf8_strnlen(c3, 2));
431 ut_asserteq(8, utf16_utf8_strnlen(c4, 2));
432 ut_asserteq(12, utf16_utf8_strnlen(c4, 3));
435 UNICODE_TEST(unicode_test_utf16_utf8_strnlen);
437 static int unicode_test_utf16_utf8_strcpy(struct unit_test_state *uts)
443 utf16_utf8_strcpy(&pos, c1);
444 ut_asserteq(6, pos - buf);
445 ut_asserteq_str(d1, buf);
448 utf16_utf8_strcpy(&pos, c2);
449 ut_asserteq(9, pos - buf);
450 ut_asserteq_str(d2, buf);
453 utf16_utf8_strcpy(&pos, c3);
454 ut_asserteq(9, pos - buf);
455 ut_asserteq_str(d3, buf);
458 utf16_utf8_strcpy(&pos, c4);
459 ut_asserteq(12, pos - buf);
460 ut_asserteq_str(d4, buf);
462 /* Illegal utf-16 strings */
464 utf16_utf8_strcpy(&pos, i1);
465 ut_asserteq(4, pos - buf);
466 ut_asserteq_str("i1?l", buf);
469 utf16_utf8_strcpy(&pos, i2);
470 ut_asserteq(4, pos - buf);
471 ut_asserteq_str("i2?l", buf);
474 utf16_utf8_strcpy(&pos, i3);
475 ut_asserteq(3, pos - buf);
476 ut_asserteq_str("i3?", buf);
480 UNICODE_TEST(unicode_test_utf16_utf8_strcpy);
482 static int unicode_test_utf16_utf8_strncpy(struct unit_test_state *uts)
488 memset(buf, 0, sizeof(buf));
489 utf16_utf8_strncpy(&pos, c1, 4);
490 ut_asserteq(4, pos - buf);
492 ut_assert(!strncmp(buf, d1, 4));
495 memset(buf, 0, sizeof(buf));
496 utf16_utf8_strncpy(&pos, c2, 10);
497 ut_asserteq(9, pos - buf);
499 ut_assert(!strncmp(buf, d2, SIZE_MAX));
502 memset(buf, 0, sizeof(buf));
503 utf16_utf8_strncpy(&pos, c3, 2);
504 ut_asserteq(6, pos - buf);
506 ut_assert(!strncmp(buf, d3, 6));
509 memset(buf, 0, sizeof(buf));
510 utf16_utf8_strncpy(&pos, c4, 2);
511 ut_asserteq(8, pos - buf);
513 ut_assert(!strncmp(buf, d4, 8));
516 memset(buf, 0, sizeof(buf));
517 utf16_utf8_strncpy(&pos, c4, 10);
518 ut_asserteq(12, pos - buf);
520 ut_assert(!strncmp(buf, d4, SIZE_MAX));
524 UNICODE_TEST(unicode_test_utf16_utf8_strncpy);
526 static int unicode_test_utf_to_lower(struct unit_test_state *uts)
528 ut_asserteq('@', utf_to_lower('@'));
529 ut_asserteq('a', utf_to_lower('A'));
530 ut_asserteq('z', utf_to_lower('Z'));
531 ut_asserteq('[', utf_to_lower('['));
532 ut_asserteq('m', utf_to_lower('m'));
533 /* Latin letter O with diaresis (umlaut) */
534 ut_asserteq(0x00f6, utf_to_lower(0x00d6));
535 #ifdef CONFIG_EFI_UNICODE_CAPITALIZATION
536 /* Cyrillic letter I*/
537 ut_asserteq(0x0438, utf_to_lower(0x0418));
541 UNICODE_TEST(unicode_test_utf_to_lower);
543 static int unicode_test_utf_to_upper(struct unit_test_state *uts)
545 ut_asserteq('`', utf_to_upper('`'));
546 ut_asserteq('A', utf_to_upper('a'));
547 ut_asserteq('Z', utf_to_upper('z'));
548 ut_asserteq('{', utf_to_upper('{'));
549 ut_asserteq('M', utf_to_upper('M'));
550 /* Latin letter O with diaresis (umlaut) */
551 ut_asserteq(0x00d6, utf_to_upper(0x00f6));
552 #ifdef CONFIG_EFI_UNICODE_CAPITALIZATION
553 /* Cyrillic letter I */
554 ut_asserteq(0x0418, utf_to_upper(0x0438));
558 UNICODE_TEST(unicode_test_utf_to_upper);
560 int do_ut_unicode(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
562 struct unit_test *tests = ll_entry_start(struct unit_test, unicode_test);
563 const int n_ents = ll_entry_count(struct unit_test, unicode_test);
565 return cmd_ut_category("Unicode", tests, n_ents, argc, argv);