]> git.ipfire.org Git - thirdparty/u-boot.git/blobdiff - test/unicode_ut.c
Merge tag 'rpi-next-2024.04' of https://source.denx.de/u-boot/custodians/u-boot-raspb...
[thirdparty/u-boot.git] / test / unicode_ut.c
index 1ccd36e7c9e8f774dad571761eb6fd011b896687..47c3f52774cdd2798c5f364a93c486db0dd0b6d7 100644 (file)
@@ -8,7 +8,10 @@
 #include <common.h>
 #include <charset.h>
 #include <command.h>
+#include <efi_loader.h>
 #include <errno.h>
+#include <log.h>
+#include <malloc.h>
 #include <test/test.h>
 #include <test/suites.h>
 #include <test/ut.h>
@@ -44,11 +47,15 @@ static const char d3[] = {0xe6, 0xbd, 0x9c, 0xe6, 0xb0, 0xb4, 0xe8, 0x89,
 /* Three letters translating to two utf-16 word each */
 static const char d4[] = {0xf0, 0x90, 0x92, 0x8d, 0xf0, 0x90, 0x92, 0x96,
                          0xf0, 0x90, 0x92, 0x87, 0x00};
+/* Letter not in code page 437 */
+static const char d5[] = {0xCE, 0x92, 0x20, 0x69, 0x73, 0x20, 0x6E, 0x6F,
+                         0x74, 0x20, 0x42, 0x00};
 
 /* Illegal utf-8 strings */
 static const char j1[] = {0x6a, 0x31, 0xa1, 0x6c, 0x00};
 static const char j2[] = {0x6a, 0x32, 0xc3, 0xc3, 0x6c, 0x00};
 static const char j3[] = {0x6a, 0x33, 0xf0, 0x90, 0xf0, 0x00};
+static const char j4[] = {0xa1, 0x00};
 
 static int unicode_test_u16_strlen(struct unit_test_state *uts)
 {
@@ -60,13 +67,25 @@ static int unicode_test_u16_strlen(struct unit_test_state *uts)
 }
 UNICODE_TEST(unicode_test_u16_strlen);
 
+static int unicode_test_u16_strnlen(struct unit_test_state *uts)
+{
+       ut_asserteq(0, u16_strnlen(c1, 0));
+       ut_asserteq(4, u16_strnlen(c1, 4));
+       ut_asserteq(6, u16_strnlen(c1, 6));
+       ut_asserteq(6, u16_strnlen(c1, 7));
+
+       return 0;
+}
+UNICODE_TEST(unicode_test_u16_strnlen);
+
 static int unicode_test_u16_strdup(struct unit_test_state *uts)
 {
        u16 *copy = u16_strdup(c4);
 
        ut_assert(copy != c4);
-       ut_assert(!memcmp(copy, c4, sizeof(c4)));
+       ut_asserteq_mem(copy, c4, sizeof(c4));
        free(copy);
+
        return 0;
 }
 UNICODE_TEST(unicode_test_u16_strdup);
@@ -78,7 +97,8 @@ static int unicode_test_u16_strcpy(struct unit_test_state *uts)
 
        r = u16_strcpy(copy, c1);
        ut_assert(r == copy);
-       ut_assert(!memcmp(copy, c1, sizeof(c1)));
+       ut_asserteq_mem(copy, c1, sizeof(c1));
+
        return 0;
 }
 UNICODE_TEST(unicode_test_u16_strcpy);
@@ -88,6 +108,7 @@ UNICODE_TEST(unicode_test_u16_strcpy);
 static int unicode_test_string16(struct unit_test_state *uts)
 {
        char buf[20];
+       int ret;
 
        /* Test length and precision */
        memset(buf, 0xff, sizeof(buf));
@@ -121,6 +142,36 @@ static int unicode_test_string16(struct unit_test_state *uts)
        sprintf(buf, "%ls", i3);
        ut_asserteq_str("i3?", buf);
 
+       memset(buf, 0xff, sizeof(buf));
+       ret = snprintf(buf, 4, "%ls", c1);
+       ut_asserteq(6, ret);
+       ut_asserteq_str("U-B", buf);
+
+       memset(buf, 0xff, sizeof(buf));
+       ret = snprintf(buf, 6, "%ls", c2);
+       ut_asserteq_str("kafb", buf);
+       ut_asserteq(9, ret);
+
+       memset(buf, 0xff, sizeof(buf));
+       ret = snprintf(buf, 7, "%ls", c2);
+       ut_asserteq_str("kafb\xC3\xA1", buf);
+       ut_asserteq(9, ret);
+
+       memset(buf, 0xff, sizeof(buf));
+       ret = snprintf(buf, 8, "%ls", c3);
+       ut_asserteq_str("\xE6\xBD\x9C\xE6\xB0\xB4", buf);
+       ut_asserteq(9, ret);
+
+       memset(buf, 0xff, sizeof(buf));
+       ret = snprintf(buf, 11, "%ls", c4);
+       ut_asserteq_str("\xF0\x90\x92\x8D\xF0\x90\x92\x96", buf);
+       ut_asserteq(12, ret);
+
+       memset(buf, 0xff, sizeof(buf));
+       ret = snprintf(buf, 4, "%ls", c4);
+       ut_asserteq_str("", buf);
+       ut_asserteq(12, ret);
+
        return 0;
 }
 UNICODE_TEST(unicode_test_string16);
