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 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40284755): Remove this and spanify to fix the errors.
#pragma allow_unsafe_buffers
#endif
#include "base/strings/string_util.h"
#include <math.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include <algorithm>
#include <array>
#include <ranges>
#include <string>
#include <string_view>
#include <type_traits>
#include "base/bits.h"
#include "base/strings/utf_ostream_operators.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using ::testing::ElementsAre;
namespace base {
namespace {
const struct trim_case {
const wchar_t* input;
const TrimPositions positions;
const wchar_t* output;
const TrimPositions return_value;
} trim_cases[] = {
{L" Google Video ", TRIM_LEADING, L"Google Video ", TRIM_LEADING},
{L" Google Video ", TRIM_TRAILING, L" Google Video", TRIM_TRAILING},
{L" Google Video ", TRIM_ALL, L"Google Video", TRIM_ALL},
{L"Google Video", TRIM_ALL, L"Google Video", TRIM_NONE},
{L"", TRIM_ALL, L"", TRIM_NONE},
{L" ", TRIM_LEADING, L"", TRIM_LEADING},
{L" ", TRIM_TRAILING, L"", TRIM_TRAILING},
{L" ", TRIM_ALL, L"", TRIM_ALL},
{L"\t\rTest String\n", TRIM_ALL, L"Test String", TRIM_ALL},
{L"\x2002Test String\x00A0\x3000", TRIM_ALL, L"Test String", TRIM_ALL},
};
const struct trim_case_ascii {
const char* input;
const TrimPositions positions;
const char* output;
const TrimPositions return_value;
} trim_cases_ascii[] = {
{" Google Video ", TRIM_LEADING, "Google Video ", TRIM_LEADING},
{" Google Video ", TRIM_TRAILING, " Google Video", TRIM_TRAILING},
{" Google Video ", TRIM_ALL, "Google Video", TRIM_ALL},
{"Google Video", TRIM_ALL, "Google Video", TRIM_NONE},
{"", TRIM_ALL, "", TRIM_NONE},
{" ", TRIM_LEADING, "", TRIM_LEADING},
{" ", TRIM_TRAILING, "", TRIM_TRAILING},
{" ", TRIM_ALL, "", TRIM_ALL},
{"\t\rTest String\n", TRIM_ALL, "Test String", TRIM_ALL},
};
using TestFunction = bool (*)(std::string_view str);
// Helper used to test IsStringUTF8[AllowingNoncharacters].
void TestStructurallyValidUtf8(TestFunction fn) {
EXPECT_TRUE(fn("abc"));
EXPECT_TRUE(fn("\xC2\x81"));
EXPECT_TRUE(fn("\xE1\x80\xBF"));
EXPECT_TRUE(fn("\xF1\x80\xA0\xBF"));
EXPECT_TRUE(fn("\xF1\x80\xA0\xBF"));
EXPECT_TRUE(fn("a\xC2\x81\xE1\x80\xBF\xF1\x80\xA0\xBF"));
// U+FEFF used as UTF-8 BOM.
// clang-format off
EXPECT_TRUE(fn("\xEF\xBB\xBF" "abc"));
// clang-format on
// Embedded nulls in canonical UTF-8 representation.
using std::string_literals::operator""s;
const std::string kEmbeddedNull = "embedded\0null"s;
EXPECT_TRUE(fn(kEmbeddedNull));
}
// Helper used to test IsStringUTF8[AllowingNoncharacters].
void TestStructurallyInvalidUtf8(TestFunction fn) {
// Invalid encoding of U+1FFFE (0x8F instead of 0x9F)
EXPECT_FALSE(fn("\xF0\x8F\xBF\xBE"));
// Surrogate code points
EXPECT_FALSE(fn("\xED\xA0\x80\xED\xBF\xBF"));
EXPECT_FALSE(fn("\xED\xA0\x8F"));
EXPECT_FALSE(fn("\xED\xBF\xBF"));
// Overlong sequences
EXPECT_FALSE(fn("\xC0\x80")); // U+0000
EXPECT_FALSE(fn("\xC1\x80\xC1\x81")); // "AB"
EXPECT_FALSE(fn("\xE0\x80\x80")); // U+0000
EXPECT_FALSE(fn("\xE0\x82\x80")); // U+0080
EXPECT_FALSE(fn("\xE0\x9F\xBF")); // U+07FF
EXPECT_FALSE(fn("\xF0\x80\x80\x8D")); // U+000D
EXPECT_FALSE(fn("\xF0\x80\x82\x91")); // U+0091
EXPECT_FALSE(fn("\xF0\x80\xA0\x80")); // U+0800
EXPECT_FALSE(fn("\xF0\x8F\xBB\xBF")); // U+FEFF (BOM)
EXPECT_FALSE(fn("\xF8\x80\x80\x80\xBF")); // U+003F
EXPECT_FALSE(fn("\xFC\x80\x80\x80\xA0\xA5")); // U+00A5
// Beyond U+10FFFF (the upper limit of Unicode codespace)
EXPECT_FALSE(fn("\xF4\x90\x80\x80")); // U+110000
EXPECT_FALSE(fn("\xF8\xA0\xBF\x80\xBF")); // 5 bytes
EXPECT_FALSE(fn("\xFC\x9C\xBF\x80\xBF\x80")); // 6 bytes
// BOM in UTF-16(BE|LE)
EXPECT_FALSE(fn("\xFE\xFF"));
EXPECT_FALSE(fn("\xFF\xFE"));
// Strings in legacy encodings. We can certainly make up strings
// in a legacy encoding that are valid in UTF-8, but in real data,
// most of them are invalid as UTF-8.
// cafe with U+00E9 in ISO-8859-1
EXPECT_FALSE(fn("caf\xE9"));
// U+AC00, U+AC001 in EUC-KR
EXPECT_FALSE(fn("\xB0\xA1\xB0\xA2"));
// U+4F60 U+597D in Big5
EXPECT_FALSE(fn("\xA7\x41\xA6\x6E"));
// "abc" with U+201[CD] in windows-125[0-8]
// clang-format off
EXPECT_FALSE(fn("\x93" "abc\x94"));
// clang-format on
// U+0639 U+064E U+0644 U+064E in ISO-8859-6
EXPECT_FALSE(fn("\xD9\xEE\xE4\xEE"));
// U+03B3 U+03B5 U+03B9 U+03AC in ISO-8859-7
EXPECT_FALSE(fn("\xE3\xE5\xE9\xDC"));
// BOM in UTF-32(BE|LE)
using std::string_literals::operator""s;
const std::string kUtf32BeBom = "\x00\x00\xFE\xFF"s;
EXPECT_FALSE(fn(kUtf32BeBom));
const std::string kUtf32LeBom = "\xFF\xFE\x00\x00"s;
EXPECT_FALSE(fn(kUtf32LeBom));
}
// Helper used to test IsStringUTF8[AllowingNoncharacters].
void TestNoncharacters(TestFunction fn, bool expected_result) {
EXPECT_EQ(fn("\xEF\xB7\x90"), expected_result); // U+FDD0
EXPECT_EQ(fn("\xEF\xB7\x9F"), expected_result); // U+FDDF
EXPECT_EQ(fn("\xEF\xB7\xAF"), expected_result); // U+FDEF
EXPECT_EQ(fn("\xEF\xBF\xBE"), expected_result); // U+FFFE
EXPECT_EQ(fn("\xEF\xBF\xBF"), expected_result); // U+FFFF
EXPECT_EQ(fn("\xF0\x9F\xBF\xBE"), expected_result); // U+01FFFE
EXPECT_EQ(fn("\xF0\x9F\xBF\xBF"), expected_result); // U+01FFFF
EXPECT_EQ(fn("\xF0\xAF\xBF\xBE"), expected_result); // U+02FFFE
EXPECT_EQ(fn("\xF0\xAF\xBF\xBF"), expected_result); // U+02FFFF
EXPECT_EQ(fn("\xF0\xBF\xBF\xBE"), expected_result); // U+03FFFE
EXPECT_EQ(fn("\xF0\xBF\xBF\xBF"), expected_result); // U+03FFFF
EXPECT_EQ(fn("\xF1\x8F\xBF\xBE"), expected_result); // U+04FFFE
EXPECT_EQ(fn("\xF1\x8F\xBF\xBF"), expected_result); // U+04FFFF
EXPECT_EQ(fn("\xF1\x9F\xBF\xBE"), expected_result); // U+05FFFE
EXPECT_EQ(fn("\xF1\x9F\xBF\xBF"), expected_result); // U+05FFFF
EXPECT_EQ(fn("\xF1\xAF\xBF\xBE"), expected_result); // U+06FFFE
EXPECT_EQ(fn("\xF1\xAF\xBF\xBF"), expected_result); // U+06FFFF
EXPECT_EQ(fn("\xF1\xBF\xBF\xBE"), expected_result); // U+07FFFE
EXPECT_EQ(fn("\xF1\xBF\xBF\xBF"), expected_result); // U+07FFFF
EXPECT_EQ(fn("\xF2\x8F\xBF\xBE"), expected_result); // U+08FFFE
EXPECT_EQ(fn("\xF2\x8F\xBF\xBF"), expected_result); // U+08FFFF
EXPECT_EQ(fn("\xF2\x9F\xBF\xBE"), expected_result); // U+09FFFE
EXPECT_EQ(fn("\xF2\x9F\xBF\xBF"), expected_result); // U+09FFFF
EXPECT_EQ(fn("\xF2\xAF\xBF\xBE"), expected_result); // U+0AFFFE
EXPECT_EQ(fn("\xF2\xAF\xBF\xBF"), expected_result); // U+0AFFFF
EXPECT_EQ(fn("\xF2\xBF\xBF\xBE"), expected_result); // U+0BFFFE
EXPECT_EQ(fn("\xF2\xBF\xBF\xBF"), expected_result); // U+0BFFFF
EXPECT_EQ(fn("\xF3\x8F\xBF\xBE"), expected_result); // U+0CFFFE
EXPECT_EQ(fn("\xF3\x8F\xBF\xBF"), expected_result); // U+0CFFFF
EXPECT_EQ(fn("\xF3\x9F\xBF\xBE"), expected_result); // U+0DFFFE
EXPECT_EQ(fn("\xF3\x9F\xBF\xBF"), expected_result); // U+0DFFFF
EXPECT_EQ(fn("\xF3\xAF\xBF\xBE"), expected_result); // U+0EFFFE
EXPECT_EQ(fn("\xF3\xAF\xBF\xBF"), expected_result); // U+0EFFFF
EXPECT_EQ(fn("\xF3\xBF\xBF\xBE"), expected_result); // U+0FFFFE
EXPECT_EQ(fn("\xF3\xBF\xBF\xBF"), expected_result); // U+0FFFFF
EXPECT_EQ(fn("\xF4\x8F\xBF\xBE"), expected_result); // U+10FFFE
EXPECT_EQ(fn("\xF4\x8F\xBF\xBF"), expected_result); // U+10FFFF
}
TEST(StringUtilTest, TruncateUTF8ToByteSize) {
// Just a few tests of the version which takes an output parameter. It's
// implemented in terms `TruncateUTF8ToByteSize()` which returns a string
// view.
std::string output;
TruncateUTF8ToByteSize("test", 3, &output);
EXPECT_EQ("tes", output);
TruncateUTF8ToByteSize("test", 0, &output);
EXPECT_EQ("", output);
TruncateUTF8ToByteSize("", 3, &output);
EXPECT_EQ("", output);
// Empty strings and invalid byte_size arguments
EXPECT_EQ("", TruncateUTF8ToByteSize(std::string(), 0));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xe1\x80\xbf", 0));
EXPECT_EQ("\xe1\x80\xbf",
TruncateUTF8ToByteSize("\xe1\x80\xbf", static_cast<size_t>(-1)));
EXPECT_EQ("\xe1\x80\xbf", TruncateUTF8ToByteSize("\xe1\x80\xbf", 4));
// Testing the truncation of valid UTF8 correctly
EXPECT_EQ("ab", TruncateUTF8ToByteSize("abc", 2));
EXPECT_EQ("\xc2\x81", TruncateUTF8ToByteSize("\xc2\x81\xc2\x81", 2));
EXPECT_EQ("\xc2\x81", TruncateUTF8ToByteSize("\xc2\x81\xc2\x81", 3));
EXPECT_EQ("\xc2\x81\xc2\x81", TruncateUTF8ToByteSize("\xc2\x81\xc2\x81", 4));
{
const char array[] = "\x00\x00\xc2\x81\xc2\x81";
const std::string array_string(array, std::size(array));
EXPECT_EQ(std::string_view("\x00\x00\xc2\x81", 4),
TruncateUTF8ToByteSize(array_string, 4));
}
{
const char array[] = "\x00\xc2\x81\xc2\x81";
const std::string array_string(array, std::size(array));
EXPECT_EQ(std::string_view("\x00\xc2\x81", 3),
TruncateUTF8ToByteSize(array_string, 4));
}
// Testing invalid UTF8
EXPECT_EQ("", TruncateUTF8ToByteSize("\xed\xa0\x80\xed\xbf\xbf", 6));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xed\xa0\x8f", 3));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xed\xbf\xbf", 3));
// Testing invalid UTF8 mixed with valid UTF8
EXPECT_EQ("\xe1\x80\xbf", TruncateUTF8ToByteSize("\xe1\x80\xbf", 3));
EXPECT_EQ("\xf1\x80\xa0\xbf", TruncateUTF8ToByteSize("\xf1\x80\xa0\xbf", 4));
EXPECT_EQ(
"a\xc2\x81\xe1\x80\xbf\xf1\x80\xa0\xbf",
TruncateUTF8ToByteSize("a\xc2\x81\xe1\x80\xbf\xf1\x80\xa0\xbf", 10));
EXPECT_EQ(
"a\xc2\x81\xe1\x80\xbf\xf1"
"a",
TruncateUTF8ToByteSize("a\xc2\x81\xe1\x80\xbf\xf1"
"a"
"\x80\xa0",
10));
EXPECT_EQ(
"\xef\xbb\xbf"
"abc",
TruncateUTF8ToByteSize("\xef\xbb\xbf"
"abc",
6));
// Overlong sequences
EXPECT_EQ("", TruncateUTF8ToByteSize("\xc0\x80", 2));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xc1\x80\xc1\x81", 4));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xe0\x80\x80", 3));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xe0\x82\x80", 3));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xe0\x9f\xbf", 3));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xf0\x80\x80\x8D", 4));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xf0\x80\x82\x91", 4));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xf0\x80\xa0\x80", 4));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xf0\x8f\xbb\xbf", 4));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xf8\x80\x80\x80\xbf", 5));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xfc\x80\x80\x80\xa0\xa5", 6));
// Beyond U+10FFFF (the upper limit of Unicode codespace)
EXPECT_EQ("", TruncateUTF8ToByteSize("\xf4\x90\x80\x80", 4));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xf8\xa0\xbf\x80\xbf", 5));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xfc\x9c\xbf\x80\xbf\x80", 6));
// BOMs in UTF-16(BE|LE) and UTF-32(BE|LE)
EXPECT_EQ("", TruncateUTF8ToByteSize("\xfe\xff", 2));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xff\xfe", 2));
{
const char array[] = "\x00\x00\xfe\xff";
const std::string array_string(array, std::size(array));
EXPECT_EQ(std::string("\x00\x00", 2),
TruncateUTF8ToByteSize(array_string, 4));
}
// Variants on the previous test
{
const char array[] = "\xff\xfe\x00\x00";
const std::string array_string(array, 4);
EXPECT_EQ(std::string_view("\xff\xfe\x00\x00", 4),
TruncateUTF8ToByteSize(array_string, 4));
}
{
const char array[] = "\xff\x00\x00\xfe";
const std::string array_string(array, std::size(array));
EXPECT_EQ(std::string_view("\xff\x00\x00", 3),
TruncateUTF8ToByteSize(array_string, 4));
}
// Non-characters : U+xxFFF[EF] where xx is 0x00 through 0x10 and <FDD0,FDEF>
EXPECT_EQ("", TruncateUTF8ToByteSize("\xef\xbf\xbe", 3));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xf0\x8f\xbf\xbe", 4));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xf3\xbf\xbf\xbf", 4));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xef\xb7\x90", 3));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xef\xb7\xaf", 3));
// Strings in legacy encodings that are valid in UTF-8, but
// are invalid as UTF-8 in real data.
EXPECT_EQ("caf", TruncateUTF8ToByteSize("caf\xe9", 4));
EXPECT_EQ("", TruncateUTF8ToByteSize("\xb0\xa1\xb0\xa2", 4));
EXPECT_EQ("\xa7\x41\xa6\x6e", TruncateUTF8ToByteSize("\xa7\x41\xa6\x6e", 4));
EXPECT_EQ("\xa7\x41\xa6\x6e",
TruncateUTF8ToByteSize("\xa7\x41\xa6\x6e\xd9\xee\xe4\xee", 7));
// "abc" with U+201[CD] in windows-125[0-8]
EXPECT_EQ(
"\x93"
"abc",
TruncateUTF8ToByteSize("\x93"
"abc\x94",
5));
// U+0639 U+064E U+0644 U+064E in ISO-8859-6
EXPECT_EQ("", TruncateUTF8ToByteSize("\xd9\xee\xe4\xee", 4));
// U+03B3 U+03B5 U+03B9 U+03AC in ISO-8859-7
EXPECT_EQ("", TruncateUTF8ToByteSize("\xe3\xe5\xe9\xdC", 4));
}
#if defined(WCHAR_T_IS_16_BIT)
TEST(StringUtilTest, as_wcstr) {
char16_t rw_buffer[10] = {};
static_assert(
std::is_same_v<wchar_t*, decltype(as_writable_wcstr(rw_buffer))>, "");
EXPECT_EQ(static_cast<void*>(rw_buffer), as_writable_wcstr(rw_buffer));
std::u16string rw_str(10, '\0');
static_assert(std::is_same_v<wchar_t*, decltype(as_writable_wcstr(rw_str))>,
"");
EXPECT_EQ(static_cast<const void*>(rw_str.data()), as_writable_wcstr(rw_str));
const char16_t ro_buffer[10] = {};
static_assert(std::is_same_v<const wchar_t*, decltype(as_wcstr(ro_buffer))>,
"");
EXPECT_EQ(static_cast<const void*>(ro_buffer), as_wcstr(ro_buffer));
const std::u16string ro_str(10, '\0');
static_assert(std::is_same_v<const wchar_t*, decltype(as_wcstr(ro_str))>, "");
EXPECT_EQ(static_cast<const void*>(ro_str.data()), as_wcstr(ro_str));
std::u16string_view piece = ro_buffer;
static_assert(std::is_same_v<const wchar_t*, decltype(as_wcstr(piece))>, "");
EXPECT_EQ(static_cast<const void*>(piece.data()), as_wcstr(piece));
}
TEST(StringUtilTest, as_u16cstr) {
wchar_t rw_buffer[10] = {};
static_assert(
std::is_same_v<char16_t*, decltype(as_writable_u16cstr(rw_buffer))>, "");
EXPECT_EQ(static_cast<void*>(rw_buffer), as_writable_u16cstr(rw_buffer));
std::wstring rw_str(10, '\0');
static_assert(
std::is_same_v<char16_t*, decltype(as_writable_u16cstr(rw_str))>, "");
EXPECT_EQ(static_cast<const void*>(rw_str.data()),
as_writable_u16cstr(rw_str));
const wchar_t ro_buffer[10] = {};
static_assert(
std::is_same_v<const char16_t*, decltype(as_u16cstr(ro_buffer))>, "");
EXPECT_EQ(static_cast<const void*>(ro_buffer), as_u16cstr(ro_buffer));
const std::wstring ro_str(10, '\0');
static_assert(std::is_same_v<const char16_t*, decltype(as_u16cstr(ro_str))>,
"");
EXPECT_EQ(static_cast<const void*>(ro_str.data()), as_u16cstr(ro_str));
std::wstring_view piece = ro_buffer;
static_assert(std::is_same_v<const char16_t*, decltype(as_u16cstr(piece))>,
"");
EXPECT_EQ(static_cast<const void*>(piece.data()), as_u16cstr(piece));
}
#endif // defined(WCHAR_T_IS_16_BIT)
TEST(StringUtilTest, TrimWhitespace) {
std::u16string output; // Allow contents to carry over to next testcase
for (const auto& value : trim_cases) {
EXPECT_EQ(value.return_value, TrimWhitespace(WideToUTF16(value.input),
value.positions, &output));
EXPECT_EQ(WideToUTF16(value.output), output);
}
// Test that TrimWhitespace() can take the same string for input and output
output = u" This is a test \r\n";
EXPECT_EQ(TRIM_ALL, TrimWhitespace(output, TRIM_ALL, &output));
EXPECT_EQ(u"This is a test", output);
// Once more, but with a string of whitespace
output = u" \r\n";
EXPECT_EQ(TRIM_ALL, TrimWhitespace(output, TRIM_ALL, &output));
EXPECT_EQ(std::u16string(), output);
std::string output_ascii;
for (const auto& value : trim_cases_ascii) {
EXPECT_EQ(value.return_value,
TrimWhitespaceASCII(value.input, value.positions, &output_ascii));
EXPECT_EQ(value.output, output_ascii);
}
}
static const struct collapse_case {
const wchar_t* input;
const bool trim;
const wchar_t* output;
} collapse_cases[] = {
{L" Google Video ", false, L"Google Video"},
{L"Google Video", false, L"Google Video"},
{L"", false, L""},
{L" ", false, L""},
{L"\t\rTest String\n", false, L"Test String"},
{L"\x2002Test String\x00A0\x3000", false, L"Test String"},
{L" Test \n \t String ", false, L"Test String"},
{L"\x2002Test\x1680 \x2028 \tString\x00A0\x3000", false, L"Test String"},
{L" Test String", false, L"Test String"},
{L"Test String ", false, L"Test String"},
{L"Test String", false, L"Test String"},
{L"", true, L""},
{L"\n", true, L""},
{L" \r ", true, L""},
{L"\nFoo", true, L"Foo"},
{L"\r Foo ", true, L"Foo"},
{L" Foo bar ", true, L"Foo bar"},
{L" \tFoo bar \n", true, L"Foo bar"},
{L" a \r b\n c \r\n d \t\re \t f \n ", true, L"abcde f"},
};
TEST(StringUtilTest, CollapseWhitespace) {
for (const auto& value : collapse_cases) {
EXPECT_EQ(WideToUTF16(value.output),
CollapseWhitespace(WideToUTF16(value.input), value.trim));
}
}
static const struct collapse_case_ascii {
const char* input;
const bool trim;
const char* output;
} collapse_cases_ascii[] = {
{" Google Video ", false, "Google Video"},
{"Google Video", false, "Google Video"},
{"", false, ""},
{" ", false, ""},
{"\t\rTest String\n", false, "Test String"},
{" Test \n \t String ", false, "Test String"},
{" Test String", false, "Test String"},
{"Test String ", false, "Test String"},
{"Test String", false, "Test String"},
{"", true, ""},
{"\n", true, ""},
{" \r ", true, ""},
{"\nFoo", true, "Foo"},
{"\r Foo ", true, "Foo"},
{" Foo bar ", true, "Foo bar"},
// \u00A0 is whitespace, but not _ASCII_ whitespace, so it should not be
// collapsed by CollapseWhitespaceASCII().
{"Foo\u00A0bar", true, "Foo\u00A0bar"},
{" \tFoo bar \n", true, "Foo bar"},
{" a \r b\n c \r\n d \t\re \t f \n ", true, "abcde f"},
};
TEST(StringUtilTest, CollapseWhitespaceASCII) {
for (const auto& value : collapse_cases_ascii) {
EXPECT_EQ(value.output, CollapseWhitespaceASCII(value.input, value.trim));
}
}
TEST(StringUtilTest, IsStringUTF8) {
{
SCOPED_TRACE("IsStringUTF8");
TestStructurallyValidUtf8(&IsStringUTF8);
TestStructurallyInvalidUtf8(&IsStringUTF8);
TestNoncharacters(&IsStringUTF8, false);
}
{
SCOPED_TRACE("IsStringUTF8AllowingNoncharacters");
TestStructurallyValidUtf8(&IsStringUTF8AllowingNoncharacters);
TestStructurallyInvalidUtf8(&IsStringUTF8AllowingNoncharacters);
TestNoncharacters(&IsStringUTF8AllowingNoncharacters, true);
}
}
TEST(StringUtilTest, IsStringASCII) {
static char char_ascii[] = "0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF";
static char16_t char16_ascii[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8',
'9', '0', 'A', 'B', 'C', 'D', 'E', 'F', '0',
'1', '2', '3', '4', '5', '6', '7', '8', '9',
'0', 'A', 'B', 'C', 'D', 'E', 'F', 0};
static std::wstring wchar_ascii(
L"0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF");
// Test a variety of the fragment start positions and lengths in order to make
// sure that bit masking in IsStringASCII works correctly.
// Also, test that a non-ASCII character will be detected regardless of its
// position inside the string.
{
const size_t string_length = std::size(char_ascii) - 1;
for (size_t offset = 0; offset < 8; ++offset) {
for (size_t len = 0, max_len = string_length - offset; len < max_len;
++len) {
EXPECT_TRUE(IsStringASCII(std::string_view(char_ascii + offset, len)));
for (size_t char_pos = offset; char_pos < len; ++char_pos) {
char_ascii[char_pos] |= '\x80';
EXPECT_FALSE(
IsStringASCII(std::string_view(char_ascii + offset, len)));
char_ascii[char_pos] &= ~'\x80';
}
}
}
}
{
const size_t string_length = std::size(char16_ascii) - 1;
for (size_t offset = 0; offset < 4; ++offset) {
for (size_t len = 0, max_len = string_length - offset; len < max_len;
++len) {
EXPECT_TRUE(
IsStringASCII(std::u16string_view(char16_ascii + offset, len)));
for (size_t char_pos = offset; char_pos < len; ++char_pos) {
char16_ascii[char_pos] |= 0x80;
EXPECT_FALSE(
IsStringASCII(std::u16string_view(char16_ascii + offset, len)));
char16_ascii[char_pos] &= ~0x80;
// Also test when the upper half is non-zero.
char16_ascii[char_pos] |= 0x100;
EXPECT_FALSE(
IsStringASCII(std::u16string_view(char16_ascii + offset, len)));
char16_ascii[char_pos] &= ~0x100;
}
}
}
}
#if defined(WCHAR_T_IS_32_BIT)
{
const size_t string_length = wchar_ascii.length();
for (size_t len = 0; len < string_length; ++len) {
EXPECT_TRUE(IsStringASCII(wchar_ascii.substr(0, len)));
for (size_t char_pos = 0; char_pos < len; ++char_pos) {
wchar_ascii[char_pos] |= 0x80;
EXPECT_FALSE(IsStringASCII(wchar_ascii.substr(0, len)));
wchar_ascii[char_pos] &= ~0x80;
wchar_ascii[char_pos] |= 0x100;
EXPECT_FALSE(IsStringASCII(wchar_ascii.substr(0, len)));
wchar_ascii[char_pos] &= ~0x100;
wchar_ascii[char_pos] |= 0x10000;
EXPECT_FALSE(IsStringASCII(wchar_ascii.substr(0, len)));
wchar_ascii[char_pos] &= ~0x10000;
}
}
}
#endif // WCHAR_T_IS_32_BIT
}
TEST(StringUtilTest, ConvertASCII) {
static const char* const char_cases[] = {"Google Video", "Hello, world\n",
"0123ABCDwxyz \a\b\t\r\n!+,.~"};
static const wchar_t* const wchar_cases[] = {
L"Google Video", L"Hello, world\n", L"0123ABCDwxyz \a\b\t\r\n!+,.~"};
for (size_t i = 0; i < std::size(char_cases); ++i) {
EXPECT_TRUE(IsStringASCII(char_cases[i]));
std::u16string utf16 = ASCIIToUTF16(char_cases[i]);
EXPECT_EQ(WideToUTF16(wchar_cases[i]), utf16);
std::string ascii = UTF16ToASCII(WideToUTF16(wchar_cases[i]));
EXPECT_EQ(char_cases[i], ascii);
}
EXPECT_FALSE(IsStringASCII("Google \x80Video"));
// Convert empty strings.
std::u16string empty16;
std::string empty;
EXPECT_EQ(empty, UTF16ToASCII(empty16));
EXPECT_EQ(empty16, ASCIIToUTF16(empty));
// Convert strings with an embedded NUL character.
const char chars_with_nul[] = "test\0string";
const int length_with_nul = std::size(chars_with_nul) - 1;
std::string string_with_nul(chars_with_nul, length_with_nul);
std::u16string string16_with_nul = ASCIIToUTF16(string_with_nul);
EXPECT_EQ(static_cast<std::u16string::size_type>(length_with_nul),
string16_with_nul.length());
std::string narrow_with_nul = UTF16ToASCII(string16_with_nul);
EXPECT_EQ(static_cast<std::string::size_type>(length_with_nul),
narrow_with_nul.length());
EXPECT_EQ(0, string_with_nul.compare(narrow_with_nul));
}
TEST(StringUtilTest, ToLowerASCII) {
EXPECT_EQ('c', ToLowerASCII('C'));
EXPECT_EQ('c', ToLowerASCII('c'));
EXPECT_EQ('2', ToLowerASCII('2'));
EXPECT_EQ(u'c', ToLowerASCII(u'C'));
EXPECT_EQ(u'c', ToLowerASCII(u'c'));
EXPECT_EQ(u'2', ToLowerASCII(u'2'));
EXPECT_EQ("cc2", ToLowerASCII("Cc2"));
EXPECT_EQ(u"cc2", ToLowerASCII(u"Cc2"));
// Non-ASCII characters are unmodified. U+00C4 is LATIN CAPITAL LETTER A WITH
// DIAERESIS.
EXPECT_EQ('\xc4', ToLowerASCII('\xc4'));
EXPECT_EQ(u'\x00c4', ToLowerASCII(u'\x00c4'));
}
TEST(StringUtilTest, ToUpperASCII) {
EXPECT_EQ('C', ToUpperASCII('C'));
EXPECT_EQ('C', ToUpperASCII('c'));
EXPECT_EQ('2', ToUpperASCII('2'));
EXPECT_EQ(u'C', ToUpperASCII(u'C'));
EXPECT_EQ(u'C', ToUpperASCII(u'c'));
EXPECT_EQ(u'2', ToUpperASCII(u'2'));
EXPECT_EQ("CC2", ToUpperASCII("Cc2"));
EXPECT_EQ(u"CC2", ToUpperASCII(u"Cc2"));
// Non-ASCII characters are unmodified. U+00E4 is LATIN SMALL LETTER A WITH
// DIAERESIS.
EXPECT_EQ('\xe4', ToUpperASCII('\xe4'));
EXPECT_EQ(u'\x00e4', ToUpperASCII(u'\x00e4'));
}
TEST(StringUtilTest, FormatBytesUnlocalized) {
static const struct {
int64_t bytes;
const char* expected;
} cases[] = {
// Expected behavior: we show one post-decimal digit when we have
// under two pre-decimal digits, except in cases where it makes no
// sense (zero or bytes).
// Since we switch units once we cross the 1000 mark, this keeps
// the display of file sizes or bytes consistently around three
// digits.
{0, "0 B"},
{512, "512 B"},
{1024 * 1024, "1.0 MB"},
{1024 * 1024 * 1024, "1.0 GB"},
{10LL * 1024 * 1024 * 1024, "10.0 GB"},
{99LL * 1024 * 1024 * 1024, "99.0 GB"},
{105LL * 1024 * 1024 * 1024, "105 GB"},
{105LL * 1024 * 1024 * 1024 + 500LL * 1024 * 1024, "105 GB"},
{~(bits::LeftmostBit<int64_t>()), "8192 PB"},
{99 * 1024 + 103, "99.1 kB"},
{1024 * 1024 + 103, "1.0 MB"},
{1024 * 1024 + 205 * 1024, "1.2 MB"},
{1024 * 1024 * 1024 + (927 * 1024 * 1024), "1.9 GB"},
{10LL * 1024 * 1024 * 1024, "10.0 GB"},
{100LL * 1024 * 1024 * 1024, "100 GB"},
};
for (const auto& i : cases) {
EXPECT_EQ(ASCIIToUTF16(i.expected), FormatBytesUnlocalized(i.bytes));
}
}
TEST(StringUtilTest, ReplaceSubstringsAfterOffset) {
static const struct {
std::string_view str;
size_t start_offset;
std::string_view find_this;
std::string_view replace_with;
std::string_view expected;
} cases[] = {
{"aaa", 0, "", "b", "aaa"},
{"aaa", 1, "", "b", "aaa"},
{"aaa", 0, "a", "b", "bbb"},
{"aaa", 0, "aa", "b", "ba"},
{"aaa", 0, "aa", "bbb", "bbba"},
{"aaaaa", 0, "aa", "b", "bba"},
{"ababaaababa", 0, "aba", "", "baaba"},
{"ababaaababa", 0, "aba", "_", "_baa_ba"},
{"ababaaababa", 0, "aba", "__", "__baa__ba"},
{"ababaaababa", 0, "aba", "___", "___baa___ba"},
{"ababaaababa", 0, "aba", "____", "____baa____ba"},
{"ababaaababa", 0, "aba", "_____", "_____baa_____ba"},
{"abb", 0, "ab", "a", "ab"},
{"Removing some substrings inging", 0, "ing", "", "Remov some substrs "},
{"Not found", 0, "x", "0", "Not found"},
{"Not found again", 5, "x", "0", "Not found again"},
{" Making it much longer ", 0, " ", "Four score and seven years ago",
"Four score and seven years agoMakingFour score and seven years agoit"
"Four score and seven years agomuchFour score and seven years agolonger"
"Four score and seven years ago"},
{" Making it much much much much shorter ", 0,
"Making it much much much much shorter", "", " "},
{"so much much much much much very much much much shorter", 0, "much ",
"", "so very shorter"},
{"Invalid offset", 9999, "t", "foobar", "Invalid offset"},
{"Replace me only me once", 9, "me ", "", "Replace me only once"},
{"abababab", 2, "ab", "c", "abccc"},
{"abababab", 1, "ab", "c", "abccc"},
{"abababab", 1, "aba", "c", "abcbab"},
};
// std::u16string variant
for (const auto& scenario : cases) {
std::u16string str = ASCIIToUTF16(scenario.str);
ReplaceSubstringsAfterOffset(&str, scenario.start_offset,
ASCIIToUTF16(scenario.find_this),
ASCIIToUTF16(scenario.replace_with));
EXPECT_EQ(ASCIIToUTF16(scenario.expected), str);
}
// std::string with insufficient capacity: expansion must realloc the buffer.
for (const auto& scenario : cases) {
std::string str(scenario.str);
str.shrink_to_fit(); // This is nonbinding, but it's the best we've got.
ReplaceSubstringsAfterOffset(&str, scenario.start_offset,
scenario.find_this, scenario.replace_with);
EXPECT_EQ(scenario.expected, str);
}
// std::string with ample capacity: should be possible to grow in-place.
for (const auto& scenario : cases) {
std::string str(scenario.str);
str.reserve(std::max(scenario.str.length(), scenario.expected.length()) *
2);
ReplaceSubstringsAfterOffset(&str, scenario.start_offset,
scenario.find_this, scenario.replace_with);
EXPECT_EQ(scenario.expected, str);
}
}
TEST(StringUtilTest, ReplaceFirstSubstringAfterOffset) {
static const struct {
const char* str;
std::u16string::size_type start_offset;
const char* find_this;
const char* replace_with;
const char* expected;
} cases[] = {
{"aaa", 0, "a", "b", "baa"},
{"abb", 0, "ab", "a", "ab"},
{"Removing some substrings inging", 0, "ing", "",
"Remov some substrings inging"},
{"Not found", 0, "x", "0", "Not found"},
{"Not found again", 5, "x", "0", "Not found again"},
{" Making it much longer ", 0, " ", "Four score and seven years ago",
"Four score and seven years agoMaking it much longer "},
{"Invalid offset", 9999, "t", "foobar", "Invalid offset"},
{"Replace me only me once", 4, "me ", "", "Replace only me once"},
{"abababab", 2, "ab", "c", "abcabab"},
};
for (const auto& i : cases) {
std::u16string str = ASCIIToUTF16(i.str);
ReplaceFirstSubstringAfterOffset(&str, i.start_offset,
ASCIIToUTF16(i.find_this),
ASCIIToUTF16(i.replace_with));
EXPECT_EQ(ASCIIToUTF16(i.expected), str);
}
}
TEST(StringUtilTest, HexDigitToInt) {
EXPECT_EQ(0, HexDigitToInt('0'));
EXPECT_EQ(1, HexDigitToInt('1'));
EXPECT_EQ(2, HexDigitToInt('2'));
EXPECT_EQ(3, HexDigitToInt('3'));
EXPECT_EQ(4, HexDigitToInt('4'));
EXPECT_EQ(5, HexDigitToInt('5'));
EXPECT_EQ(6, HexDigitToInt('6'));
EXPECT_EQ(7, HexDigitToInt('7'));
EXPECT_EQ(8, HexDigitToInt('8'));
EXPECT_EQ(9, HexDigitToInt('9'));
EXPECT_EQ(10, HexDigitToInt('A'));
EXPECT_EQ(11, HexDigitToInt('B'));
EXPECT_EQ(12, HexDigitToInt('C'));
EXPECT_EQ(13, HexDigitToInt('D'));
EXPECT_EQ(14, HexDigitToInt('E'));
EXPECT_EQ(15, HexDigitToInt('F'));
// Verify the lower case as well.
EXPECT_EQ(10, HexDigitToInt('a'));
EXPECT_EQ(11, HexDigitToInt('b'));
EXPECT_EQ(12, HexDigitToInt('c'));
EXPECT_EQ(13, HexDigitToInt('d'));
EXPECT_EQ(14, HexDigitToInt('e'));
EXPECT_EQ(15, HexDigitToInt('f'));
}
TEST(StringUtilTest, JoinString) {
std::string separator(", ");
std::vector<std::string> parts;
EXPECT_EQ(std::string(), JoinString(parts, separator));
parts.emplace_back();
EXPECT_EQ(std::string(), JoinString(parts, separator));
parts.clear();
parts.push_back("a");
EXPECT_EQ("a", JoinString(parts, separator));
parts.push_back("b");
parts.push_back("c");
EXPECT_EQ("a, b, c", JoinString(parts, separator));
parts.emplace_back();
EXPECT_EQ("a, b, c, ", JoinString(parts, separator));
parts.push_back(" ");
EXPECT_EQ("a|b|c|| ", JoinString(parts, "|"));
}
TEST(StringUtilTest, JoinString16) {
std::u16string separator = u", ";
std::vector<std::u16string> parts;
EXPECT_EQ(std::u16string(), JoinString(parts, separator));
parts.emplace_back();
EXPECT_EQ(std::u16string(), JoinString(parts, separator));
parts.clear();
parts.push_back(u"a");
EXPECT_EQ(u"a", JoinString(parts, separator));
parts.push_back(u"b");
parts.push_back(u"c");
EXPECT_EQ(u"a, b, c", JoinString(parts, separator));
parts.push_back(u"");
EXPECT_EQ(u"a, b, c, ", JoinString(parts, separator));
parts.push_back(u" ");
EXPECT_EQ(u"a|b|c|| ", JoinString(parts, u"|"));
}
TEST(StringUtilTest, JoinStringPiece) {
std::string separator(", ");
std::vector<std::string_view> parts;
EXPECT_EQ(std::string(), JoinString(parts, separator));
// Test empty first part (https://crbug.com/698073).
parts.emplace_back();
EXPECT_EQ(std::string(), JoinString(parts, separator));
parts.clear();
parts.push_back("a");
EXPECT_EQ("a", JoinString(parts, separator));
parts.push_back("b");
parts.push_back("c");
EXPECT_EQ("a, b, c", JoinString(parts, separator));
parts.emplace_back();
EXPECT_EQ("a, b, c, ", JoinString(parts, separator));
parts.push_back(" ");
EXPECT_EQ("a|b|c|| ", JoinString(parts, "|"));
}
TEST(StringUtilTest, JoinStringPiece16) {
std::u16string separator = u", ";
std::vector<std::u16string_view> parts;
EXPECT_EQ(std::u16string(), JoinString(parts, separator));
// Test empty first part (https://crbug.com/698073).
parts.emplace_back();
EXPECT_EQ(std::u16string(), JoinString(parts, separator));
parts.clear();
const std::u16string kA = u"a";
parts.push_back(kA);
EXPECT_EQ(u"a", JoinString(parts, separator));
const std::u16string kB = u"b";
parts.push_back(kB);
const std::u16string kC = u"c";
parts.push_back(kC);
EXPECT_EQ(u"a, b, c", JoinString(parts, separator));
parts.emplace_back();
EXPECT_EQ(u"a, b, c, ", JoinString(parts, separator));
const std::u16string kSpace = u" ";
parts.push_back(kSpace);
EXPECT_EQ(u"a|b|c|| ", JoinString(parts, u"|"));
}
TEST(StringUtilTest, JoinStringInitializerList) {
std::string separator(", ");
EXPECT_EQ(std::string(), JoinString({}, separator));
// Test empty first part (https://crbug.com/698073).
EXPECT_EQ(std::string(), JoinString({std::string_view()}, separator));
// With const char*s.
EXPECT_EQ("a", JoinString({"a"}, separator));
EXPECT_EQ("a, b, c", JoinString({"a", "b", "c"}, separator));
EXPECT_EQ("a, b, c, ",
JoinString({"a", "b", "c", std::string_view()}, separator));
EXPECT_EQ("a|b|c|| ",
JoinString({"a", "b", "c", std::string_view(), " "}, "|"));
// With std::strings.
const std::string kA = "a";
const std::string kB = "b";
EXPECT_EQ("a, b", JoinString({kA, kB}, separator));
// With StringPieces.
const std::string_view kPieceA = kA;
const std::string_view kPieceB = kB;
EXPECT_EQ("a, b", JoinString({kPieceA, kPieceB}, separator));
}
TEST(StringUtilTest, JoinStringInitializerList16) {
std::u16string separator = u", ";
EXPECT_EQ(std::u16string(), JoinString({}, separator));
// Test empty first part (https://crbug.com/698073).
EXPECT_EQ(std::u16string(), JoinString({std::u16string_view()}, separator));
// With string16s.
const std::u16string kA = u"a";
EXPECT_EQ(u"a", JoinString({kA}, separator));
const std::u16string kB = u"b";
const std::u16string kC = u"c";
EXPECT_EQ(u"a, b, c", JoinString({kA, kB, kC}, separator));
EXPECT_EQ(u"a, b, c, ",
JoinString({kA, kB, kC, std::u16string_view()}, separator));
const std::u16string kSpace = u" ";
EXPECT_EQ(u"a|b|c|| ",
JoinString({kA, kB, kC, std::u16string_view(), kSpace}, u"|"));
// With StringPiece16s.
const std::u16string_view kPieceA = kA;
const std::u16string_view kPieceB = kB;
EXPECT_EQ(u"a, b", JoinString({kPieceA, kPieceB}, separator));
}
TEST(StringUtilTest, StartsWith) {
EXPECT_TRUE(
StartsWith("javascript:url", "javascript", base::CompareCase::SENSITIVE));
EXPECT_FALSE(
StartsWith("JavaScript:url", "javascript", base::CompareCase::SENSITIVE));
EXPECT_TRUE(StartsWith("javascript:url", "javascript",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_TRUE(StartsWith("JavaScript:url", "javascript",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(StartsWith("java", "javascript", base::CompareCase::SENSITIVE));
EXPECT_FALSE(
StartsWith("java", "javascript", base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(StartsWith(std::string(), "javascript",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(
StartsWith(std::string(), "javascript", base::CompareCase::SENSITIVE));
EXPECT_TRUE(
StartsWith("java", std::string(), base::CompareCase::INSENSITIVE_ASCII));
EXPECT_TRUE(StartsWith("java", std::string(), base::CompareCase::SENSITIVE));
EXPECT_TRUE(StartsWith(u"javascript:url", u"javascript",
base::CompareCase::SENSITIVE));
EXPECT_FALSE(StartsWith(u"JavaScript:url", u"javascript",
base::CompareCase::SENSITIVE));
EXPECT_TRUE(StartsWith(u"javascript:url", u"javascript",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_TRUE(StartsWith(u"JavaScript:url", u"javascript",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(
StartsWith(u"java", u"javascript", base::CompareCase::SENSITIVE));
EXPECT_FALSE(
StartsWith(u"java", u"javascript", base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(StartsWith(std::u16string(), u"javascript",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(StartsWith(std::u16string(), u"javascript",
base::CompareCase::SENSITIVE));
EXPECT_TRUE(StartsWith(u"java", std::u16string(),
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_TRUE(
StartsWith(u"java", std::u16string(), base::CompareCase::SENSITIVE));
}
TEST(StringUtilTest, EndsWith) {
EXPECT_TRUE(
EndsWith(u"Foo.plugin", u".plugin", base::CompareCase::SENSITIVE));
EXPECT_FALSE(
EndsWith(u"Foo.Plugin", u".plugin", base::CompareCase::SENSITIVE));
EXPECT_TRUE(EndsWith(u"Foo.plugin", u".plugin",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_TRUE(EndsWith(u"Foo.Plugin", u".plugin",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(EndsWith(u".plug", u".plugin", base::CompareCase::SENSITIVE));
EXPECT_FALSE(
EndsWith(u".plug", u".plugin", base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(
EndsWith(u"Foo.plugin Bar", u".plugin", base::CompareCase::SENSITIVE));
EXPECT_FALSE(EndsWith(u"Foo.plugin Bar", u".plugin",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(EndsWith(std::u16string(), u".plugin",
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_FALSE(
EndsWith(std::u16string(), u".plugin", base::CompareCase::SENSITIVE));
EXPECT_TRUE(EndsWith(u"Foo.plugin", std::u16string(),
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_TRUE(
EndsWith(u"Foo.plugin", std::u16string(), base::CompareCase::SENSITIVE));
EXPECT_TRUE(
EndsWith(u".plugin", u".plugin", base::CompareCase::INSENSITIVE_ASCII));
EXPECT_TRUE(EndsWith(u".plugin", u".plugin", base::CompareCase::SENSITIVE));
EXPECT_TRUE(EndsWith(std::u16string(), std::u16string(),
base::CompareCase::INSENSITIVE_ASCII));
EXPECT_TRUE(EndsWith(std::u16string(), std::u16string(),
base::CompareCase::SENSITIVE));
}
TEST(StringUtilTest, RemovePrefix) {
{
std::optional<std::string_view> result;
result = RemovePrefix("", "");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "");
result = RemovePrefix("", "", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "");
EXPECT_FALSE(RemovePrefix("", "xyz"));
EXPECT_FALSE(RemovePrefix("", "xyZ", CompareCase::INSENSITIVE_ASCII));
result = RemovePrefix("xyz", "");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "xyz");
result = RemovePrefix("Xyz", "", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "Xyz");
EXPECT_FALSE(RemovePrefix("abc", "xyz"));
EXPECT_FALSE(RemovePrefix("abc", "xyz", CompareCase::INSENSITIVE_ASCII));
result = RemovePrefix("xyz", "xyz");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "");
result = RemovePrefix("Xyz", "xyZ", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "");
EXPECT_EQ(result.value(), "");
EXPECT_FALSE(RemovePrefix("Xyz", "xyZ"));
result = RemovePrefix("xyz123", "xyz");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "123");
result = RemovePrefix("Xyz123", "xyz", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "123");
}
{
std::optional<std::u16string_view> result;
result = RemovePrefix(u"", u"");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"");
result = RemovePrefix(u"", u"", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"");
EXPECT_FALSE(RemovePrefix(u"", u"xyz"));
EXPECT_FALSE(RemovePrefix(u"", u"xyZ", CompareCase::INSENSITIVE_ASCII));
result = RemovePrefix(u"xyz", u"");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"xyz");
result = RemovePrefix(u"Xyz", u"", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"Xyz");
EXPECT_FALSE(RemovePrefix(u"abc", u"xyz"));
EXPECT_FALSE(RemovePrefix(u"abc", u"xyz", CompareCase::INSENSITIVE_ASCII));
result = RemovePrefix(u"xyz", u"xyz");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"");
result = RemovePrefix(u"Xyz", u"xyZ", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"");
EXPECT_EQ(result.value(), u"");
EXPECT_FALSE(RemovePrefix(u"Xyz", u"xyZ"));
result = RemovePrefix(u"xyz123", u"xyz");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"123");
result = RemovePrefix(u"Xyz123", u"xyz", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"123");
}
}
TEST(StringUtilTest, RemoveSuffix) {
{
std::optional<std::string_view> result;
result = RemoveSuffix("", "");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "");
result = RemoveSuffix("", "", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "");
EXPECT_FALSE(RemoveSuffix("", "xyz"));
EXPECT_FALSE(RemoveSuffix("", "xyZ", CompareCase::INSENSITIVE_ASCII));
result = RemoveSuffix("xyz", "");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "xyz");
result = RemoveSuffix("Xyz", "", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "Xyz");
EXPECT_FALSE(RemoveSuffix("abc", "xyz"));
EXPECT_FALSE(RemoveSuffix("abc", "xyz", CompareCase::INSENSITIVE_ASCII));
result = RemoveSuffix("xyz", "xyz");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "");
result = RemoveSuffix("Xyz", "xyZ", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "");
EXPECT_EQ(result.value(), "");
EXPECT_FALSE(RemoveSuffix("Xyz", "xyZ"));
result = RemoveSuffix("123xyz", "xyz");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "123");
result = RemoveSuffix("123Xyz", "xyZ", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), "123");
}
{
std::optional<std::u16string_view> result;
result = RemoveSuffix(u"", u"");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"");
result = RemoveSuffix(u"", u"", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"");
EXPECT_FALSE(RemoveSuffix(u"", u"xyz"));
EXPECT_FALSE(RemoveSuffix(u"", u"xyZ", CompareCase::INSENSITIVE_ASCII));
result = RemoveSuffix(u"xyz", u"");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"xyz");
result = RemoveSuffix(u"Xyz", u"", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"Xyz");
EXPECT_FALSE(RemoveSuffix(u"abc", u"xyz"));
EXPECT_FALSE(RemoveSuffix(u"abc", u"xyz", CompareCase::INSENSITIVE_ASCII));
result = RemoveSuffix(u"xyz", u"xyz");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"");
result = RemoveSuffix(u"Xyz", u"xyZ", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"");
EXPECT_EQ(result.value(), u"");
EXPECT_FALSE(RemoveSuffix(u"Xyz", u"xyZ"));
result = RemoveSuffix(u"123xyz", u"xyz");
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"123");
result = RemoveSuffix(u"123Xyz", u"xyZ", CompareCase::INSENSITIVE_ASCII);
ASSERT_TRUE(result.has_value());
EXPECT_EQ(result.value(), u"123");
}
}
TEST(StringUtilTest, GetStringFWithOffsets) {
std::vector<std::u16string> subst;
subst.push_back(u"1");
subst.push_back(u"2");
std::vector<size_t> offsets;
ReplaceStringPlaceholders(u"Hello, $1. Your number is $2.", subst, &offsets);
EXPECT_EQ(2U, offsets.size());
EXPECT_EQ(7U, offsets[0]);
EXPECT_EQ(25U, offsets[1]);
offsets.clear();
ReplaceStringPlaceholders(u"Hello, $2. Your number is $1.", subst, &offsets);
EXPECT_EQ(2U, offsets.size());
EXPECT_EQ(25U, offsets[0]);
EXPECT_EQ(7U, offsets[1]);
offsets.clear();
}
TEST(StringUtilTest, ReplaceStringPlaceholdersTooFew) {
// Test whether replacestringplaceholders works as expected when there
// are fewer inputs than outputs.
std::vector<std::u16string> subst;
subst.push_back(u"9a");
subst.push_back(u"8b");
subst.push_back(u"7c");
std::u16string formatted = ReplaceStringPlaceholders(
u"$1a,$2b,$3c,$4d,$5e,$6f,$1g,$2h,$3i", subst, nullptr);
EXPECT_EQ(u"9aa,8bb,7cc,d,e,f,9ag,8bh,7ci", formatted);
}
TEST(StringUtilTest, ReplaceStringPlaceholders) {
std::vector<std::u16string> subst;
subst.push_back(u"9a");
subst.push_back(u"8b");
subst.push_back(u"7c");
subst.push_back(u"6d");
subst.push_back(u"5e");
subst.push_back(u"4f");
subst.push_back(u"3g");
subst.push_back(u"2h");
subst.push_back(u"1i");
std::u16string formatted = ReplaceStringPlaceholders(
u"$1a,$2b,$3c,$4d,$5e,$6f,$7g,$8h,$9i", subst, nullptr);
EXPECT_EQ(u"9aa,8bb,7cc,6dd,5ee,4ff,3gg,2hh,1ii", formatted);
}
TEST(StringUtilTest, ReplaceStringPlaceholdersNetExpansionWithContraction) {
// In this test, some of the substitutions are shorter than the placeholders,
// but overall the string gets longer.
std::vector<std::u16string> subst;
subst.push_back(u"9a____");
subst.push_back(u"B");
subst.push_back(u"7c___");
subst.push_back(u"d");
subst.push_back(u"5e____");
subst.push_back(u"F");
subst.push_back(u"3g___");
subst.push_back(u"h");
subst.push_back(u"1i_____");
std::u16string original = u"$1a,$2b,$3c,$4d,$5e,$6f,$7g,$8h,$9i";
std::u16string expected =
u"9a____a,Bb,7c___c,dd,5e____e,Ff,3g___g,hh,1i_____i";
EXPECT_EQ(expected, ReplaceStringPlaceholders(original, subst, nullptr));
std::vector<size_t> offsets;
EXPECT_EQ(expected, ReplaceStringPlaceholders(original, subst, &offsets));
std::vector<size_t> expected_offsets = {0, 8, 11, 18, 21, 29, 32, 39, 42};
EXPECT_EQ(offsets.size(), subst.size());
EXPECT_EQ(expected_offsets, offsets);
for (size_t i = 0; i < offsets.size(); i++) {
EXPECT_EQ(expected.substr(expected_offsets[i], subst[i].length()),
subst[i]);
}
}
TEST(StringUtilTest, ReplaceStringPlaceholdersNetContractionWithExpansion) {
// In this test, some of the substitutions are longer than the placeholders,
// but overall the string gets smaller. Additionally, the placeholders appear
// in a permuted order.
std::vector<std::u16string> subst;
subst.push_back(u"z");
subst.push_back(u"y");
subst.push_back(u"XYZW");
subst.push_back(u"x");
subst.push_back(u"w");
std::u16string formatted =
ReplaceStringPlaceholders(u"$3_$4$2$1$5", subst, nullptr);
EXPECT_EQ(u"XYZW_xyzw", formatted);
}
TEST(StringUtilTest, ReplaceStringPlaceholdersOneDigit) {
std::vector<std::u16string> subst;
subst.push_back(u"1a");
std::u16string formatted =
ReplaceStringPlaceholders(u" $16 ", subst, nullptr);
EXPECT_EQ(u" 1a6 ", formatted);
}
TEST(StringUtilTest, ReplaceStringPlaceholdersInvalidPlaceholder) {
std::vector<std::u16string> subst;
subst.push_back(u"1a");
std::u16string formatted =
ReplaceStringPlaceholders(u"+$-+$A+$1+", subst, nullptr);
EXPECT_EQ(u"+++1a+", formatted);
}
TEST(StringUtilTest, ReplaceStringPlaceholdersArray) {
const auto subst = std::to_array<std::u16string>({u"world", u"hello"});
std::u16string formatted =
ReplaceStringPlaceholders(u"$2, $1!", subst, nullptr);
EXPECT_EQ(u"hello, world!", formatted);
}
std::u16string ReturnU16String() {
return u"U16String";
}
TEST(StringUtilTest, ReplaceStringPlaceholdersCastToSpan) {
std::u16string formatted = ReplaceStringPlaceholders(
u"$1", base::span<const std::u16string>({ReturnU16String()}), nullptr);
EXPECT_EQ(u"U16String", formatted);
}
// Return a string of type T long enough to defeat the short string
// optimization.
template <typename T>
constexpr T LongString() {
constexpr char kLongString[] =
"This string is long enough to prevent the short string optimization";
// std::u16string can't be constructed from a char string, but it can be
// constructed from a char iterator pair.
return T(std::ranges::begin(kLongString), std::ranges::end(kLongString));
}
// Checks that a string implementation leaves the string empty when a
// sufficiently long string is moved from. The "MovesFromString" tests will not
// work correctly for implementations where this is not the case.
template <typename T>
constexpr bool MovedFromStringIsEmpty() {
T original = LongString<T>();
T destination = std::move(original);
// We are verifying behavior of the string implementation that is not required
// by the C++ standard.
// NOLINTNEXTLINE(bugprone-use-after-move)
return original.empty();
}
TEST(StringUtilTest, ReplaceStringPlaceholdersMovesFromString) {
ASSERT_TRUE(MovedFromStringIsEmpty<std::u16string>());
std::u16string long_string = LongString<std::u16string>();
std::vector<size_t> offsets;
// `offsets` is passed just to force the base::span overload.
std::u16string formatted =
ReplaceStringPlaceholders(u"=$1", {std::move(long_string)}, &offsets);
EXPECT_EQ(u"=" + LongString<std::u16string>(), formatted);
// This test relies on behavior that is not required by the C++ standard.
// NOLINTNEXTLINE(bugprone-use-after-move)
EXPECT_TRUE(long_string.empty());
}
// The single-argument form of ReplaceStringPlaceholders() should not require
// `$1` to be present in the string unless `offset` is set.
TEST(StringUtilTest, ReplaceStringPlaceholdersNoPlaceholder) {
const std::u16string replacement = u"unused";
std::u16string formatted =
ReplaceStringPlaceholders(u"no dollar", replacement, nullptr);
EXPECT_EQ(u"no dollar", formatted);
}
TEST(StringUtilTest, ReplaceStringPlaceholdersSingleOffset) {
size_t offset = 0;
std::u16string formatted =
ReplaceStringPlaceholders(u"a $1", u"car", &offset);
EXPECT_EQ(u"a car", formatted);
EXPECT_EQ(2u, offset);
}
TEST(StringUtilTest, ReplaceStringPlaceholdersInitializerList) {
// Combine lots of different types to make sure they all work.
const std::u16string be = u"be";
constexpr std::u16string_view kNot = u"not";
char16_t mutable_be[] = u"be";
constexpr const char16_t* const kIs = u"is";
std::u16string question = u"question";
std::u16string formatted = ReplaceStringPlaceholders(
u"to $1 or $2 to $3 that $4 the $5",
{be, std::u16string(kNot), mutable_be, kIs, question}, nullptr);
EXPECT_EQ(u"to be or not to be that is the question", formatted);
}
TEST(StringUtilTest, StdStringReplaceStringPlaceholders) {
std::vector<std::string> subst;
subst.push_back("9a");
subst.push_back("8b");
subst.push_back("7c");
subst.push_back("6d");
subst.push_back("5e");
subst.push_back("4f");
subst.push_back("3g");
subst.push_back("2h");
subst.push_back("1i");
std::string formatted = ReplaceStringPlaceholders(
"$1a,$2b,$3c,$4d,$5e,$6f,$7g,$8h,$9i", subst, nullptr);
EXPECT_EQ("9aa,8bb,7cc,6dd,5ee,4ff,3gg,2hh,1ii", formatted);
}
TEST(StringUtilTest, StdStringReplaceStringPlaceholdersMultipleMatches) {
std::vector<std::string> subst;
subst.push_back("4"); // Referenced twice.
subst.push_back("?"); // Unreferenced.
subst.push_back("!"); // Unreferenced.
subst.push_back("16"); // Referenced once.
std::string original = "$1 * $1 == $4";
std::string expected = "4 * 4 == 16";
EXPECT_EQ(expected, ReplaceStringPlaceholders(original, subst, nullptr));
std::vector<size_t> offsets;
EXPECT_EQ(expected, ReplaceStringPlaceholders(original, subst, &offsets));
std::vector<size_t> expected_offsets = {0, 4, 9};
EXPECT_EQ(expected_offsets, offsets);
}
TEST(StringUtilTest, StdStringReplaceStringPlaceholdersArray) {
const auto subst = std::to_array<std::string>({"world", "hello"});
std::string formatted = ReplaceStringPlaceholders("$2, $1!", subst, nullptr);
EXPECT_EQ("hello, world!", formatted);
}
TEST(StringUtilTest, StdStringReplaceStringPlaceholdersInitializerList) {
// Combine lots of different types to make sure they all work.
const std::string be = "be";
constexpr std::string_view kNot = "not";
char mutable_be[] = "be";
constexpr const char* const kIs = "is";
std::string question = "question";
std::string formatted = ReplaceStringPlaceholders(
"to $1 or $2 to $3 that $4 the $5",
{be, std::string(kNot), mutable_be, kIs, question}, nullptr);
EXPECT_EQ("to be or not to be that is the question", formatted);
}
TEST(StringUtilTest, StdStringReplaceStringPlaceholdersMovesFromString) {
ASSERT_TRUE(MovedFromStringIsEmpty<std::string>());
std::string long_string = LongString<std::string>();
std::vector<size_t> offsets;
// `offsets` is passed just to force the base::span overload.
std::string formatted =
ReplaceStringPlaceholders("=$1", {std::move(long_string)}, &offsets);
EXPECT_EQ("=" + LongString<std::string>(), formatted);
// This test relies on behavior that is not required by the C++ standard.
// NOLINTNEXTLINE(bugprone-use-after-move)
EXPECT_TRUE(long_string.empty());
}
TEST(StringUtilTest, ReplaceStringPlaceholdersConsecutiveDollarSigns) {
std::vector<std::string> subst;
subst.push_back("a");
subst.push_back("b");
subst.push_back("c");
EXPECT_EQ(ReplaceStringPlaceholders("$$1 $$$2 $$$$3", subst, nullptr),
"$1 $$2 $$$3");
}
TEST(StringUtilTest, LcpyTest) {
// Test the normal case where we fit in our buffer.
{
char dst[10];
char16_t u16dst[10];
wchar_t wdst[10];
EXPECT_EQ(7U, strlcpy(dst, "abcdefg", std::size(dst)));
EXPECT_EQ(0, memcmp(dst, "abcdefg", sizeof(dst[0]) * 8));
EXPECT_EQ(7U, u16cstrlcpy(u16dst, u"abcdefg", std::size(u16dst)));
EXPECT_EQ(0, memcmp(u16dst, u"abcdefg", sizeof(u16dst[0]) * 8));
EXPECT_EQ(7U, wcslcpy(wdst, L"abcdefg", std::size(wdst)));
EXPECT_EQ(0, memcmp(wdst, L"abcdefg", sizeof(wdst[0]) * 8));
EXPECT_EQ(7U, strlcpy(dst, "abcdefg"));
EXPECT_EQ(base::span(dst).first(8u),
base::span_with_nul_from_cstring("abcdefg"));
EXPECT_EQ(7U, u16cstrlcpy(u16dst, u"abcdefg"));
EXPECT_EQ(base::span(u16dst).first(8u),
base::span_with_nul_from_cstring(u"abcdefg"));
EXPECT_EQ(7U, wcslcpy(wdst, L"abcdefg"));
EXPECT_EQ(base::span(wdst).first(8u),
base::span_with_nul_from_cstring(L"abcdefg"));
}
// Test dst_size == 0, nothing should be written to |dst| and we should
// have the equivalent of strlen(src).
{
char dst[2] = {1, 2};
char16_t u16dst[2] = {1, 2};
wchar_t wdst[2] = {1, 2};
EXPECT_EQ(7U, strlcpy(dst, "abcdefg", 0));
EXPECT_EQ(1, dst[0]);
EXPECT_EQ(2, dst[1]);
EXPECT_EQ(7U, u16cstrlcpy(u16dst, u"abcdefg", 0));
EXPECT_EQ(char16_t{1}, u16dst[0]);
EXPECT_EQ(char16_t{2}, u16dst[1]);
EXPECT_EQ(7U, wcslcpy(wdst, L"abcdefg", 0));
EXPECT_EQ(static_cast<wchar_t>(1), wdst[0]);
EXPECT_EQ(static_cast<wchar_t>(2), wdst[1]);
EXPECT_EQ(7U, strlcpy(base::span(dst).first(0u), "abcdefg"));
EXPECT_EQ(1, dst[0]);
EXPECT_EQ(2, dst[1]);
EXPECT_EQ(7U, u16cstrlcpy(base::span(u16dst).first(0u), u"abcdefg"));
EXPECT_EQ(char16_t{1}, u16dst[0]);
EXPECT_EQ(char16_t{2}, u16dst[1]);
EXPECT_EQ(7U, wcslcpy(base::span(wdst).first(0u), L"abcdefg"));
EXPECT_EQ(static_cast<wchar_t>(1), wdst[0]);
EXPECT_EQ(static_cast<wchar_t>(2), wdst[1]);
}
// Test the case were we _just_ competely fit including the null.
{
char dst[8];
char16_t u16dst[8];
wchar_t wdst[8];
EXPECT_EQ(7U, strlcpy(dst, "abcdefg", std::size(dst)));
EXPECT_EQ(0, memcmp(dst, "abcdefg", 8));
EXPECT_EQ(7U, u16cstrlcpy(u16dst, u"abcdefg", std::size(u16dst)));
EXPECT_EQ(0, memcmp(u16dst, u"abcdefg", sizeof(u16dst)));
EXPECT_EQ(7U, wcslcpy(wdst, L"abcdefg", std::size(wdst)));
EXPECT_EQ(0, memcmp(wdst, L"abcdefg", sizeof(wdst)));
EXPECT_EQ(7U, strlcpy(dst, "abcdefg"));
EXPECT_EQ(base::span(dst), base::span_with_nul_from_cstring("abcdefg"));
EXPECT_EQ(7U, u16cstrlcpy(u16dst, u"abcdefg"));
EXPECT_EQ(base::span(u16dst), base::span_with_nul_from_cstring(u"abcdefg"));
EXPECT_EQ(7U, wcslcpy(wdst, L"abcdefg"));
EXPECT_EQ(base::span(wdst), base::span_with_nul_from_cstring(L"abcdefg"));
}
// Test the case were we we are one smaller, so we can't fit the null.
{
char dst[7];
char16_t u16dst[7];
wchar_t wdst[7];
EXPECT_EQ(7U, strlcpy(dst, "abcdefg", std::size(dst)));
EXPECT_EQ(0, memcmp(dst, "abcdef", sizeof(dst[0]) * 7));
EXPECT_EQ(7U, u16cstrlcpy(u16dst, u"abcdefg", std::size(u16dst)));
EXPECT_EQ(0, memcmp(u16dst, u"abcdef", sizeof(u16dst[0]) * 7));
EXPECT_EQ(7U, wcslcpy(wdst, L"abcdefg", std::size(wdst)));
EXPECT_EQ(0, memcmp(wdst, L"abcdef", sizeof(wdst[0]) * 7));
EXPECT_EQ(7U, strlcpy(dst, "abcdefg"));
EXPECT_EQ(base::span(dst), base::span_with_nul_from_cstring("abcdef"));
EXPECT_EQ(7U, u16cstrlcpy(u16dst, u"abcdefg"));
EXPECT_EQ(base::span(u16dst), base::span_with_nul_from_cstring(u"abcdef"));
EXPECT_EQ(7U, wcslcpy(wdst, L"abcdefg"));
EXPECT_EQ(base::span(wdst), base::span_with_nul_from_cstring(L"abcdef"));
}
// Test the case were we are just too small.
{
char dst[3];
char16_t u16dst[3];
wchar_t wdst[3];
EXPECT_EQ(7U, strlcpy(dst, "abcdefg", std::size(dst)));
EXPECT_EQ(0, memcmp(dst, "ab", sizeof(dst)));
EXPECT_EQ(7U, u16cstrlcpy(u16dst, u"abcdefg", std::size(u16dst)));
EXPECT_EQ(0, memcmp(u16dst, u"ab", sizeof(u16dst)));
EXPECT_EQ(7U, wcslcpy(wdst, L"abcdefg", std::size(wdst)));
EXPECT_EQ(0, memcmp(wdst, L"ab", sizeof(wdst)));
EXPECT_EQ(7U, strlcpy(dst, "abcdefg"));
EXPECT_EQ(base::span(dst), base::span_with_nul_from_cstring("ab"));
EXPECT_EQ(7U, u16cstrlcpy(u16dst, u"abcdefg"));
EXPECT_EQ(base::span(u16dst), base::span_with_nul_from_cstring(u"ab"));
EXPECT_EQ(7U, wcslcpy(wdst, L"abcdefg"));
EXPECT_EQ(base::span(wdst), base::span_with_nul_from_cstring(L"ab"));
}
}
TEST(StringUtilTest, WprintfFormatPortabilityTest) {
static const struct {
const wchar_t* input;
bool portable;
} cases[] = {{L"%ls", true},
{L"%s", false},
{L"%S", false},
{L"%lS", false},
{L"Hello, %s", false},
{L"%lc", true},
{L"%c", false},
{L"%C", false},
{L"%lC", false},
{L"%ls %s", false},
{L"%s %ls", false},
{L"%s %ls %s", false},
{L"%f", true},
{L"%f %F", false},
{L"%d %D", false},
{L"%o %O", false},
{L"%u %U", false},
{L"%f %d %o %u", true},
{L"%-8d (%02.1f%)", true},
{L"% 10s", false},
{L"% 10ls", true}};
for (const auto& i : cases) {
EXPECT_EQ(i.portable, IsWprintfFormatPortable(i.input));
}
}
TEST(StringUtilTest, RemoveChars) {
const char kRemoveChars[] = "-/+*";
std::string input = "A-+bc/d!*";
EXPECT_TRUE(RemoveChars(input, kRemoveChars, &input));
EXPECT_EQ("Abcd!", input);
// No characters match kRemoveChars.
EXPECT_FALSE(RemoveChars(input, kRemoveChars, &input));
EXPECT_EQ("Abcd!", input);
// Empty string.
input.clear();
EXPECT_FALSE(RemoveChars(input, kRemoveChars, &input));
EXPECT_EQ(std::string(), input);
}
TEST(StringUtilTest, ReplaceChars) {
struct TestData {
const char* input;
const char* replace_chars;
const char* replace_with;
const char* output;
bool result;
} cases[] = {
{"", "", "", "", false},
{"t", "t", "t", "t", true},
{"a", "b", "c", "a", false},
{"b", "b", "c", "c", true},
{"bob", "b", "p", "pop", true},
{"bob", "o", "i", "bib", true},
{"test", "", "", "test", false},
{"test", "", "!", "test", false},
{"test", "z", "!", "test", false},
{"test", "e", "!", "t!st", true},
{"test", "e", "!?", "t!?st", true},
{"test", "ez", "!", "t!st", true},
{"test", "zed", "!?", "t!?st", true},
{"test", "t", "!?", "!?es!?", true},
{"test", "et", "!>", "!>!>s!>", true},
{"test", "zest", "!", "!!!!", true},
{"test", "szt", "!", "!e!!", true},
{"test", "t", "test", "testestest", true},
{"tetst", "t", "test", "testeteststest", true},
{"ttttttt", "t", "-", "-------", true},
{"aAaAaAAaAAa", "A", "", "aaaaa", true},
{"xxxxxxxxxx", "x", "", "", true},
{"xxxxxxxxxx", "x", "x", "xxxxxxxxxx", true},
{"xxxxxxxxxx", "x", "y-", "y-y-y-y-y-y-y-y-y-y-", true},
{"xxxxxxxxxx", "x", "xy", "xyxyxyxyxyxyxyxyxyxy", true},
{"xxxxxxxxxx", "x", "zyx", "zyxzyxzyxzyxzyxzyxzyxzyxzyxzyx", true},
{"xaxxaxxxaxxxax", "x", "xy", "xyaxyxyaxyxyxyaxyxyxyaxy", true},
{"-xaxxaxxxaxxxax-", "x", "xy", "-xyaxyxyaxyxyxyaxyxyxyaxy-", true},
};
for (const TestData& scenario : cases) {
// Test with separate output and input vars.
std::string output;
bool result = ReplaceChars(scenario.input, scenario.replace_chars,
scenario.replace_with, &output);
EXPECT_EQ(scenario.result, result) << scenario.input;
EXPECT_EQ(scenario.output, output);
}
for (const TestData& scenario : cases) {
// Test with an input/output var of limited capacity.
std::string input_output = scenario.input;
input_output.shrink_to_fit();
bool result = ReplaceChars(input_output, scenario.replace_chars,
scenario.replace_with, &input_output);
EXPECT_EQ(scenario.result, result) << scenario.input;
EXPECT_EQ(scenario.output, input_output);
}
for (const TestData& scenario : cases) {
// Test with an input/output var of ample capacity; should
// not realloc.
std::string input_output = scenario.input;
input_output.reserve(strlen(scenario.output) * 2);
const void* original_buffer = input_output.data();
bool result = ReplaceChars(input_output, scenario.replace_chars,
scenario.replace_with, &input_output);
EXPECT_EQ(scenario.result, result) << scenario.input;
EXPECT_EQ(scenario.output, input_output);
EXPECT_EQ(original_buffer, input_output.data());
}
}
TEST(StringUtilTest, ContainsOnlyChars) {
// Providing an empty list of characters should return false but for the empty
// string.
EXPECT_TRUE(ContainsOnlyChars(std::string(), std::string()));
EXPECT_FALSE(ContainsOnlyChars("Hello", std::string()));
EXPECT_TRUE(ContainsOnlyChars(std::string(), "1234"));
EXPECT_TRUE(ContainsOnlyChars("1", "1234"));
EXPECT_TRUE(ContainsOnlyChars("1", "4321"));
EXPECT_TRUE(ContainsOnlyChars("123", "4321"));
EXPECT_FALSE(ContainsOnlyChars("123a", "4321"));
EXPECT_TRUE(ContainsOnlyChars(std::string(), kWhitespaceASCII));
EXPECT_TRUE(ContainsOnlyChars(" ", kWhitespaceASCII));
EXPECT_TRUE(ContainsOnlyChars("\t", kWhitespaceASCII));
EXPECT_TRUE(ContainsOnlyChars("\t \r \n ", kWhitespaceASCII));
EXPECT_FALSE(ContainsOnlyChars("a", kWhitespaceASCII));
EXPECT_FALSE(ContainsOnlyChars("\thello\r \n ", kWhitespaceASCII));
EXPECT_TRUE(ContainsOnlyChars(std::u16string(), kWhitespaceUTF16));
EXPECT_TRUE(ContainsOnlyChars(u" ", kWhitespaceUTF16));
EXPECT_TRUE(ContainsOnlyChars(u"\t", kWhitespaceUTF16));
EXPECT_TRUE(ContainsOnlyChars(u"\t \r \n ", kWhitespaceUTF16));
EXPECT_FALSE(ContainsOnlyChars(u"a", kWhitespaceUTF16));
EXPECT_FALSE(ContainsOnlyChars(u"\thello\r \n ", kWhitespaceUTF16));
}
TEST(StringUtilTest, CompareCaseInsensitiveASCII) {
EXPECT_EQ(0, CompareCaseInsensitiveASCII("", ""));
EXPECT_EQ(0, CompareCaseInsensitiveASCII("Asdf", "aSDf"));
// Differing lengths.
EXPECT_EQ(-1, CompareCaseInsensitiveASCII("Asdf", "aSDfA"));
EXPECT_EQ(1, CompareCaseInsensitiveASCII("AsdfA", "aSDf"));
// Differing values.
EXPECT_EQ(-1, CompareCaseInsensitiveASCII("AsdfA", "aSDfb"));
EXPECT_EQ(1, CompareCaseInsensitiveASCII("Asdfb", "aSDfA"));
// Non-ASCII bytes are permitted, but they will be compared case-sensitively.
EXPECT_EQ(0, CompareCaseInsensitiveASCII("aaa \xc3\xa4", "AAA \xc3\xa4"));
EXPECT_EQ(-1, CompareCaseInsensitiveASCII("AAA \xc3\x84", "aaa \xc3\xa4"));
EXPECT_EQ(1, CompareCaseInsensitiveASCII("aaa \xc3\xa4", "AAA \xc3\x84"));
// ASCII bytes should sort before non-ASCII ones.
EXPECT_EQ(-1, CompareCaseInsensitiveASCII("a", "\xc3\xa4"));
EXPECT_EQ(1, CompareCaseInsensitiveASCII("\xc3\xa4", "a"));
// For constexpr.
static_assert(CompareCaseInsensitiveASCII("", "") == 0);
static_assert(CompareCaseInsensitiveASCII("Asdf", "aSDf") == 0);
static_assert(CompareCaseInsensitiveASCII("Asdf", "aSDfA") == -1);
static_assert(CompareCaseInsensitiveASCII("AsdfA", "aSDf") == 1);
static_assert(CompareCaseInsensitiveASCII("AsdfA", "aSDfb") == -1);
static_assert(CompareCaseInsensitiveASCII("Asdfb", "aSDfA") == 1);
static_assert(CompareCaseInsensitiveASCII("aaa \xc3\xa4", "AAA \xc3\xa4") ==
0);
static_assert(CompareCaseInsensitiveASCII("AAA \xc3\x84", "aaa \xc3\xa4") ==
-1);
static_assert(CompareCaseInsensitiveASCII("aaa \xc3\xa4", "AAA \xc3\x84") ==
1);
static_assert(CompareCaseInsensitiveASCII("a", "\xc3\xa4") == -1);
static_assert(CompareCaseInsensitiveASCII("\xc3\xa4", "a") == 1);
}
TEST(StringUtilTest, EqualsCaseInsensitiveASCII) {
EXPECT_TRUE(EqualsCaseInsensitiveASCII("", ""));
EXPECT_TRUE(EqualsCaseInsensitiveASCII("Asdf", "aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII("bsdf", "aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII("Asdf", "aSDFz"));
EXPECT_TRUE(EqualsCaseInsensitiveASCII(u"", u""));
EXPECT_TRUE(EqualsCaseInsensitiveASCII(u"Asdf", u"aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII(u"bsdf", u"aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII(u"Asdf", u"aSDFz"));
EXPECT_TRUE(EqualsCaseInsensitiveASCII(u"", ""));
EXPECT_TRUE(EqualsCaseInsensitiveASCII(u"Asdf", "aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII(u"bsdf", "aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII(u"Asdf", "aSDFz"));
EXPECT_TRUE(EqualsCaseInsensitiveASCII("", u""));
EXPECT_TRUE(EqualsCaseInsensitiveASCII("Asdf", u"aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII("bsdf", u"aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII("Asdf", u"aSDFz"));
// Non-ASCII bytes are permitted, but they will be compared case-sensitively.
EXPECT_TRUE(EqualsCaseInsensitiveASCII("aaa \xc3\xa4", "AAA \xc3\xa4"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII("aaa \xc3\x84", "AAA \xc3\xa4"));
// The `std::wstring_view` overloads are only defined on Windows.
#if BUILDFLAG(IS_WIN)
EXPECT_TRUE(EqualsCaseInsensitiveASCII(L"", L""));
EXPECT_TRUE(EqualsCaseInsensitiveASCII(L"Asdf", L"aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII(L"bsdf", L"aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII(L"Asdf", L"aSDFz"));
EXPECT_TRUE(EqualsCaseInsensitiveASCII(L"", ""));
EXPECT_TRUE(EqualsCaseInsensitiveASCII(L"Asdf", "aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII(L"bsdf", "aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII(L"Asdf", "aSDFz"));
EXPECT_TRUE(EqualsCaseInsensitiveASCII("", L""));
EXPECT_TRUE(EqualsCaseInsensitiveASCII("Asdf", L"aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII("bsdf", L"aSDF"));
EXPECT_FALSE(EqualsCaseInsensitiveASCII("Asdf", L"aSDFz"));
#endif
}
TEST(StringUtilTest, IsUnicodeWhitespace) {
// NOT unicode white space.
EXPECT_FALSE(IsUnicodeWhitespace(L'\0'));
EXPECT_FALSE(IsUnicodeWhitespace(L'A'));
EXPECT_FALSE(IsUnicodeWhitespace(L'0'));
EXPECT_FALSE(IsUnicodeWhitespace(L'.'));
EXPECT_FALSE(IsUnicodeWhitespace(L';'));
EXPECT_FALSE(IsUnicodeWhitespace(L'\x4100'));
// Actual unicode whitespace.
EXPECT_TRUE(IsUnicodeWhitespace(L' '));
EXPECT_TRUE(IsUnicodeWhitespace(L'\xa0'));
EXPECT_TRUE(IsUnicodeWhitespace(L'\x3000'));
EXPECT_TRUE(IsUnicodeWhitespace(L'\t'));
EXPECT_TRUE(IsUnicodeWhitespace(L'\r'));
EXPECT_TRUE(IsUnicodeWhitespace(L'\v'));
EXPECT_TRUE(IsUnicodeWhitespace(L'\f'));
EXPECT_TRUE(IsUnicodeWhitespace(L'\n'));
}
class WriteIntoTest : public testing::Test {
protected:
static void WritesCorrectly(size_t num_chars) {
std::string buffer;
char kOriginal[] = "supercali";
strncpy(WriteInto(&buffer, num_chars + 1), kOriginal, num_chars);
// Using std::string(buffer.c_str()) instead of |buffer| truncates the
// string at the first \0.
EXPECT_EQ(
std::string(kOriginal, std::min(num_chars, std::size(kOriginal) - 1)),
std::string(buffer.c_str()));
EXPECT_EQ(num_chars, buffer.size());
}
};
TEST_F(WriteIntoTest, WriteInto) {
// Validate that WriteInto reserves enough space and
// sizes a string correctly.
WritesCorrectly(1);
WritesCorrectly(2);
WritesCorrectly(5000);
// Validate that WriteInto handles 0-length strings
std::string empty;
const char kOriginal[] = "original";
strncpy(WriteInto(&empty, 1), kOriginal, 0);
EXPECT_STREQ("", empty.c_str());
EXPECT_EQ(0u, empty.size());
// Validate that WriteInto doesn't modify other strings
// when using a Copy-on-Write implementation.
const char kLive[] = "live";
const char kDead[] = "dead";
const std::string live = kLive;
std::string dead = live;
strncpy(WriteInto(&dead, 5), kDead, 4);
EXPECT_EQ(kDead, dead);
EXPECT_EQ(4u, dead.size());
EXPECT_EQ(kLive, live);
EXPECT_EQ(4u, live.size());
}
} // namespace
} // namespace base
|