mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 01:06:45 +08:00
45 lines
1.6 KiB
C++
45 lines
1.6 KiB
C++
|
|
#include <string>
|
|
#include <cstring>
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "libimp/codecvt.h"
|
|
#include "libimp/countof.h"
|
|
|
|
TEST(codecvt, cvt_cstr) {
|
|
char const *utf8 = "hello world, "
|
|
"\xe4\xbd\xa0\xe5\xa5\xbd\xef\xbc"
|
|
"\x8c\xe3\x81\x93\xe3\x82\x93\xe3"
|
|
"\x81\xab\xe3\x81\xa1\xe3\x81\xaf";
|
|
char16_t const utf16[] = u"hello world, "
|
|
"\u4f60\u597d\uff0c\u3053\u3093\u306b\u3061\u306f";
|
|
{
|
|
auto cvt_len = imp::cvt_cstr(utf8, std::strlen(utf8), (char16_t *)nullptr, 0);
|
|
EXPECT_NE(cvt_len, 0);
|
|
std::u16string wstr(cvt_len, L'\0');
|
|
EXPECT_EQ(imp::cvt_cstr(utf8, std::strlen(utf8), &wstr[0], wstr.size()), cvt_len);
|
|
EXPECT_EQ(wstr, utf16);
|
|
}
|
|
{
|
|
auto cvt_len = imp::cvt_cstr(utf16, imp::countof(utf16) - 1, (char *)nullptr, 0);
|
|
EXPECT_NE(cvt_len, 0);
|
|
std::string str(cvt_len, '\0');
|
|
EXPECT_EQ(imp::cvt_cstr(utf16, imp::countof(utf16) - 1, &str[0], str.size()), cvt_len);
|
|
EXPECT_EQ(str, utf8);
|
|
}
|
|
{
|
|
auto cvt_len = imp::cvt_cstr(utf8, std::strlen(utf8), (char *)nullptr, 0);
|
|
EXPECT_EQ(cvt_len, std::strlen(utf8));
|
|
std::string str(cvt_len, '\0');
|
|
EXPECT_EQ(imp::cvt_cstr(utf8, cvt_len, &str[0], str.size()), cvt_len);
|
|
EXPECT_EQ(str, utf8);
|
|
}
|
|
{
|
|
auto cvt_len = imp::cvt_cstr(utf16, imp::countof(utf16) - 1, (char16_t *)nullptr, 0);
|
|
EXPECT_EQ(cvt_len, imp::countof(utf16) - 1);
|
|
std::u16string wstr(cvt_len, u'\0');
|
|
EXPECT_EQ(imp::cvt_cstr(utf16, cvt_len, &wstr[0], wstr.size()), cvt_len);
|
|
EXPECT_EQ(wstr, utf16);
|
|
}
|
|
} |