@@ -141,7 +192,7 @@ static int unicode_test_utf8_get(struct unit_test_state *uts)
                if (!code)
                        break;
        }
-       ut_asserteq_ptr(s, d2 + 9)
+       ut_asserteq_ptr(s, d2 + 9);
 
        /* Check characters less than 0x10000 */
        s = d3;
@@ -152,7 +203,7 @@ static int unicode_test_utf8_get(struct unit_test_state *uts)
                if (!code)
                        break;
        }
-       ut_asserteq_ptr(s, d3 + 9)
+       ut_asserteq_ptr(s, d3 + 9);
 
        /* Check character greater 0xffff */
        s = d4;
@@ -160,6 +211,12 @@ static int unicode_test_utf8_get(struct unit_test_state *uts)
        ut_asserteq(0x0001048d, code);
        ut_asserteq_ptr(s, d4 + 4);
 
+       /* Check illegal character */
+       s = j4;
+       code = utf8_get((const char **)&s);
+       ut_asserteq(-1, code);
+       ut_asserteq_ptr(j4 + 1, s);
+
        return 0;
 }
 UNICODE_TEST(unicode_test_utf8_get);
@@ -171,7 +228,7 @@ static int unicode_test_utf8_put(struct unit_test_state *uts)
 
        /* Commercial at, translates to one character */
        pos = buffer;
-       ut_assert(!utf8_put('@', &pos))
+       ut_assert(!utf8_put('@', &pos));
        ut_asserteq(1, pos - buffer);
        ut_asserteq('@', buffer[0]);
        ut_assert(!buffer[1]);
@@ -284,17 +341,17 @@ static int unicode_test_utf8_utf16_strcpy(struct unit_test_state *uts)
        pos = buf;
        utf8_utf16_strcpy(&pos, j1);
        ut_asserteq(4, pos - buf);
-       ut_assert(!unicode_test_u16_strcmp(buf, L"j1?l", SIZE_MAX));
+       ut_assert(!unicode_test_u16_strcmp(buf, u"j1?l", SIZE_MAX));
 
        pos = buf;
        utf8_utf16_strcpy(&pos, j2);
        ut_asserteq(4, pos - buf);
-       ut_assert(!unicode_test_u16_strcmp(buf, L"j2?l", SIZE_MAX));
+       ut_assert(!unicode_test_u16_strcmp(buf, u"j2?l", SIZE_MAX));
 
        pos = buf;
        utf8_utf16_strcpy(&pos, j3);
        ut_asserteq(3, pos - buf);
-       ut_assert(!unicode_test_u16_strcmp(buf, L"j3?", SIZE_MAX));
+       ut_assert(!unicode_test_u16_strcmp(buf, u"j3?", SIZE_MAX));
 
        return 0;
 }
@@ -567,10 +624,236 @@ static int unicode_test_utf_to_upper(struct unit_test_state *uts)
 }
 UNICODE_TEST(unicode_test_utf_to_upper);
 
