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 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2016, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
#include "unicode/utypes.h"
/**
* IntlTest is a base class for tests.
*/
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cinttypes>
#include <cmath>
#include <math.h>
#include <string_view>
#include "unicode/ctest.h" // for str_timeDelta
#include "unicode/curramt.h"
#include "unicode/locid.h"
#include "unicode/putil.h"
#include "unicode/smpdtfmt.h"
#include "unicode/timezone.h"
#include "unicode/uclean.h"
#include "unicode/ucnv.h"
#include "unicode/unistr.h"
#include "unicode/ures.h"
#include "unicode/utf16.h"
#include "intltest.h"
#include "caltztst.h"
#include "cmemory.h"
#include "cstring.h"
#include "itmajor.h"
#include "lstmbe.h"
#include "mutex.h"
#include "putilimp.h" // for uprv_getRawUTCtime()
#include "uassert.h"
#include "udbgutil.h"
#include "umutex.h"
#include "uoptions.h"
#include "number_decnum.h"
#ifdef XP_MAC_CONSOLE
#include <console.h>
#include "Files.h"
#endif
static char* _testDataPath=nullptr;
// Static list of errors found
static UnicodeString errorList;
static void *knownList = nullptr; // known issues
static UBool noKnownIssues = false; // if true, don't emit known issues
//-----------------------------------------------------------------------------
//convenience classes to ease porting code that uses the Java
//string-concatenation operator (moved from findword test by rtg)
// [LIU] Just to get things working
UnicodeString
UCharToUnicodeString(char16_t c) { return {c}; }
// [rtg] Just to get things working
UnicodeString
operator+(const UnicodeString& left,
int64_t num)
{
char buffer[64]; // nos changed from 10 to 64
char danger = 'p'; // guard against overrunning the buffer (rtg)
snprintf(buffer, sizeof(buffer), "%" PRId64, num);
assert(danger == 'p');
return left + buffer;
}
UnicodeString
operator+(const UnicodeString& left,
uint64_t num)
{
char buffer[64]; // nos changed from 10 to 64
char danger = 'p'; // guard against overrunning the buffer (rtg)
snprintf(buffer, sizeof(buffer), "%" PRIu64, num);
assert(danger == 'p');
return left + buffer;
}
UnicodeString
Int64ToUnicodeString(int64_t num)
{
char buffer[64]; // nos changed from 10 to 64
char danger = 'p'; // guard against overrunning the buffer (rtg)
snprintf(buffer, sizeof(buffer), "%" PRId64, num);
assert(danger == 'p');
return buffer;
}
UnicodeString
DoubleToUnicodeString(double num)
{
char buffer[64]; // nos changed from 10 to 64
char danger = 'p'; // guard against overrunning the buffer (rtg)
snprintf(buffer, sizeof(buffer), "%1.14e", num);
assert(danger == 'p');
return buffer;
}
// [LIU] Just to get things working
UnicodeString
operator+(const UnicodeString& left,
double num)
{
char buffer[64]; // was 32, made it arbitrarily bigger (rtg)
char danger = 'p'; // guard against overrunning the buffer (rtg)
// IEEE floating point has 52 bits of mantissa, plus one assumed bit
// 53*log(2)/log(10) = 15.95
// so there is no need to show more than 16 digits. [alan]
snprintf(buffer, sizeof(buffer), "%.17g", num);
assert(danger == 'p');
return left + buffer;
}
#if !UCONFIG_NO_FORMATTING
/**
* Return a string display for this, without surrounding braces.
*/
UnicodeString _toString(const Formattable& f) {
UnicodeString s;
switch (f.getType()) {
case Formattable::kDate:
{
UErrorCode status = U_ZERO_ERROR;
SimpleDateFormat fmt(status);
if (U_SUCCESS(status)) {
FieldPosition pos;
fmt.format(f.getDate(), s, pos);
s.insert(0, "Date:");
} else {
s = UnicodeString("Error creating date format]");
}
}
break;
case Formattable::kDouble:
s = UnicodeString("double:") + f.getDouble();
break;
case Formattable::kLong:
s = UnicodeString("long:") + f.getLong();
break;
case Formattable::kInt64:
s = UnicodeString("int64:") + Int64ToUnicodeString(f.getInt64());
break;
case Formattable::kString:
f.getString(s);
s.insert(0, "String:");
break;
case Formattable::kArray:
{
int32_t i, n;
const Formattable* array = f.getArray(n);
s.insert(0, UnicodeString("Array:"));
UnicodeString delim(", ");
for (i=0; i<n; ++i) {
if (i > 0) {
s.append(delim);
}
s = s + _toString(array[i]);
}
}
break;
case Formattable::kObject: {
const CurrencyAmount* c = dynamic_cast<const CurrencyAmount*>(f.getObject());
if (c != nullptr) {
s = _toString(c->getNumber()) + " " + UnicodeString(c->getISOCurrency());
} else {
s = UnicodeString("Unknown UObject");
}
break;
}
default:
s = UnicodeString("Unknown Formattable type=") + static_cast<int32_t>(f.getType());
break;
}
return s;
}
/**
* Originally coded this as operator+, but that makes the expression
* + char* ambiguous. - liu
*/
UnicodeString toString(const Formattable& f) {
UnicodeString s(static_cast<char16_t>(91)/*[*/);
s.append(_toString(f));
s.append(static_cast<char16_t>(0x5d)/*]*/);
return s;
}
#endif
// useful when operator+ won't cooperate
UnicodeString toString(int32_t n) {
return UnicodeString() + static_cast<int64_t>(n);
}
UnicodeString toString(UBool b) {
return b ? b != 1 ? UnicodeString("static_cast<UBool>(") + b + ")" : UnicodeString("true")
: UnicodeString("false");
}
UnicodeString toString(bool b) {
return b ? UnicodeString("true") : UnicodeString("false");
}
UnicodeString toString(const UnicodeSet& uniset, UErrorCode& status) {
UnicodeString result;
uniset.toPattern(result, status);
return result;
}
// stephen - cleaned up 05/05/99
UnicodeString operator+(const UnicodeString& left, char num)
{ return left + static_cast<int64_t>(num); }
UnicodeString operator+(const UnicodeString& left, short num)
{ return left + static_cast<int64_t>(num); }
UnicodeString operator+(const UnicodeString& left, int num)
{ return left + static_cast<int64_t>(num); }
UnicodeString operator+(const UnicodeString& left, unsigned char num)
{ return left + static_cast<uint64_t>(num); }
UnicodeString operator+(const UnicodeString& left, unsigned short num)
{ return left + static_cast<uint64_t>(num); }
UnicodeString operator+(const UnicodeString& left, unsigned int num)
{ return left + static_cast<uint64_t>(num); }
UnicodeString operator+(const UnicodeString& left, float num)
{ return left + static_cast<double>(num); }
//------------------
// Append a hex string to the target
UnicodeString&
IntlTest::appendHex(uint32_t number,
int32_t digits,
UnicodeString& target)
{
static const char16_t digitString[] = {
0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,
0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0
}; /* "0123456789ABCDEF" */
if (digits < 0) { // auto-digits
digits = 2;
uint32_t max = 0xff;
while (number > max) {
digits += 2;
max = (max << 8) | 0xff;
}
}
switch (digits)
{
case 8:
target += digitString[(number >> 28) & 0xF];
U_FALLTHROUGH;
case 7:
target += digitString[(number >> 24) & 0xF];
U_FALLTHROUGH;
case 6:
target += digitString[(number >> 20) & 0xF];
U_FALLTHROUGH;
case 5:
target += digitString[(number >> 16) & 0xF];
U_FALLTHROUGH;
case 4:
target += digitString[(number >> 12) & 0xF];
U_FALLTHROUGH;
case 3:
target += digitString[(number >> 8) & 0xF];
U_FALLTHROUGH;
case 2:
target += digitString[(number >> 4) & 0xF];
U_FALLTHROUGH;
case 1:
target += digitString[(number >> 0) & 0xF];
break;
default:
target += "**";
}
return target;
}
UnicodeString
IntlTest::toHex(uint32_t number, int32_t digits) {
UnicodeString result;
appendHex(number, digits, result);
return result;
}
static inline UBool isPrintable(UChar32 c) {
return c <= 0x7E && (c >= 0x20 || c == 9 || c == 0xA || c == 0xD);
}
// Replace nonprintable characters with unicode escapes
UnicodeString&
IntlTest::prettify(const UnicodeString &source,
UnicodeString &target)
{
int32_t i;
target.remove();
target += "\"";
for (i = 0; i < source.length(); )
{
UChar32 ch = source.char32At(i);
i += U16_LENGTH(ch);
if (!isPrintable(ch))
{
if (ch <= 0xFFFF) {
target += "\\u";
appendHex(ch, 4, target);
} else {
target += "\\U";
appendHex(ch, 8, target);
}
}
else
{
target += ch;
}
}
target += "\"";
return target;
}
// Replace nonprintable characters with unicode escapes
UnicodeString
IntlTest::prettify(const UnicodeString &source, UBool parseBackslash)
{
int32_t i;
UnicodeString target;
target.remove();
target += "\"";
for (i = 0; i < source.length();)
{
UChar32 ch = source.char32At(i);
i += U16_LENGTH(ch);
if (!isPrintable(ch))
{
if (parseBackslash) {
// If we are preceded by an odd number of backslashes,
// then this character has already been backslash escaped.
// Delete a backslash.
int32_t backslashCount = 0;
for (int32_t j=target.length()-1; j>=0; --j) {
if (target.charAt(j) == static_cast<char16_t>(92)) {
++backslashCount;
} else {
break;
}
}
if ((backslashCount % 2) == 1) {
target.truncate(target.length() - 1);
}
}
if (ch <= 0xFFFF) {
target += "\\u";
appendHex(ch, 4, target);
} else {
target += "\\U";
appendHex(ch, 8, target);
}
}
else
{
target += ch;
}
}
target += "\"";
return target;
}
/* IntlTest::setICU_DATA - if the ICU_DATA environment variable is not already
* set, try to deduce the directory in which ICU was built,
* and set ICU_DATA to "icu/source/data" in that location.
* The intent is to allow the tests to have a good chance
* of running without requiring that the user manually set
* ICU_DATA. Common data isn't a problem, since it is
* picked up via a static (build time) reference, but the
* tests dynamically load some data.
*/
void IntlTest::setICU_DATA() {
const char *original_ICU_DATA = getenv("ICU_DATA");
if (original_ICU_DATA != nullptr && *original_ICU_DATA != 0) {
/* If the user set ICU_DATA, don't second-guess the person. */
return;
}
// U_TOPBUILDDIR is set by the makefiles on UNIXes when building cintltst and intltst
// to point to the top of the build hierarchy, which may or
// may not be the same as the source directory, depending on
// the configure options used. At any rate,
// set the data path to the built data from this directory.
// The value is complete with quotes, so it can be used
// as-is as a string constant.
#if defined (U_TOPBUILDDIR)
{
static char env_string[] = U_TOPBUILDDIR
"data" U_FILE_SEP_STRING
"out" U_FILE_SEP_STRING
"build" U_FILE_SEP_STRING;
u_setDataDirectory(env_string);
return;
}
#else
// Use #else so we don't get compiler warnings due to the return above.
/* On Windows, the file name obtained from __FILE__ includes a full path.
* This file is "wherever\icu\source\test\cintltst\cintltst.c"
* Change to "wherever\icu\source\data"
*/
{
char p[sizeof(__FILE__) + 10];
char *pBackSlash;
int i;
strcpy(p, __FILE__);
/* We want to back over three '\' chars. */
/* Only Windows should end up here, so looking for '\' is safe. */
for (i=1; i<=3; i++) {
pBackSlash = strrchr(p, U_FILE_SEP_CHAR);
if (pBackSlash != nullptr) {
*pBackSlash = 0; /* Truncate the string at the '\' */
}
}
if (pBackSlash != nullptr) {
/* We found and truncated three names from the path.
* Now append "source\data" and set the environment
*/
strcpy(pBackSlash, U_FILE_SEP_STRING "data" U_FILE_SEP_STRING "out" U_FILE_SEP_STRING);
u_setDataDirectory(p); /* p is "ICU_DATA=wherever\icu\source\data" */
return;
}
else {
/* __FILE__ on MSVC7 does not contain the directory */
u_setDataDirectory(".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING "data" U_FILE_SEP_STRING "out" U_FILE_SEP_STRING);
return;
}
}
#endif
/* No location for the data dir was identifiable.
* Add other fallbacks for the test data location here if the need arises
*/
}
//--------------------------------------------------------------------------------------
static const int32_t indentLevel_offset = 3;
static const char delim = '/';
IntlTest* IntlTest::gTest = nullptr;
static int32_t execCount = 0;
void it_log(std::u16string_view message)
{
if (IntlTest::gTest)
IntlTest::gTest->log( message );
}
void it_logln(std::u16string_view message)
{
if (IntlTest::gTest)
IntlTest::gTest->logln( message );
}
void it_logln()
{
if (IntlTest::gTest)
IntlTest::gTest->logln();
}
void it_info(std::u16string_view message)
{
if (IntlTest::gTest)
IntlTest::gTest->info( message );
}
void it_infoln(std::u16string_view message)
{
if (IntlTest::gTest)
IntlTest::gTest->infoln( message );
}
void it_infoln()
{
if (IntlTest::gTest)
IntlTest::gTest->infoln();
}
void it_err()
{
if (IntlTest::gTest)
IntlTest::gTest->err();
}
void it_err(std::u16string_view message)
{
if (IntlTest::gTest)
IntlTest::gTest->err( message );
}
void it_errln(std::u16string_view message)
{
if (IntlTest::gTest)
IntlTest::gTest->errln( message );
}
void it_dataerr(std::u16string_view message)
{
if (IntlTest::gTest)
IntlTest::gTest->dataerr( message );
}
void it_dataerrln(std::u16string_view message)
{
if (IntlTest::gTest)
IntlTest::gTest->dataerrln( message );
}
void it_logln(const char* message) {
it_logln(UnicodeString(message));
}
void it_err(const char* message) {
it_err(UnicodeString(message));
}
void it_errln(const char* message) {
it_errln(UnicodeString(message));
}
void it_dataerrln(const char* message) {
it_dataerrln(UnicodeString(message));
}
IntlTest::IntlTest()
{
caller = nullptr;
testPath = nullptr;
LL_linestart = true;
errorCount = 0;
dataErrorCount = 0;
verbose = false;
no_time = false;
no_err_msg = false;
warn_on_missing_data = false;
quick = false;
leaks = false;
threadCount = 12;
testoutfp = stdout;
LL_indentlevel = indentLevel_offset;
numProps = 0;
strcpy(basePath, "/");
currName[0]=0;
}
void IntlTest::setCaller( IntlTest* callingTest )
{
caller = callingTest;
if (caller) {
warn_on_missing_data = caller->warn_on_missing_data;
verbose = caller->verbose;
no_err_msg = caller->no_err_msg;
quick = caller->quick;
threadCount = caller->threadCount;
testoutfp = caller->testoutfp;
write_golden_data = caller->write_golden_data;
LL_indentlevel = caller->LL_indentlevel + indentLevel_offset;
numProps = caller->numProps;
for (int32_t i = 0; i < numProps; i++) {
proplines[i] = caller->proplines[i];
}
}
}
UBool IntlTest::callTest( IntlTest& testToBeCalled, char* par )
{
execCount--; // correct a previously assumed test-exec, as this only calls a subtest
testToBeCalled.setCaller( this );
strcpy(testToBeCalled.basePath, this->basePath );
UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath );
strcpy(testToBeCalled.basePath, this->basePath ); // reset it.
return result;
}
void IntlTest::setPath( char* pathVal )
{
this->testPath = pathVal;
}
UBool IntlTest::setVerbose( UBool verboseVal )
{
UBool rval = this->verbose;
this->verbose = verboseVal;
return rval;
}
UBool IntlTest::setNotime( UBool no_time )
{
UBool rval = this->no_time;
this->no_time = no_time;
return rval;
}
UBool IntlTest::setWarnOnMissingData( UBool warn_on_missing_dataVal )
{
UBool rval = this->warn_on_missing_data;
this->warn_on_missing_data = warn_on_missing_dataVal;
return rval;
}
UBool IntlTest::setWriteGoldenData( UBool write_golden_data )
{
UBool rval = this->write_golden_data;
this->write_golden_data = write_golden_data;
return rval;
}
UBool IntlTest::setNoErrMsg( UBool no_err_msgVal )
{
UBool rval = this->no_err_msg;
this->no_err_msg = no_err_msgVal;
return rval;
}
UBool IntlTest::setQuick( UBool quickVal )
{
UBool rval = this->quick;
this->quick = quickVal;
return rval;
}
UBool IntlTest::setLeaks( UBool leaksVal )
{
UBool rval = this->leaks;
this->leaks = leaksVal;
return rval;
}
int32_t IntlTest::setThreadCount( int32_t count )
{
int32_t rval = this->threadCount;
this->threadCount = count;
return rval;
}
int32_t IntlTest::getErrors()
{
return errorCount;
}
int32_t IntlTest::getDataErrors()
{
return dataErrorCount;
}
UBool IntlTest::runTest( char* name, char* par, char *baseName )
{
UBool rval;
char* pos = nullptr;
char* baseNameBuffer = nullptr;
if(baseName == nullptr) {
baseNameBuffer = static_cast<char*>(malloc(1024));
baseName=baseNameBuffer;
strcpy(baseName, "/");
}
if (name)
pos = strchr( name, delim ); // check if name contains path (by looking for '/')
if (pos) {
testPath = pos+1; // store subpath for calling subtest
*pos = 0; // split into two strings
}else{
testPath = nullptr;
}
if (!name || (name[0] == 0) || (strcmp(name, "*") == 0)) {
rval = runTestLoop( nullptr, par, baseName );
}else if (strcmp( name, "LIST" ) == 0) {
this->usage();
rval = true;
}else{
rval = runTestLoop( name, par, baseName );
}
if (pos)
*pos = delim; // restore original value at pos
if(baseNameBuffer!=nullptr) {
free(baseNameBuffer);
}
return rval;
}
// call individual tests, to be overridden to call implementations
void IntlTest::runIndexedTest( int32_t /*index*/, UBool /*exec*/, const char* & /*name*/, char* /*par*/ )
{
// to be overridden by a method like:
/*
switch (index) {
case 0: name = "First Test"; if (exec) FirstTest( par ); break;
case 1: name = "Second Test"; if (exec) SecondTest( par ); break;
default: name = ""; break;
}
*/
this->errln("*** runIndexedTest needs to be overridden! ***");
}
UBool IntlTest::runTestLoop( char* testname, char* par, char *baseName )
{
int32_t index = 0;
const char* name;
UBool run_this_test;
int32_t lastErrorCount;
UBool rval = false;
UBool lastTestFailed;
if(baseName == nullptr) {
printf("ERROR: baseName can't be null.\n");
return false;
} else {
if ((char *)this->basePath != baseName) {
strcpy(this->basePath, baseName);
}
}
char * saveBaseLoc = baseName+strlen(baseName);
IntlTest* saveTest = gTest;
gTest = this;
do {
this->runIndexedTest( index, false, name, par );
if (strcmp(name,"skip") == 0) {
run_this_test = false;
} else {
if (!name || (name[0] == 0))
break;
if (!testname) {
run_this_test = true;
}else{
run_this_test = static_cast<UBool>(strcmp(name, testname) == 0);
}
}
if (run_this_test) {
lastErrorCount = errorCount;
execCount++;
char msg[256];
snprintf(msg, sizeof(msg), "%s {", name);
LL_message(UnicodeString(msg), true);
UDate timeStart = uprv_getRawUTCtime();
strcpy(saveBaseLoc,name);
strcat(saveBaseLoc,"/");
strcpy(currName, name); // set
this->runIndexedTest( index, true, name, par );
currName[0]=0; // reset
UDate timeStop = uprv_getRawUTCtime();
rval = true; // at least one test has been called
char secs[256];
if(!no_time) {
snprintf(secs, sizeof(secs), "%f", (timeStop-timeStart)/1000.0);
} else {
secs[0]=0;
}
strcpy(saveBaseLoc,name);
ctest_xml_testcase(baseName, name, secs, (lastErrorCount!=errorCount)?"err":nullptr);
saveBaseLoc[0]=0; /* reset path */
if (lastErrorCount == errorCount) {
snprintf( msg, sizeof(msg), " } OK: %s ", name );
if(!no_time) str_timeDelta(msg+strlen(msg),timeStop-timeStart);
lastTestFailed = false;
}else{
snprintf(msg, sizeof(msg), " } ERRORS (%li) in %s", static_cast<long>(errorCount - lastErrorCount), name);
if(!no_time) str_timeDelta(msg+strlen(msg),timeStop-timeStart);
for(int i=0;i<LL_indentlevel;i++) {
errorList += " ";
}
errorList += name;
errorList += "\n";
lastTestFailed = true;
}
LL_indentlevel -= 3;
if (lastTestFailed) {
LL_message({}, true);
}
LL_message(UnicodeString(msg), true);
if (lastTestFailed) {
LL_message({}, true);
}
LL_indentlevel += 3;
}
index++;
}while(name);
*saveBaseLoc = 0;
gTest = saveTest;
return rval;
}
/**
* Adds given string to the log if we are in verbose mode.
*/
void IntlTest::log(std::u16string_view message)
{
if( verbose ) {
LL_message( message, false );
}
}
/**
* Adds given string to the log if we are in verbose mode. Adds a new line to
* the given message.
*/
void IntlTest::logln(std::u16string_view message)
{
if( verbose ) {
LL_message( message, true );
}
}
void IntlTest::logln()
{
if( verbose ) {
LL_message({}, true );
}
}
/**
* Unconditionally adds given string to the log.
*/
void IntlTest::info(std::u16string_view message)
{
LL_message( message, false );
}
/**
* Unconditionally adds given string to the log. Adds a new line to
* the given message.
*/
void IntlTest::infoln(std::u16string_view message)
{
LL_message( message, true );
}
void IntlTest::infoln()
{
LL_message({}, true );
}
int32_t IntlTest::IncErrorCount()
{
errorCount++;
if (caller) caller->IncErrorCount();
return errorCount;
}
int32_t IntlTest::IncDataErrorCount()
{
dataErrorCount++;
if (caller) caller->IncDataErrorCount();
return dataErrorCount;
}
void IntlTest::err()
{
IncErrorCount();
}
void IntlTest::err(std::u16string_view message)
{
IncErrorCount();
if (!no_err_msg) LL_message( message, false );
}
void IntlTest::errln(std::u16string_view message)
{
IncErrorCount();
if (!no_err_msg) LL_message( message, true );
}
void IntlTest::dataerr(std::u16string_view message)
{
IncDataErrorCount();
if (!warn_on_missing_data) {
IncErrorCount();
}
if (!no_err_msg) LL_message( message, false );
}
void IntlTest::dataerrln(std::u16string_view message)
{
int32_t errCount = IncDataErrorCount();
UnicodeString msg;
if (!warn_on_missing_data) {
IncErrorCount();
msg = message;
} else {
msg = UnicodeString("[DATA] " + message);
}
if (!no_err_msg) {
if ( errCount == 1) {
LL_message( msg + " - (Are you missing data?)", true ); // only show this message the first time
} else {
LL_message( msg , true );
}
}
}
void IntlTest::errcheckln(UErrorCode status, std::u16string_view message) {
if (status == U_FILE_ACCESS_ERROR || status == U_MISSING_RESOURCE_ERROR) {
dataerrln(message);
} else {
errln(message);
}
}
/* convenience functions that include snprintf formatting */
void IntlTest::log(const char *fmt, ...)
{
char buffer[4000];
va_list ap;
va_start(ap, fmt);
/* snprintf it just to make sure that the information is valid */
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
if( verbose ) {
log(UnicodeString(buffer, (const char *)nullptr));
}
}
void IntlTest::logln(const char *fmt, ...)
{
char buffer[4000];
va_list ap;
va_start(ap, fmt);
/* snprintf it just to make sure that the information is valid */
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
if( verbose ) {
logln(UnicodeString(buffer, (const char *)nullptr));
}
}
UBool IntlTest::logKnownIssue(const char *ticket, const char *fmt, ...)
{
char buffer[4000];
va_list ap;
va_start(ap, fmt);
/* snprintf it just to make sure that the information is valid */
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
return logKnownIssue(ticket, UnicodeString(buffer, (const char *)nullptr));
}
UBool IntlTest::logKnownIssue(const char *ticket) {
return logKnownIssue(ticket, UnicodeString());
}
UBool IntlTest::logKnownIssue(const char *ticket, std::u16string_view msg) {
if(noKnownIssues) return false;
char fullpath[2048];
strcpy(fullpath, basePath);
strcat(fullpath, currName);
UnicodeString msg2 = msg;
UBool firstForTicket = true, firstForWhere = true;
knownList = udbg_knownIssue_openU(knownList, ticket, fullpath, msg2.getTerminatedBuffer(), &firstForTicket, &firstForWhere);
msg2 = UNICODE_STRING_SIMPLE("(Known issue ") +
UnicodeString(ticket, -1, US_INV) + UNICODE_STRING_SIMPLE(") ") + msg;
if(firstForTicket || firstForWhere) {
infoln(msg2);
} else {
logln(msg2);
}
return true;
}
/* convenience functions that include snprintf formatting */
void IntlTest::info(const char *fmt, ...)
{
char buffer[4000];
va_list ap;
va_start(ap, fmt);
/* snprintf it just to make sure that the information is valid */
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
info(UnicodeString(buffer, (const char *)nullptr));
}
void IntlTest::infoln(const char *fmt, ...)
{
char buffer[4000];
va_list ap;
va_start(ap, fmt);
/* snprintf it just to make sure that the information is valid */
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
infoln(UnicodeString(buffer, (const char *)nullptr));
}
void IntlTest::err(const char *fmt, ...)
{
char buffer[4000];
va_list ap;
va_start(ap, fmt);
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
err(UnicodeString(buffer, (const char *)nullptr));
}
void IntlTest::errln(const char *fmt, ...)
{
char buffer[4000];
va_list ap;
va_start(ap, fmt);
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
errln(UnicodeString(buffer, (const char *)nullptr));
}
void IntlTest::dataerrln(const char *fmt, ...)
{
char buffer[4000];
va_list ap;
va_start(ap, fmt);
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
dataerrln(UnicodeString(buffer, (const char *)nullptr));
}
void IntlTest::errcheckln(UErrorCode status, const char *fmt, ...)
{
char buffer[4000];
va_list ap;
va_start(ap, fmt);
vsnprintf(buffer, sizeof(buffer), fmt, ap);
va_end(ap);
if (status == U_FILE_ACCESS_ERROR || status == U_MISSING_RESOURCE_ERROR) {
dataerrln(UnicodeString(buffer, (const char *)nullptr));
} else {
errln(UnicodeString(buffer, (const char *)nullptr));
}
}
void IntlTest::printErrors()
{
IntlTest::LL_message(errorList, true);
}
UBool IntlTest::printKnownIssues()
{
if(knownList != nullptr) {
udbg_knownIssue_print(knownList);
udbg_knownIssue_close(knownList);
return true;
} else {
return false;
}
}
void IntlTest::LL_message(std::u16string_view message, UBool newline)
{
// Synchronize this function.
// All error messages generated by tests funnel through here.
// Multithreaded tests can concurrently generate errors, requiring synchronization
// to keep each message together.
static UMutex messageMutex;
Mutex lock(&messageMutex);
// string that starts with a LineFeed character and continues
// with spaces according to the current indentation
static const char16_t indentUChars[] = {
'\n',
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32
};
U_ASSERT(1 + LL_indentlevel <= UPRV_LENGTHOF(indentUChars));
UnicodeString indent(false, indentUChars, 1 + LL_indentlevel);
char buffer[30000];
int32_t length;
// stream out the indentation string first if necessary
length = indent.extract(1, indent.length(), buffer, sizeof(buffer));
if (length > 0) {
fwrite(buffer, sizeof(*buffer), length, static_cast<FILE*>(testoutfp));
}
// replace each LineFeed by the indentation string
UnicodeString us(message);
us.findAndReplace(UnicodeString(static_cast<char16_t>('\n')), indent);
// stream out the message
length = us.extract(0, us.length(), buffer, sizeof(buffer));
if (length > 0) {
length = length > 30000 ? 30000 : length;
fwrite(buffer, sizeof(*buffer), length, static_cast<FILE*>(testoutfp));
}
if (newline) {
char newLine = '\n';
fwrite(&newLine, sizeof(newLine), 1, static_cast<FILE*>(testoutfp));
}
// A newline usually flushes the buffer, but
// flush the message just in case of a core dump.
fflush(static_cast<FILE*>(testoutfp));
}
/**
* Print a usage message for this test class.
*/
void IntlTest::usage()
{
UBool save_verbose = setVerbose( true );
logln("Test names:");
logln("-----------");
int32_t index = 0;
const char* name = nullptr;
do{
this->runIndexedTest( index, false, name );
if (!name) break;
logln(name);
index++;
}while (name && (name[0] != 0));
setVerbose( save_verbose );
}
// memory leak reporting software will be able to take advantage of the testsuite
// being run a second time local to a specific method in order to report only actual leaks
UBool
IntlTest::run_phase2( char* name, char* par ) // supports reporting memory leaks
{
UnicodeString* strLeak = new UnicodeString("forced leak"); // for verifying purify filter
strLeak->append(" for verifying purify filter");
return this->runTest( name, par );
}
#if UCONFIG_NO_LEGACY_CONVERSION
# define TRY_CNV_1 "iso-8859-1"
# define TRY_CNV_2 "ibm-1208"
#else
# define TRY_CNV_1 "iso-8859-7"
# define TRY_CNV_2 "sjis"
#endif
#ifdef UNISTR_COUNT_FINAL_STRING_LENGTHS
U_CAPI void unistr_printLengths();
#endif
int
main(int argc, char* argv[])
{
UBool syntax = false;
UBool all = false;
UBool verbose = false;
UBool no_err_msg = false;
UBool no_time = false;
UBool quick = true;
UBool name = false;
UBool leaks = false;
UBool utf8 = false;
const char *summary_file = nullptr;
UBool warnOnMissingData = false;
UBool writeGoldenData = false;
UBool defaultDataFound = false;
int32_t threadCount = 12;
UErrorCode errorCode = U_ZERO_ERROR;
UConverter *cnv = nullptr;
const char *warnOrErr = "Failure";
UDate startTime, endTime;
int32_t diffTime;
const char *props[IntlTest::kMaxProps];
int32_t nProps = 0;
U_MAIN_INIT_ARGS(argc, argv);
startTime = uprv_getRawUTCtime();
for (int i = 1; i < argc; ++i) {
if (argv[i][0] == '-') {
const char* str = argv[i] + 1;
if (strcmp("verbose", str) == 0 ||
strcmp("v", str) == 0)
verbose = true;
else if (strcmp("noerrormsg", str) == 0 ||
strcmp("n", str) == 0)
no_err_msg = true;
else if (strcmp("exhaustive", str) == 0 ||
strcmp("e", str) == 0)
quick = false;
else if (strcmp("all", str) == 0 ||
strcmp("a", str) == 0)
all = true;
else if (strcmp("utf-8", str) == 0 ||
strcmp("u", str) == 0)
utf8 = true;
else if (strcmp("noknownissues", str) == 0 ||
strcmp("K", str) == 0)
noKnownIssues = true;
else if (strcmp("leaks", str) == 0 ||
strcmp("l", str) == 0)
leaks = true;
else if (strcmp("notime", str) == 0 ||
strcmp("T", str) == 0)
no_time = true;
else if (strcmp("goldens", str) == 0 ||
strcmp("G", str) == 0)
writeGoldenData = true;
else if (strncmp("E", str, 1) == 0)
summary_file = str+1;
else if (strcmp("x", str)==0) {
if(++i>=argc) {
printf("* Error: '-x' option requires an argument. usage: '-x outfile.xml'.\n");
syntax = true;
}
if(ctest_xml_setFileName(argv[i])) { /* set the name */
return 1; /* error */
}
} else if (strcmp("w", str) == 0) {
warnOnMissingData = true;
warnOrErr = "WARNING";
}
else if (strncmp("threads:", str, 8) == 0) {
threadCount = atoi(str + 8);
}
else if (strncmp("prop:", str, 5) == 0) {
if (nProps < IntlTest::kMaxProps) {
props[nProps] = str + 5;
}
nProps++;
}
else {
syntax = true;
}
}else{
name = true;
}
}
if (!all && !name) {
all = true;
} else if (all && name) {
syntax = true;
}
if (syntax) {
fprintf(stdout,
"### Syntax:\n"
"### IntlTest [-option1 -option2 ...] [testname1 testname2 ...] \n"
"### \n"
"### Options are: verbose (v), all (a), noerrormsg (n), \n"
"### exhaustive (e), leaks (l), -x xmlfile.xml, prop:<property>=<value>, \n"
"### notime (T), \n"
"### threads:<threadCount>\n"
"### (The default thread count is 12.),\n"
"### (Specify either -all (shortcut -a) or a test name). \n"
"### -all will run all of the tests.\n"
"### \n"
"### To get a list of the test names type: intltest LIST \n"
"### To run just the utility tests type: intltest utility \n"
"### \n"
"### Test names can be nested using slashes (\"testA/subtest1\") \n"
"### For example to list the utility tests type: intltest utility/LIST \n"
"### To run just the Locale test type: intltest utility/LocaleTest \n"
"### \n"
"### A parameter can be specified for a test by appending '@' and the value \n"
"### to the testname. \n\n");
return 1;
}
if (nProps > IntlTest::kMaxProps) {
fprintf(stdout, "### Too many properties. Exiting.\n");
}
MajorTestLevel major;
major.setVerbose( verbose );
major.setNoErrMsg( no_err_msg );
major.setQuick( quick );
major.setLeaks( leaks );
major.setThreadCount( threadCount );
major.setWarnOnMissingData( warnOnMissingData );
major.setWriteGoldenData( writeGoldenData );
major.setNotime (no_time);
for (int32_t i = 0; i < nProps; i++) {
major.setProperty(props[i]);
}
fprintf(stdout, "-----------------------------------------------\n");
fprintf(stdout, " IntlTest (C++) Test Suite for \n");
fprintf(stdout, " International Components for Unicode %s\n", U_ICU_VERSION);
{
const char *charsetFamily = "Unknown";
int32_t voidSize = static_cast<int32_t>(sizeof(void*));
int32_t bits = voidSize * 8;
if(U_CHARSET_FAMILY==U_ASCII_FAMILY) {
charsetFamily="ASCII";
} else if(U_CHARSET_FAMILY==U_EBCDIC_FAMILY) {
charsetFamily="EBCDIC";
}
fprintf(stdout,
" Bits: %d, Byte order: %s, Chars: %s\n",
bits, U_IS_BIG_ENDIAN?"Big endian":"Little endian",
charsetFamily);
}
fprintf(stdout, "-----------------------------------------------\n");
fprintf(stdout, " Options: \n");
fprintf(stdout, " all (a) : %s\n", (all? "On" : "Off"));
fprintf(stdout, " Verbose (v) : %s\n", (verbose? "On" : "Off"));
fprintf(stdout, " No error messages (n) : %s\n", (no_err_msg? "On" : "Off"));
fprintf(stdout, " Exhaustive (e) : %s\n", (!quick? "On" : "Off"));
fprintf(stdout, " Leaks (l) : %s\n", (leaks? "On" : "Off"));
fprintf(stdout, " utf-8 (u) : %s\n", (utf8? "On" : "Off"));
fprintf(stdout, " notime (T) : %s\n", (no_time? "On" : "Off"));
fprintf(stdout, " noknownissues (K) : %s\n", (noKnownIssues? "On" : "Off"));
fprintf(stdout, " Warn on missing data (w) : %s\n", (warnOnMissingData? "On" : "Off"));
fprintf(stdout, " Write golden data (G) : %s\n", (writeGoldenData? "On" : "Off"));
fprintf(stdout, " Threads : %d\n", threadCount);
for (int32_t i = 0; i < nProps; i++) {
fprintf(stdout, " Custom property (prop:) : %s\n", props[i]);
}
fprintf(stdout, "-----------------------------------------------\n");
if(utf8) {
ucnv_setDefaultName("utf-8");
}
/* Check whether ICU will initialize without forcing the build data directory into
* the ICU_DATA path. Success here means either the data dll contains data, or that
* this test program was run with ICU_DATA set externally. Failure of this check
* is normal when ICU data is not packaged into a shared library.
*
* Whether or not this test succeeds, we want to cleanup and reinitialize
* with a data path so that data loading from individual files can be tested.
*/
u_init(&errorCode);
if (U_FAILURE(errorCode)) {
fprintf(stderr,
"#### Note: ICU Init without build-specific setDataDirectory() failed.\n");
defaultDataFound = false;
}
else {
defaultDataFound = true;
}
u_cleanup();
if(utf8) {
ucnv_setDefaultName("utf-8");
}
errorCode = U_ZERO_ERROR;
/* Initialize ICU */
if (!defaultDataFound) {
IntlTest::setICU_DATA(); // Must set data directory before u_init() is called.
}
u_init(&errorCode);
if (U_FAILURE(errorCode)) {
fprintf(stderr,
"#### ERROR! %s: u_init() failed with status = \"%s\".\n"
"*** Check the ICU_DATA environment variable and \n"
"*** check that the data files are present.\n", argv[0], u_errorName(errorCode));
if(warnOnMissingData == 0) {
fprintf(stderr, "*** Exiting. Use the '-w' option if data files were\n*** purposely removed, to continue test anyway.\n");
u_cleanup();
return 1;
}
}
// initial check for the default converter
errorCode = U_ZERO_ERROR;
cnv = ucnv_open(nullptr, &errorCode);
if (cnv != nullptr) {
// ok
ucnv_close(cnv);
} else {
fprintf(stdout,
"*** %s! The default converter [%s] cannot be opened.\n"
"*** Check the ICU_DATA environment variable and\n"
"*** check that the data files are present.\n",
warnOrErr, ucnv_getDefaultName());
if(!warnOnMissingData) {
fprintf(stdout, "*** Exiting. Use the '-w' option if data files were\n*** purposely removed, to continue test anyway.\n");
return 1;
}
}
// try more data
cnv = ucnv_open(TRY_CNV_2, &errorCode);
if (cnv != nullptr) {
// ok
ucnv_close(cnv);
} else {
fprintf(stdout,
"*** %s! The converter for " TRY_CNV_2 " cannot be opened.\n"
"*** Check the ICU_DATA environment variable and \n"
"*** check that the data files are present.\n", warnOrErr);
if(!warnOnMissingData) {
fprintf(stdout, "*** Exiting. Use the '-w' option if data files were\n*** purposely removed, to continue test anyway.\n");
return 1;
}
}
UResourceBundle *rb = ures_open(nullptr, "en", &errorCode);
ures_close(rb);
if(U_FAILURE(errorCode)) {
fprintf(stdout,
"*** %s! The \"en\" locale resource bundle cannot be opened.\n"
"*** Check the ICU_DATA environment variable and \n"
"*** check that the data files are present.\n", warnOrErr);
if(!warnOnMissingData) {
fprintf(stdout, "*** Exiting. Use the '-w' option if data files were\n*** purposely removed, to continue test anyway.\n");
return 1;
}
}
Locale originalLocale; // Save the default locale for comparison later on.
if(ctest_xml_init("intltest"))
return 1;
/* TODO: Add option to call u_cleanup and rerun tests. */
if (all) {
major.runTest();
if (leaks) {
major.run_phase2( nullptr, nullptr );
}
}else{
for (int i = 1; i < argc; ++i) {
if (argv[i][0] != '-') {
char* name = argv[i];
fprintf(stdout, "\n=== Handling test: %s: ===\n", name);
char baseName[1024];
snprintf(baseName, sizeof(baseName), "/%s/", name);
char* parameter = strchr( name, '@' );
if (parameter) {
*parameter = 0;
parameter += 1;
}
execCount = 0;
UBool res = major.runTest( name, parameter, baseName );
if (leaks && res) {
major.run_phase2( name, parameter );
}
if (!res || (execCount <= 0)) {
fprintf(stdout, "\n---ERROR: Test doesn't exist: %s!\n", name);
}
} else if(!strcmp(argv[i],"-x")) {
i++;
}
}
}
#if !UCONFIG_NO_FORMATTING
CalendarTimeZoneTest::cleanup();
#endif
free(_testDataPath);
_testDataPath = nullptr;
Locale lastDefaultLocale;
if (originalLocale != lastDefaultLocale) {
major.errln("FAILURE: A test changed the default locale without resetting it.");
}
fprintf(stdout, "\n--------------------------------------\n");
if( major.printKnownIssues() ) {
fprintf(stdout, " To run suppressed tests, use the -K option. \n");
}
if (major.getErrors() == 0) {
/* Call it twice to make sure that the defaults were reset. */
/* Call it before the OK message to verify proper cleanup. */
u_cleanup();
u_cleanup();
fprintf(stdout, "OK: All tests passed without error.\n");
if (major.getDataErrors() != 0) {
fprintf(stdout, "\t*WARNING* some data-loading errors were ignored by the -w option.\n");
}
}else{
fprintf(stdout, "Errors in total: %ld.\n", static_cast<long>(major.getErrors()));
major.printErrors();
if(summary_file != nullptr) {
FILE *summf = fopen(summary_file, "w");
if( summf != nullptr) {
char buf[10000];
int32_t length = errorList.extract(0, errorList.length(), buf, sizeof(buf));
fwrite(buf, sizeof(*buf), length, summf);
fclose(summf);
}
}
if (major.getDataErrors() != 0) {
fprintf(stdout, "\t*Note* some errors are data-loading related. If the data used is not the \n"
"\tstock ICU data (i.e some have been added or removed), consider using\n"
"\tthe '-w' option to turn these errors into warnings.\n");
}
/* Call afterwards to display errors. */
u_cleanup();
}
#ifdef UNISTR_COUNT_FINAL_STRING_LENGTHS
unistr_printLengths();
#endif
fprintf(stdout, "--------------------------------------\n");
if (execCount <= 0) {
fprintf(stdout, "***** Not all called tests actually exist! *****\n");
}
if(!no_time) {
endTime = uprv_getRawUTCtime();
diffTime = static_cast<int32_t>(endTime - startTime);
printf("Elapsed Time: %02d:%02d:%02d.%03d\n",
(diffTime % U_MILLIS_PER_DAY) / U_MILLIS_PER_HOUR,
(diffTime % U_MILLIS_PER_HOUR) / U_MILLIS_PER_MINUTE,
(diffTime % U_MILLIS_PER_MINUTE) / U_MILLIS_PER_SECOND,
diffTime % U_MILLIS_PER_SECOND);
}
if(ctest_xml_fini())
return 1;
return major.getErrors();
}
const char* IntlTest::loadTestData(UErrorCode& err){
if ( _testDataPath == nullptr){
const char* directory=nullptr;
UResourceBundle* test =nullptr;
char* tdpath=nullptr;
const char* tdrelativepath;
#if defined (U_TOPBUILDDIR)
tdrelativepath = "test" U_FILE_SEP_STRING "testdata" U_FILE_SEP_STRING "out" U_FILE_SEP_STRING;
directory = U_TOPBUILDDIR;
#else
tdrelativepath = ".." U_FILE_SEP_STRING "test" U_FILE_SEP_STRING "testdata" U_FILE_SEP_STRING "out" U_FILE_SEP_STRING;
directory = pathToDataDirectory();
#endif
tdpath = static_cast<char*>(malloc(sizeof(char) * ((strlen(directory) * strlen(tdrelativepath)) + 100)));
if (tdpath == nullptr) {
err = U_MEMORY_ALLOCATION_ERROR;
it_dataerrln(UnicodeString("Could not allocate memory for _testDataPath ") + u_errorName(err));
return "";
}
/* u_getDataDirectory shoul return \source\data ... set the
* directory to ..\source\data\..\test\testdata\out\testdata
*/
strcpy(tdpath, directory);
strcat(tdpath, tdrelativepath);
strcat(tdpath,"testdata");
test=ures_open(tdpath, "testtypes", &err);
if (U_FAILURE(err)) {
err = U_FILE_ACCESS_ERROR;
it_dataerrln(UnicodeString("Could not load testtypes.res in testdata bundle with path ") + tdpath + UnicodeString(" - ") + u_errorName(err));
return "";
}
ures_close(test);
_testDataPath = tdpath;
return _testDataPath;
}
return _testDataPath;
}
const char* IntlTest::getTestDataPath(UErrorCode& err) {
return loadTestData(err);
}
/**
* Returns the path to icu/source/test/testdata/
* Note: this function is parallel with C loadSourceTestData in cintltst.c
*/
const char *IntlTest::getSourceTestData(UErrorCode& /*err*/) {
const char *srcDataDir = nullptr;
#ifdef U_TOPSRCDIR
srcDataDir = U_TOPSRCDIR U_FILE_SEP_STRING"test" U_FILE_SEP_STRING "testdata" U_FILE_SEP_STRING;
#else
srcDataDir = ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING "test" U_FILE_SEP_STRING "testdata" U_FILE_SEP_STRING;
FILE *f = fopen(".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING "test" U_FILE_SEP_STRING "testdata" U_FILE_SEP_STRING "rbbitst.txt", "r");
if (f) {
/* We're in icu/source/test/intltest/ */
fclose(f);
}
else {
/* We're in icu/source/test/intltest/Platform/(Debug|Release) */
srcDataDir = ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING
"test" U_FILE_SEP_STRING "testdata" U_FILE_SEP_STRING;
}
#endif
return srcDataDir;
}
static bool fileExists(const char* fileName) {
// Test for `srcDataDir` existing by checking for `srcDataDir`/message2/valid-tests.json
U_ASSERT(fileName != nullptr);
FILE *f = fopen(fileName, "r");
if (f) {
fclose(f);
return true;
}
return false;
}
/**
* Returns the path to icu/testdata/
*/
const char *IntlTest::getSharedTestData(UErrorCode& err) {
#define SOURCE_TARBALL_TOP U_TOPSRCDIR U_FILE_SEP_STRING ".." U_FILE_SEP_STRING
#define REPO_TOP SOURCE_TARBALL_TOP ".." U_FILE_SEP_STRING
#define FILE_NAME U_FILE_SEP_STRING "message2" U_FILE_SEP_STRING "valid-tests.json"
const char *srcDataDir = nullptr;
const char *testFile = nullptr;
if (U_SUCCESS(err)) {
#ifdef U_TOPSRCDIR
// Try U_TOPSRCDIR/../testdata (source tarball)
srcDataDir = SOURCE_TARBALL_TOP "testdata" U_FILE_SEP_STRING;
testFile = SOURCE_TARBALL_TOP "testdata" FILE_NAME;
if (!fileExists(testFile)) {
// If that doesn't exist, try U_TOPSRCDIR/../../testdata (in-repo)
srcDataDir = REPO_TOP "testdata" U_FILE_SEP_STRING;
testFile = REPO_TOP "testdata" FILE_NAME;
if (!fileExists(testFile)) {
// If neither exists, return null
err = U_FILE_ACCESS_ERROR;
srcDataDir = nullptr;
}
}
#else
// Try ../../../../testdata (if we're in icu/source/test/intltest)
// and ../../../../../../testdata (if we're in icu/source/test/intltest/Platform/(Debug|Release)
#define TOP ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING
#define TOP_TOP ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING TOP
srcDataDir = TOP "testdata" U_FILE_SEP_STRING;
testFile = TOP "testdata" FILE_NAME;
if (!fileExists(testFile)) {
srcDataDir = TOP_TOP "testdata" U_FILE_SEP_STRING;
testFile = TOP_TOP "testdata" FILE_NAME;
if (!fileExists(testFile)) {
err = U_FILE_ACCESS_ERROR;
srcDataDir = nullptr;
}
}
#endif
}
return srcDataDir;
}
char *IntlTest::getUnidataPath(char path[]) {
const int kUnicodeDataTxtLength = 15; // strlen("UnicodeData.txt")
// Look inside ICU_DATA first.
strcpy(path, pathToDataDirectory());
strcat(path, "unidata" U_FILE_SEP_STRING "UnicodeData.txt");
FILE *f = fopen(path, "r");
if(f != nullptr) {
fclose(f);
*(strchr(path, 0) - kUnicodeDataTxtLength) = 0; // Remove the basename.
return path;
}
// As a fallback, try to guess where the source data was located
// at the time ICU was built, and look there.
# ifdef U_TOPSRCDIR
strcpy(path, U_TOPSRCDIR U_FILE_SEP_STRING "data");
# else
UErrorCode errorCode = U_ZERO_ERROR;
const char *testDataPath = loadTestData(errorCode);
if(U_FAILURE(errorCode)) {
it_errln(UnicodeString(
"unable to find path to source/data/unidata/ and loadTestData() failed: ") +
u_errorName(errorCode));
return nullptr;
}
strcpy(path, testDataPath);
strcat(path, U_FILE_SEP_STRING ".." U_FILE_SEP_STRING ".."
U_FILE_SEP_STRING ".." U_FILE_SEP_STRING ".."
U_FILE_SEP_STRING "data");
# endif
strcat(path, U_FILE_SEP_STRING);
strcat(path, "unidata" U_FILE_SEP_STRING "UnicodeData.txt");
f = fopen(path, "r");
if(f != nullptr) {
fclose(f);
*(strchr(path, 0) - kUnicodeDataTxtLength) = 0; // Remove the basename.
return path;
}
return nullptr;
}
const char* IntlTest::fgDataDir = nullptr;
/* returns the path to icu/source/data */
const char * IntlTest::pathToDataDirectory()
{
if(fgDataDir != nullptr) {
return fgDataDir;
}
/* U_TOPSRCDIR is set by the makefiles on UNIXes when building cintltst and intltst
// to point to the top of the build hierarchy, which may or
// may not be the same as the source directory, depending on
// the configure options used. At any rate,
// set the data path to the built data from this directory.
// The value is complete with quotes, so it can be used
// as-is as a string constant.
*/
#if defined (U_TOPSRCDIR)
{
fgDataDir = U_TOPSRCDIR U_FILE_SEP_STRING "data" U_FILE_SEP_STRING;
}
#else
/* On Windows, the file name obtained from __FILE__ includes a full path.
* This file is "wherever\icu\source\test\cintltst\cintltst.c"
* Change to "wherever\icu\source\data"
*/
{
static char p[sizeof(__FILE__) + 10];
char *pBackSlash;
int i;
strcpy(p, __FILE__);
/* We want to back over three '\' chars. */
/* Only Windows should end up here, so looking for '\' is safe. */
for (i=1; i<=3; i++) {
pBackSlash = strrchr(p, U_FILE_SEP_CHAR);
if (pBackSlash != nullptr) {
*pBackSlash = 0; /* Truncate the string at the '\' */
}
}
if (pBackSlash != nullptr) {
/* We found and truncated three names from the path.
* Now append "source\data" and set the environment
*/
strcpy(pBackSlash, U_FILE_SEP_STRING "data" U_FILE_SEP_STRING );
fgDataDir = p;
}
else {
/* __FILE__ on MSVC7 does not contain the directory */
FILE *file = fopen(".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING "data" U_FILE_SEP_STRING "Makefile.in", "r");
if (file) {
fclose(file);
fgDataDir = ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING "data" U_FILE_SEP_STRING;
}
else {
fgDataDir = ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING ".." U_FILE_SEP_STRING "data" U_FILE_SEP_STRING;
}
}
}
#endif
return fgDataDir;
}
/*
* This is a variant of cintltst/ccolltst.c:CharsToUChars().
* It converts an invariant-character string into a UnicodeString, with
* unescaping \u sequences.
*/
UnicodeString CharsToUnicodeString(const char* chars){
return UnicodeString(chars, -1, US_INV).unescape();
}
UnicodeString ctou(const char* chars) {
return CharsToUnicodeString(chars);
}
#define RAND_M (714025)
#define RAND_IA (1366)
#define RAND_IC (150889)
static int32_t RAND_SEED;
/**
* Returns a uniform random value x, with 0.0 <= x < 1.0. Use
* with care: Does not return all possible values; returns one of
* 714,025 values, uniformly spaced. However, the period is
* effectively infinite. See: Numerical Recipes, section 7.1.
*
* @param seedp pointer to seed. Set *seedp to any negative value
* to restart the sequence.
*/
float IntlTest::random(int32_t* seedp) {
static int32_t iy, ir[98];
static UBool first=true;
int32_t j;
if (*seedp < 0 || first) {
first = false;
if ((*seedp=(RAND_IC-(*seedp)) % RAND_M) < 0) *seedp = -(*seedp);
for (j=1;j<=97;++j) {
*seedp=(RAND_IA*(*seedp)+RAND_IC) % RAND_M;
ir[j]=(*seedp);
}
*seedp=(RAND_IA*(*seedp)+RAND_IC) % RAND_M;
iy=(*seedp);
}
j = static_cast<int32_t>(1 + 97.0 * iy / RAND_M);
U_ASSERT(j>=1 && j<=97);
iy=ir[j];
*seedp=(RAND_IA*(*seedp)+RAND_IC) % RAND_M;
ir[j]=(*seedp);
return static_cast<float>(iy) / RAND_M;
}
/**
* Convenience method using a global seed.
*/
float IntlTest::random() {
return random(&RAND_SEED);
}
/*
* Integer random number class implementation.
* Similar to C++ std::minstd_rand, with the same algorithm & constants.
*/
IntlTest::icu_rand::icu_rand(uint32_t seed) {
seed = seed % 2147483647UL;
if (seed == 0) {
seed = 1;
}
fLast = seed;
}
IntlTest::icu_rand::~icu_rand() {}
void IntlTest::icu_rand::seed(uint32_t seed) {
if (seed == 0) {
seed = 1;
}
fLast = seed;
}
uint32_t IntlTest::icu_rand::operator() () {
fLast = (static_cast<uint64_t>(fLast) * 48271UL) % 2147483647UL;
return fLast;
}
uint32_t IntlTest::icu_rand::getSeed() {
return fLast;
}
static inline char16_t toHex(int32_t i) {
return static_cast<char16_t>(i + (i < 10 ? 0x30 : (0x41 - 10)));
}
static UnicodeString& escape(std::u16string_view s, UnicodeString& result) {
for (int32_t i=0; i<static_cast<int32_t>(s.length()); ++i) {
char16_t c = s[i];
if (c <= static_cast<char16_t>(0x7F)) {
result += c;
} else {
result += static_cast<char16_t>(0x5c);
result += static_cast<char16_t>(0x75);
result += toHex((c >> 12) & 0xF);
result += toHex((c >> 8) & 0xF);
result += toHex((c >> 4) & 0xF);
result += toHex( c & 0xF);
}
}
return result;
}
#define VERBOSE_ASSERTIONS
UBool IntlTest::assertTrue(const char* message, UBool condition, UBool quiet, UBool possibleDataError, const char *file, int line) {
if (file != nullptr) {
if (!condition) {
if (possibleDataError) {
dataerrln("%s:%d: FAIL: assertTrue() failed: %s", file, line, message);
} else {
errln("%s:%d: FAIL: assertTrue() failed: %s", file, line, message);
}
} else if (!quiet) {
logln("%s:%d: Ok: %s", file, line, message);
}
} else {
if (!condition) {
if (possibleDataError) {
dataerrln("FAIL: assertTrue() failed: %s", message);
} else {
errln("FAIL: assertTrue() failed: %s", message);
}
} else if (!quiet) {
logln("Ok: %s", message);
}
}
return condition;
}
UBool IntlTest::assertFalse(const char* message, UBool condition, UBool quiet, UBool possibleDataError) {
if (condition) {
if (possibleDataError) {
dataerrln("FAIL: assertFalse() failed: %s", message);
} else {
errln("FAIL: assertFalse() failed: %s", message);
}
} else if (!quiet) {
logln("Ok: %s", message);
}
return !condition;
}
UBool IntlTest::assertSuccess(const char* message, UErrorCode ec, UBool possibleDataError, const char *file, int line) {
if( file==nullptr ) {
file = ""; // prevent failure if no file given
}
if (U_FAILURE(ec)) {
if (possibleDataError) {
dataerrln("FAIL: %s:%d: %s (%s)", file, line, message, u_errorName(ec));
} else {
errcheckln(ec, "FAIL: %s:%d: %s (%s)", file, line, message, u_errorName(ec));
}
return false;
} else {
logln("OK: %s:%d: %s - (%s)", file, line, message, u_errorName(ec));
}
return true;
}
UBool IntlTest::assertEquals(const char* message,
std::u16string_view expected,
std::u16string_view actual,
UBool possibleDataError) {
if (expected != actual) {
if (possibleDataError) {
dataerrln(UnicodeString("FAIL: ") + message + "; got " +
prettify(actual) +
"; expected " + prettify(expected));
} else {
errln(UnicodeString("FAIL: ") + message + "; got " +
prettify(actual) +
"; expected " + prettify(expected));
}
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + prettify(actual));
}
#endif
return true;
}
UBool IntlTest::assertEquals(const char* message,
const char* expected,
const char* actual) {
U_ASSERT(expected != nullptr);
U_ASSERT(actual != nullptr);
if (uprv_strcmp(expected, actual) != 0) {
errln(UnicodeString("FAIL: ") + message + "; got \"" +
actual +
"\"; expected \"" + expected + "\"");
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got \"" + actual + "\"");
}
#endif
return true;
}
UBool IntlTest::assertEquals(const char* message, const char* expected,
std::u16string_view actual, UBool possibleDataError) {
return assertEquals(
message,
UnicodeString(expected), actual,
possibleDataError);
}
UBool IntlTest::assertEquals(const char* message, std::u16string_view expected,
const char* actual, UBool possibleDataError) {
return assertEquals(
message,
expected, UnicodeString(actual),
possibleDataError);
}
bool IntlTest::assertSigned64Equals(const char *message, int64_t expected, int64_t actual) {
if (expected != actual) {
errln(UnicodeString("FAIL: ") + message + "; got " + actual + "; expected " + expected);
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + actual);
}
#endif
return true;
}
bool IntlTest::assertSigned32Equals(const char *message, int32_t expected, int32_t actual) {
if (expected != actual) {
errln(UnicodeString("FAIL: ") + message + "; got " + actual + "=0x" + toHex(actual) +
"; expected " + expected + "=0x" + toHex(expected));
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + actual + "=0x" + toHex(actual));
}
#endif
return true;
}
bool IntlTest::assertCodePointEquals(const char *message, char32_t expected, char32_t actual) {
if (expected != actual) {
errln(UnicodeString("FAIL: ") + message + "; got U+" + toHex(actual, actual <= 0xFFFF ? 4 : -1) +
" " + UnicodeString(static_cast<UChar32>(actual)) + "; expected U+" +
toHex(expected, expected <= 0xFFFF ? 4 : -1) + +" " +
UnicodeString(static_cast<UChar32>(expected)));
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got U+" + toHex(actual, actual <= 0xFFFF ? 4 : -1) +
" " + UnicodeString(static_cast<UChar32>(actual)));
}
#endif
return true;
}
UBool IntlTest::assertEquals(const char* message,
double expected,
double actual) {
bool bothNaN = std::isnan(expected) && std::isnan(actual);
if (expected != actual && !bothNaN) {
errln(UnicodeString("FAIL: ") + message + "; got " +
actual +
"; expected " + expected);
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + actual);
}
#endif
return true;
}
bool IntlTest::assertBooleanEquals(const char *message, int8_t expected, int8_t actual) {
if (expected != actual) {
errln(UnicodeString("FAIL: ") + message + "; got " + toString(actual) + "; expected " +
toString(expected));
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + toString(actual));
}
#endif
return true;
}
bool IntlTest::assertBooleanNotEquals(const char *message, int8_t expected, int8_t actual) {
if (expected == actual) {
errln(UnicodeString("FAIL: ") + message + "; got " + toString(actual) + "; expected != " +
toString(expected));
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + toString(actual));
}
#endif
return true;
}
UBool IntlTest::assertEquals(const char* message,
UErrorCode expected,
UErrorCode actual) {
if (expected != actual) {
errln(UnicodeString("FAIL: ") + message + "; got " +
u_errorName(actual) +
"; expected " + u_errorName(expected));
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + u_errorName(actual));
}
#endif
return true;
}
UBool IntlTest::assertEquals(const char* message,
const UnicodeSet& expected,
const UnicodeSet& actual) {
IcuTestErrorCode status(*this, "assertEqualsUniSet");
if (expected != actual) {
errln(UnicodeString("FAIL: ") + message + "; got " +
toString(actual, status) +
"; expected " + toString(expected, status));
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + toString(actual, status));
}
#endif
return true;
}
#if !UCONFIG_NO_FORMATTING
UBool IntlTest::assertEqualFormattables(const char* message,
const Formattable& expected,
const Formattable& actual,
UBool possibleDataError) {
if (expected != actual) {
if (possibleDataError) {
dataerrln(UnicodeString("FAIL: ") + message + "; got " +
toString(actual) +
"; expected " + toString(expected));
} else {
errln(UnicodeString("FAIL: ") + message + "; got " +
toString(actual) +
"; expected " + toString(expected));
}
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + toString(actual));
}
#endif
return true;
}
#endif
std::string vectorToString(const std::vector<std::string>& strings) {
std::string result = "{";
bool first = true;
for (auto element : strings) {
if (first) {
first = false;
} else {
result += ", ";
}
result += "\"";
result += element;
result += "\"";
}
result += "}";
return result;
}
UBool IntlTest::assertEquals(const char* message,
const std::vector<std::string>& expected,
const std::vector<std::string>& actual) {
if (expected != actual) {
std::string expectedAsString = vectorToString(expected);
std::string actualAsString = vectorToString(actual);
errln(UnicodeString("FAIL: ") + message +
"; got " + actualAsString.c_str() +
"; expected " + expectedAsString.c_str());
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + vectorToString(actual).c_str());
}
#endif
return true;
}
bool IntlTest::assertSigned64NotEquals(const char *message, int64_t expected, int64_t actual) {
if (expected == actual) {
errln(UnicodeString("FAIL: ") + message + "; got " + actual + "; expected != " + expected);
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + actual);
}
#endif
return true;
}
bool IntlTest::assertSigned32NotEquals(const char* message,
int32_t expectedNot,
int32_t actual) {
if (expectedNot == actual) {
errln(UnicodeString("FAIL: ") + message + "; got " + actual + "=0x" + toHex(actual) +
"; expected != " + expectedNot);
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + actual + "=0x" + toHex(actual) +
" != " + expectedNot);
}
#endif
return true;
}
bool IntlTest::assertCodePointNotEquals(const char *message, char32_t expected, char32_t actual) {
if (expected == actual) {
errln(UnicodeString("FAIL: ") + message + "; got U+" + toHex(actual, actual <= 0xFFFF ? 4 : -1) +
" " + UnicodeString(static_cast<UChar32>(actual)) + "; expected != U+" +
toHex(expected, expected <= 0xFFFF ? 4 : -1) + +" " +
UnicodeString(static_cast<UChar32>(expected)));
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got U+" + toHex(actual, actual <= 0xFFFF ? 4 : -1) +
" " + UnicodeString(static_cast<UChar32>(actual)));
}
#endif
return true;
}
UBool IntlTest::assertEqualsNear(const char* message,
double expected,
double actual,
double delta) {
bool bothNaN = std::isnan(expected) && std::isnan(actual);
bool bothPosInf = uprv_isPositiveInfinity(expected) && uprv_isPositiveInfinity(actual);
bool bothNegInf = uprv_isNegativeInfinity(expected) && uprv_isNegativeInfinity(actual);
if (bothPosInf || bothNegInf || bothNaN) {
// We don't care about delta in these cases
return true;
}
if (std::isnan(delta) || std::isinf(delta)) {
errln(UnicodeString("FAIL: ") + message + "; nonsensical delta " + delta +
" - delta may not be NaN or Inf. (Got " + actual + "; expected " + expected + ".)");
return false;
}
double difference = std::abs(expected - actual);
if (expected != actual && (difference > delta || std::isnan(difference))) {
errln(UnicodeString("FAIL: ") + message + "; got " + actual + "; expected " + expected +
"; acceptable delta " + delta);
return false;
}
#ifdef VERBOSE_ASSERTIONS
else {
logln(UnicodeString("Ok: ") + message + "; got " + actual);
}
#endif
return true;
}
static char ASSERT_BUF[256];
const char* IntlTest::extractToAssertBuf(std::u16string_view message) {
UnicodeString buf;
escape(message, buf);
buf.extract(0, 0x7FFFFFFF, ASSERT_BUF, sizeof(ASSERT_BUF) - 1, nullptr);
ASSERT_BUF[sizeof(ASSERT_BUF)-1] = 0;
return ASSERT_BUF;
}
UBool IntlTest::assertTrue(std::u16string_view message, UBool condition, UBool quiet, UBool possibleDataError) {
return assertTrue(extractToAssertBuf(message), condition, quiet, possibleDataError);
}
UBool IntlTest::assertFalse(std::u16string_view message, UBool condition, UBool quiet, UBool possibleDataError) {
return assertFalse(extractToAssertBuf(message), condition, quiet, possibleDataError);
}
UBool IntlTest::assertSuccess(std::u16string_view message, UErrorCode ec) {
return assertSuccess(extractToAssertBuf(message), ec);
}
UBool IntlTest::assertEquals(std::u16string_view message,
std::u16string_view expected,
std::u16string_view actual,
UBool possibleDataError) {
return assertEquals(extractToAssertBuf(message), expected, actual, possibleDataError);
}
UBool IntlTest::assertEquals(std::u16string_view message,
const char* expected,
const char* actual) {
return assertEquals(extractToAssertBuf(message), expected, actual);
}
UBool IntlTest::assertEquals(std::u16string_view message,
double expected,
double actual) {
return assertEquals(extractToAssertBuf(message), expected, actual);
}
UBool IntlTest::assertEquals(std::u16string_view message,
UErrorCode expected,
UErrorCode actual) {
return assertEquals(extractToAssertBuf(message), expected, actual);
}
UBool IntlTest::assertEquals(std::u16string_view message,
const UnicodeSet& expected,
const UnicodeSet& actual) {
return assertEquals(extractToAssertBuf(message), expected, actual);
}
UBool IntlTest::assertEquals(std::u16string_view message,
const std::vector<std::string>& expected,
const std::vector<std::string>& actual) {
return assertEquals(extractToAssertBuf(message), expected, actual);
}
UBool IntlTest::assertEqualsNear(std::u16string_view message,
double expected,
double actual,
double delta) {
return assertEqualsNear(extractToAssertBuf(message), expected, actual, delta);
}
UBool IntlTest::assertEquals(std::u16string_view message, const char* expected,
std::u16string_view actual, UBool possibleDataError) {
return assertEquals(message, UnicodeString(expected), actual, possibleDataError);
}
#if !UCONFIG_NO_FORMATTING
UBool IntlTest::assertEqualFormattables(std::u16string_view message,
const Formattable& expected,
const Formattable& actual) {
return assertEqualFormattables(extractToAssertBuf(message), expected, actual);
}
#endif
void IntlTest::setProperty(const char* propline) {
if (numProps < kMaxProps) {
proplines[numProps] = propline;
}
numProps++;
}
const char* IntlTest::getProperty(const char* prop) {
const char* val = nullptr;
for (int32_t i = 0; i < numProps; i++) {
int32_t plen = static_cast<int32_t>(uprv_strlen(prop));
if (static_cast<int32_t>(uprv_strlen(proplines[i])) > plen + 1
&& proplines[i][plen] == '='
&& uprv_strncmp(proplines[i], prop, plen) == 0) {
val = &(proplines[i][plen+1]);
break;
}
}
return val;
}
//-------------------------------------------------------------------------------
//
// ReadAndConvertFile Read a text data file, convert it to UChars, and
// return the data in one big char16_t * buffer, which the caller must delete.
//
// parameters:
// fileName: the name of the file, with no directory part. The test data directory
// is assumed.
// ulen an out parameter, receives the actual length (in UChars) of the file data.
// encoding The file encoding. If the file contains a BOM, that will override the encoding
// specified here. The BOM, if it exists, will be stripped from the returned data.
// Pass nullptr for the system default encoding.
// status
// returns:
// The file data, converted to char16_t.
// The caller must delete this when done with
// delete [] theBuffer;
//
//
//--------------------------------------------------------------------------------
char16_t *IntlTest::ReadAndConvertFile(const char *fileName, int &ulen, const char *encoding, UErrorCode &status) {
char16_t *retPtr = nullptr;
char *fileBuf = nullptr;
UConverter* conv = nullptr;
FILE *f = nullptr;
ulen = 0;
if (U_FAILURE(status)) {
return retPtr;
}
//
// Open the file.
//
f = fopen(fileName, "rb");
if (f == nullptr) {
dataerrln("Error opening test data file %s\n", fileName);
status = U_FILE_ACCESS_ERROR;
return nullptr;
}
//
// Read it in
//
int fileSize;
int amt_read;
fseek( f, 0, SEEK_END);
fileSize = ftell(f);
fileBuf = new char[fileSize];
fseek(f, 0, SEEK_SET);
amt_read = static_cast<int>(fread(fileBuf, 1, fileSize, f));
if (amt_read != fileSize || fileSize <= 0) {
errln("Error reading test data file.");
goto cleanUpAndReturn;
}
//
// Look for a Unicode Signature (BOM) on the data just read
//
int32_t signatureLength;
const char * fileBufC;
const char* bomEncoding;
fileBufC = fileBuf;
bomEncoding = ucnv_detectUnicodeSignature(
fileBuf, fileSize, &signatureLength, &status);
if(bomEncoding!=nullptr ){
fileBufC += signatureLength;
fileSize -= signatureLength;
encoding = bomEncoding;
}
//
// Open a converter to take the rule file to UTF-16
//
conv = ucnv_open(encoding, &status);
if (U_FAILURE(status)) {
goto cleanUpAndReturn;
}
//
// Convert the rules to char16_t.
// Preflight first to determine required buffer size.
//
ulen = ucnv_toUChars(conv,
nullptr, // dest,
0, // destCapacity,
fileBufC,
fileSize,
&status);
if (status == U_BUFFER_OVERFLOW_ERROR) {
// Buffer Overflow is expected from the preflight operation.
status = U_ZERO_ERROR;
retPtr = new char16_t[ulen+1];
ucnv_toUChars(conv,
retPtr, // dest,
ulen+1,
fileBufC,
fileSize,
&status);
}
cleanUpAndReturn:
fclose(f);
delete []fileBuf;
ucnv_close(conv);
if (U_FAILURE(status)) {
errln("ucnv_toUChars: ICU Error \"%s\"\n", u_errorName(status));
delete []retPtr;
retPtr = nullptr;
ulen = 0;
}
return retPtr;
}
#if !UCONFIG_NO_BREAK_ITERATION
UBool LSTMDataIsBuilt() {
// If we can find the LSTM data, the RBBI will use the LSTM engine.
// So we skip the test which depending on the dictionary data.
UErrorCode status = U_ZERO_ERROR;
DeleteLSTMData(CreateLSTMDataForScript(USCRIPT_THAI, status));
UBool thaiDataIsBuilt = U_SUCCESS(status);
status = U_ZERO_ERROR;
DeleteLSTMData(CreateLSTMDataForScript(USCRIPT_MYANMAR, status));
UBool burmeseDataIsBuilt = U_SUCCESS(status);
return thaiDataIsBuilt | burmeseDataIsBuilt;
}
UBool IntlTest::skipLSTMTest() {
return ! LSTMDataIsBuilt();
}
UBool IntlTest::skipDictionaryTest() {
return LSTMDataIsBuilt();
}
#endif /* #if !UCONFIG_NO_BREAK_ITERATION */
/*
* Hey, Emacs, please set the following:
*
* Local Variables:
* indent-tabs-mode: nil
* End:
*
*/
|