diff options
author | Roland Reichwein <mail@reichwein.it> | 2021-12-28 14:35:36 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2021-12-28 14:35:36 +0100 |
commit | 563557be9c97496b7435bef4e64730a379e55037 (patch) | |
tree | 76fc7104d8ac68834e6b57bce97187d615912b8c /src | |
parent | 403c885d67f79c637ebcb303722adfd6a4b8195e (diff) |
UTF and ISO are Encodings, not Facets
Diffstat (limited to 'src')
-rw-r--r-- | src/test-unicode.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/test-unicode.cpp b/src/test-unicode.cpp index 99e164b..70ec453 100644 --- a/src/test-unicode.cpp +++ b/src/test-unicode.cpp @@ -281,8 +281,8 @@ void test_utf_to_utf(std::tuple<Ts...>& t) BOOST_CHECK_MESSAGE(std::get<j>(t) == result, "Container: From " << typeid(From).name() << "(" << i << ", " << std::get<i>(t) << ") to " << typeid(To).name() << "(" << j << ", " << std::get<j>(t) << "), got " << result); // test facet interface - result = unicode::convert<typename unicode::Encoding<typename From::value_type>::Facet, typename unicode::Encoding<typename To::value_type>::Facet>(std::get<i>(t)); - BOOST_CHECK_MESSAGE(std::get<j>(t) == result, "Facet: From " << typeid(From).name() << "(" << i << ", " << std::get<i>(t) << ") to " << typeid(To).name() << "(" << j << ", " << std::get<j>(t) << "), got " << result); + result = unicode::convert<typename unicode::Encoding_t<typename From::value_type>, typename unicode::Encoding_t<typename To::value_type>>(std::get<i>(t)); + BOOST_CHECK_MESSAGE(std::get<j>(t) == result, "Encoding: From " << typeid(From).name() << "(" << i << ", " << std::get<i>(t) << ") to " << typeid(To).name() << "(" << j << ", " << std::get<j>(t) << "), got " << result); // test actual results by comparing with boost::locale::conv results BOOST_CHECK_EQUAL(result, (boost::locale::conv::utf_to_utf<typename To::value_type, typename From::value_type>(std::get<i>(t)))); @@ -317,9 +317,9 @@ void test_is_valid_utf(std::tuple<Ts...>& t) result = unicode::is_valid_utf<T>(std::get<i>(t)); BOOST_CHECK_MESSAGE(result == true, "is_valid_utf w/ " << typeid(T).name() << "(" << i << ", " << std::get<i>(t) << "), got " << result); - // test via Facet - result = unicode::is_valid_utf<typename unicode::Encoding<typename T::value_type>::Facet>(std::get<i>(t)); - BOOST_CHECK_MESSAGE(result == true, "is_valid_utf w/ " << typeid(typename unicode::Encoding<typename T::value_type>::Facet).name() << "(" << i << ", " << std::get<i>(t) << "), got " << result); + // test via Encoding + result = unicode::is_valid_utf<typename unicode::Encoding_t<typename T::value_type>>(std::get<i>(t)); + BOOST_CHECK_MESSAGE(result == true, "is_valid_utf w/ " << typeid(typename unicode::Encoding_t<typename T::value_type>).name() << "(" << i << ", " << std::get<i>(t) << "), got " << result); // iterate over other combinations if constexpr (i + 1 < std::tuple_size<typename std::remove_reference<decltype(t)>::type>::value) @@ -350,7 +350,7 @@ void test_utf_to_utf_failure(std::basic_string<From>& s) // via container try { - (void) unicode::convert<typename unicode::Encoding<From>::Facet::string_type, typename unicode::Encoding<To>::Facet::string_type>(s); + (void) unicode::convert<typename unicode::Encoding_t<From>::string_type, typename unicode::Encoding_t<To>::string_type>(s); BOOST_ERROR("Container type: Expected exception at index: " << index << ", " << typeid(From).name() << " -> " << typeid(To).name()); } catch (const std::invalid_argument&) { // OK: this is an expected exception for convert() on bad input @@ -360,8 +360,8 @@ void test_utf_to_utf_failure(std::basic_string<From>& s) // via facet try { - (void) unicode::convert<typename unicode::Encoding<From>::Facet,typename unicode::Encoding<To>::Facet>(s); - BOOST_ERROR("Facet: Expected exception at index: " << index << ", " << typeid(From).name() << " -> " << typeid(To).name()); + (void) unicode::convert<typename unicode::Encoding_t<From>,typename unicode::Encoding_t<To>>(s); + BOOST_ERROR("Encoding: Expected exception at index: " << index << ", " << typeid(From).name() << " -> " << typeid(To).name()); } catch (const std::invalid_argument&) { // OK: this is an expected exception for convert() on bad input } catch (const std::exception& ex) { @@ -393,7 +393,7 @@ void test_is_valid_utf_failure(std::basic_string<T>& s) BOOST_CHECK_MESSAGE(unicode::is_valid_utf<typename std::basic_string<T>>(s) == false, "Expected bad UTF at index: " << index << ", " << typeid(T).name()); - BOOST_CHECK_MESSAGE(unicode::is_valid_utf<typename unicode::Encoding<T>::Facet>(s) == false, "Expected bad UTF at index: " << index << ", " << typeid(typename unicode::Encoding<T>::Facet).name()); + BOOST_CHECK_MESSAGE(unicode::is_valid_utf<typename unicode::Encoding_t<T>>(s) == false, "Expected bad UTF at index: " << index << ", " << typeid(typename unicode::Encoding_t<T>).name()); // iterate over remaining types if constexpr (index + 1 < std::tuple_size<Collection>::value) @@ -506,7 +506,7 @@ void test_random_invalid(random_context& rc, size_t length) // facet interface try { - To result{unicode::convert<typename unicode::Encoding<typename From::value_type>::Facet,typename unicode::Encoding<typename To::value_type>::Facet>(r)}; + To result{unicode::convert<typename unicode::Encoding_t<typename From::value_type>,typename unicode::Encoding_t<typename To::value_type>>(r)}; if (r.empty()) { BOOST_CHECK(result.empty()); @@ -573,12 +573,12 @@ void test_random_valid(random_context& rc, size_t length, const std::string& des // Fill From data list std::vector<From> list; std::transform(u32list.begin(), u32list.end(), std::back_inserter(list), [](const std::u32string& s){ - return unicode::convert<unicode::UTF_32, typename unicode::Encoding<typename From::value_type>::Facet>(s); + return unicode::convert<unicode::UTF_32, typename unicode::Encoding_t<typename From::value_type>>(s); }); for (int i = 0; i < list.size(); i++) { BOOST_CHECK(list[i].size() >= u32list[i].size()); - To result{unicode::convert<typename unicode::Encoding<typename From::value_type>::Facet,typename unicode::Encoding<typename To::value_type>::Facet>(list[i])}; + To result{unicode::convert<typename unicode::Encoding_t<typename From::value_type>,typename unicode::Encoding_t<typename To::value_type>>(list[i])}; BOOST_CHECK(result.size() >= u32list[i].size()); auto boost_result{boost::locale::conv::utf_to_utf<typename To::value_type, typename From::value_type>(list[i])}; BOOST_CHECK_EQUAL(result, boost_result); @@ -590,7 +590,7 @@ void test_random_valid(random_context& rc, size_t length, const std::string& des " from UTF-"s + std::to_string(sizeof(typename From::value_type) * 8) + " to UTF-"s + std::to_string(sizeof(typename To::value_type) * 8)); for (const auto& i: list) - To result{unicode::convert<typename unicode::Encoding<typename From::value_type>::Facet,typename unicode::Encoding<typename To::value_type>::Facet>(i)}; + To result{unicode::convert<typename unicode::Encoding_t<typename From::value_type>,typename unicode::Encoding_t<typename To::value_type>>(i)}; } { |