-int do_ut_unicode(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+static int unicode_test_u16_strcasecmp(struct unit_test_state *uts)
+{
+       ut_assert(u16_strcasecmp(u"abcd", u"abcd") == 0);
+       ut_assert(u16_strcasecmp(u"aBcd", u"abcd") == 0);
+       ut_assert(u16_strcasecmp(u"abcd", u"abCd") == 0);
+       ut_assert(u16_strcasecmp(u"abcdE", u"abcd") > 0);
+       ut_assert(u16_strcasecmp(u"abcd", u"abcdE") < 0);
+       ut_assert(u16_strcasecmp(u"abcE", u"abcd") > 0);
+       ut_assert(u16_strcasecmp(u"abcd", u"abcE") < 0);
+       ut_assert(u16_strcasecmp(u"abcd", u"abcd") == 0);
+       ut_assert(u16_strcasecmp(u"abcd", u"abcd") == 0);
+       if (CONFIG_IS_ENABLED(EFI_UNICODE_CAPITALIZATION)) {
+               /* Cyrillic letters */
+               ut_assert(u16_strcasecmp(u"\x043a\x043d\x0438\x0433\x0430",
+                                        u"\x041a\x041d\x0418\x0413\x0410") == 0);
+               ut_assert(u16_strcasecmp(u"\x043a\x043d\x0438\x0433\x0430",
+                                        u"\x041a\x041d\x0418\x0413\x0411") < 0);
+               ut_assert(u16_strcasecmp(u"\x043a\x043d\x0438\x0433\x0431",
+                                        u"\x041a\x041d\x0418\x0413\x0410") > 0);
+       }
+
+       return 0;
+}
+UNICODE_TEST(unicode_test_u16_strcasecmp);
+
+static int unicode_test_u16_strncmp(struct unit_test_state *uts)
+{
+       ut_assert(u16_strncmp(u"abc", u"abc", 3) == 0);
+       ut_assert(u16_strncmp(u"abcdef", u"abcghi", 3) == 0);
+       ut_assert(u16_strncmp(u"abcdef", u"abcghi", 6) < 0);
+       ut_assert(u16_strncmp(u"abcghi", u"abcdef", 6) > 0);
+       ut_assert(u16_strcmp(u"abc", u"abc") == 0);
+       ut_assert(u16_strcmp(u"abcdef", u"deghi") < 0);
+       ut_assert(u16_strcmp(u"deghi", u"abcdef") > 0);
+       return 0;
+}
+UNICODE_TEST(unicode_test_u16_strncmp);
+
+static int unicode_test_u16_strsize(struct unit_test_state *uts)
+{
+       ut_asserteq_64(u16_strsize(c1), 14);
+       ut_asserteq_64(u16_strsize(c2), 18);
+       ut_asserteq_64(u16_strsize(c3), 8);
+       ut_asserteq_64(u16_strsize(c4), 14);
+       return 0;
+}
+UNICODE_TEST(unicode_test_u16_strsize);
+
+static int unicode_test_utf_to_cp(struct unit_test_state *uts)
+{
+       int ret;
+       s32 c;
+
+       c = '\n';
+       ret = utf_to_cp(&c, codepage_437);
+       ut_asserteq(0, ret);
+       ut_asserteq('\n', c);
+
+       c = 'a';
+       ret = utf_to_cp(&c, codepage_437);
+       ut_asserteq(0, ret);
+       ut_asserteq('a', c);
+
+       c = 0x03c4; /* Greek small letter tau */
+       ret = utf_to_cp(&c, codepage_437);
+       ut_asserteq(0, ret);
+       ut_asserteq(0xe7, c);
+
+       c = 0x03a4; /* Greek capital letter tau */
+       ret = utf_to_cp(&c, codepage_437);
+       ut_asserteq(-ENOENT, ret);
+       ut_asserteq('?', c);
+
+       return 0;
+}
+UNICODE_TEST(unicode_test_utf_to_cp);
+
+static void utf8_to_cp437_stream_helper(const char *in, char *out)
+{
+       char buffer[5];
+       int ret;
+
+       *buffer = 0;
+       for (; *in; ++in) {
+               ret = utf8_to_cp437_stream(*in, buffer);
+               if (ret)
+                       *out++ = ret;
+       }
+       *out = 0;
+}
+
+static int unicode_test_utf8_to_cp437_stream(struct unit_test_state *uts)
+{
+       char buf[16];
+
+       utf8_to_cp437_stream_helper(d1, buf);
+       ut_asserteq_str("U-Boot", buf);
+       utf8_to_cp437_stream_helper(d2, buf);
+       ut_asserteq_str("kafb\xa0tur", buf);
+       utf8_to_cp437_stream_helper(d5, buf);
+       ut_asserteq_str("? is not B", buf);
+       utf8_to_cp437_stream_helper(j2, buf);
+       ut_asserteq_str("j2l", buf);
+
+       return 0;
+}
+UNICODE_TEST(unicode_test_utf8_to_cp437_stream);
+
+static void utf8_to_utf32_stream_helper(const char *in, s32 *out)
+{
+       char buffer[5];
+       int ret;
+
+       *buffer = 0;
+       for (; *in; ++in) {
+               ret = utf8_to_utf32_stream(*in, buffer);
+               if (ret)
+                       *out++ = ret;
+       }
+       *out = 0;
+}
+
+static int unicode_test_utf8_to_utf32_stream(struct unit_test_state *uts)
+{
+       s32 buf[16];
+
+       const u32 u1[] = {0x55, 0x2D, 0x42, 0x6F, 0x6F, 0x74, 0x0000};
+       const u32 u2[] = {0x6B, 0x61, 0x66, 0x62, 0xE1, 0x74, 0x75, 0x72, 0x00};
+       const u32 u3[] = {0x6f5c, 0x6c34, 0x8266};
+       const u32 u4[] = {0x6A, 0x32, 0x6C, 0x00};
+       const u32 u5[] = {0x0392, 0x20, 0x69, 0x73, 0x20, 0x6E, 0x6F, 0x74,
+                         0x20, 0x42, 0x00};
+
+       memset(buf, 0, sizeof(buf));
+       utf8_to_utf32_stream_helper(d1, buf);
+       ut_asserteq_mem(u1, buf, sizeof(u1));
+
+       memset(buf, 0, sizeof(buf));
+       utf8_to_utf32_stream_helper(d2, buf);
+       ut_asserteq_mem(u2, buf, sizeof(u2));
+
+       memset(buf, 0, sizeof(buf));
+       utf8_to_utf32_stream_helper(d3, buf);
+       ut_asserteq_mem(u3, buf, sizeof(u3));
+
+       memset(buf, 0, sizeof(buf));
+       utf8_to_utf32_stream_helper(d5, buf);
+       ut_asserteq_mem(u5, buf, sizeof(u5));
+
+       memset(buf, 0, sizeof(buf));
+       utf8_to_utf32_stream_helper(j2, buf);
+       ut_asserteq_mem(u4, buf, sizeof(u4));
+
+       return 0;
+}
+UNICODE_TEST(unicode_test_utf8_to_utf32_stream);
+
+#ifdef CONFIG_EFI_LOADER
+static int unicode_test_efi_create_indexed_name(struct unit_test_state *uts)
+{
+       u16 buf[16];
+       u16 const expected[] = u"Capsule0AF9";
+       u16 *pos;
+
+       memset(buf, 0xeb, sizeof(buf));
+       pos = efi_create_indexed_name(buf, sizeof(buf), "Capsule", 0x0af9);
+
+       ut_asserteq_mem(expected, buf, sizeof(expected));
+       ut_asserteq(pos - buf, u16_strnlen(buf, SIZE_MAX));
+
+       return 0;
+}
+UNICODE_TEST(unicode_test_efi_create_indexed_name);
+#endif
+
+static int unicode_test_u16_strlcat(struct unit_test_state *uts)
+{
+       u16 buf[40];
+       u16 dest[] = {0x3053, 0x3093, 0x306b, 0x3061, 0x306f, 0};
+       u16 src[] = {0x03B1, 0x2172, 0x6F5C, 0x8247, 0};
+       u16 concat_str[] = {0x3053, 0x3093, 0x306b, 0x3061, 0x306f,
+                           0x03B1, 0x2172, 0x6F5C, 0x8247, 0};
+       u16 null_src = u'\0';
+       size_t ret, expected;
+       int i;
+
+       /* dest and src are empty string */
+       memset(buf, 0, sizeof(buf));
+       ret = u16_strlcat(buf, &null_src, ARRAY_SIZE(buf));
+       ut_asserteq(0, ret);
+
+       /* dest is empty string */
+       memset(buf, 0, sizeof(buf));
+       ret = u16_strlcat(buf, src, ARRAY_SIZE(buf));
+       ut_asserteq(4, ret);
+       ut_assert(!unicode_test_u16_strcmp(buf, src, 40));
+
+       /* src is empty string */
+       memset(buf, 0xCD, (sizeof(buf) - sizeof(u16)));
+       buf[39] = 0;
+       memcpy(buf, dest, sizeof(dest));
+       ret = u16_strlcat(buf, &null_src, ARRAY_SIZE(buf));
+       ut_asserteq(5, ret);
+       ut_assert(!unicode_test_u16_strcmp(buf, dest, 40));
+
+       for (i = 0; i <= 40; i++) {
+               memset(buf, 0xCD, (sizeof(buf) - sizeof(u16)));
+               buf[39] = 0;
+               memcpy(buf, dest, sizeof(dest));
+               expected = min(5, i) + 4;
+               ret = u16_strlcat(buf, src, i);
+               ut_asserteq(expected, ret);
+               if (i <= 6) {
+                       ut_assert(!unicode_test_u16_strcmp(buf, dest, 40));
+               } else if (i < 10) {
+                       ut_assert(!unicode_test_u16_strcmp(buf, concat_str, i - 1));
+               } else {
+                       ut_assert(!unicode_test_u16_strcmp(buf, concat_str, 40));
+               }
+       }
+
+       return 0;
+}
+UNICODE_TEST(unicode_test_u16_strlcat);
+
+int do_ut_unicode(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
 {
-       struct unit_test *tests = ll_entry_start(struct unit_test, unicode_test);
-       const int n_ents = ll_entry_count(struct unit_test, unicode_test);
+       struct unit_test *tests = UNIT_TEST_SUITE_START(unicode_test);
+       const int n_ents = UNIT_TEST_SUITE_COUNT(unicode_test);
 
-       return cmd_ut_category("Unicode", tests, n_ents, argc, argv);
+       return cmd_ut_category("Unicode", "unicode_test_",
+                              tests, n_ents, argc, argv);
 }