blob: 47532a64df62b8409ac2dd8e8e716ee84ee15b4c [file] [log] [blame]
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Unit tests for Unicode functions
4 *
5 * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de>
6 */
7
8#include <common.h>
9#include <charset.h>
10#include <command.h>
11#include <errno.h>
12#include <test/test.h>
13#include <test/suites.h>
14#include <test/ut.h>
15
16/* Linker list entry for a Unicode test */
17#define UNICODE_TEST(_name) UNIT_TEST(_name, 0, unicode_test)
18
19/* Constants c1-c4 and d1-d4 encode the same letters */
20
21/* Six characters translating to one utf-8 byte each. */
22static const u16 c1[] = {0x55, 0x2d, 0x42, 0x6f, 0x6f, 0x74, 0x00};
23/* One character translating to two utf-8 bytes */
24static const u16 c2[] = {0x6b, 0x61, 0x66, 0x62, 0xe1, 0x74, 0x75, 0x72, 0x00};
25/* Three characters translating to three utf-8 bytes each */
26static const u16 c3[] = {0x6f5c, 0x6c34, 0x8266, 0x00};
27/* Three letters translating to four utf-8 bytes each */
28static const u16 c4[] = {0xd801, 0xdc8d, 0xd801, 0xdc96, 0xd801, 0xdc87,
29 0x0000};
30
31/* Illegal utf-16 strings */
32static const u16 i1[] = {0x69, 0x31, 0xdc87, 0x6c, 0x00};
33static const u16 i2[] = {0x69, 0x32, 0xd801, 0xd801, 0x6c, 0x00};
34static const u16 i3[] = {0x69, 0x33, 0xd801, 0x00};
35
36/* Six characters translating to one utf-16 word each. */
37static const char d1[] = {0x55, 0x2d, 0x42, 0x6f, 0x6f, 0x74, 0x00};
38/* Eight characters translating to one utf-16 word each */
39static const char d2[] = {0x6b, 0x61, 0x66, 0x62, 0xc3, 0xa1, 0x74, 0x75,
40 0x72, 0x00};
41/* Three characters translating to one utf-16 word each */
42static const char d3[] = {0xe6, 0xbd, 0x9c, 0xe6, 0xb0, 0xb4, 0xe8, 0x89,
43 0xa6, 0x00};
44/* Three letters translating to two utf-16 word each */
45static const char d4[] = {0xf0, 0x90, 0x92, 0x8d, 0xf0, 0x90, 0x92, 0x96,
46 0xf0, 0x90, 0x92, 0x87, 0x00};
47
48/* Illegal utf-8 strings */
49static const char j1[] = {0x6a, 0x31, 0xa1, 0x6c, 0x00};
50static const char j2[] = {0x6a, 0x32, 0xc3, 0xc3, 0x6c, 0x00};
51static const char j3[] = {0x6a, 0x33, 0xf0, 0x90, 0xf0, 0x00};
52
Heinrich Schuchardt02b31dc2019-07-14 17:47:46 +020053static int unicode_test_u16_strlen(struct unit_test_state *uts)
54{
55 ut_asserteq(6, u16_strlen(c1));
56 ut_asserteq(8, u16_strlen(c2));
57 ut_asserteq(3, u16_strlen(c3));
58 ut_asserteq(6, u16_strlen(c4));
59 return 0;
60}
61UNICODE_TEST(unicode_test_u16_strlen);
62
Heinrich Schuchardtbc196812019-02-15 23:12:50 +010063static int unicode_test_u16_strdup(struct unit_test_state *uts)
Heinrich Schuchardtabb93cb2018-12-14 22:00:37 +010064{
65 u16 *copy = u16_strdup(c4);
66
67 ut_assert(copy != c4);
68 ut_assert(!memcmp(copy, c4, sizeof(c4)));
69 free(copy);
70 return 0;
71}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +010072UNICODE_TEST(unicode_test_u16_strdup);
Heinrich Schuchardtabb93cb2018-12-14 22:00:37 +010073
Heinrich Schuchardtbc196812019-02-15 23:12:50 +010074static int unicode_test_u16_strcpy(struct unit_test_state *uts)
Heinrich Schuchardtabb93cb2018-12-14 22:00:37 +010075{
76 u16 *r;
77 u16 copy[10];
78
79 r = u16_strcpy(copy, c1);
80 ut_assert(r == copy);
81 ut_assert(!memcmp(copy, c1, sizeof(c1)));
82 return 0;
83}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +010084UNICODE_TEST(unicode_test_u16_strcpy);
Heinrich Schuchardtabb93cb2018-12-14 22:00:37 +010085
Heinrich Schuchardtfbba2f62018-08-31 21:31:30 +020086/* U-Boot uses UTF-16 strings in the EFI context only. */
87#if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD)
Heinrich Schuchardtbc196812019-02-15 23:12:50 +010088static int unicode_test_string16(struct unit_test_state *uts)
Heinrich Schuchardtfbba2f62018-08-31 21:31:30 +020089{
90 char buf[20];
91
92 /* Test length and precision */
93 memset(buf, 0xff, sizeof(buf));
94 sprintf(buf, "%8.6ls", c2);
95 ut_asserteq(' ', buf[1]);
96 ut_assert(!strncmp(&buf[2], d2, 7));
97 ut_assert(!buf[9]);
98
99 memset(buf, 0xff, sizeof(buf));
100 sprintf(buf, "%8.6ls", c4);
101 ut_asserteq(' ', buf[4]);
102 ut_assert(!strncmp(&buf[5], d4, 12));
103 ut_assert(!buf[17]);
104
105 memset(buf, 0xff, sizeof(buf));
106 sprintf(buf, "%-8.2ls", c4);
107 ut_asserteq(' ', buf[8]);
108 ut_assert(!strncmp(buf, d4, 8));
109 ut_assert(!buf[14]);
110
111 /* Test handling of illegal utf-16 sequences */
112 memset(buf, 0xff, sizeof(buf));
113 sprintf(buf, "%ls", i1);
114 ut_asserteq_str("i1?l", buf);
115
116 memset(buf, 0xff, sizeof(buf));
117 sprintf(buf, "%ls", i2);
118 ut_asserteq_str("i2?l", buf);
119
120 memset(buf, 0xff, sizeof(buf));
121 sprintf(buf, "%ls", i3);
122 ut_asserteq_str("i3?", buf);
123
124 return 0;
125}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100126UNICODE_TEST(unicode_test_string16);
Heinrich Schuchardtfbba2f62018-08-31 21:31:30 +0200127#endif
128
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100129static int unicode_test_utf8_get(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200130{
131 const char *s;
132 s32 code;
133 int i;
134
135 /* Check characters less than 0x800 */
136 s = d2;
137 for (i = 0; i < 8; ++i) {
138 code = utf8_get((const char **)&s);
139 /* c2 is the utf-8 encoding of d2 */
140 ut_asserteq(c2[i], code);
141 if (!code)
142 break;
143 }
144 ut_asserteq_ptr(s, d2 + 9)
145
146 /* Check characters less than 0x10000 */
147 s = d3;
148 for (i = 0; i < 4; ++i) {
149 code = utf8_get((const char **)&s);
150 /* c3 is the utf-8 encoding of d3 */
151 ut_asserteq(c3[i], code);
152 if (!code)
153 break;
154 }
155 ut_asserteq_ptr(s, d3 + 9)
156
157 /* Check character greater 0xffff */
158 s = d4;
159 code = utf8_get((const char **)&s);
160 ut_asserteq(0x0001048d, code);
161 ut_asserteq_ptr(s, d4 + 4);
162
163 return 0;
164}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100165UNICODE_TEST(unicode_test_utf8_get);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200166
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100167static int unicode_test_utf8_put(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200168{
169 char buffer[8] = { 0, };
170 char *pos;
171
172 /* Commercial at, translates to one character */
173 pos = buffer;
174 ut_assert(!utf8_put('@', &pos))
175 ut_asserteq(1, pos - buffer);
176 ut_asserteq('@', buffer[0]);
177 ut_assert(!buffer[1]);
178
179 /* Latin letter G with acute, translates to two charactes */
180 pos = buffer;
181 ut_assert(!utf8_put(0x1f4, &pos));
182 ut_asserteq(2, pos - buffer);
183 ut_asserteq_str("\xc7\xb4", buffer);
184
185 /* Tagalog letter i, translates to three characters */
186 pos = buffer;
187 ut_assert(!utf8_put(0x1701, &pos));
188 ut_asserteq(3, pos - buffer);
189 ut_asserteq_str("\xe1\x9c\x81", buffer);
190
191 /* Hamster face, translates to four characters */
192 pos = buffer;
193 ut_assert(!utf8_put(0x1f439, &pos));
194 ut_asserteq(4, pos - buffer);
195 ut_asserteq_str("\xf0\x9f\x90\xb9", buffer);
196
197 /* Illegal code */
198 pos = buffer;
199 ut_asserteq(-1, utf8_put(0xd888, &pos));
200
201 return 0;
202}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100203UNICODE_TEST(unicode_test_utf8_put);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200204
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100205static int unicode_test_utf8_utf16_strlen(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200206{
207 ut_asserteq(6, utf8_utf16_strlen(d1));
208 ut_asserteq(8, utf8_utf16_strlen(d2));
209 ut_asserteq(3, utf8_utf16_strlen(d3));
210 ut_asserteq(6, utf8_utf16_strlen(d4));
211
212 /* illegal utf-8 sequences */
213 ut_asserteq(4, utf8_utf16_strlen(j1));
Heinrich Schuchardt35cbb792018-09-12 00:05:32 +0200214 ut_asserteq(4, utf8_utf16_strlen(j2));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200215 ut_asserteq(3, utf8_utf16_strlen(j3));
216
217 return 0;
218}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100219UNICODE_TEST(unicode_test_utf8_utf16_strlen);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200220
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100221static int unicode_test_utf8_utf16_strnlen(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200222{
223 ut_asserteq(3, utf8_utf16_strnlen(d1, 3));
224 ut_asserteq(6, utf8_utf16_strnlen(d1, 13));
225 ut_asserteq(6, utf8_utf16_strnlen(d2, 6));
226 ut_asserteq(2, utf8_utf16_strnlen(d3, 2));
227 ut_asserteq(4, utf8_utf16_strnlen(d4, 2));
228 ut_asserteq(6, utf8_utf16_strnlen(d4, 3));
229
230 /* illegal utf-8 sequences */
231 ut_asserteq(4, utf8_utf16_strnlen(j1, 16));
Heinrich Schuchardt35cbb792018-09-12 00:05:32 +0200232 ut_asserteq(4, utf8_utf16_strnlen(j2, 16));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200233 ut_asserteq(3, utf8_utf16_strnlen(j3, 16));
234
235 return 0;
236}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100237UNICODE_TEST(unicode_test_utf8_utf16_strnlen);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200238
239/**
240 * ut_u16_strcmp() - Compare to u16 strings.
241 *
242 * @a1: first string
243 * @a2: second string
244 * @count: number of u16 to compare
245 * Return: -1 if a1 < a2, 0 if a1 == a2, 1 if a1 > a2
246 */
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100247static int unicode_test_u16_strcmp(const u16 *a1, const u16 *a2, size_t count)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200248{
249 for (; (*a1 || *a2) && count; ++a1, ++a2, --count) {
250 if (*a1 < *a2)
251 return -1;
252 if (*a1 > *a2)
253 return 1;
254 }
255 return 0;
256}
257
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100258static int unicode_test_utf8_utf16_strcpy(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200259{
260 u16 buf[16];
261 u16 *pos;
262
263 pos = buf;
264 utf8_utf16_strcpy(&pos, d1);
265 ut_asserteq(6, pos - buf);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100266 ut_assert(!unicode_test_u16_strcmp(buf, c1, SIZE_MAX));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200267
268 pos = buf;
269 utf8_utf16_strcpy(&pos, d2);
270 ut_asserteq(8, pos - buf);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100271 ut_assert(!unicode_test_u16_strcmp(buf, c2, SIZE_MAX));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200272
273 pos = buf;
274 utf8_utf16_strcpy(&pos, d3);
275 ut_asserteq(3, pos - buf);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100276 ut_assert(!unicode_test_u16_strcmp(buf, c3, SIZE_MAX));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200277
278 pos = buf;
279 utf8_utf16_strcpy(&pos, d4);
280 ut_asserteq(6, pos - buf);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100281 ut_assert(!unicode_test_u16_strcmp(buf, c4, SIZE_MAX));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200282
283 /* Illegal utf-8 strings */
284 pos = buf;
285 utf8_utf16_strcpy(&pos, j1);
286 ut_asserteq(4, pos - buf);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100287 ut_assert(!unicode_test_u16_strcmp(buf, L"j1?l", SIZE_MAX));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200288
289 pos = buf;
290 utf8_utf16_strcpy(&pos, j2);
Heinrich Schuchardt35cbb792018-09-12 00:05:32 +0200291 ut_asserteq(4, pos - buf);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100292 ut_assert(!unicode_test_u16_strcmp(buf, L"j2?l", SIZE_MAX));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200293
294 pos = buf;
295 utf8_utf16_strcpy(&pos, j3);
296 ut_asserteq(3, pos - buf);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100297 ut_assert(!unicode_test_u16_strcmp(buf, L"j3?", SIZE_MAX));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200298
299 return 0;
300}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100301UNICODE_TEST(unicode_test_utf8_utf16_strcpy);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200302
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100303static int unicode_test_utf8_utf16_strncpy(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200304{
305 u16 buf[16];
306 u16 *pos;
307
308 pos = buf;
309 memset(buf, 0, sizeof(buf));
310 utf8_utf16_strncpy(&pos, d1, 4);
311 ut_asserteq(4, pos - buf);
312 ut_assert(!buf[4]);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100313 ut_assert(!unicode_test_u16_strcmp(buf, c1, 4));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200314
315 pos = buf;
316 memset(buf, 0, sizeof(buf));
317 utf8_utf16_strncpy(&pos, d2, 10);
318 ut_asserteq(8, pos - buf);
319 ut_assert(buf[4]);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100320 ut_assert(!unicode_test_u16_strcmp(buf, c2, SIZE_MAX));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200321
322 pos = buf;
323 memset(buf, 0, sizeof(buf));
324 utf8_utf16_strncpy(&pos, d3, 2);
325 ut_asserteq(2, pos - buf);
326 ut_assert(!buf[2]);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100327 ut_assert(!unicode_test_u16_strcmp(buf, c3, 2));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200328
329 pos = buf;
330 memset(buf, 0, sizeof(buf));
331 utf8_utf16_strncpy(&pos, d4, 2);
332 ut_asserteq(4, pos - buf);
333 ut_assert(!buf[4]);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100334 ut_assert(!unicode_test_u16_strcmp(buf, c4, 4));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200335
336 pos = buf;
337 memset(buf, 0, sizeof(buf));
338 utf8_utf16_strncpy(&pos, d4, 10);
339 ut_asserteq(6, pos - buf);
340 ut_assert(buf[5]);
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100341 ut_assert(!unicode_test_u16_strcmp(buf, c4, SIZE_MAX));
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200342
343 return 0;
344}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100345UNICODE_TEST(unicode_test_utf8_utf16_strncpy);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200346
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100347static int unicode_test_utf16_get(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200348{
349 const u16 *s;
350 s32 code;
351 int i;
352
353 /* Check characters less than 0x10000 */
354 s = c2;
355 for (i = 0; i < 9; ++i) {
356 code = utf16_get((const u16 **)&s);
357 ut_asserteq(c2[i], code);
358 if (!code)
359 break;
360 }
361 ut_asserteq_ptr(c2 + 8, s);
362
363 /* Check character greater 0xffff */
364 s = c4;
365 code = utf16_get((const u16 **)&s);
366 ut_asserteq(0x0001048d, code);
367 ut_asserteq_ptr(c4 + 2, s);
368
369 return 0;
370}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100371UNICODE_TEST(unicode_test_utf16_get);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200372
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100373static int unicode_test_utf16_put(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200374{
375 u16 buffer[4] = { 0, };
376 u16 *pos;
377
378 /* Commercial at, translates to one word */
379 pos = buffer;
380 ut_assert(!utf16_put('@', &pos));
381 ut_asserteq(1, pos - buffer);
382 ut_asserteq((u16)'@', buffer[0]);
383 ut_assert(!buffer[1]);
384
385 /* Hamster face, translates to two words */
386 pos = buffer;
387 ut_assert(!utf16_put(0x1f439, &pos));
388 ut_asserteq(2, pos - buffer);
389 ut_asserteq((u16)0xd83d, buffer[0]);
390 ut_asserteq((u16)0xdc39, buffer[1]);
391 ut_assert(!buffer[2]);
392
393 /* Illegal code */
394 pos = buffer;
395 ut_asserteq(-1, utf16_put(0xd888, &pos));
396
397 return 0;
398}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100399UNICODE_TEST(unicode_test_utf16_put);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200400
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100401static int unicode_test_utf16_strnlen(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200402{
403 ut_asserteq(3, utf16_strnlen(c1, 3));
404 ut_asserteq(6, utf16_strnlen(c1, 13));
405 ut_asserteq(6, utf16_strnlen(c2, 6));
406 ut_asserteq(2, utf16_strnlen(c3, 2));
407 ut_asserteq(2, utf16_strnlen(c4, 2));
408 ut_asserteq(3, utf16_strnlen(c4, 3));
409
410 /* illegal utf-16 word sequences */
411 ut_asserteq(4, utf16_strnlen(i1, 16));
412 ut_asserteq(4, utf16_strnlen(i2, 16));
413 ut_asserteq(3, utf16_strnlen(i3, 16));
414
415 return 0;
416}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100417UNICODE_TEST(unicode_test_utf16_strnlen);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200418
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100419static int unicode_test_utf16_utf8_strlen(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200420{
421 ut_asserteq(6, utf16_utf8_strlen(c1));
422 ut_asserteq(9, utf16_utf8_strlen(c2));
423 ut_asserteq(9, utf16_utf8_strlen(c3));
424 ut_asserteq(12, utf16_utf8_strlen(c4));
425
426 /* illegal utf-16 word sequences */
427 ut_asserteq(4, utf16_utf8_strlen(i1));
428 ut_asserteq(4, utf16_utf8_strlen(i2));
429 ut_asserteq(3, utf16_utf8_strlen(i3));
430
431 return 0;
432}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100433UNICODE_TEST(unicode_test_utf16_utf8_strlen);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200434
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100435static int unicode_test_utf16_utf8_strnlen(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200436{
437 ut_asserteq(3, utf16_utf8_strnlen(c1, 3));
438 ut_asserteq(6, utf16_utf8_strnlen(c1, 13));
439 ut_asserteq(7, utf16_utf8_strnlen(c2, 6));
440 ut_asserteq(6, utf16_utf8_strnlen(c3, 2));
441 ut_asserteq(8, utf16_utf8_strnlen(c4, 2));
442 ut_asserteq(12, utf16_utf8_strnlen(c4, 3));
443 return 0;
444}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100445UNICODE_TEST(unicode_test_utf16_utf8_strnlen);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200446
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100447static int unicode_test_utf16_utf8_strcpy(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200448{
449 char buf[16];
450 char *pos;
451
452 pos = buf;
453 utf16_utf8_strcpy(&pos, c1);
454 ut_asserteq(6, pos - buf);
455 ut_asserteq_str(d1, buf);
456
457 pos = buf;
458 utf16_utf8_strcpy(&pos, c2);
459 ut_asserteq(9, pos - buf);
460 ut_asserteq_str(d2, buf);
461
462 pos = buf;
463 utf16_utf8_strcpy(&pos, c3);
464 ut_asserteq(9, pos - buf);
465 ut_asserteq_str(d3, buf);
466
467 pos = buf;
468 utf16_utf8_strcpy(&pos, c4);
469 ut_asserteq(12, pos - buf);
470 ut_asserteq_str(d4, buf);
471
472 /* Illegal utf-16 strings */
473 pos = buf;
474 utf16_utf8_strcpy(&pos, i1);
475 ut_asserteq(4, pos - buf);
476 ut_asserteq_str("i1?l", buf);
477
478 pos = buf;
479 utf16_utf8_strcpy(&pos, i2);
480 ut_asserteq(4, pos - buf);
481 ut_asserteq_str("i2?l", buf);
482
483 pos = buf;
484 utf16_utf8_strcpy(&pos, i3);
485 ut_asserteq(3, pos - buf);
486 ut_asserteq_str("i3?", buf);
487
488 return 0;
489}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100490UNICODE_TEST(unicode_test_utf16_utf8_strcpy);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200491
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100492static int unicode_test_utf16_utf8_strncpy(struct unit_test_state *uts)
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200493{
494 char buf[16];
495 char *pos;
496
497 pos = buf;
498 memset(buf, 0, sizeof(buf));
499 utf16_utf8_strncpy(&pos, c1, 4);
500 ut_asserteq(4, pos - buf);
501 ut_assert(!buf[4]);
502 ut_assert(!strncmp(buf, d1, 4));
503
504 pos = buf;
505 memset(buf, 0, sizeof(buf));
506 utf16_utf8_strncpy(&pos, c2, 10);
507 ut_asserteq(9, pos - buf);
508 ut_assert(buf[4]);
509 ut_assert(!strncmp(buf, d2, SIZE_MAX));
510
511 pos = buf;
512 memset(buf, 0, sizeof(buf));
513 utf16_utf8_strncpy(&pos, c3, 2);
514 ut_asserteq(6, pos - buf);
515 ut_assert(!buf[6]);
516 ut_assert(!strncmp(buf, d3, 6));
517
518 pos = buf;
519 memset(buf, 0, sizeof(buf));
520 utf16_utf8_strncpy(&pos, c4, 2);
521 ut_asserteq(8, pos - buf);
522 ut_assert(!buf[8]);
523 ut_assert(!strncmp(buf, d4, 8));
524
525 pos = buf;
526 memset(buf, 0, sizeof(buf));
527 utf16_utf8_strncpy(&pos, c4, 10);
528 ut_asserteq(12, pos - buf);
529 ut_assert(buf[5]);
530 ut_assert(!strncmp(buf, d4, SIZE_MAX));
531
532 return 0;
533}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100534UNICODE_TEST(unicode_test_utf16_utf8_strncpy);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200535
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100536static int unicode_test_utf_to_lower(struct unit_test_state *uts)
Heinrich Schuchardt1a1012a2018-09-04 19:34:57 +0200537{
538 ut_asserteq('@', utf_to_lower('@'));
539 ut_asserteq('a', utf_to_lower('A'));
540 ut_asserteq('z', utf_to_lower('Z'));
541 ut_asserteq('[', utf_to_lower('['));
542 ut_asserteq('m', utf_to_lower('m'));
543 /* Latin letter O with diaresis (umlaut) */
544 ut_asserteq(0x00f6, utf_to_lower(0x00d6));
545#ifdef CONFIG_EFI_UNICODE_CAPITALIZATION
546 /* Cyrillic letter I*/
547 ut_asserteq(0x0438, utf_to_lower(0x0418));
548#endif
549 return 0;
550}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100551UNICODE_TEST(unicode_test_utf_to_lower);
Heinrich Schuchardt1a1012a2018-09-04 19:34:57 +0200552
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100553static int unicode_test_utf_to_upper(struct unit_test_state *uts)
Heinrich Schuchardt1a1012a2018-09-04 19:34:57 +0200554{
555 ut_asserteq('`', utf_to_upper('`'));
556 ut_asserteq('A', utf_to_upper('a'));
557 ut_asserteq('Z', utf_to_upper('z'));
558 ut_asserteq('{', utf_to_upper('{'));
559 ut_asserteq('M', utf_to_upper('M'));
560 /* Latin letter O with diaresis (umlaut) */
561 ut_asserteq(0x00d6, utf_to_upper(0x00f6));
562#ifdef CONFIG_EFI_UNICODE_CAPITALIZATION
563 /* Cyrillic letter I */
564 ut_asserteq(0x0418, utf_to_upper(0x0438));
565#endif
566 return 0;
567}
Heinrich Schuchardtbc196812019-02-15 23:12:50 +0100568UNICODE_TEST(unicode_test_utf_to_upper);
Heinrich Schuchardt1a1012a2018-09-04 19:34:57 +0200569
AKASHI Takahiro79907a42019-09-18 10:26:30 +0900570static int unicode_test_u16_strncmp(struct unit_test_state *uts)
571{
572 ut_assert(u16_strncmp(L"abc", L"abc", 3) == 0);
573 ut_assert(u16_strncmp(L"abcdef", L"abcghi", 3) == 0);
574 ut_assert(u16_strncmp(L"abcdef", L"abcghi", 6) < 0);
575 ut_assert(u16_strncmp(L"abcghi", L"abcdef", 6) > 0);
576 ut_assert(u16_strcmp(L"abc", L"abc") == 0);
577 ut_assert(u16_strcmp(L"abcdef", L"deghi") < 0);
578 ut_assert(u16_strcmp(L"deghi", L"abcdef") > 0);
579 return 0;
580}
581UNICODE_TEST(unicode_test_u16_strncmp);
582
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200583int do_ut_unicode(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
584{
585 struct unit_test *tests = ll_entry_start(struct unit_test, unicode_test);
586 const int n_ents = ll_entry_count(struct unit_test, unicode_test);
587
Philippe Reynes4ad4edf2019-12-17 19:07:04 +0100588 return cmd_ut_category("Unicode", "unicode_test_",
589 tests, n_ents, argc, argv);
Heinrich Schuchardtf11a1642018-08-31 21:31:28 +0200590}