diff --git a/icu4c/source/test/intltest/utfiteratortest.cpp b/icu4c/source/test/intltest/utfiteratortest.cpp index 2d178216ce7..4247df35762 100644 --- a/icu4c/source/test/intltest/utfiteratortest.cpp +++ b/icu4c/source/test/intltest/utfiteratortest.cpp @@ -269,9 +269,13 @@ T reverseCopy(T x) { return result; } -enum TestMode { ILL_FORMED, WELL_FORMED, UNSAFE }; +// Use SAFE when we don't care about ILL_FORMED vs. WELL_FORMED. +enum TestMode { SAFE, ILL_FORMED, WELL_FORMED, UNSAFE }; enum IterType { INPUT, FWD, CONTIG }; +// Use this don't-care behavior value for unsafe iterators that do not use the behavior tparam. +constexpr auto ANY_B = UTF_BEHAVIOR_FFFD; + template struct ImplTest { std::basic_string str; @@ -325,13 +329,13 @@ public: TESTCASE_AUTO(testSafe32FwdIter); TESTCASE_AUTO(testUnsafe32FwdIter); - TESTCASE_AUTO(testSafe16LongLinear); - TESTCASE_AUTO(testSafe8LongLinear); - TESTCASE_AUTO(testSafe32LongLinear); + TESTCASE_AUTO(testSafe16LongLinearContig); + TESTCASE_AUTO(testSafe8LongLinearContig); + TESTCASE_AUTO(testSafe32LongLinearContig); - TESTCASE_AUTO(testUnsafe16LongLinear); - TESTCASE_AUTO(testUnsafe8LongLinear); - TESTCASE_AUTO(testUnsafe32LongLinear); + TESTCASE_AUTO(testUnsafe16LongLinearContig); + TESTCASE_AUTO(testUnsafe8LongLinearContig); + TESTCASE_AUTO(testUnsafe32LongLinearContig); TESTCASE_AUTO_END; } @@ -400,7 +404,7 @@ public: testBidiIter(bad16); } void testUnsafe16() { - testBidiIter(good16); + testBidiIter(good16); } void testSafe16SinglePassIterGood() { @@ -414,10 +418,10 @@ public: } void testSafe16FwdIter() { - testFwdIter(good16); + testFwdIter(good16); } void testUnsafe16FwdIter() { - testFwdIter(good16); + testFwdIter(good16); } void testSafe8Good() { @@ -432,7 +436,7 @@ public: std::string_view(string8FromBytes(badChars8, std::size(badChars8)))); } void testUnsafe8() { - testBidiIter(std::string_view{good8Chars}); + testBidiIter(std::string_view{good8Chars}); } void testSafe8SinglePassIterGood() { @@ -447,10 +451,10 @@ public: } void testSafe8FwdIter() { - testFwdIter(std::string_view{good8Chars}); + testFwdIter(std::string_view{good8Chars}); } void testUnsafe8FwdIter() { - testFwdIter(std::string_view{good8Chars}); + testFwdIter(std::string_view{good8Chars}); } void testSafe32Good() { @@ -466,7 +470,7 @@ public: testBidiIter(bad32); } void testUnsafe32() { - testBidiIter(good32); + testBidiIter(good32); } void testSafe32SinglePassIterGood() { @@ -480,10 +484,10 @@ public: } void testSafe32FwdIter() { - testFwdIter(good32); + testFwdIter(good32); } void testUnsafe32FwdIter() { - testFwdIter(good32); + testFwdIter(good32); } // implementation code coverage ---------------------------------------- *** @@ -500,8 +504,8 @@ public: } } - template - void testSafeLongLinear(const ImplTest &test) { + template + void testLongLinearContig(const ImplTest &test) { initLong(); // TODO: fix utfStringCodePoints() & unsafeUTFStringCodePoints() // to *actually take* string_view arguments. @@ -514,33 +518,35 @@ public: // remove these functions. // If we can keep them, then pass test.str directly into the ...CodePoints() function. std::basic_string_view sv{test.str}; - auto range = utfStringCodePoints(sv); - // any mode != UNSAFE - testLongLinear(test, range.begin(), range.end()); + if constexpr (mode == UNSAFE) { + auto range = unsafeUTFStringCodePoints(sv); + testLongLinear(test, range.begin(), range.end()); + } else { + auto range = utfStringCodePoints(sv); + testLongLinear(test, range.begin(), range.end()); + } } - template - void testUnsafeLongLinear(const ImplTest &test) { - initLong(); - std::basic_string_view sv{test.str}; - auto range = unsafeUTFStringCodePoints(sv); - testLongLinear(test, range.begin(), range.end()); + void testSafe16LongLinearContig() { + testLongLinearContig(longBad16); + } + void testSafe8LongLinearContig() { + testLongLinearContig(longBad8); + } + void testSafe32LongLinearContig() { + testLongLinearContig(longBad32); } - void testSafe16LongLinear() { - testSafeLongLinear(longBad16); + void testUnsafe16LongLinearContig() { + testLongLinearContig(longGood16); } - void testSafe8LongLinear() { - testSafeLongLinear(longBad8); + void testUnsafe8LongLinearContig() { + testLongLinearContig(longGood8); } - void testSafe32LongLinear() { - testSafeLongLinear(longBad32); + void testUnsafe32LongLinearContig() { + testLongLinearContig(longGood32); } - void testUnsafe16LongLinear() { testUnsafeLongLinear(longGood16); } - void testUnsafe8LongLinear() { testUnsafeLongLinear(longGood8); } - void testUnsafe32LongLinear() { testUnsafeLongLinear(longGood32); } - ImplTest longGood8; ImplTest longGood16; ImplTest longGood32;