global: Migrate CONFIG_STACKBASE to CFG
[platform/kernel/u-boot.git] / test / unicode_ut.c
index 6f6aea5..d104bd5 100644 (file)
@@ -97,6 +97,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));
@@ -130,6 +131,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);
@@ -299,17 +330,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;
 }
@@ -584,13 +615,13 @@ UNICODE_TEST(unicode_test_utf_to_upper);
 
 static int unicode_test_u16_strncmp(struct unit_test_state *uts)
 {
-       ut_assert(u16_strncmp(L"abc", L"abc", 3) == 0);
-       ut_assert(u16_strncmp(L"abcdef", L"abcghi", 3) == 0);
-       ut_assert(u16_strncmp(L"abcdef", L"abcghi", 6) < 0);
-       ut_assert(u16_strncmp(L"abcghi", L"abcdef", 6) > 0);
-       ut_assert(u16_strcmp(L"abc", L"abc") == 0);
-       ut_assert(u16_strcmp(L"abcdef", L"deghi") < 0);
-       ut_assert(u16_strcmp(L"deghi", L"abcdef") > 0);
+       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);
@@ -713,7 +744,7 @@ UNICODE_TEST(unicode_test_utf8_to_utf32_stream);
 static int unicode_test_efi_create_indexed_name(struct unit_test_state *uts)
 {
        u16 buf[16];
-       u16 const expected[] = L"Capsule0AF9";
+       u16 const expected[] = u"Capsule0AF9";
        u16 *pos;
 
        memset(buf, 0xeb, sizeof(buf));
@@ -727,10 +758,60 @@ static int unicode_test_efi_create_indexed_name(struct unit_test_state *uts)
 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, sizeof(buf));
+       ut_asserteq(1, ret);
+
+       /* dest is empty string */
+       memset(buf, 0, sizeof(buf));
+       ret = u16_strlcat(buf, src, sizeof(buf));
+       ut_asserteq(5, 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, sizeof(buf));
+       ut_asserteq(6, 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 = 10;
+               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", "unicode_test_",
                               tests, n_ents, argc, argv);