2
0
mirror of https://github.com/boostorg/nowide.git synced 2026-02-14 12:52:17 +00:00
Files
nowide/test/test_convert.cpp
Flamefire bf51a60bb9 Use boost/detail/workaround
Compatibility with Boost < 1.65
2019-12-20 20:34:47 +01:00

136 lines
5.1 KiB
C++

//
// Copyright (c) 2012 Artyom Beilis (Tonkikh)
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#include <boost/nowide/convert.hpp>
#include <boost/nowide/stackstring.hpp>
#include <boost/detail/workaround.hpp>
#include "test.hpp"
#include "test_sets.hpp"
#include <iostream>
#if BOOST_WORKAROUND(BOOST_MSVC, < 1700)
# pragma warning(disable: 4428) // universal-character-name encountered in source
#endif
int main()
{
try {
std::string hello = "\xd7\xa9\xd7\x9c\xd7\x95\xd7\x9d";
std::wstring whello = L"\u05e9\u05dc\u05d5\u05dd";
std::wstring whello_3e = L"\u05e9\u05dc\u05d5\ufffd";
std::wstring whello_3 = L"\u05e9\u05dc\u05d5";
// Example filenames used in tests
std::string example = "\xd7\xa9-\xd0\xbc-\xce\xbd.txt";
std::wstring wexample = L"\u05e9-\u043c-\u03bd.txt";
std::cout << "- boost::nowide::widen" << std::endl;
{
char const *b=hello.c_str();
char const *e=b+8;
wchar_t buf[6] = { 0,0,0,0,0,1 };
TEST(boost::nowide::widen(buf,5,b,e)==buf);
TEST(buf == whello);
TEST(buf[5] == 1);
TEST(boost::nowide::widen(buf,4,b,e)==0);
TEST(boost::nowide::widen(buf,5,b,e-1)==buf);
TEST(buf == whello_3e);
TEST(boost::nowide::widen(buf,5,b,e-2)==buf);
TEST(buf == whello_3);
TEST(boost::nowide::widen(buf,5,b,b)==buf && buf[0]==0);
TEST(boost::nowide::widen(buf,5,b,b+2)==buf && buf[1]==0 && buf[0]==whello[0]);
b="\xFF\xFF";
e=b+2;
TEST(boost::nowide::widen(buf,5,b,e)==buf);
TEST(buf == std::wstring(L"\ufffd\ufffd"));
b="\xd7\xa9\xFF";
e=b+3;
TEST(boost::nowide::widen(buf,5,b,e)==buf);
TEST(buf == std::wstring(L"\u05e9\ufffd"));
TEST(boost::nowide::widen(buf,5,b,b+1)==buf);
TEST(buf == std::wstring(L"\ufffd"));
b="\xFF\xd7\xa9";
e=b+3;
TEST(boost::nowide::widen(buf,5,b,e)==buf);
TEST(buf == std::wstring(L"\ufffd\u05e9"));
TEST(boost::nowide::widen(example) == wexample);
}
std::cout << "- boost::nowide::narrow" << std::endl;
{
wchar_t const *b=whello.c_str();
wchar_t const *e=b+4;
char buf[10] = {0};
buf[9]=1;
TEST(boost::nowide::narrow(buf,9,b,e)==buf);
TEST(buf == hello);
TEST(buf[9] == 1);
TEST(boost::nowide::narrow(buf,8,b,e)==0);
TEST(boost::nowide::narrow(buf,7,b,e-1)==buf);
TEST(buf==hello.substr(0,6));
wchar_t tmp[3] = { 0xDC01,0x05e9,0 };
b = tmp;
TEST(boost::nowide::narrow(buf,10,b,b+2)==buf);
TEST(buf == std::string("\xEF\xBF\xBD\xd7\xa9"));
wchar_t tmp2[3] = { 0x05e9, 0xD800,0 };
b = tmp2;
TEST(boost::nowide::narrow(buf,10,b,b+2)==buf);
TEST(buf == std::string("\xd7\xa9\xEF\xBF\xBD"));
TEST(boost::nowide::narrow(wexample) == example);
}
{
char buf[3];
wchar_t wbuf[3];
TEST(boost::nowide::narrow(buf,3,L"xy")==std::string("xy"));
TEST(boost::nowide::widen(wbuf,3,"xy")==std::wstring(L"xy"));
}
std::cout << "- boost::nowide::stackstring" << std::endl;
{
{
boost::nowide::basic_stackstring<wchar_t,char,3> sw;
TEST(sw.convert(hello.c_str()));
TEST(sw.c_str() == whello);
TEST(sw.convert(hello.c_str(),hello.c_str()+hello.size()));
TEST(sw.c_str() == whello);
}
{
boost::nowide::basic_stackstring<wchar_t,char,5> sw;
TEST(sw.convert(hello.c_str()));
TEST(sw.c_str() == whello);
TEST(sw.convert(hello.c_str(),hello.c_str()+hello.size()));
TEST(sw.c_str() == whello);
}
{
boost::nowide::basic_stackstring<char,wchar_t,5> sw;
TEST(sw.convert(whello.c_str()));
TEST(sw.c_str() == hello);
TEST(sw.convert(whello.c_str(),whello.c_str()+whello.size()));
TEST(sw.c_str() == hello);
}
{
boost::nowide::basic_stackstring<char,wchar_t,10> sw;
TEST(sw.convert(whello.c_str()));
TEST(sw.c_str() == hello);
TEST(sw.convert(whello.c_str(),whello.c_str()+whello.size()));
TEST(sw.c_str() == hello);
}
std::cout << "- Substitutions" << std::endl;
run_all(boost::nowide::widen,boost::nowide::narrow);
}
}
catch(std::exception const &e) {
std::cerr << "Failed :" << e.what() << std::endl;
BOOST_NOWIDE_TEST_RETURN_FAILURE;
}
return boost::report_errors();
}
///
// vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4