1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
|
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/i18n/rtl.h"
#include <stddef.h>
#include <algorithm>
#include "base/files/file_path.h"
#include "base/logging.h"
#include "base/strings/string_util.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/icu_test_util.h"
#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
#include "third_party/icu/source/common/unicode/locid.h"
#include "third_party/icu/source/i18n/unicode/usearch.h"
namespace base {
namespace i18n {
class RTLTest : public PlatformTest {
};
TEST_F(RTLTest, GetFirstStrongCharacterDirection) {
struct {
const wchar_t* text;
TextDirection direction;
} cases[] = {
// Test pure LTR string.
{ L"foo bar", LEFT_TO_RIGHT },
// Test pure RTL string.
{ L"\x05d0\x05d1\x05d2 \x05d3\x0d4\x05d5", RIGHT_TO_LEFT},
// Test bidi string in which the first character with strong directionality
// is a character with type L.
{ L"foo \x05d0 bar", LEFT_TO_RIGHT },
// Test bidi string in which the first character with strong directionality
// is a character with type R.
{ L"\x05d0 foo bar", RIGHT_TO_LEFT },
// Test bidi string which starts with a character with weak directionality
// and in which the first character with strong directionality is a
// character with type L.
{ L"!foo \x05d0 bar", LEFT_TO_RIGHT },
// Test bidi string which starts with a character with weak directionality
// and in which the first character with strong directionality is a
// character with type R.
{ L",\x05d0 foo bar", RIGHT_TO_LEFT },
// Test bidi string in which the first character with strong directionality
// is a character with type LRE.
{ L"\x202a \x05d0 foo bar", LEFT_TO_RIGHT },
// Test bidi string in which the first character with strong directionality
// is a character with type LRO.
{ L"\x202d \x05d0 foo bar", LEFT_TO_RIGHT },
// Test bidi string in which the first character with strong directionality
// is a character with type RLE.
{ L"\x202b foo \x05d0 bar", RIGHT_TO_LEFT },
// Test bidi string in which the first character with strong directionality
// is a character with type RLO.
{ L"\x202e foo \x05d0 bar", RIGHT_TO_LEFT },
// Test bidi string in which the first character with strong directionality
// is a character with type AL.
{ L"\x0622 foo \x05d0 bar", RIGHT_TO_LEFT },
// Test a string without strong directionality characters.
{ L",!.{}", LEFT_TO_RIGHT },
// Test empty string.
{ L"", LEFT_TO_RIGHT },
// Test characters in non-BMP (e.g. Phoenician letters. Please refer to
// http://demo.icu-project.org/icu-bin/ubrowse?scr=151&b=10910 for more
// information).
{
#if defined(WCHAR_T_IS_UTF32)
L" ! \x10910" L"abc 123",
#elif defined(WCHAR_T_IS_UTF16)
L" ! \xd802\xdd10" L"abc 123",
#else
#error wchar_t should be either UTF-16 or UTF-32
#endif
RIGHT_TO_LEFT },
{
#if defined(WCHAR_T_IS_UTF32)
L" ! \x10401" L"abc 123",
#elif defined(WCHAR_T_IS_UTF16)
L" ! \xd801\xdc01" L"abc 123",
#else
#error wchar_t should be either UTF-16 or UTF-32
#endif
LEFT_TO_RIGHT },
};
for (auto& i : cases)
EXPECT_EQ(i.direction,
GetFirstStrongCharacterDirection(WideToUTF16(i.text)));
}
// Note that the cases with LRE, LRO, RLE and RLO are invalid for
// GetLastStrongCharacterDirection because they should be followed by PDF
// character.
TEST_F(RTLTest, GetLastStrongCharacterDirection) {
struct {
const wchar_t* text;
TextDirection direction;
} cases[] = {
// Test pure LTR string.
{ L"foo bar", LEFT_TO_RIGHT },
// Test pure RTL string.
{ L"\x05d0\x05d1\x05d2 \x05d3\x0d4\x05d5", RIGHT_TO_LEFT},
// Test bidi string in which the last character with strong directionality
// is a character with type L.
{ L"foo \x05d0 bar", LEFT_TO_RIGHT },
// Test bidi string in which the last character with strong directionality
// is a character with type R.
{ L"\x05d0 foo bar \x05d3", RIGHT_TO_LEFT },
// Test bidi string which ends with a character with weak directionality
// and in which the last character with strong directionality is a
// character with type L.
{ L"!foo \x05d0 bar!", LEFT_TO_RIGHT },
// Test bidi string which ends with a character with weak directionality
// and in which the last character with strong directionality is a
// character with type R.
{ L",\x05d0 foo bar \x05d1,", RIGHT_TO_LEFT },
// Test bidi string in which the last character with strong directionality
// is a character with type AL.
{ L"\x0622 foo \x05d0 bar \x0622", RIGHT_TO_LEFT },
// Test a string without strong directionality characters.
{ L",!.{}", LEFT_TO_RIGHT },
// Test empty string.
{ L"", LEFT_TO_RIGHT },
// Test characters in non-BMP (e.g. Phoenician letters. Please refer to
// http://demo.icu-project.org/icu-bin/ubrowse?scr=151&b=10910 for more
// information).
{
#if defined(WCHAR_T_IS_UTF32)
L"abc 123" L" ! \x10910 !",
#elif defined(WCHAR_T_IS_UTF16)
L"abc 123" L" ! \xd802\xdd10 !",
#else
#error wchar_t should be either UTF-16 or UTF-32
#endif
RIGHT_TO_LEFT },
{
#if defined(WCHAR_T_IS_UTF32)
L"abc 123" L" ! \x10401 !",
#elif defined(WCHAR_T_IS_UTF16)
L"abc 123" L" ! \xd801\xdc01 !",
#else
#error wchar_t should be either UTF-16 or UTF-32
#endif
LEFT_TO_RIGHT },
};
for (auto& i : cases)
EXPECT_EQ(i.direction,
GetLastStrongCharacterDirection(WideToUTF16(i.text)));
}
TEST_F(RTLTest, GetStringDirection) {
struct {
const wchar_t* text;
TextDirection direction;
} cases[] = {
// Test pure LTR string.
{ L"foobar", LEFT_TO_RIGHT },
{ L".foobar", LEFT_TO_RIGHT },
{ L"foo, bar", LEFT_TO_RIGHT },
// Test pure LTR with strong directionality characters of type LRE.
{ L"\x202a\x202a", LEFT_TO_RIGHT },
{ L".\x202a\x202a", LEFT_TO_RIGHT },
{ L"\x202a, \x202a", LEFT_TO_RIGHT },
// Test pure LTR with strong directionality characters of type LRO.
{ L"\x202d\x202d", LEFT_TO_RIGHT },
{ L".\x202d\x202d", LEFT_TO_RIGHT },
{ L"\x202d, \x202d", LEFT_TO_RIGHT },
// Test pure LTR with various types of strong directionality characters.
{ L"foo \x202a\x202d", LEFT_TO_RIGHT },
{ L".\x202d foo \x202a", LEFT_TO_RIGHT },
{ L"\x202a, \x202d foo", LEFT_TO_RIGHT },
// Test pure RTL with strong directionality characters of type R.
{ L"\x05d0\x05d0", RIGHT_TO_LEFT },
{ L".\x05d0\x05d0", RIGHT_TO_LEFT },
{ L"\x05d0, \x05d0", RIGHT_TO_LEFT },
// Test pure RTL with strong directionality characters of type RLE.
{ L"\x202b\x202b", RIGHT_TO_LEFT },
{ L".\x202b\x202b", RIGHT_TO_LEFT },
{ L"\x202b, \x202b", RIGHT_TO_LEFT },
// Test pure RTL with strong directionality characters of type RLO.
{ L"\x202e\x202e", RIGHT_TO_LEFT },
{ L".\x202e\x202e", RIGHT_TO_LEFT },
{ L"\x202e, \x202e", RIGHT_TO_LEFT },
// Test pure RTL with strong directionality characters of type AL.
{ L"\x0622\x0622", RIGHT_TO_LEFT },
{ L".\x0622\x0622", RIGHT_TO_LEFT },
{ L"\x0622, \x0622", RIGHT_TO_LEFT },
// Test pure RTL with various types of strong directionality characters.
{ L"\x05d0\x202b\x202e\x0622", RIGHT_TO_LEFT },
{ L".\x202b\x202e\x0622\x05d0", RIGHT_TO_LEFT },
{ L"\x0622\x202e, \x202b\x05d0", RIGHT_TO_LEFT },
// Test bidi strings.
{ L"foo \x05d0 bar", UNKNOWN_DIRECTION },
{ L"\x202b foo bar", UNKNOWN_DIRECTION },
{ L"!foo \x0622 bar", UNKNOWN_DIRECTION },
{ L"\x202a\x202b", UNKNOWN_DIRECTION },
{ L"\x202e\x202d", UNKNOWN_DIRECTION },
{ L"\x0622\x202a", UNKNOWN_DIRECTION },
{ L"\x202d\x05d0", UNKNOWN_DIRECTION },
// Test a string without strong directionality characters.
{ L",!.{}", LEFT_TO_RIGHT },
// Test empty string.
{ L"", LEFT_TO_RIGHT },
{
#if defined(WCHAR_T_IS_UTF32)
L" ! \x10910" L"abc 123",
#elif defined(WCHAR_T_IS_UTF16)
L" ! \xd802\xdd10" L"abc 123",
#else
#error wchar_t should be either UTF-16 or UTF-32
#endif
UNKNOWN_DIRECTION },
{
#if defined(WCHAR_T_IS_UTF32)
L" ! \x10401" L"abc 123",
#elif defined(WCHAR_T_IS_UTF16)
L" ! \xd801\xdc01" L"abc 123",
#else
#error wchar_t should be either UTF-16 or UTF-32
#endif
LEFT_TO_RIGHT },
};
for (auto& i : cases)
EXPECT_EQ(i.direction, GetStringDirection(WideToUTF16(i.text)));
}
TEST_F(RTLTest, WrapPathWithLTRFormatting) {
const wchar_t* cases[] = {
// Test common path, such as "c:\foo\bar".
L"c:/foo/bar",
// Test path with file name, such as "c:\foo\bar\test.jpg".
L"c:/foo/bar/test.jpg",
// Test path ending with punctuation, such as "c:\(foo)\bar.".
L"c:/(foo)/bar.",
// Test path ending with separator, such as "c:\foo\bar\".
L"c:/foo/bar/",
// Test path with RTL character.
L"c:/\x05d0",
// Test path with 2 level RTL directory names.
L"c:/\x05d0/\x0622",
// Test path with mixed RTL/LTR directory names and ending with punctuation.
L"c:/\x05d0/\x0622/(foo)/b.a.r.",
// Test path without driver name, such as "/foo/bar/test/jpg".
L"/foo/bar/test.jpg",
// Test path start with current directory, such as "./foo".
L"./foo",
// Test path start with parent directory, such as "../foo/bar.jpg".
L"../foo/bar.jpg",
// Test absolute path, such as "//foo/bar.jpg".
L"//foo/bar.jpg",
// Test path with mixed RTL/LTR directory names.
L"c:/foo/\x05d0/\x0622/\x05d1.jpg",
// Test empty path.
L""
};
for (auto*& i : cases) {
FilePath path;
#if BUILDFLAG(IS_WIN)
std::wstring win_path(i);
std::replace(win_path.begin(), win_path.end(), '/', '\\');
path = FilePath(win_path);
std::wstring wrapped_expected =
std::wstring(L"\x202a") + win_path + L"\x202c";
#else
path = FilePath(base::SysWideToNativeMB(i));
std::wstring wrapped_expected = std::wstring(L"\x202a") + i + L"\x202c";
#endif
std::u16string localized_file_path_string;
WrapPathWithLTRFormatting(path, &localized_file_path_string);
std::wstring wrapped_actual = UTF16ToWide(localized_file_path_string);
EXPECT_EQ(wrapped_expected, wrapped_actual);
}
}
TEST_F(RTLTest, WrapString) {
const wchar_t* cases[] = {
L" . ",
L"abc",
L"a" L"\x5d0\x5d1",
L"a" L"\x5d1" L"b",
L"\x5d0\x5d1\x5d2",
L"\x5d0\x5d1" L"a",
L"\x5d0" L"a" L"\x5d1",
};
const bool was_rtl = IsRTL();
test::ScopedRestoreICUDefaultLocale restore_locale;
for (size_t i = 0; i < 2; ++i) {
// Toggle the application default text direction (to try each direction).
SetRTLForTesting(!IsRTL());
std::u16string empty;
WrapStringWithLTRFormatting(&empty);
EXPECT_TRUE(empty.empty());
WrapStringWithRTLFormatting(&empty);
EXPECT_TRUE(empty.empty());
for (auto*& test_case : cases) {
std::u16string input = WideToUTF16(test_case);
std::u16string ltr_wrap = input;
WrapStringWithLTRFormatting(<r_wrap);
EXPECT_EQ(ltr_wrap[0], kLeftToRightEmbeddingMark);
EXPECT_EQ(ltr_wrap.substr(1, ltr_wrap.length() - 2), input);
EXPECT_EQ(ltr_wrap[ltr_wrap.length() -1], kPopDirectionalFormatting);
std::u16string rtl_wrap = input;
WrapStringWithRTLFormatting(&rtl_wrap);
EXPECT_EQ(rtl_wrap[0], kRightToLeftEmbeddingMark);
EXPECT_EQ(rtl_wrap.substr(1, rtl_wrap.length() - 2), input);
EXPECT_EQ(rtl_wrap[rtl_wrap.length() -1], kPopDirectionalFormatting);
}
}
EXPECT_EQ(was_rtl, IsRTL());
}
TEST_F(RTLTest, GetDisplayStringInLTRDirectionality) {
struct {
const wchar_t* path;
bool wrap_ltr;
bool wrap_rtl;
} cases[] = {
{ L"test", false, true },
{ L"test.html", false, true },
{ L"\x05d0\x05d1\x05d2", true, true },
{ L"\x05d0\x05d1\x05d2.txt", true, true },
{ L"\x05d0" L"abc", true, true },
{ L"\x05d0" L"abc.txt", true, true },
{ L"abc\x05d0\x05d1", false, true },
{ L"abc\x05d0\x05d1.jpg", false, true },
};
const bool was_rtl = IsRTL();
test::ScopedRestoreICUDefaultLocale restore_locale;
for (size_t i = 0; i < 2; ++i) {
// Toggle the application default text direction (to try each direction).
SetRTLForTesting(!IsRTL());
for (auto& test_case : cases) {
std::u16string input = WideToUTF16(test_case.path);
std::u16string output = GetDisplayStringInLTRDirectionality(input);
// Test the expected wrapping behavior for the current UI directionality.
if (IsRTL() ? test_case.wrap_rtl : test_case.wrap_ltr)
EXPECT_NE(output, input);
else
EXPECT_EQ(output, input);
}
}
EXPECT_EQ(was_rtl, IsRTL());
}
TEST_F(RTLTest, GetTextDirection) {
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocale("ar"));
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocale("ar_EG"));
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocale("he"));
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocale("he_IL"));
// iw is an obsolete code for Hebrew.
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocale("iw"));
// Although we're not yet localized to Farsi and Urdu, we
// do have the text layout direction information for them.
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocale("fa"));
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocale("ur"));
#if 0
// Enable these when we include the minimal locale data for Azerbaijani
// written in Arabic and Dhivehi. At the moment, our copy of
// ICU data does not have entries for them.
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocale("az_Arab"));
// Dhivehi that uses Thaana script.
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocale("dv"));
#endif
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocale("en"));
// Chinese in China with '-'.
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocale("zh-CN"));
// Filipino : 3-letter code
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocale("fil"));
// Russian
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocale("ru"));
// Japanese that uses multiple scripts
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocale("ja"));
}
TEST_F(RTLTest, GetTextDirectionForLocaleInStartUp) {
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocaleInStartUp("ar"));
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocaleInStartUp("ar_EG"));
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocaleInStartUp("he"));
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocaleInStartUp("he_IL"));
// iw is an obsolete code for Hebrew.
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocaleInStartUp("iw"));
// Although we're not yet localized to Farsi and Urdu, we
// do have the text layout direction information for them.
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocaleInStartUp("fa"));
EXPECT_EQ(RIGHT_TO_LEFT, GetTextDirectionForLocaleInStartUp("ur"));
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocaleInStartUp("en"));
// Chinese in China with '-'.
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocaleInStartUp("zh-CN"));
// Filipino : 3-letter code
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocaleInStartUp("fil"));
// Russian
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocaleInStartUp("ru"));
// Japanese that uses multiple scripts
EXPECT_EQ(LEFT_TO_RIGHT, GetTextDirectionForLocaleInStartUp("ja"));
}
TEST_F(RTLTest, UnadjustStringForLocaleDirection) {
// These test strings are borrowed from WrapPathWithLTRFormatting
const wchar_t* cases[] = {
L"foo bar",
L"foo \x05d0 bar",
L"\x05d0 foo bar",
L"!foo \x05d0 bar",
L",\x05d0 foo bar",
L"\x202a \x05d0 foo bar",
L"\x202d \x05d0 foo bar",
L"\x202b foo \x05d0 bar",
L"\x202e foo \x05d0 bar",
L"\x0622 foo \x05d0 bar",
};
const bool was_rtl = IsRTL();
test::ScopedRestoreICUDefaultLocale restore_locale;
for (size_t i = 0; i < 2; ++i) {
// Toggle the application default text direction (to try each direction).
SetRTLForTesting(!IsRTL());
for (auto*& test_case : cases) {
std::u16string unadjusted_string = WideToUTF16(test_case);
std::u16string adjusted_string = unadjusted_string;
if (!AdjustStringForLocaleDirection(&adjusted_string))
continue;
EXPECT_NE(unadjusted_string, adjusted_string);
EXPECT_TRUE(UnadjustStringForLocaleDirection(&adjusted_string));
EXPECT_EQ(unadjusted_string, adjusted_string)
<< " for test case [" << unadjusted_string
<< "] with IsRTL() == " << IsRTL();
}
}
EXPECT_EQ(was_rtl, IsRTL());
}
TEST_F(RTLTest, EnsureTerminatedDirectionalFormatting) {
struct {
const wchar_t* unformated_text;
const wchar_t* formatted_text;
} cases[] = {
// Tests string without any dir-formatting characters.
{L"google.com", L"google.com"},
// Tests string with properly terminated dir-formatting character.
{L"\x202egoogle.com\x202c", L"\x202egoogle.com\x202c"},
// Tests string with over-terminated dir-formatting characters.
{L"\x202egoogle\x202c.com\x202c", L"\x202egoogle\x202c.com\x202c"},
// Tests string beginning with a dir-formatting character.
{L"\x202emoc.elgoog", L"\x202emoc.elgoog\x202c"},
// Tests string that over-terminates then re-opens.
{L"\x202egoogle\x202c\x202c.\x202eom",
L"\x202egoogle\x202c\x202c.\x202eom\x202c"},
// Tests string containing a dir-formatting character in the middle.
{L"google\x202e.com", L"google\x202e.com\x202c"},
// Tests string with multiple dir-formatting characters.
{L"\x202egoogle\x202e.com/\x202eguest",
L"\x202egoogle\x202e.com/\x202eguest\x202c\x202c\x202c"},
// Test the other dir-formatting characters (U+202A, U+202B, and U+202D).
{L"\x202agoogle.com", L"\x202agoogle.com\x202c"},
{L"\x202bgoogle.com", L"\x202bgoogle.com\x202c"},
{L"\x202dgoogle.com", L"\x202dgoogle.com\x202c"},
};
const bool was_rtl = IsRTL();
test::ScopedRestoreICUDefaultLocale restore_locale;
for (size_t i = 0; i < 2; ++i) {
// Toggle the application default text direction (to try each direction).
SetRTLForTesting(!IsRTL());
for (auto& test_case : cases) {
std::u16string unsanitized_text = WideToUTF16(test_case.unformated_text);
std::u16string sanitized_text = WideToUTF16(test_case.formatted_text);
EnsureTerminatedDirectionalFormatting(&unsanitized_text);
EXPECT_EQ(sanitized_text, unsanitized_text);
}
}
EXPECT_EQ(was_rtl, IsRTL());
}
TEST_F(RTLTest, SanitizeUserSuppliedString) {
struct {
const wchar_t* unformatted_text;
const wchar_t* formatted_text;
} cases[] = {
// Tests RTL string with properly terminated dir-formatting character.
{L"\x202eكبير Google التطبيق\x202c", L"\x202eكبير Google التطبيق\x202c"},
// Tests RTL string with over-terminated dir-formatting characters.
{L"\x202eكبير Google\x202cالتطبيق\x202c",
L"\x202eكبير Google\x202cالتطبيق\x202c"},
// Tests RTL string that over-terminates then re-opens.
{L"\x202eكبير Google\x202c\x202cالتطبيق\x202e",
L"\x202eكبير Google\x202c\x202cالتطبيق\x202e\x202c"},
// Tests RTL string with multiple dir-formatting characters.
{L"\x202eك\x202eبير Google الت\x202eطبيق",
L"\x202eك\x202eبير Google الت\x202eطبيق\x202c\x202c\x202c"},
// Test the other dir-formatting characters (U+202A, U+202B, and U+202D).
{L"\x202aكبير Google التطبيق", L"\x202aكبير Google التطبيق\x202c"},
{L"\x202bكبير Google التطبيق", L"\x202bكبير Google التطبيق\x202c"},
{L"\x202dكبير Google التطبيق", L"\x202dكبير Google التطبيق\x202c"},
};
for (auto& i : cases) {
// On Windows for an LTR locale, no changes to the string are made.
std::u16string prefix, suffix = u"";
#if !BUILDFLAG(IS_WIN)
prefix = u"\x200e\x202b";
suffix = u"\x202c\x200e";
#endif // !BUILDFLAG(IS_WIN)
std::u16string unsanitized_text = WideToUTF16(i.unformatted_text);
std::u16string sanitized_text =
prefix + WideToUTF16(i.formatted_text) + suffix;
SanitizeUserSuppliedString(&unsanitized_text);
EXPECT_EQ(sanitized_text, unsanitized_text);
}
}
class SetICULocaleTest : public PlatformTest {};
TEST_F(SetICULocaleTest, OverlongLocaleId) {
test::ScopedRestoreICUDefaultLocale restore_locale;
std::string id("fr-ca-x-foo");
std::string lid("fr_CA@x=foo");
while (id.length() < 152) {
id.append("-x-foo");
lid.append("-x-foo");
}
SetICUDefaultLocale(id);
EXPECT_STRNE("en_US", icu::Locale::getDefault().getName());
id.append("zzz");
lid.append("zzz");
SetICUDefaultLocale(id);
// ICU-21639 fix the long locale issue now.
EXPECT_STREQ(lid.c_str(), icu::Locale::getDefault().getName());
}
} // namespace i18n
} // namespace base
|