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 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/***********************************************************************
* Copyright (c) 1997-2016, International Business Machines Corporation
* and others. All Rights Reserved.
***********************************************************************/
#include "unicode/utypes.h"
#if !UCONFIG_NO_FORMATTING
#include "numrgts.h"
#include <cmath> // std::signbit
#include <float.h> // DBL_MIN, DBL_MAX
#include <stdio.h>
#include "unicode/dcfmtsym.h"
#include "unicode/decimfmt.h"
#include "unicode/locid.h"
#include "unicode/resbund.h"
#include "unicode/calendar.h"
#include "unicode/datefmt.h"
#include "unicode/ucurr.h"
#include "cmemory.h"
#include "cstr.h"
#include "putilimp.h"
#include "uassert.h"
class MyNumberFormatTest : public NumberFormat
{
public:
virtual UClassID getDynamicClassID() const override;
virtual UnicodeString& format( double number,
UnicodeString& toAppendTo,
FieldPositionIterator* posIter,
UErrorCode& status) const override
{
return NumberFormat::format(number, toAppendTo, posIter, status);
}
/* Just keep this here to make some of the compilers happy */
virtual UnicodeString& format(const Formattable& obj,
UnicodeString& toAppendTo,
FieldPosition& pos,
UErrorCode& status) const override
{
return NumberFormat::format(obj, toAppendTo, pos, status);
}
/* Just use one of the format functions */
virtual UnicodeString& format( double /* number */,
UnicodeString& toAppendTo,
FieldPosition& /* pos */) const override
{
toAppendTo = "";
return toAppendTo;
}
/*
public Number parse(String text, ParsePosition parsePosition)
{ return new Integer(0); }
*/
/* Just use one of the parse functions */
virtual void parse( const UnicodeString& /* text */,
Formattable& result,
ParsePosition& /* parsePosition */) const override
{
result.setLong(static_cast<int32_t>(0));
}
virtual void parse( const UnicodeString& text,
Formattable& result,
UErrorCode& status) const override
{
NumberFormat::parse(text, result, status);
}
virtual MyNumberFormatTest* clone() const override
{ return nullptr; }
virtual UnicodeString& format(int32_t,
UnicodeString& foo,
FieldPosition&) const override
{ return foo.remove(); }
virtual UnicodeString& format(int64_t,
UnicodeString& foo,
FieldPosition&) const override
{ return foo.remove(); }
virtual void applyPattern(const UnicodeString&, UParseError&, UErrorCode&){
}
};
int32_t gMyNumberFormatTestClassID;
UClassID MyNumberFormatTest::getDynamicClassID() const
{
return (UClassID)&gMyNumberFormatTestClassID;
}
// *****************************************************************************
// class NumberFormatRegressionTest
// *****************************************************************************
#define CASE(id,test) case id: name = #test; if (exec) { logln(#test "---"); logln((UnicodeString)""); test(); } break
void
NumberFormatRegressionTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ )
{
// if (exec) logln((UnicodeString)"TestSuite NumberFormatRegressionTest");
switch (index) {
CASE(0,Test4075713);
CASE(1,Test4074620);
CASE(2,Test4088161);
CASE(3,Test4087245);
CASE(4,Test4087535);
CASE(5,Test4088503);
CASE(6,Test4066646);
CASE(7,Test4059870);
CASE(8,Test4083018);
CASE(9,Test4071492);
CASE(10,Test4086575);
CASE(11,Test4068693);
CASE(12,Test4069754);
CASE(13,Test4087251);
CASE(14,Test4090489);
CASE(15,Test4090504);
CASE(16,Test4095713);
CASE(17,Test4092561);
CASE(18,Test4092480);
CASE(19,Test4087244);
CASE(20,Test4070798);
CASE(21,Test4071005);
CASE(22,Test4071014);
CASE(23,Test4071859);
CASE(24,Test4093610);
CASE(25,Test4098741);
CASE(26,Test4074454);
CASE(27,Test4099404);
CASE(28,Test4101481);
CASE(29,Test4052223);
CASE(30,Test4061302);
CASE(31,Test4062486);
CASE(32,Test4108738);
CASE(33,Test4106658);
CASE(34,Test4106662);
CASE(35,Test4114639);
CASE(36,Test4106664);
CASE(37,Test4106667);
CASE(38,Test4110936);
CASE(39,Test4122840);
CASE(40,Test4125885);
CASE(41,Test4134034);
CASE(42,Test4134300);
CASE(43,Test4140009);
CASE(44,Test4141750);
CASE(45,Test4145457);
CASE(46,Test4147295);
CASE(47,Test4147706);
CASE(48,Test4162198);
CASE(49,Test4162852);
CASE(50,Test4167494);
CASE(51,Test4170798);
CASE(52,Test4176114);
CASE(53,Test4179818);
CASE(54,Test4212072);
CASE(55,Test4216742);
CASE(56,Test4217661);
CASE(57,Test4161100);
CASE(58,Test4243011);
CASE(59,Test4243108);
CASE(60,TestJ691);
CASE(61,Test8199);
CASE(62,Test9109);
CASE(63,Test9780);
CASE(64,Test9677);
CASE(65,Test10361);
default: name = ""; break;
}
}
UBool
NumberFormatRegressionTest::failure(UErrorCode status, const UnicodeString& msg, const Locale& l, UBool possibleDataError)
{
if(U_FAILURE(status)) {
if (possibleDataError) {
dataerrln(UnicodeString("FAIL: ", "") + msg
+ UnicodeString(" failed, error ", "") + UnicodeString(u_errorName(status), "") + UnicodeString(l.getName(),""));
} else {
errcheckln(status, UnicodeString("FAIL: ", "") + msg
+ UnicodeString(" failed, error ", "") + UnicodeString(u_errorName(status), "") + UnicodeString(l.getName(),""));
}
return true;
}
return false;
}
UBool
NumberFormatRegressionTest::failure(UErrorCode status, const UnicodeString& msg, const char *l, UBool possibleDataError)
{
if(U_FAILURE(status)) {
if (possibleDataError) {
dataerrln(UnicodeString("FAIL: ", "") + msg
+ UnicodeString(" failed, error ", "") + UnicodeString(u_errorName(status), "") + UnicodeString(l, ""));
} else {
errcheckln(status, UnicodeString("FAIL: ", "") + msg
+ UnicodeString(" failed, error ", "") + UnicodeString(u_errorName(status), "") + UnicodeString(l, ""));
}
return true;
}
return false;
}
UBool
NumberFormatRegressionTest::failure(UErrorCode status, const UnicodeString& msg, UBool possibleDataError)
{
if(U_FAILURE(status)) {
if (possibleDataError) {
dataerrln(UnicodeString("FAIL: ", "") + msg
+ UnicodeString(" failed, error ", "") + UnicodeString(u_errorName(status), ""));
} else {
errcheckln(status, UnicodeString("FAIL: ", "") + msg
+ UnicodeString(" failed, error ", "") + UnicodeString(u_errorName(status), ""));
}
return true;
}
return false;
}
/**
* Convert Java-style strings with \u Unicode escapes into UnicodeString objects
*/
inline UnicodeString str(const char *input)
{
return CharsToUnicodeString(input);
}
/* @bug 4075713
* NumberFormat.equals comparing with null should always return false.
*/
// {sfb} kind of silly in C++, just checking for new success
void NumberFormatRegressionTest::Test4075713()
{
//try {
MyNumberFormatTest *tmp = new MyNumberFormatTest();
if(tmp != nullptr)
logln("NumberFormat.equals passed");
/*} catch (NullPointerException e) {
errln("(new MyNumberFormatTest()).equals(null) throws unexpected exception");
}*/
delete tmp;
}
/* @bug 4074620
* NumberFormat.equals comparing two obj equal even the setGroupingUsed
* flag is different.
*/
void NumberFormatRegressionTest::Test4074620()
{
MyNumberFormatTest *nf1 = new MyNumberFormatTest();
MyNumberFormatTest *nf2 = new MyNumberFormatTest();
nf1->setGroupingUsed(false);
nf2->setGroupingUsed(true);
if(nf1 == nf2)
errln("Test for bug 4074620 failed");
else
logln("Test for bug 4074620 passed.");
delete nf1;
delete nf2;
}
/* @bug 4088161
* DecimalFormat.format() incorrectly uses maxFractionDigits setting.
*/
void NumberFormatRegressionTest::Test4088161()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if (!failure(status, "new DecimalFormat", "")) {
double d = 100;
df->setMinimumFractionDigits(0);
df->setMaximumFractionDigits(16);
UnicodeString sBuf1;
FieldPosition fp1(FieldPosition::DONT_CARE);
logln(UnicodeString("d = ") + d);
logln(UnicodeString("maxFractionDigits = ") + df->getMaximumFractionDigits());
logln(" format(d) = '" + df->format(d, sBuf1, fp1) + "'");
df->setMaximumFractionDigits(17);
UnicodeString sBuf2;
FieldPosition fp2(FieldPosition::DONT_CARE);
logln(UnicodeString("maxFractionDigits = ") + df->getMaximumFractionDigits());
sBuf2 = df->format(d, sBuf2, fp2);
if(sBuf2 != "100")
errln(" format(d) = '" + sBuf2 + "'");
}
delete df;
}
/* @bug 4087245
* DecimalFormatSymbols should be cloned in the ctor DecimalFormat.
* DecimalFormat(String, DecimalFormatSymbols).
*/
void NumberFormatRegressionTest::Test4087245()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormatSymbols *symbols = new DecimalFormatSymbols(status);
failure(status, "new DecimalFormatSymbols", "");
// {sfb} One note about this test: if you pass in a pointer
// to the symbols, they are adopted and this test will fail,
// even though that is the correct behavior. To test the cloning
// of the symbols, it is necessary to pass in a reference to the symbols
DecimalFormat *df = new DecimalFormat("#,##0.0", *symbols, status);
failure(status, "new DecimalFormat with symbols", "");
int32_t n = 123;
UnicodeString buf1;
UnicodeString buf2;
FieldPosition pos(FieldPosition::DONT_CARE);
logln(UnicodeString("format(") + n + ") = " +
df->format(n, buf1, pos));
symbols->setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, UnicodeString(static_cast<char16_t>(0x70))); // change value of field
logln(UnicodeString("format(") + n + ") = " +
df->format(n, buf2, pos));
if(buf1 != buf2)
errln("Test for bug 4087245 failed");
delete df;
delete symbols;
}
/* @bug 4087535
* DecimalFormat.format() incorrectly formats 0.0
*/
void NumberFormatRegressionTest::Test4087535()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if (U_FAILURE(status)) {
dataerrln("Error creating DecimalFormat - %s", u_errorName(status));
return;
}
df->setMinimumIntegerDigits(0);
double n = 0;
UnicodeString buffer;
FieldPosition pos(FieldPosition::DONT_CARE);
buffer = df->format(n, buffer, pos);
if (buffer.length() == 0)
errln(/*n + */": '" + buffer + "'");
n = 0.1;
buffer = df->format(n, buffer, pos);
if (buffer.length() == 0)
errln(/*n + */": '" + buffer + "'");
delete df;
}
/* @bug 4088503
* DecimalFormat.format fails when groupingSize is set to 0.
*/
// {sfb} how do I tell if this worked? --> FieldPosition doesn't change ??
void NumberFormatRegressionTest::Test4088503()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if (U_FAILURE(status)) {
dataerrln("Error creating DecimalFormat - %s", u_errorName(status));
return;
}
df->setGroupingSize(0);
UnicodeString sBuf;
FieldPosition fp(FieldPosition::DONT_CARE);
//try {
logln(df->format(static_cast<int32_t>(123), sBuf, fp));
//if(fp == FieldPosition(FieldPosition::DONT_CARE))
// errln("Test for bug 4088503 failed.");
/*} catch (Exception foo) {
errln("Test for bug 4088503 failed.");
}*/
delete df;
}
/* @bug 4066646
* NumberFormat.getCurrencyInstance is wrong.
*/
void NumberFormatRegressionTest::Test4066646()
{
assignFloatValue(2.04f);
assignFloatValue(2.03f);
assignFloatValue(2.02f);
assignFloatValue(0.0f);
}
float
NumberFormatRegressionTest::assignFloatValue(float returnfloat)
{
logln(UnicodeString(" VALUE ") + returnfloat);
UErrorCode status = U_ZERO_ERROR;
NumberFormat *nfcommon = NumberFormat::createCurrencyInstance(Locale::getUS(), status);
if (failure(status, "NumberFormat::createCurrencyInstance", Locale::getUS(), true)){
delete nfcommon;
return returnfloat;
}
nfcommon->setGroupingUsed(false);
UnicodeString stringValue;
stringValue = nfcommon->format(returnfloat, stringValue);
logln(" DISPLAYVALUE " + stringValue);
Formattable result;
nfcommon->parse(stringValue, result, status);
failure(status, "nfcommon->parse", Locale::getUS());
float floatResult = static_cast<float>(result.getType() == Formattable::kDouble
? result.getDouble() : result.getLong());
if( uprv_fabs(floatResult - returnfloat) > 0.0001)
//String stringValue = nfcommon.format(returnfloat).substring(1);
//if (Float.valueOf(stringValue).floatValue() != returnfloat)
errln(UnicodeString("FAIL: expected ") + returnfloat + ", got " + floatResult + " (" + stringValue+")");
delete nfcommon;
return returnfloat;
} // End Of assignFloatValue()
/* @bug 4059870
* DecimalFormat throws exception when parsing "0"
*/
void NumberFormatRegressionTest::Test4059870()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *format = new DecimalFormat("00", status);
failure(status, "new Decimalformat", Locale::getUS());
//try {
Formattable result;
UnicodeString str;
format->parse(UnicodeString("0"), result, status);
failure(status, "format->parse", Locale::getUS());
/*}
catch (Exception e) {
errln("Test for bug 4059870 failed : " + e);
}*/
delete format;
}
/* @bug 4083018
* DecimalFormatSymbol.equals should always return false when
* comparing with null.
*/
// {sfb} this is silly in C++
void NumberFormatRegressionTest::Test4083018()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormatSymbols *dfs = new DecimalFormatSymbols(status);
failure(status, "new DecimalFormatSymbols", Locale::getUS());
//try {
if (dfs != nullptr)
logln("Test Passed!");
else
errln("Test for bug 4083018 failed");
/*} catch (Exception foo) {
errln("Test for bug 4083018 failed => Message : " + foo.getMessage());
}*/
delete dfs;
}
/* @bug 4071492
* DecimalFormat does not round up correctly.
*/
void NumberFormatRegressionTest::Test4071492()
{
double x = 0.00159999;
UErrorCode status = U_ZERO_ERROR;
NumberFormat *nf = NumberFormat::createInstance(status);
if (failure(status, "NumberFormat::createInstance", Locale::getUS(), true)) {
delete nf;
return;
}
nf->setMaximumFractionDigits(4);
UnicodeString out;
FieldPosition pos(FieldPosition::DONT_CARE);
out = nf->format(x, out, pos);
logln("0.00159999 formats with 4 fractional digits to " + out);
UnicodeString expected("0.0016");
if (out != expected)
errln("FAIL: Expected " + expected);
delete nf;
}
/* @bug 4086575
* A space as a group separator for localized pattern causes
* wrong format. WorkAround : use non-breaking space.
*/
void NumberFormatRegressionTest::Test4086575()
{
UErrorCode status = U_ZERO_ERROR;
NumberFormat *nf1 = NumberFormat::createInstance(Locale::getFrance(), status);
// TODO: There is not a good way to find out that the creation of this number format has
// failed. Major rewiring of format construction proposed.
if(U_FAILURE(status)) {
dataerrln("Something is wrong with French number format - it should not fallback. Exiting - %s", u_errorName(status));
delete nf1;
return;
}
failure(status, "NumberFormat::createInstance", Locale::getFrance());
// C++ workaround to make sure cast works
DecimalFormat *nf = dynamic_cast<DecimalFormat *>(nf1);
if(nf == nullptr) {
errln("NumberFormat::createInstance returned incorrect type.");
return;
}
UnicodeString temp;
logln("nf toPattern1: " + nf->toPattern(temp));
logln("nf toLocPattern1: " + nf->toLocalizedPattern(temp));
// No group separator
logln("...applyLocalizedPattern ###,00;(###,00) ");
nf->applyLocalizedPattern(UnicodeString("###,00;(###,00)"), status);
failure(status, "nf->applyLocalizedPattern", Locale::getFrance());
logln("nf toPattern2: " + nf->toPattern(temp));
logln("nf toLocPattern2: " + nf->toLocalizedPattern(temp));
FieldPosition pos(FieldPosition::DONT_CARE);
logln("nf: " + nf->format(static_cast<int32_t>(1234), temp, pos)); // 1234,00
logln("nf: " + nf->format(static_cast<int32_t>(-1234), temp, pos)); // (1234,00)
// Space as group separator
logln("...applyLocalizedPattern # ###,00;(# ###,00) ");
// nbsp = \u00a0
//nf->applyLocalizedPattern("#\u00a0###,00;(#\u00a0###,00)");
char16_t patChars[] = {
0x23, 0x202f, 0x23, 0x23, 0x23, 0x2c, 0x30, 0x30, 0x3b,
0x28, 0x23, 0x202f, 0x23, 0x23, 0x23, 0x2c, 0x30, 0x30, 0x29
};
UnicodeString pat(patChars, 19, 19);
nf->applyLocalizedPattern(pat, status);
failure(status, "nf->applyLocalizedPattern", Locale::getFrance());
logln("nf toPattern2: " + nf->toPattern(temp));
logln("nf toLocPattern2: " + nf->toLocalizedPattern(temp));
UnicodeString buffer;
buffer = nf->format(static_cast<int32_t>(1234), buffer, pos);
//if (buffer != UnicodeString("1\u00a0234,00"))
char16_t c[] = {
0x31, 0x202f, 0x32, 0x33, 0x34, 0x2c, 0x30, 0x30
};
UnicodeString cc(c, 8, 8);
if (buffer != cc)
errln("nf : " + buffer); // Expect 1 234,00
buffer.remove();
buffer = nf->format(static_cast<int32_t>(-1234), buffer, pos);
char16_t c1[] = {
0x28, 0x31, 0x202f, 0x32, 0x33, 0x34, 0x2c, 0x30, 0x30, 0x29
};
UnicodeString cc1(c1, 10, 10);
if (buffer != cc1)
errln("nf : " + buffer); // Expect (1 234,00)
// Erroneously prints:
// 1234,00 ,
// (1234,00 ,)
delete nf1;
}
/* @bug 4068693
* DecimalFormat.parse returns wrong value
*/
// {sfb} slightly converted into a round-trip test, since in C++
// there is no Double.toString()
void NumberFormatRegressionTest::Test4068693()
{
logln("----- Test Application -----");
ParsePosition pos(0);
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
Formattable d;
//Double d = (Double)df.parse("123.55456", pos=new ParsePosition(0));
df->parse(UnicodeString("123.55456"), d, pos);
//if (!d.toString().equals("123.55456")) {
UnicodeString dstr;
df->setMaximumFractionDigits(999);
df->setMaximumIntegerDigits(999);
FieldPosition fp(FieldPosition::DONT_CARE);
dstr = df->format(d.getDouble(), dstr, fp);
if (dstr != UnicodeString("123.55456")) {
errln(UnicodeString("Result -> ") + d.getDouble());
}
delete df;
}
/* @bug 4069754, 4067878
* null pointer thrown when accessing a deserialized DecimalFormat
* object.
*/
// {sfb} doesn't apply in C++
void NumberFormatRegressionTest::Test4069754()
{
/* try {
myformat it = new myformat();
logln(it.Now());
FileOutputStream ostream = new FileOutputStream("t.tmp");
ObjectOutputStream p = new ObjectOutputStream(ostream);
p.writeObject(it);
ostream.close();
logln("Saved ok.");
FileInputStream istream = new FileInputStream("t.tmp");
ObjectInputStream p2 = new ObjectInputStream(istream);
myformat it2 = (myformat)p2.readObject();
logln(it2.Now());
istream.close();
logln("Loaded ok.");
} catch (Exception foo) {
errln("Test for bug 4069754 or 4057878 failed => Exception: " + foo.getMessage());
}
*/}
/* @bug 4087251
* DecimalFormat.applyPattern(String) allows illegal patterns
*/
void NumberFormatRegressionTest::Test4087251()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
//try {
df->applyPattern(UnicodeString("#.#.#"), status);
if( ! U_FAILURE(status))
errln("df->applyPattern with illegal pattern didn't fail");
UnicodeString temp;
logln("toPattern() returns \"" + df->toPattern(temp) + "\"");
//errln("applyPattern(\"#.#.#\") doesn't throw IllegalArgumentException");
/*} catch (IllegalArgumentException e) {
logln("Caught Illegal Argument Error !");
}*/
// Second test; added 5/11/98 when reported to fail on 1.2b3
//try {
df->applyPattern("#0.0#0#0", status);
if( ! U_FAILURE(status))
errln("df->applyPattern with illegal pattern didn't fail");
logln("toPattern() returns \"" + df->toPattern(temp) + "\"");
//errln("applyPattern(\"#0.0#0#0\") doesn't throw IllegalArgumentException");
/*} catch (IllegalArgumentException e) {
logln("Ok - IllegalArgumentException for #0.0#0#0");
}*/
delete df;
}
/* @bug 4090489
* DecimalFormat.format() loses precision
*/
void NumberFormatRegressionTest::Test4090489()
{
// {sfb} snprintf doesn't correctly handle the double, so there is nothing
// that NumberFormat can do. For some reason, it does not format the last 1.
/* UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
failure(status, "new DecimalFormat");
df->setMinimumFractionDigits(10);
df->setMaximumFractionDigits(999);
df->setGroupingUsed(false);
double d = 1.000000000000001E7;
//BigDecimal bd = new BigDecimal(d);
UnicodeString sb;
FieldPosition fp(FieldPosition::DONT_CARE);
logln(UnicodeString("d = ") + d);
//logln("BigDecimal.toString(): " + bd.toString());
df->format(d, sb, fp);
if (sb != "10000000.0000000100") {
errln("DecimalFormat.format(): " + sb);
}
*/
}
/* @bug 4090504
* DecimalFormat.format() loses precision
*/
void NumberFormatRegressionTest::Test4090504()
{
double d = 1;
logln(UnicodeString("d = ") + d);
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
UnicodeString sb;
FieldPosition fp(FieldPosition::DONT_CARE);
//try {
for (int i = 17; i <= 20; i++) {
df->setMaximumFractionDigits(i);
//sb = new StringBuffer("");
fp.setField(0);
logln(UnicodeString(" getMaximumFractionDigits() = ") + i);
logln(UnicodeString(" formatted: ") + df->format(d, sb, fp));
}
/*} catch (Exception foo) {
errln("Bug 4090504 regression test failed. Message : " + foo.getMessage());
}*/
delete df;
}
/* @bug 4095713
* DecimalFormat.parse(String str, ParsePosition pp) loses precision
*/
void NumberFormatRegressionTest::Test4095713()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
UnicodeString str("0.1234");
double d1 = 0.1234;
//Double d1 = new Double(str);
//Double d2 = (Double) df.parse(str, new ParsePosition(0));
Formattable d2;
ParsePosition pp(0);
df->parse(str, d2, pp);
logln(UnicodeString("") + d1);
if (d2.getDouble() != d1)
errln(UnicodeString("Bug 4095713 test failed, new double value : ") + d2.getDouble());
delete df;
}
/* @bug 4092561
* DecimalFormat.parse() fails when multiplier is not set to 1
*/
// {sfb} not sure what to do with this one
void NumberFormatRegressionTest::Test4092561()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
// {sfb} going to cheat here and use snprintf ??
/*UnicodeString str = Long.toString(Long.MIN_VALUE);
logln("Long.MIN_VALUE : " + df.parse(str, new ParsePosition(0)).toString());
df.setMultiplier(100);
Number num = df.parse(str, new ParsePosition(0));
if (num.doubleValue() != -9.223372036854776E16)
errln("Bug 4092561 test failed when multiplier is set to not 1.");
*/
delete df;
}
/* @bug 4092480
* DecimalFormat: Negative format ignored.
*/
void NumberFormatRegressionTest::Test4092480()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *dfFoo = new DecimalFormat(UnicodeString("000"), status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete dfFoo;
return;
}
failure(status, "new DecimalFormat");
//try {
dfFoo->applyPattern("0000;-000", status);
failure(status, "dfFoo->applyPattern");
UnicodeString temp;
if (dfFoo->toPattern(temp) != UnicodeString("0000"))
errln("ERROR: dfFoo.toPattern : " + dfFoo->toPattern(temp));
FieldPosition pos(FieldPosition::DONT_CARE);
logln(dfFoo->format(static_cast<int32_t>(42), temp, pos));
logln(dfFoo->format(static_cast<int32_t>(-42), temp, pos));
dfFoo->applyPattern("000;-000", status);
failure(status, "dfFoo->applyPattern");
if (dfFoo->toPattern(temp) != UnicodeString("000"))
errln("ERROR: dfFoo.toPattern : " + dfFoo->toPattern(temp));
logln(dfFoo->format(static_cast<int32_t>(42), temp, pos));
logln(dfFoo->format(static_cast<int32_t>(-42), temp, pos));
dfFoo->applyPattern("000;-0000", status);
failure(status, "dfFoo->applyPattern");
if (dfFoo->toPattern(temp) != UnicodeString("000"))
errln("ERROR: dfFoo.toPattern : " + dfFoo->toPattern(temp));
logln(dfFoo->format(static_cast<int32_t>(42), temp, pos));
logln(dfFoo->format(static_cast<int32_t>(-42), temp, pos));
dfFoo->applyPattern("0000;-000", status);
failure(status, "dfFoo->applyPattern");
if (dfFoo->toPattern(temp) != UnicodeString("0000"))
errln("ERROR: dfFoo.toPattern : " + dfFoo->toPattern(temp));
logln(dfFoo->format(static_cast<int32_t>(42), temp, pos));
logln(dfFoo->format(static_cast<int32_t>(-42), temp, pos));
/*} catch (Exception foo) {
errln("Message " + foo.getMessage());
}*/
delete dfFoo;
}
/* @bug 4087244
* NumberFormat.getCurrencyInstance() produces format that uses
* decimal separator instead of monetary decimal separator.
*
* Rewrote this test not to depend on the actual pattern. Pattern should
* never contain the monetary separator! Decimal separator in pattern is
* interpreted as monetary separator if currency symbol is seen!
*/
void NumberFormatRegressionTest::Test4087244() {
UErrorCode status = U_ZERO_ERROR;
char loc[256] = {0};
uloc_canonicalize("pt_PT@currency=PTE", loc, 256, &status);
Locale de(loc);
LocalPointer<NumberFormat> nf(NumberFormat::createCurrencyInstance(de, status));
if(U_FAILURE(status)) {
dataerrln("Error creating DecimalFormat: %s", u_errorName(status));
return;
}
DecimalFormat *df = dynamic_cast<DecimalFormat *>(nf.getAlias());
if(df == nullptr) {
errln("expected DecimalFormat!");
return;
}
const DecimalFormatSymbols *sym = df->getDecimalFormatSymbols();
UnicodeString decSep = sym->getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol);
UnicodeString monSep = sym->getSymbol(DecimalFormatSymbols::kMonetarySeparatorSymbol);
if (decSep == monSep) {
errln("ERROR in test: want decimal sep != monetary sep");
return;
}
df->setMinimumIntegerDigits(1);
df->setMinimumFractionDigits(2);
UnicodeString str;
FieldPosition pos;
df->format(1.23, str, pos);
UnicodeString monStr("1x23");
monStr.replace(static_cast<int32_t>(1), 1, monSep);
UnicodeString decStr("1x23");
decStr.replace(static_cast<int32_t>(1), 1, decSep);
if (str.indexOf(monStr) >= 0 && str.indexOf(decStr) < 0) {
logln(UnicodeString("OK: 1.23 -> \"") + str + "\" contains \"" +
monStr + "\" and not \"" + decStr + '"');
} else {
errln(UnicodeString("FAIL: 1.23 -> \"") + str + "\", should contain \"" +
monStr +
"\" and not \"" + decStr + '"');
}
}
/* @bug 4070798
* Number format data rounding errors for locale FR
*/
void NumberFormatRegressionTest::Test4070798()
{
NumberFormat *formatter;
UnicodeString tempString;
/* User error :
String expectedDefault = "-5\u202f789,987";
String expectedCurrency = "5\u202f789,98\u00a0F";
String expectedPercent = "-578\u202f998%";
*/
char16_t chars1 [] = {
0x2d, 0x35, 0x202f, 0x37, 0x38, 0x39, 0x2c, 0x39, 0x38, 0x38
};
char16_t chars2 [] = {
0x35, 0x202f, 0x37, 0x38, 0x39, 0x2c, 0x39, 0x39, 0x00a0, 0x46
};
char16_t chars3 [] = {
0x2d, 0x35, 0x37, 0x38, 0x202f, 0x39, 0x39, 0x39, 0x00a0, 0x25
};
UnicodeString expectedDefault(chars1, 10, 10);
UnicodeString expectedCurrency(chars2, 10, 10);
UnicodeString expectedPercent(chars3, 10, 10);
UErrorCode status = U_ZERO_ERROR;
char loc[256]={0};
int len = uloc_canonicalize("fr_FR@currency=FRF", loc, 256, &status);
(void)len; // Suppress set but not used warning.
formatter = NumberFormat::createInstance(Locale(loc), status);
if(U_FAILURE(status)) {
dataerrln("Error creating DecimalFormat: %s", u_errorName(status));
delete formatter;
return;
}
failure(status, "NumberFormat::createInstance", loc);
tempString = formatter->format (-5789.9876, tempString);
if (tempString == expectedDefault) {
logln ("Bug 4070798 default test passed.");
} else {
errln(UnicodeString("Failed:") +
" Expected " + expectedDefault +
" Received " + tempString );
}
delete formatter;
len = uloc_canonicalize("fr_FR@currency=FRF", loc, 256, &status);
formatter = NumberFormat::createCurrencyInstance(loc, status);
failure(status, "NumberFormat::createCurrencyInstance", loc);
tempString.remove();
tempString = formatter->format( 5789.9876, tempString );
if (tempString == expectedCurrency) {
logln ("Bug 4070798 currency test passed.");
} else {
errln(UnicodeString("Failed:") +
" Expected " + expectedCurrency +
" Received " + tempString );
}
delete formatter;
uloc_canonicalize("fr_FR@currency=FRF", loc, 256, &status);
formatter = NumberFormat::createPercentInstance(Locale(loc), status);
failure(status, "NumberFormat::createPercentInstance", loc);
tempString.remove();
tempString = formatter->format (-5789.9876, tempString);
if (tempString == expectedPercent) {
logln ("Bug 4070798 percentage test passed.");
} else {
errln(UnicodeString("Failed:") +
" Expected " + expectedPercent +
" Received " + tempString );
}
delete formatter;
}
/* @bug 4071005
* Data rounding errors for French (Canada) locale
*/
void NumberFormatRegressionTest::Test4071005()
{
NumberFormat *formatter;
UnicodeString tempString;
/* User error :
String expectedDefault = "-5\u00a0789,987";
String expectedCurrency = "5\u00a0789,98\u00a0$";
String expectedPercent = "-578\u00a0998%";
*/
char16_t chars1 [] = {
0x2d, 0x35, 0x00a0, 0x37, 0x38, 0x39, 0x2c, 0x39, 0x38, 0x38
};
char16_t chars2 [] = {
0x35, 0x00a0, 0x37, 0x38, 0x39, 0x2c, 0x39, 0x39, 0x00a0, 0x24
};
char16_t chars3 [] = {
0x2d, 0x35, 0x37, 0x38, 0x00a0, 0x39, 0x39, 0x39, 0x00a0, 0x25
};
UnicodeString expectedDefault(chars1, 10, 10);
UnicodeString expectedCurrency(chars2, 10, 10);
UnicodeString expectedPercent(chars3, 10, 10);
UErrorCode status = U_ZERO_ERROR;
formatter = NumberFormat::createInstance(Locale::getCanadaFrench(), status);
if (failure(status, "NumberFormat::createInstance", Locale::getCanadaFrench(), true)){
delete formatter;
return;
}
tempString = formatter->format (-5789.9876, tempString);
if (tempString == expectedDefault) {
logln ("Bug 4071005 default test passed.");
} else {
errln(UnicodeString("Failed: fr_CA") +
" Expected " + expectedDefault +
" Received " + tempString );
}
delete formatter;
formatter = NumberFormat::createCurrencyInstance(Locale::getCanadaFrench(), status);
failure(status, "NumberFormat::createCurrencyInstance", Locale::getCanadaFrench());
tempString.remove();
tempString = formatter->format( 5789.9876, tempString );
if (tempString == expectedCurrency) {
logln ("Bug 4071005 currency test passed.");
} else {
errln(UnicodeString("Failed: fr_CA") +
" Expected " + expectedCurrency +
" Received " + tempString );
}
delete formatter;
formatter = NumberFormat::createPercentInstance(Locale::getCanadaFrench(), status);
failure(status, "NumberFormat::createPercentInstance", Locale::getCanadaFrench());
tempString.remove();
tempString = formatter->format (-5789.9876, tempString);
if (tempString == expectedPercent) {
logln ("Bug 4071005 percentage test passed.");
} else {
errln(UnicodeString("Failed: fr_CA") +
" Expected " + expectedPercent +
" Received " + tempString );
}
delete formatter;
}
/* @bug 4071014
* Data rounding errors for German (Germany) locale
*/
void NumberFormatRegressionTest::Test4071014()
{
NumberFormat *formatter;
UnicodeString tempString;
/* user error :
String expectedDefault = "-5.789,987";
String expectedCurrency = "5.789,98 DM";
String expectedPercent = "-578.998%";
*/
UnicodeString expectedDefault("-5.789,988");
UnicodeString expectedCurrency("5.789,99\\u00A0DM");
UnicodeString expectedPercent("-578.999\\u00A0%");
expectedCurrency = expectedCurrency.unescape();
expectedPercent = expectedPercent.unescape();
UErrorCode status = U_ZERO_ERROR;
char loc[256]={0};
uloc_canonicalize("de_DE@currency=DEM", loc, 256, &status);
formatter = NumberFormat::createInstance(Locale(loc), status);
if (failure(status, "NumberFormat::createInstance", loc, true)){
delete formatter;
return;
}
tempString.remove();
tempString = formatter->format (-5789.9876, tempString);
if (tempString == expectedDefault) {
logln ("Bug 4071014 default test passed.");
} else {
errln(UnicodeString("Failed:") +
" Expected " + expectedDefault +
" Received " + tempString );
}
delete formatter;
uloc_canonicalize("de_DE@currency=DEM", loc, 256, &status);
formatter = NumberFormat::createCurrencyInstance(Locale(loc), status);
failure(status, "NumberFormat::createCurrencyInstance", loc);
tempString.remove();
tempString = formatter->format( 5789.9876, tempString );
if (tempString == expectedCurrency) {
logln ("Bug 4071014 currency test assed.");
} else {
errln(UnicodeString("Failed:") +
" Expected " + expectedCurrency +
" Received " + tempString );
}
delete formatter;
formatter = NumberFormat::createPercentInstance(Locale::getGermany(), status);
failure(status, "NumberFormat::createPercentInstance", Locale::getGermany());
tempString.remove();
tempString = formatter->format (-5789.9876, tempString);
if (tempString == expectedPercent) {
logln ("Bug 4071014 percentage test passed.");
} else {
errln(UnicodeString("Failed:") +
" Expected " + expectedPercent +
" Received " + tempString );
}
delete formatter;
}
/* @bug 4071859
* Data rounding errors for Italian locale number formats
*/
void NumberFormatRegressionTest::Test4071859()
{
NumberFormat *formatter;
UnicodeString tempString;
/* user error :
String expectedDefault = "-5.789,987";
String expectedCurrency = "-L.\\u00A05.789,98";
String expectedPercent = "-578.998%";
*/
UnicodeString expectedDefault("-5.789,988");
UnicodeString expectedCurrency("-ITL\\u00A05.790", -1, US_INV);
UnicodeString expectedPercent("-578.999%");
expectedCurrency = expectedCurrency.unescape();
UErrorCode status = U_ZERO_ERROR;
char loc[256]={0};
uloc_canonicalize("it_IT@currency=ITL", loc, 256, &status);
formatter = NumberFormat::createInstance(Locale(loc), status);
if (failure(status, "NumberFormat::createNumberInstance", true)){
delete formatter;
return;
}
tempString = formatter->format (-5789.9876, tempString);
if (tempString == expectedDefault) {
logln ("Bug 4071859 default test passed.");
} else {
errln(UnicodeString("Failed:") +
" Expected " + expectedDefault +
" Received " + tempString );
}
delete formatter;
uloc_canonicalize("it_IT@currency=ITL", loc, 256, &status);
formatter = NumberFormat::createCurrencyInstance(Locale(loc), status);
failure(status, "NumberFormat::createCurrencyInstance");
tempString.remove();
tempString = formatter->format( -5789.9876, tempString );
if (tempString == expectedCurrency) {
logln ("Bug 4071859 currency test assed.");
} else {
errln(UnicodeString("Failed:") +
" Expected " + expectedCurrency +
" Received " + tempString );
}
delete formatter;
uloc_canonicalize("it_IT@currency=ITL", loc, 256, &status);
formatter = NumberFormat::createPercentInstance(Locale(loc), status);
failure(status, "NumberFormat::createPercentInstance");
tempString.remove();
tempString = formatter->format (-5789.9876, tempString);
if (tempString == expectedPercent) {
logln ("Bug 4071859 percentage test passed.");
} else {
errln(UnicodeString("Failed:") +
" Expected " + expectedPercent +
" Received " + tempString );
}
delete formatter;
}
/* @bug 4071859
* Test rounding for nearest even.
*/
void NumberFormatRegressionTest::Test4093610()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat df("#0.#", status);
if (!failure(status, "new DecimalFormat")) {
UnicodeString s("12.4");
roundingTest(&df, 12.35, s);
roundingTest(&df, 12.45, s);
s = "12.5";
roundingTest(&df, 12.452,s);
s = "12.6";
roundingTest(&df, 12.55, s);
roundingTest(&df, 12.65, s);
s = "12.7";
roundingTest(&df, 12.652,s);
s = "12.8";
roundingTest(&df, 12.75, s);
roundingTest(&df, 12.752,s);
roundingTest(&df, 12.85, s);
s = "12.9";
roundingTest(&df, 12.852,s);
s = "13";
roundingTest(&df, 12.95, s);
roundingTest(&df, 12.952,s);
}
}
void NumberFormatRegressionTest::roundingTest(DecimalFormat *df, double x, UnicodeString& expected)
{
UnicodeString out;
FieldPosition pos(FieldPosition::DONT_CARE);
out = df->format(x, out, pos);
logln(UnicodeString("") + x + " formats with 1 fractional digits to " + out);
if (out != expected) {
dataerrln("FAIL: Expected '%s'; got '%s'", CStr(expected)(), CStr(out)());
}
}
/* @bug 4098741
* Tests the setMaximumFractionDigits limit.
*/
void NumberFormatRegressionTest::Test4098741()
{
//try {
UErrorCode status = U_ZERO_ERROR;
NumberFormat *fmt = NumberFormat::createPercentInstance(status);
if (U_FAILURE(status)) {
dataerrln("Error calling NumberFormat::createPercentInstance");
delete fmt;
return;
}
fmt->setMaximumFractionDigits(20);
UnicodeString temp;
logln(fmt->format(.001, temp));
/*} catch (Exception foo) {
errln("Bug 4098471 failed with exception thrown : " + foo.getMessage());
}*/
delete fmt;
}
/* @bug 4074454
* Tests illegal pattern exception.
* Fix comment : HShih A31 Part1 will not be fixed and javadoc needs to be updated.
* Part2 has been fixed.
*/
void NumberFormatRegressionTest::Test4074454()
{
//try {
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *fmt = new DecimalFormat("#,#00.00;-#.#", status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete fmt;
return;
}
failure(status, "new DecimalFormat");
logln("Inconsistent negative pattern is fine.");
DecimalFormat *newFmt = new DecimalFormat("#,#00.00 p''ieces;-#,#00.00 p''ieces", status);
failure(status, "new DecimalFormat");
UnicodeString tempString;
FieldPosition pos(FieldPosition::DONT_CARE);
tempString = newFmt->format(3456.78, tempString, pos);
if (tempString != UnicodeString("3,456.78 p'ieces"))
dataerrln("Failed! 3456.78 p'ieces expected, but got : " + tempString);
/*} catch (Exception foo) {
errln("An exception was thrown for any inconsistent negative pattern.");
}*/
delete fmt;
delete newFmt;
}
/* @bug 4099404
* Tests all different comments.
* Response to some comments :
* [1] DecimalFormat.parse API documentation is more than just one line.
* This is not a reproducible doc error in 116 source code.
* [2] See updated javadoc.
* [3] Fixed.
* [4] NumberFormat.parse(String, ParsePosition) : If parsing fails,
* a null object will be returned. The unchanged parse position also
* reflects an error.
* NumberFormat.parse(String) : If parsing fails, an ParseException
* will be thrown.
* See updated javadoc for more details.
* [5] See updated javadoc.
* [6] See updated javadoc.
* [7] This is a correct behavior if the DateFormat object is linient.
* Otherwise, an IllegalArgumentException will be thrown when formatting
* "January 35". See GregorianCalendar class javadoc for more details.
*/
void NumberFormatRegressionTest::Test4099404()
{
//try {
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *fmt = new DecimalFormat(UnicodeString("000.0#0"), status);
if(! U_FAILURE(status))
errln(UnicodeString("Bug 4099404 failed applying illegal pattern \"000.0#0\""));
/*} catch (Exception foo) {
logln("Bug 4099404 pattern \"000.0#0\" passed");
}*/
delete fmt;
fmt = nullptr;
//try {
fmt = new DecimalFormat(UnicodeString("0#0.000"), status);
if( !U_FAILURE(status))
errln("Bug 4099404 failed applying illegal pattern \"0#0.000\"");
/*} catch (Exception foo) {
logln("Bug 4099404 pattern \"0#0.000\" passed");
}*/
delete fmt;
}
/* @bug 4101481
* DecimalFormat.applyPattern doesn't set minimum integer digits
*/
void NumberFormatRegressionTest::Test4101481()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *sdf = new DecimalFormat(UnicodeString("#,##0"), status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete sdf;
return;
}
failure(status, "new DecimalFormat");
if (sdf->getMinimumIntegerDigits() != 1)
errln(UnicodeString("Minimum integer digits : ") + sdf->getMinimumIntegerDigits());
delete sdf;
}
/* @bug 4052223 (API addition request A27)
* Tests ParsePosition.setErrorPosition() and ParsePosition.getErrorPosition().
*/
void NumberFormatRegressionTest::Test4052223()
{
//try {
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *fmt = new DecimalFormat(UnicodeString("#,#00.00"), status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete fmt;
return;
}
failure(status, "new DecimalFormat");
Formattable num;
fmt->parse(UnicodeString("abc3"), num, status);
if(! U_FAILURE(status))
errln(UnicodeString("Bug 4052223 failed : can't parse string \"a\". Got ") /*+ num*/);
/*} catch (ParseException foo) {
logln("Caught expected ParseException : " + foo.getMessage() + " at index : " + foo.getErrorOffset());
}*/
delete fmt;
}
/* @bug 4061302
* API tests for API addition request A9.
*/
void NumberFormatRegressionTest::Test4061302()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormatSymbols *fmt = new DecimalFormatSymbols(status);
if (U_FAILURE(status)) {
dataerrln("Error creating DecimalFormatSymbols - %s", u_errorName(status));
return;
}
UnicodeString currency(fmt->getSymbol(DecimalFormatSymbols::kCurrencySymbol));
UnicodeString intlCurrency(fmt->getSymbol(DecimalFormatSymbols::kIntlCurrencySymbol));
UnicodeString monDecSeparator(fmt->getSymbol(DecimalFormatSymbols::kMonetarySeparatorSymbol));
if (currency == UnicodeString("") ||
intlCurrency == UnicodeString("") ||
monDecSeparator == UnicodeString(""))
{
errln("getCurrencySymbols failed, got empty string.");
}
UnicodeString monDecSeparatorStr;
monDecSeparatorStr.append(monDecSeparator);
logln(UnicodeString("Before set ==> Currency : ") + currency + UnicodeString(" Intl Currency : ") + intlCurrency + UnicodeString(" Monetary Decimal Separator : ") + monDecSeparatorStr);
fmt->setSymbol(DecimalFormatSymbols::kCurrencySymbol, UnicodeString("XYZ"));
fmt->setSymbol(DecimalFormatSymbols::kIntlCurrencySymbol, UnicodeString("ABC"));
fmt->setSymbol(DecimalFormatSymbols::kMonetarySeparatorSymbol, UnicodeString(static_cast<char16_t>(0x002A)/*'*'*/));
currency = fmt->getSymbol(DecimalFormatSymbols::kCurrencySymbol);
intlCurrency = fmt->getSymbol(DecimalFormatSymbols::kIntlCurrencySymbol);
monDecSeparator = fmt->getSymbol(DecimalFormatSymbols::kMonetarySeparatorSymbol);
if (currency != UnicodeString("XYZ") ||
intlCurrency != UnicodeString("ABC") ||
monDecSeparator != UnicodeString(static_cast<char16_t>(0x002A)/*'*'*/)) {
errln("setCurrencySymbols failed.");
}
monDecSeparatorStr.remove();
monDecSeparatorStr.append(monDecSeparator);
logln("After set ==> Currency : " + currency + " Intl Currency : " + intlCurrency + " Monetary Decimal Separator : " + monDecSeparatorStr);
delete fmt;
}
/* @bug 4062486
* API tests for API addition request A23. FieldPosition.getBeginIndex and
* FieldPosition.getEndIndex.
*/
void NumberFormatRegressionTest::Test4062486()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *fmt = new DecimalFormat(UnicodeString("#,##0.00"), status);
if (U_FAILURE(status)) {
dataerrln("Error creating DecimalFormat - %s", u_errorName(status));
return;
}
UnicodeString formatted;
FieldPosition field(FieldPosition::DONT_CARE);
double num = 1234.5;
fmt->format(num, formatted, field);
if (field.getBeginIndex() != 0 && field.getEndIndex() != 5)
errln(UnicodeString("Format 1234.5 failed. Begin index: ") /*+ field.getBeginIndex() + " End index: " + field.getEndIndex()*/);
field.setBeginIndex(7);
field.setEndIndex(4);
if (field.getBeginIndex() != 7 && field.getEndIndex() != 4)
errln("Set begin/end field indexes failed. Begin index: " /*+ field.getBeginIndex() + " End index: " + field.getEndIndex()*/);
delete fmt;
}
/* @bug 4108738
* DecimalFormat.parse incorrectly works with a group separator.
*/
void NumberFormatRegressionTest::Test4108738()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormatSymbols *syms = new DecimalFormatSymbols(Locale::getUS(), status);
failure(status, "new DecimalFormatSymbols");
DecimalFormat *df = new DecimalFormat("#,##0.###", syms, status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
UnicodeString text("1.222,111");
Formattable num;
ParsePosition pp(0);
df->parse(text, num, pp);
// {sfb} how to do this (again) ?
// shouldn't just be another round-trip test, should it?
UnicodeString temp;
FieldPosition pos(FieldPosition::DONT_CARE);
temp = df->format(num.getDouble(), temp, pos);
//if (!num.toString().equals("1.222"))
if (temp != UnicodeString("1.222"))
//errln("\"" + text + "\" is parsed as " + num);
errln("\"" + text + "\" is parsed as " + temp);
text = UnicodeString("1.222x111");
pp = ParsePosition(0);
df->parse(text, num, pp);
temp.remove();
temp = df->format(num.getDouble(), temp, pos);
//if (!num.toString().equals("1.222"))
if (temp != UnicodeString("1.222"))
errln("\"" + text + "\" is parsed as " + temp);
delete df;
}
/* @bug 4106658
* DecimalFormat.format() incorrectly formats negative doubles.
*/
void NumberFormatRegressionTest::Test4106658()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status); // Corrected; see 4147706
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
volatile double d1 = 0.0; // volatile to prevent code optimization
double d2 = -0.0001;
UnicodeString buffer;
UnicodeString temp;
FieldPosition pos(FieldPosition::DONT_CARE);
#if U_PLATFORM == U_PF_HPUX
d1 = 0.0 * -1.0; // old HPUX compiler ignores volatile keyword
#else
d1 = d1 * -1.0; // Some compilers have a problem with defining -0.0
#endif
logln("pattern: \"" + df->toPattern(temp) + "\"");
df->format(d1, buffer, pos);
if (buffer != UnicodeString("-0")) // Corrected; see 4147706
errln(UnicodeString("") + d1 + " is formatted as " + buffer);
buffer.remove();
df->format(d2, buffer, pos);
if (buffer != UnicodeString("-0")) // Corrected; see 4147706
errln(UnicodeString("") + d2 + " is formatted as " + buffer);
delete df;
}
/* @bug 4106662
* DecimalFormat.parse returns 0 if string parameter is incorrect.
*/
void NumberFormatRegressionTest::Test4106662()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
UnicodeString text("x");
ParsePosition pos1(0), pos2(0);
UnicodeString temp;
logln("pattern: \"" + df->toPattern(temp) + "\"");
Formattable num;
df->parse(text, num, pos1);
if (pos1 == ParsePosition(0)/*num != null*/) {
errln(UnicodeString("Test Failed: \"") + text + "\" is parsed as " /*+ num*/);
}
delete df;
df = new DecimalFormat(UnicodeString("$###.00"), status);
failure(status, "new DecimalFormat");
df->parse(UnicodeString("$"), num, pos2);
if (pos2 == ParsePosition(0) /*num != null*/){
errln(UnicodeString("Test Failed: \"$\" is parsed as ") /*+ num*/);
}
delete df;
}
/* @bug 4114639 (duplicate of 4106662)
* NumberFormat.parse doesn't return null
*/
void NumberFormatRegressionTest::Test4114639()
{
UErrorCode status = U_ZERO_ERROR;
NumberFormat *format = NumberFormat::createInstance(status);
if(U_FAILURE(status)) {
dataerrln("Error creating DecimalFormat: %s", u_errorName(status));
delete format;
return;
}
failure(status, "NumberFormat::createInstance");
UnicodeString text("time 10:x");
ParsePosition pos(8);
Formattable result;
format->parse(text, result, pos);
if (/*result != null*/pos.getErrorIndex() != 8)
errln(UnicodeString("Should return null but got : ") /*+ result*/); // Should be null; it isn't
delete format;
}
/* @bug 4106664
* TODO: this test does not work because we need to use a 64 bit number and a
* a double only MAY only have 52 bits of precision.
* DecimalFormat.format(long n) fails if n * multiplier > MAX_LONG.
*/
void NumberFormatRegressionTest::Test4106664()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
// {sfb} long in java is 64 bits
/*long*/double n = 1234567890123456.0;
/*int*/int32_t m = 12345678;
// {sfb} will this work?
//BigInteger bigN = BigInteger.valueOf(n);
//bigN = bigN.multiply(BigInteger.valueOf(m));
double bigN = n * m;
df->setMultiplier(m);
df->setGroupingUsed(false);
UnicodeString temp;
FieldPosition pos(FieldPosition::DONT_CARE);
logln("formatted: " +
df->format(n, temp, pos));
char buf [128];
snprintf(buf, sizeof(buf), "%g", bigN);
//logln("expected: " + bigN.toString());
logln(UnicodeString("expected: ") + buf);
delete df;
}
/* @bug 4106667 (duplicate of 4106658)
* DecimalFormat.format incorrectly formats -0.0.
*/
void NumberFormatRegressionTest::Test4106667()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete df;
return;
}
failure(status, "new DecimalFormat");
char16_t foo [] = { 0x002B };
UnicodeString bar(foo, 1, 1);
volatile double d = 0.0; // volatile to prevent code optimization
UnicodeString temp;
UnicodeString buffer;
FieldPosition pos(FieldPosition::DONT_CARE);
logln("pattern: \"" + df->toPattern(temp) + "\"");
#if U_PLATFORM == U_PF_HPUX
d = 0.0 * -1.0; // old HPUX compiler ignores volatile keyword
#else
d = d * -1.0; // Some compilers have a problem with defining -0.0
#endif
df->setPositivePrefix(/*"+"*/bar);
df->format(d, buffer, pos);
if (buffer != UnicodeString("-0")) // Corrected; see 4147706
errln(/*d + */UnicodeString(" is formatted as ") + buffer);
delete df;
}
/* @bug 4110936
* DecimalFormat.setMaximumIntegerDigits() works incorrectly.
*/
#if U_PLATFORM == U_PF_OS390
# define MAX_INT_DIGITS 70
#else
# define MAX_INT_DIGITS 128
#endif
void NumberFormatRegressionTest::Test4110936()
{
UErrorCode status = U_ZERO_ERROR;
NumberFormat *nf = NumberFormat::createInstance(status);
if(U_FAILURE(status)) {
dataerrln("Error creating DecimalFormat: %s", u_errorName(status));
delete nf;
return;
}
failure(status, "NumberFormat::createInstance");
nf->setMaximumIntegerDigits(MAX_INT_DIGITS);
logln("setMaximumIntegerDigits(MAX_INT_DIGITS)");
if (nf->getMaximumIntegerDigits() != MAX_INT_DIGITS)
errln(UnicodeString("getMaximumIntegerDigits() returns ") +
nf->getMaximumIntegerDigits());
delete nf;
}
/* @bug 4122840
* Locale data should use generic currency symbol
*
* 1) Make sure that all currency formats use the generic currency symbol.
* 2) Make sure we get the same results using the generic symbol or a
* hard-coded one.
*/
void NumberFormatRegressionTest::Test4122840()
{
int32_t count = 0;
const Locale *locales = Locale::getAvailableLocales(count);
for (int i = 0; i < count; i++) {
UErrorCode status = U_ZERO_ERROR;
ResourceBundle *rb = new ResourceBundle(
nullptr/*"java.text.resources.LocaleElements"*/,
locales[i], status);
failure(status, "new ResourceBundle");
ResourceBundle numPat = rb->getWithFallback("NumberElements", status);
failure(status, "rb.get(NumberElements)");
numPat = numPat.getWithFallback("latn",status);
failure(status, "rb.get(latn)");
numPat = numPat.getWithFallback("patterns",status);
failure(status, "rb.get(patterns)");
numPat = numPat.getWithFallback("currencyFormat",status);
failure(status, "rb.get(currencyFormat)");
//
// Get the currency pattern for this locale. We have to fish it
// out of the ResourceBundle directly, since DecimalFormat.toPattern
// will return the localized symbol, not \00a4
//
UnicodeString pattern = numPat.getString(status);
failure(status, "rb->getString()");
char16_t fo[] = { 0x00A4 };
UnicodeString foo(fo, 1, 1);
//if (pattern.indexOf("\u00A4") == -1 ) {
if (pattern.indexOf(foo) == -1 ) {
errln(UnicodeString("Currency format for ") + UnicodeString(locales[i].getName()) +
" does not contain generic currency symbol:" +
pattern );
}
// Create a DecimalFormat using the pattern we got and format a number
DecimalFormatSymbols *symbols = new DecimalFormatSymbols(locales[i], status);
failure(status, "new DecimalFormatSymbols");
// Disable currency spacing for the purposes of this test.
// To do this, set the spacing insert to the empty string both before and after the symbol.
symbols->setPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, false, u"");
symbols->setPatternForCurrencySpacing(UNUM_CURRENCY_INSERT, true, u"");
DecimalFormat *fmt1 = new DecimalFormat(pattern, *symbols, status);
failure(status, "new DecimalFormat");
UnicodeString result1;
FieldPosition pos(FieldPosition::DONT_CARE);
result1 = fmt1->format(1.111, result1, pos);
//
// Now substitute in the locale's currency symbol and create another
// pattern. We have to skip locales where the currency symbol
// contains decimal separators, because that confuses things
//
char16_t ba[] = { 0x002E/*'.'*/ };
UnicodeString bar(ba, 1, 1);
if (symbols->getSymbol(DecimalFormatSymbols::kCurrencySymbol).indexOf(bar) == -1) {
// {sfb} Also, switch the decimal separator to the monetary decimal
// separator to mimic the behavior of a currency format
symbols->setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol,
symbols->getSymbol(DecimalFormatSymbols::kMonetarySeparatorSymbol));
UnicodeString buf(pattern);
for (int j = 0; j < buf.length(); j++) {
if (buf[j] == 0x00a4 ) {
if(buf[j + 1] == 0x00a4) {
// {sfb} added to support double currency marker (intl currency sign)
buf.replace(j, /*j+*/2, symbols->getSymbol(DecimalFormatSymbols::kIntlCurrencySymbol));
j += symbols->getSymbol(DecimalFormatSymbols::kIntlCurrencySymbol).length();
}
else {
buf.replace(j, /*j+*/1, symbols->getSymbol(DecimalFormatSymbols::kCurrencySymbol));
j += symbols->getSymbol(DecimalFormatSymbols::kCurrencySymbol).length() - 1;
}
}
}
DecimalFormat *fmt2 = new DecimalFormat(buf, *symbols, status);
failure(status, "new DecimalFormat");
// Get the currency (if there is one) so we can set the rounding and fraction
const char16_t *currency = fmt1->getCurrency();
if (*currency != 0) {
double rounding = ucurr_getRoundingIncrement(currency, &status);
int32_t frac = ucurr_getDefaultFractionDigits(currency, &status);
if (U_SUCCESS(status)) {
fmt2->setRoundingIncrement(rounding);
fmt2->setMinimumFractionDigits(frac);
fmt2->setMaximumFractionDigits(frac);
}
else {
failure(status, "Fetching currency rounding/fractions");
}
}
UnicodeString result2;
fmt2->format(1.111, result2, pos);
if (result1 != result2) {
errln("Results for " + UnicodeString(locales[i].getName()) + " differ: " +
result1 + " vs " + result2);
}
delete fmt2;
}
delete rb;
delete fmt1;
delete symbols;
}
}
/* @bug 4125885
* DecimalFormat.format() delivers wrong string.
*/
void NumberFormatRegressionTest::Test4125885()
{
UErrorCode status = U_ZERO_ERROR;
double rate = 12.34;
DecimalFormat *formatDec = new DecimalFormat ("000.00", status);
if(U_FAILURE(status)) {
errcheckln(status, "Error creating DecimalFormat: %s", u_errorName(status));
delete formatDec;
return;
}
failure(status, "new DecimalFormat");
UnicodeString temp;
logln("toPattern: " + formatDec->toPattern(temp));
UnicodeString rateString;
FieldPosition pos(FieldPosition::DONT_CARE);
rateString = formatDec->format(rate, rateString, pos);
if (rateString != UnicodeString("012.34"))
errln("result : " + rateString + " expected : 012.34");
rate = 0.1234;
delete formatDec;// = null;
formatDec = new DecimalFormat ("+000.00%;-000.00%", status);
failure(status, "new DecimalFormat");
logln("toPattern: " + formatDec->toPattern(temp));
rateString.remove();
rateString = formatDec->format(rate, rateString, pos);
if (rateString != UnicodeString("+012.34%"))
errln("result : " + rateString + " expected : +012.34%");
delete formatDec;
}
/**
* @bug 4134034
* DecimalFormat produces extra zeros when formatting numbers.
*/
void NumberFormatRegressionTest::Test4134034()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *nf = new DecimalFormat("##,###,###.00", status);
if (!failure(status, "new DecimalFormat")) {
UnicodeString f;
FieldPosition pos(FieldPosition::DONT_CARE);
f = nf->format(9.02, f, pos);
if (f == UnicodeString("9.02"))
logln(f + " ok");
else
errln("9.02 -> " + f + "; want 9.02");
f.remove();
f = nf->format(static_cast<int32_t>(0), f, pos);
if (f == UnicodeString(".00"))
logln(f + " ok");
else
errln("0 -> " + f + "; want .00");
}
delete nf;
}
/**
* @bug 4134300
* CANNOT REPRODUCE - This bug could not be reproduced. It may be
* a duplicate of 4134034.
*
* JDK 1.1.6 Bug, did NOT occur in 1.1.5
* Possibly related to bug 4125885.
*
* This class demonstrates a regression in version 1.1.6
* of DecimalFormat class.
*
* 1.1.6 Results
* Value 1.2 Format #.00 Result '01.20' !!!wrong
* Value 1.2 Format 0.00 Result '001.20' !!!wrong
* Value 1.2 Format 00.00 Result '0001.20' !!!wrong
* Value 1.2 Format #0.0# Result '1.2'
* Value 1.2 Format #0.00 Result '001.20' !!!wrong
*
* 1.1.5 Results
* Value 1.2 Format #.00 Result '1.20'
* Value 1.2 Format 0.00 Result '1.20'
* Value 1.2 Format 00.00 Result '01.20'
* Value 1.2 Format #0.0# Result '1.2'
* Value 1.2 Format #0.00 Result '1.20'
*/
void NumberFormatRegressionTest::Test4134300() {
UnicodeString DATA [] = {
// Pattern Expected string
UnicodeString("#.00"), UnicodeString("1.20"),
UnicodeString("0.00"), UnicodeString("1.20"),
UnicodeString("00.00"), UnicodeString("01.20"),
UnicodeString("#0.0#"), UnicodeString("1.2"),
UnicodeString("#0.00"), UnicodeString("1.20")
};
for (int i=0; i< 10; i+=2) {
UnicodeString result;
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat(DATA[i], status);
if (!failure(status, "new DecimalFormat")) {
FieldPosition pos(FieldPosition::DONT_CARE);
result = df->format(1.2, result, pos);
if (result != DATA[i+1]) {
errln("Fail: 1.2 x " + DATA[i] + " = " + result +
"; want " + DATA[i+1]);
}
else {
logln("Ok: 1.2 x " + DATA[i] + " = " + result);
}
}
delete df;
}
}
/**
* @bug 4140009
* Empty pattern produces double negative prefix.
*/
void NumberFormatRegressionTest::Test4140009()
{
UErrorCode status = U_ZERO_ERROR;
LocalPointer<DecimalFormatSymbols> syms(new DecimalFormatSymbols(Locale::getEnglish(), status), status);
if (failure(status, "new DecimalFormatSymbols")) {
return;
}
DecimalFormat *f = new DecimalFormat(UnicodeString(u""), syms.orphan(), status);
if (!failure(status, "new DecimalFormat")) {
UnicodeString s;
FieldPosition pos(FieldPosition::DONT_CARE);
s = f->format(123.456, s, pos);
if (s != UnicodeString("123.456"))
errln("Fail: Format empty pattern x 123.456 => " + s);
s.remove();
s = f->format(-123.456, s, pos);
if (s != UnicodeString("-123.456"))
errln("Fail: Format empty pattern x -123.456 => " + s);
}
delete f;
}
/**
* @bug 4141750
* BigDecimal numbers get their fractions truncated by NumberFormat.
*/
// {sfb} not pertinent in C++ ??
void NumberFormatRegressionTest::Test4141750() {
/*try {
UnicodeString str("12345.67");
BigDecimal bd = new BigDecimal(str);
String sd = NumberFormat.getInstance(Locale.US).format(bd);
if (!sd.endsWith("67")) errln("Fail: " + str + " x format -> " + sd);
}
catch (Exception e) {
errln(e.toString());
e.printStackTrace();
}*/
}
/**
* @bug 4145457
* DecimalFormat toPattern() doesn't quote special characters or handle
* single quotes.
*/
void NumberFormatRegressionTest::Test4145457() {
//try {
UErrorCode status = U_ZERO_ERROR;
NumberFormat *nff = NumberFormat::createInstance(status);
if (failure(status, "NumberFormat::createInstance", true)){
delete nff;
return;
}
DecimalFormat *nf = dynamic_cast<DecimalFormat *>(nff);
if(nf == nullptr) {
errln("DecimalFormat needed to continue");
return;
}
DecimalFormatSymbols *sym = const_cast<DecimalFormatSymbols*>(nf->getDecimalFormatSymbols());
sym->setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, static_cast<char16_t>(0x0027));
nf->setDecimalFormatSymbols(*sym);
double pi = 3.14159;
UnicodeString PATS [] = {
UnicodeString("#.00 'num''ber'"), UnicodeString("''#.00''")
};
for (int32_t i=0; i<2; ++i) {
nf->applyPattern(PATS[i], status);
failure(status, "nf->applyPattern");
UnicodeString out;
FieldPosition pos(FieldPosition::DONT_CARE);
out = nf->format(pi, out, pos);
UnicodeString pat;
pat = nf->toPattern(pat);
Formattable num;
ParsePosition pp(0);
nf->parse(out, num, pp);
double val = num.getDouble();
nf->applyPattern(pat, status);
failure(status, "nf->applyPattern");
UnicodeString out2;
out2 = nf->format(pi, out2, pos);
UnicodeString pat2;
pat2 = nf->toPattern(pat2);
pp.setIndex(0);
nf->parse(out2, num, pp);
double val2 = num.getDouble();
if (pat != pat2)
errln("Fail with \"" + PATS[i] + "\": Patterns should concur, \"" +
pat + "\" vs. \"" + pat2 + "\"");
else
logln("Ok \"" + PATS[i] + "\" toPattern() -> \"" + pat + '"');
if (val == val2 && out == out2) {
logln(UnicodeString("Ok ") + pi + " x \"" + PATS[i] + "\" -> \"" +
out + "\" -> " + val + " -> \"" +
out2 + "\" -> " + val2);
}
else {
errln(UnicodeString("Fail ") + pi + " x \"" + PATS[i] + "\" -> \"" +
out + "\" -> " + val + " -> \"" +
out2 + "\" -> " + val2);
}
}
/*}
catch (ParseException e) {
errln("Fail: " + e);
e.printStackTrace();
}*/
delete nff;
}
/**
* @bug 4147295
* DecimalFormat.applyPattern() sets minimum integer digits incorrectly.
* CANNOT REPRODUCE
* This bug is a duplicate of 4139344, which is a duplicate of 4134300
*
* ICU 62: minInt is always at least one, and the getter should reflect that!
*/
void NumberFormatRegressionTest::Test4147295()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *sdf = new DecimalFormat(status);
UnicodeString pattern("#,###");
logln("Applying pattern \"" + pattern + "\"");
sdf->applyPattern(pattern, status);
if (!failure(status, "sdf->applyPattern")) {
int minIntDig = sdf->getMinimumIntegerDigits();
if (minIntDig != 1) {
errln("Test failed");
errln(UnicodeString(" Minimum integer digits : ") + minIntDig);
UnicodeString temp;
errln(UnicodeString(" new pattern: ") + sdf->toPattern(temp));
} else {
logln("Test passed");
logln(UnicodeString(" Minimum integer digits : ") + minIntDig);
}
}
delete sdf;
}
/**
* @bug 4147706
* DecimalFormat formats -0.0 as +0.0
* See also older related bug 4106658, 4106667
*/
void NumberFormatRegressionTest::Test4147706()
{
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *df = new DecimalFormat("#,##0.0##", status);
failure(status, "new DecimalFormat");
DecimalFormatSymbols *syms = new DecimalFormatSymbols(Locale::getEnglish(), status);
if (!failure(status, "new DecimalFormatSymbols")) {
UnicodeString f1;
UnicodeString f2, temp;
FieldPosition pos(FieldPosition::DONT_CARE);
volatile double d1 = 0.0; // volatile to prevent code optimization
double d2 = -0.0001;
#if U_PLATFORM == U_PF_HPUX
d1 = 0.0 * -1.0; // old HPUX compiler ignores volatile keyword
#else
d1 = d1 * -1.0; // Some compilers have a problem with defining -0.0
#endif
df->adoptDecimalFormatSymbols(syms);
f1 = df->format(d1, f1, pos);
f2 = df->format(d2, f2, pos);
if (f1 != UnicodeString("-0.0")) {
errln(UnicodeString("") + d1 + UnicodeString(" x \"") + df->toPattern(temp) + "\" is formatted as \"" + f1 + '"');
}
if (f2 != UnicodeString("-0.0")) {
errln(UnicodeString("") + d2 + UnicodeString(" x \"") + df->toPattern(temp) + "\" is formatted as \"" + f2 + '"');
}
}
delete df;
}
// Not applicable, since no serialization in C++
/*class myformat implements Serializable
{
DateFormat _dateFormat = DateFormat.getDateInstance();
public String Now()
{
GregorianCalendar calendar = new GregorianCalendar();
Date t = calendar.getTime();
String nowStr = _dateFormat.format(t);
return nowStr;
}
}*/
/**
* @bug 4162198
* NumberFormat cannot format Double.MAX_VALUE
*/
// TODO: make this test actually test something
void
NumberFormatRegressionTest::Test4162198()
{
// for some reason, DBL_MAX will not round trip. (bug in snprintf/atof)
double dbl = INT32_MAX * 1000.0;
UErrorCode status = U_ZERO_ERROR;
NumberFormat *f = NumberFormat::createInstance(status);
if(U_FAILURE(status)) {
dataerrln("Couldn't create number format - %s", u_errorName(status));
return;
}
f->setMaximumFractionDigits(INT32_MAX);
f->setMaximumIntegerDigits(INT32_MAX);
UnicodeString s;
f->format(dbl,s);
logln(UnicodeString("The number ") + dbl + " formatted to " + s);
Formattable n;
//try {
f->parse(s, n, status);
if(U_FAILURE(status))
errln("Couldn't parse!");
//} catch (java.text.ParseException e) {
// errln("Caught a ParseException:");
// e.printStackTrace();
//}
//logln("The string " + s + " parsed as " + n);
// {dlf} The old code assumes n is a double, but it isn't any more...
// Formattable apparently does not and never did interconvert... too bad.
//if(n.getDouble() != dbl) {
// errln("Round trip failure");
//}
if (n.getInt64() != dbl) {
errln("Round trip failure");
}
delete f;
}
/**
* @bug 4162852
* NumberFormat does not parse negative zero.
*/
void
NumberFormatRegressionTest::Test4162852()
{
UErrorCode status = U_ZERO_ERROR;
for(int32_t i=0; i < 2; ++i) {
LocalPointer<NumberFormat> f(
((i == 0) ? NumberFormat::createInstance(status) : NumberFormat::createPercentInstance(status)),
status);
if(U_FAILURE(status)) {
dataerrln("Couldn't create number format - %s", u_errorName(status));
return;
}
double d = 0.0;
d *= -1.0;
UnicodeString s;
f->format(d, s);
Formattable n;
f->parse(s, n, status);
if(U_FAILURE(status)) {
errln("Couldn't parse!");
return;
}
double e = n.getDouble();
logln("%f -> \"%s\" -> %f", d, CStr(s)(), e);
#if (U_PLATFORM == U_PF_OS390 && !defined(IEEE_754)) || U_PLATFORM == U_PF_OS400
if (e != 0.0) {
#else
if (e != 0.0 || (std::signbit(e) == false)) {
#endif
errln("Failed to parse negative zero");
}
}
}
static double _u_abs(double a) { return a<0?-a:a; }
/**
* May 17 1999 sync up - liu
* @bug 4167494
* NumberFormat truncates data
*/
void NumberFormatRegressionTest::Test4167494() {
UErrorCode status = U_ZERO_ERROR;
NumberFormat *fmt = NumberFormat::createInstance(Locale::getUS(), status);
if (failure(status, "NumberFormat::createInstance", true)){
delete fmt;
return;
}
double a = DBL_MAX * 0.99; // DBL_MAX itself overflows to +Inf
UnicodeString s;
fmt->format(a, s);
Formattable num;
fmt->parse(s, num, status);
failure(status, "Parse");
if (num.getType() == Formattable::kDouble &&
_u_abs(num.getDouble() - a) / a < 0.01) { // RT within 1%
logln(UnicodeString("") + a + " -> \"" + s + "\" -> " +
toString(num) + " ok");
} else {
errln(UnicodeString("") + a + " -> \"" + s + "\" -> " +
toString(num) + " FAIL");
}
// We don't test Double.MIN_VALUE because the locale data for the US
// currently doesn't specify enough digits to display Double.MIN_VALUE.
// This is correct for now; however, we leave this here as a reminder
// in case we want to address this later.
delete fmt;
}
/**
* May 17 1999 sync up - liu
* @bug 4170798
* DecimalFormat.parse() fails when ParseIntegerOnly set to true
*/
void NumberFormatRegressionTest::Test4170798() {
IcuTestErrorCode status(*this, "Test4170798");
LocalPointer<DecimalFormat> df(dynamic_cast<DecimalFormat*>(
NumberFormat::createInstance(Locale::getUS(), status)), status);
if (!assertSuccess("", status, true, __FILE__, __LINE__)) {
return;
}
{
Formattable n;
ParsePosition pos(0);
df->parse("-0.0", n, pos);
if (n.getType() != Formattable::kDouble
|| n.getDouble() != -0.0) {
errln(UnicodeString("FAIL: default parse(\"-0.0\") returns ") + toString(n));
}
}
df->setParseIntegerOnly(true);
{
Formattable n;
ParsePosition pos(0);
df->parse("-0.0", n, pos);
if (n.getType() != Formattable::kLong
|| n.getLong() != 0) {
errln(UnicodeString("FAIL: integer parse(\"-0.0\") returns ") + toString(n));
}
}
}
/**
* May 17 1999 sync up - liu
* toPattern only puts the first grouping separator in.
*/
void NumberFormatRegressionTest::Test4176114() {
const char* DATA[] = {
"00", "00",
"000", "000", // No grouping
"#000", "000", // No grouping
"#,##0", "#,##0",
"#,000", "#,000",
"0,000", "0,000",
"00,000", "00,000",
"000,000", "000,000",
"0,000,000,000,000.0000", "0,000,000,000,000.0000", // Reported
};
int DATA_length = UPRV_LENGTHOF(DATA);
UErrorCode status = U_ZERO_ERROR;
UnicodeString s;
for (int i=0; i<DATA_length; i+=2) {
DecimalFormat df(DATA[i], status);
if (!failure(status, "DecimalFormat constructor")) {
df.toPattern(s);
UnicodeString exp(DATA[i+1]);
if (s != exp) {
errln(UnicodeString("FAIL: ") + DATA[i] + " -> " +
s + ", want " + exp);
}
}
}
}
/**
* May 17 1999 sync up - liu
* @bug 4179818
* DecimalFormat is incorrectly rounding numbers like 1.2501 to 1.2
*/
void NumberFormatRegressionTest::Test4179818() {
const char* DATA[] = {
// Input Pattern Expected output
"1.2511", "#.#", "1.3",
"1.2501", "#.#", "1.3",
"0.9999", "#", "1",
};
int DATA_length = UPRV_LENGTHOF(DATA);
double DOUBLE[] = {
1.2511,
1.2501,
0.9999,
};
UErrorCode status = U_ZERO_ERROR;
DecimalFormatSymbols sym(Locale::getUS(), status);
failure(status, "Construct DecimalFormatSymbols");
DecimalFormat fmt("#", sym, status);
if (!failure(status, "Construct DecimalFormat")) {
for (int i=0; i<DATA_length; i+=3) {
double in = DOUBLE[i/3];
UnicodeString pat(DATA[i+1]);
UnicodeString exp(DATA[i+2]);
fmt.applyPattern(pat, status);
failure(status, "applyPattern");
UnicodeString out;
FieldPosition pos;
fmt.format(in, out, pos);
if (out == exp) {
logln(UnicodeString("Ok: ") + in + " x " + pat + " = " + out);
} else {
errln(UnicodeString("FAIL: ") + in + " x " + pat + " = " + out +
", expected " + exp);
}
}
}
}
/**
* May 17 1999 sync up - liu
* Some DecimalFormatSymbols changes are not picked up by DecimalFormat.
* This includes the minus sign, currency symbol, international currency
* symbol, percent, and permille. This is filed as bugs 4212072 and
* 4212073.
*/
void NumberFormatRegressionTest::Test4212072() {
UErrorCode status = U_ZERO_ERROR;
DecimalFormatSymbols sym(Locale::getUS(), status);
failure(status, "DecimalFormatSymbols ct", Locale::getUS());
DecimalFormat fmt(UnicodeString("#"), sym, status);
if(failure(status, "DecimalFormat ct", Locale::getUS())) {
return;
}
UnicodeString s;
FieldPosition pos;
sym.setSymbol(DecimalFormatSymbols::kMinusSignSymbol, static_cast<char16_t>(0x5e));
fmt.setDecimalFormatSymbols(sym);
s.remove();
if (fmt.format(static_cast<int32_t>(-1), s, pos) != UNICODE_STRING("^1", 2)) {
errln(UnicodeString("FAIL: -1 x (minus=^) -> ") + s +
", exp ^1");
}
s.remove();
if (fmt.getNegativePrefix(s) != UnicodeString(static_cast<char16_t>(0x5e))) {
errln(UnicodeString("FAIL: (minus=^).getNegativePrefix -> ") +
s + ", exp ^");
}
sym.setSymbol(DecimalFormatSymbols::kMinusSignSymbol, static_cast<char16_t>(0x2d));
fmt.applyPattern(UnicodeString("#%"), status);
failure(status, "applyPattern percent");
sym.setSymbol(DecimalFormatSymbols::kPercentSymbol, static_cast<char16_t>(0x5e));
fmt.setDecimalFormatSymbols(sym);
s.remove();
if (fmt.format(0.25, s, pos) != UNICODE_STRING("25^", 3)) {
errln(UnicodeString("FAIL: 0.25 x (percent=^) -> ") + s +
", exp 25^");
}
s.remove();
if (fmt.getPositiveSuffix(s) != UnicodeString(static_cast<char16_t>(0x5e))) {
errln(UnicodeString("FAIL: (percent=^).getPositiveSuffix -> ") +
s + ", exp ^");
}
sym.setSymbol(DecimalFormatSymbols::kPercentSymbol, static_cast<char16_t>(0x25));
fmt.applyPattern(str("#\\u2030"), status);
failure(status, "applyPattern permill");
sym.setSymbol(DecimalFormatSymbols::kPerMillSymbol, static_cast<char16_t>(0x5e));
fmt.setDecimalFormatSymbols(sym);
s.remove();
if (fmt.format(0.25, s, pos) != UNICODE_STRING("250^", 4)) {
errln(UnicodeString("FAIL: 0.25 x (permill=^) -> ") + s +
", exp 250^");
}
s.remove();
if (fmt.getPositiveSuffix(s) != UnicodeString(static_cast<char16_t>(0x5e))) {
errln(UnicodeString("FAIL: (permill=^).getPositiveSuffix -> ") +
s + ", exp ^");
}
sym.setSymbol(DecimalFormatSymbols::kPerMillSymbol, static_cast<char16_t>(0x2030));
fmt.applyPattern(str("\\u00A4#.00"), status);
failure(status, "applyPattern currency");
sym.setSymbol(DecimalFormatSymbols::kCurrencySymbol, "usd");
fmt.setDecimalFormatSymbols(sym);
s.remove();
if (fmt.format(12.5, s, pos) != UnicodeString(u"usd\u00A012.50")) {
errln(UnicodeString("FAIL: 12.5 x (currency=usd) -> ") + s +
u", exp usd\u00A012.50");
}
s.remove();
if (fmt.getPositivePrefix(s) != UnicodeString("usd")) {
errln(UnicodeString("FAIL: (currency=usd).getPositivePrefix -> ") +
s + ", exp usd");
}
sym.setSymbol(DecimalFormatSymbols::kCurrencySymbol, "$");
fmt.applyPattern(str("\\u00A4\\u00A4#.00"), status);
failure(status, "applyPattern intl currency");
sym.setSymbol(DecimalFormatSymbols::kIntlCurrencySymbol, "DOL");
fmt.setDecimalFormatSymbols(sym);
s.remove();
if (fmt.format(12.5, s, pos) != UnicodeString(u"DOL\u00A012.50")) {
errln(UnicodeString("FAIL: 12.5 x (intlcurrency=DOL) -> ") + s +
u", exp DOL\u00A012.50");
}
s.remove();
if (fmt.getPositivePrefix(s) != UnicodeString("DOL")) {
errln(UnicodeString("FAIL: (intlcurrency=DOL).getPositivePrefix -> ") +
s + ", exp DOL");
}
sym.setSymbol(DecimalFormatSymbols::kIntlCurrencySymbol, "USD");
// Since the pattern logic has changed, make sure that patterns round
// trip properly. Test stream in/out integrity too.
int32_t n;
const Locale* avail = NumberFormat::getAvailableLocales(n);
static const char* type[] = {
"",
"$ ",
"% ",
};
for (int i=0; i<n; ++i) {
for (int j=0; j<3; ++j) {
status = U_ZERO_ERROR;
NumberFormat *nf;
switch (j) {
case 0:
nf = NumberFormat::createInstance(avail[i], status);
failure(status, "createInstance", avail[i]);
break;
case 1:
nf = NumberFormat::createCurrencyInstance(avail[i], status);
failure(status, "createCurrencyInstance", avail[i]);
break;
default:
nf = NumberFormat::createPercentInstance(avail[i], status);
failure(status, "createPercentInstance", avail[i]);
break;
}
if (U_FAILURE(status)) {
continue;
}
DecimalFormat *df = dynamic_cast<DecimalFormat*>(nf);
// Test toPattern/applyPattern round trip
UnicodeString pat;
df->toPattern(pat);
DecimalFormatSymbols symb(avail[i], status);
failure(status, "Construct DecimalFormatSymbols", avail[i]);
DecimalFormat f2(pat, symb, status);
if (failure(status,
UnicodeString("Construct DecimalFormat(") + pat + ")")) {
continue;
}
UnicodeString f2Pat;
f2.toPattern(f2Pat);
if (pat != f2Pat) {
UnicodeString l;
errln(UnicodeString("FAIL: ") + type[j] + avail[i].getDisplayName(l) +
" -> \"" + pat +
"\" -> \"" + f2Pat + "\"");
} else {
UnicodeString l, p;
logln(UnicodeString("PASS: ") + type[j] + avail[i].getDisplayName(l) +
" -> \"" + pat +
"\"");
}
// Test toLocalizedPattern/applyLocalizedPattern round trip
// TODO(refactor): don't worry about localized patterns for now.
// df->toLocalizedPattern(pat);
// f2.applyLocalizedPattern(pat, status);
failure(status,
UnicodeString("applyLocalizedPattern(") + pat + ")", avail[i]);
if (U_FAILURE(status)) {
continue;
}
// TODO(refactor): don't worry about localized patterns for now.
// Make sure we set the currency attributes appropriately
// if (j == 1) { // Currency format
// f2.setCurrency(f2.getCurrency(), status);
// }
failure(status,
UnicodeString("setCurrency() for (") + pat + ")", avail[i]);
if (U_FAILURE(status)) {
continue;
}
if (pat != f2Pat) {
UnicodeString l;
errln(UnicodeString("FAIL: ") + type[j] + avail[i].getDisplayName(l) +
" -> localized \"" + pat +
"\" -> \"" + f2Pat + "\"");
}
delete nf;
// Test writeObject/readObject round trip
// NOT ON ICU -- Java only
}
}
}
/**
* May 17 1999 sync up - liu
* DecimalFormat.parse() fails for mulipliers 2^n.
*/
void NumberFormatRegressionTest::Test4216742() {
UErrorCode status = U_ZERO_ERROR;
DecimalFormat *fmt = dynamic_cast<DecimalFormat*>(NumberFormat::createInstance(Locale::getUS(), status));
if (failure(status, "createInstance", Locale::getUS(), true)){
delete fmt;
return;
}
int32_t DATA[] = { INT32_MIN, INT32_MAX, -100000000, 100000000 };
int DATA_length = UPRV_LENGTHOF(DATA);
for (int i=0; i<DATA_length; ++i) {
UnicodeString str(UnicodeString("") + DATA[i]);
for (int m = 1; m <= 100; m++) {
fmt->setMultiplier(m);
Formattable num;
fmt->parse(str, num, status);
failure(status, "parse", Locale::getUS());
if (num.getType() != Formattable::kLong &&
num.getType() != Formattable::kDouble) {
errln(UnicodeString("FAIL: Wanted number, got ") +
toString(num));
} else {
double d = num.getType() == Formattable::kDouble ?
num.getDouble() : static_cast<double>(num.getLong());
if ((d > 0) != (DATA[i] > 0)) {
errln(UnicodeString("\"") + str + "\" parse(x " +
fmt->getMultiplier() +
") => " + toString(num));
}
}
}
}
delete fmt;
}
/**
* May 17 1999 sync up - liu
* DecimalFormat formats 1.001 to "1.00" instead of "1" with 2 fraction
* digits.
*/
void NumberFormatRegressionTest::Test4217661() {
const double D[] = { 0.001, 1.001, 0.006, 1.006 };
const char* S[] = { "0", "1", "0.01", "1.01" };
int D_length = UPRV_LENGTHOF(D);
UErrorCode status = U_ZERO_ERROR;
NumberFormat *fmt = NumberFormat::createInstance(Locale::getUS(), status);
if (failure(status, "createInstance", Locale::getUS(), true)){
delete fmt;
return;
}
fmt->setMaximumFractionDigits(2);
for (int i=0; i<D_length; i++) {
UnicodeString s;
fmt->format(D[i], s);
if (s != UnicodeString(S[i])) {
errln(UnicodeString("FAIL: Got ") + s + ", exp " + S[i]);
}
}
delete fmt;
}
/**
* alphaWorks upgrade
*/
void NumberFormatRegressionTest::Test4161100() {
UErrorCode status = U_ZERO_ERROR;
NumberFormat *nf = NumberFormat::createInstance(Locale::getUS(), status);
if (failure(status, "createInstance", Locale::getUS(), true)){
delete nf;
return;
}
nf->setMinimumFractionDigits(1);
nf->setMaximumFractionDigits(1);
double a = -0.09;
UnicodeString s;
nf->format(a, s);
UnicodeString pat;
logln(UnicodeString() + a + " x " +
(dynamic_cast<DecimalFormat*>(nf))->toPattern(pat) + " = " + s);
if (s != UnicodeString("-0.1")) {
errln("FAIL");
}
delete nf;
}
/**
* June 16 1999 sync up - liu
* Formatting .5 rounds to "1" instead of "0". (Regression in 1.2.2 RC1)
*/
void NumberFormatRegressionTest::Test4243011() {
UErrorCode status = U_ZERO_ERROR;
DecimalFormatSymbols sym(Locale::getUS(), status);
failure(status, "DecimalFormatSymbols ct", Locale::getUS());
DecimalFormat fmt(UnicodeString("0."), sym, status);
if (!failure(status, "DecimalFormat ct", Locale::getUS())) {
const double NUM[] = { -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5, 4.5 };
const char* STR[] = { "-2.", "-2.", "-0.", "0.", "2.", "2.", "4.", "4." };
int32_t N = UPRV_LENGTHOF(NUM);
for (int32_t i=0; i<N; ++i) {
UnicodeString str;
UnicodeString exp(STR[i]);
FieldPosition pos;
fmt.format(NUM[i], str, pos);
if (str == exp) {
logln(UnicodeString("Ok ") + NUM[i] + " x 0. = " + str);
} else {
errln(UnicodeString("FAIL ") + NUM[i] + " x 0. = " + str +
", want " + exp);
}
}
}
}
/**
* June 16 1999 sync up - liu
* format(0.0) gives "0.1" if preceded by parse("99.99").
* (Regression in 1.2.2 RC1)
*/
void NumberFormatRegressionTest::Test4243108() {
UErrorCode status = U_ZERO_ERROR;
DecimalFormatSymbols sym(Locale::getUS(), status);
failure(status, "DecimalFormatSymbols ct", Locale::getUS());
DecimalFormat fmt(UnicodeString("#.#"), sym, status);
if (failure(status, "DecimalFormat ct", Locale::getUS())) {
return;
}
UnicodeString str;
FieldPosition pos;
fmt.format(0.0, str, pos);
UnicodeString exp("0");
if (str == exp) {
logln(UnicodeString("Ok 0.0 x #.# = ") + str);
} else {
errln(UnicodeString("FAIL 0.0 x #.# = ") + str +
", want " + exp);
}
str = "99.99";
Formattable val;
fmt.parse(str, val, status);
failure(status, "DecimalFormat.parse(99.99)", Locale::getUS());
if (val.getType() == Formattable::kDouble &&
val.getDouble() == 99.99) {
logln(UnicodeString("Ok 99.99 / #.# = ") + toString(val));
} else {
errln(UnicodeString("FAIL 99.99 / #.# = ") + toString(val) +
", want " + 99.99);
}
str.remove();
fmt.format(0.0, str, pos);
if (str == exp) {
logln(UnicodeString("Ok 0.0 x #.# = ") + str);
} else {
errln(UnicodeString("FAIL 0.0 x #.# = ") + str +
", want " + exp);
}
}
/**
* DateFormat should call setIntegerParseOnly(true) on adopted
* NumberFormat objects.
*/
void NumberFormatRegressionTest::TestJ691() {
UErrorCode status = U_ZERO_ERROR;
Locale loc("fr", "CH");
// set up the input date string & expected output
UnicodeString udt(u"11.10.2000");
UnicodeString exp(u"11.10.00");
// create a Calendar for this locale
LocalPointer<Calendar> cal(Calendar::createInstance(loc, status));
if (U_FAILURE(status)) {
dataerrln("FAIL: Calendar::createInstance() returned " + UnicodeString(u_errorName(status)));
return;
}
// create a NumberFormat for this locale
LocalPointer<NumberFormat> nf(NumberFormat::createInstance(loc, status));
if (U_FAILURE(status)) {
dataerrln("FAIL: NumberFormat::createInstance() returned " + UnicodeString(u_errorName(status)));
return;
}
// *** Here's the key: We don't want to have to do THIS:
// nf->setParseIntegerOnly(true);
// or this (with changes to fr_CH per cldrbug:9370):
// nf->setGroupingUsed(false);
// so they are done in DateFormat::adoptNumberFormat
// create the DateFormat
LocalPointer<DateFormat> df(DateFormat::createDateInstance(DateFormat::kShort, loc));
if (U_FAILURE(status)) {
errln("FAIL: DateFormat::createInstance() returned " + UnicodeString(u_errorName(status)));
return;
}
df->adoptCalendar(cal.orphan());
df->adoptNumberFormat(nf.orphan());
// set parsing to lenient & parse
df->setLenient(true);
UDate ulocdat = df->parse(udt, status);
// format back to a string
UnicodeString outString;
df->format(ulocdat, outString);
if (outString != exp) {
errln("FAIL: " + udt + " => " + outString);
}
}
//---------------------------------------------------------------------------
//
// Error Checking / Reporting macros
//
//---------------------------------------------------------------------------
#define TEST_CHECK_STATUS(status) UPRV_BLOCK_MACRO_BEGIN { \
if (U_FAILURE(status)) { \
if (status == U_MISSING_RESOURCE_ERROR) { \
dataerrln("File %s, Line %d: status=%s", __FILE__, __LINE__, u_errorName(status)); \
} else { \
errln("File %s, Line %d: status=%s", __FILE__, __LINE__, u_errorName(status)); \
} return; \
} \
} UPRV_BLOCK_MACRO_END
#define TEST_ASSERT(expr) UPRV_BLOCK_MACRO_BEGIN { \
if ((expr)==false) {\
errln("File %s, line %d: Assertion Failed: " #expr "\n", __FILE__, __LINE__);\
} \
} UPRV_BLOCK_MACRO_END
#define TEST_ASSERT_EQUALS(x,y) UPRV_BLOCK_MACRO_BEGIN { \
char _msg[1000]; \
int32_t len = snprintf (_msg, sizeof(_msg), "File %s, line %d: " #x "==" #y, __FILE__, __LINE__); \
(void)len; \
U_ASSERT(len < (int32_t) sizeof(_msg)); \
assertEquals((const char*) _msg, x,y); \
} UPRV_BLOCK_MACRO_END
// Ticket 8199: Parse failure for numbers in the range of 1E10 - 1E18
void NumberFormatRegressionTest::Test8199() {
UErrorCode status = U_ZERO_ERROR;
NumberFormat *nf = NumberFormat::createInstance(Locale::getEnglish(), status);
if (nf == nullptr) {
dataerrln("Fail: NumberFormat::createInstance(Locale::getEnglish(), status)");
return;
}
TEST_CHECK_STATUS(status);
// Note: Retrieving parsed values from a Formattable as a reduced-precision type
// should always truncate, no other rounding scheme.
UnicodeString numStr = "1000000000.6"; // 9 zeroes
Formattable val;
nf->parse(numStr, val, status);
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(Formattable::kDouble, val.getType());
TEST_ASSERT_EQUALS(1000000000LL, val.getInt64(status));
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(1000000000.6, val.getDouble(status));
TEST_CHECK_STATUS(status);
numStr = "100000000000000001.1"; // approx 1E17, parses as a double rather
// than int64 because of the fraction
// even though int64 is more precise.
nf->parse(numStr, val, status);
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(Formattable::kDouble, val.getType());
TEST_ASSERT_EQUALS(100000000000000001LL, val.getInt64(status));
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(100000000000000000.0, val.getDouble(status));
TEST_CHECK_STATUS(status);
numStr = "1E17"; // Parses with the internal decimal number having non-zero exponent
nf->parse(numStr, val, status);
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(Formattable::kInt64, val.getType());
TEST_ASSERT_EQUALS(100000000000000000LL, val.getInt64());
TEST_ASSERT_EQUALS(1.0E17, val.getDouble(status));
TEST_CHECK_STATUS(status);
numStr = "9223372036854775807"; // largest int64_t
nf->parse(numStr, val, status);
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(Formattable::kInt64, val.getType());
TEST_ASSERT_EQUALS(9223372036854775807LL, val.getInt64());
// In the following check, note that a substantial range of integers will
// convert to the same double value. There are also platform variations
// in the rounding at compile time of double constants.
TEST_ASSERT(9223372036854775808.0 >= val.getDouble(status));
TEST_ASSERT(9223372036854774700.0 <= val.getDouble(status));
TEST_CHECK_STATUS(status);
numStr = "-9223372036854775808"; // smallest int64_t
nf->parse(numStr, val, status);
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(Formattable::kInt64, val.getType());
// TEST_ASSERT_EQUALS(-9223372036854775808LL, val.getInt64()); // Compiler chokes on constant.
TEST_ASSERT_EQUALS((int64_t)0x8000000000000000LL, val.getInt64());
TEST_ASSERT_EQUALS(-9223372036854775808.0, val.getDouble(status));
TEST_CHECK_STATUS(status);
numStr = "9223372036854775808"; // largest int64_t + 1
nf->parse(numStr, val, status);
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(Formattable::kDouble, val.getType());
TEST_ASSERT_EQUALS(9223372036854775807LL, val.getInt64(status));
TEST_ASSERT_EQUALS(status, U_INVALID_FORMAT_ERROR);
status = U_ZERO_ERROR;
TEST_ASSERT_EQUALS(9223372036854775810.0, val.getDouble(status));
TEST_CHECK_STATUS(status);
numStr = "-9223372036854775809"; // smallest int64_t - 1
nf->parse(numStr, val, status);
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(Formattable::kDouble, val.getType());
// TEST_ASSERT_EQUALS(-9223372036854775808LL, val.getInt64(status)); // spurious compiler warnings
TEST_ASSERT_EQUALS((int64_t)0x8000000000000000LL, val.getInt64(status));
TEST_ASSERT_EQUALS(status, U_INVALID_FORMAT_ERROR);
status = U_ZERO_ERROR;
TEST_ASSERT_EQUALS(-9223372036854775810.0, val.getDouble(status));
TEST_CHECK_STATUS(status);
// Test values near the limit of where doubles can represent all integers.
// The implementation strategy of getInt64() changes at this boundary.
// Strings to be parsed include a decimal fraction to force them to be
// parsed as doubles rather than ints. The fraction is discarded
// from the parsed double value because it is beyond what can be represented.
status = U_ZERO_ERROR;
numStr = "9007199254740991.1"; // largest 53 bit int
nf->parse(numStr, val, status);
TEST_CHECK_STATUS(status);
// printf("getInt64() returns %lld\n", val.getInt64(status));
TEST_ASSERT_EQUALS(Formattable::kDouble, val.getType());
TEST_ASSERT_EQUALS(9007199254740991LL, val.getInt64(status));
TEST_ASSERT_EQUALS(9007199254740991.0, val.getDouble(status));
TEST_CHECK_STATUS(status);
status = U_ZERO_ERROR;
numStr = "9007199254740992.1"; // 54 bits for the int part.
nf->parse(numStr, val, status);
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(Formattable::kDouble, val.getType());
TEST_ASSERT_EQUALS(9007199254740992LL, val.getInt64(status));
TEST_ASSERT_EQUALS(9007199254740992.0, val.getDouble(status));
TEST_CHECK_STATUS(status);
status = U_ZERO_ERROR;
numStr = "9007199254740993.1"; // 54 bits for the int part. Double will round
nf->parse(numStr, val, status); // the ones digit, putting it up to ...994
TEST_CHECK_STATUS(status);
TEST_ASSERT_EQUALS(Formattable::kDouble, val.getType());
TEST_ASSERT_EQUALS((int64_t)9007199254740993LL,val.getInt64(status));
TEST_ASSERT_EQUALS((double)9007199254740994.0,(double)val.getDouble(status));
TEST_CHECK_STATUS(status);
delete nf;
}
void NumberFormatRegressionTest::Test9109() {
UErrorCode status = U_ZERO_ERROR;
Formattable val;
ParsePosition pos;
DecimalFormat fmt("+##", status);
if (U_FAILURE(status)) {
dataerrln("Failed to create DecimalFormat with pattern '+##' - %s", u_errorName(status));
return;
}
fmt.setLenient(true);
UnicodeString text("123");
int32_t expected = 123;
int32_t expos = 3;
fmt.parse(text, val, pos);
if (pos.getErrorIndex() >= 0) {
errln(UnicodeString("Parse failure at ") + pos.getErrorIndex());
} else if (val.getLong() != 123) {
errln(UnicodeString("Incorrect parse result: ") + val.getLong() + " expected: " + expected);
} else if (pos.getIndex() != 3) {
errln(UnicodeString("Incorrect parse position: ") + pos.getIndex() + " expected: " + expos);
}
}
void NumberFormatRegressionTest::Test9780() {
UErrorCode status = U_ZERO_ERROR;
NumberFormat *nf = NumberFormat::createInstance(Locale::getUS(), status);
if (failure(status, "NumberFormat::createInstance", true)){
delete nf;
return;
}
DecimalFormat *df = dynamic_cast<DecimalFormat *>(nf);
if(df == nullptr) {
errln("DecimalFormat needed to continue");
return;
}
df->setParseIntegerOnly(true);
{
Formattable n;
ParsePosition pos(0);
UnicodeString toParse("1,234","");
df->parse(toParse, n, pos);
if (n.getType() != Formattable::kLong
|| n.getLong() != 1234) {
errln(UnicodeString("FAIL: parse(\"") + toParse + UnicodeString("\") returns ") + toString(n));
}
}
// should still work in lenient mode, just won't get fastpath
df->setLenient(true);
{
Formattable n;
ParsePosition pos(0);
UnicodeString toParse("1,234","");
df->parse(toParse, n, pos);
if (n.getType() != Formattable::kLong
|| n.getLong() != 1234) {
errln(UnicodeString("FAIL: parse(\"") + toParse + UnicodeString("\") returns ") + toString(n));
}
}
delete nf;
}
void NumberFormatRegressionTest::Test9677() {
static const char16_t pattern[] = { 0x23,0x23,0x23,0x23,0x2E,0x23,0x23,0x23,0x23,0 }; // "####.####"
static const char16_t positivePrefix[] = { 0x40,0 }; // "@"
static const char16_t negativePrefix[] = { 0x6E,0 }; // "n"
static const char16_t text[] = { 0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0 }; // 123456789
static const char16_t text2[] = { 0x6E, 0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0 }; // n123456789
UErrorCode status = U_ZERO_ERROR;
LocalUNumberFormatPointer f(unum_open(UNUM_DEFAULT, nullptr, 0, "en_US", nullptr, &status));
if (U_FAILURE(status)) {
dataerrln("Failure opening unum_open");
return;
}
if (U_SUCCESS(status)) {
unum_applyPattern(f.getAlias(), false, pattern, -1, nullptr, &status);
unum_setTextAttribute(f.getAlias(), UNUM_POSITIVE_PREFIX, positivePrefix, -1, &status);
assertSuccess("setting attributes", status);
}
if(U_SUCCESS(status)) {
int32_t n = unum_parse(f.getAlias(), text, -1, nullptr, &status);
logln("unum_parse status %s, result %d\n", u_errorName(status), n);
if(U_FAILURE(status)) {
logln("Got expected parse error %s\n", u_errorName(status));
status = U_ZERO_ERROR;
} else {
errln("FAIL: unum_parse status %s, result %d - expected failure\n", u_errorName(status), n);
}
}
if (U_SUCCESS(status)) {
unum_setTextAttribute(f.getAlias(), UNUM_POSITIVE_PREFIX, nullptr, 0, &status);
assertSuccess("setting attributes", status);
logln("removed positive prefix");
}
if(U_SUCCESS(status)) {
int32_t n = unum_parse(f.getAlias(), text, -1, nullptr, &status);
logln("unum_parse status %s, result %d\n", u_errorName(status), n);
if(U_FAILURE(status)) {
errln("FAIL: with pos prefix removed, parse error %s\n", u_errorName(status));
status = U_ZERO_ERROR;
} else {
if(n!=123456789) {
errln("FAIL: with pos prefix removed , unum_parse status %s, result %d expected 123456789\n", u_errorName(status), n);
} else {
logln("PASS: with pos prefix removed , unum_parse status %s, result %d expected 123456789\n", u_errorName(status),n);
}
}
}
if(U_SUCCESS(status)) {
int32_t n = unum_parse(f.getAlias(), text2, -1, nullptr, &status);
logln("unum_parse status %s, result %d\n", u_errorName(status), n);
if(U_FAILURE(status)) {
logln("text2: Got expected parse error %s\n", u_errorName(status));
status = U_ZERO_ERROR;
} else {
errln("FAIL: text2: unum_parse status %s, result %d - expected failure\n", u_errorName(status), n);
}
}
if (U_SUCCESS(status)) {
unum_setTextAttribute(f.getAlias(), UNUM_NEGATIVE_PREFIX, negativePrefix, -1, &status);
assertSuccess("setting attributes", status);
logln("Set a different neg prefix prefix");
}
if(U_SUCCESS(status)) {
int32_t n = unum_parse(f.getAlias(), text2, -1, nullptr, &status);
logln("unum_parse status %s, result %d\n", u_errorName(status), n);
if(U_FAILURE(status)) {
errln("FAIL: with different neg prefix , parse error %s\n", u_errorName(status));
status = U_ZERO_ERROR;
} else {
if(n!=-123456789) {
errln("FAIL: with different neg prefix , unum_parse status %s, result %d expected -123456789\n", u_errorName(status), n);
} else {
logln("PASS: with different neg prefix , unum_parse status %s, result %d expected -123456789\n", u_errorName(status), n);
}
}
}
}
void NumberFormatRegressionTest::Test10361() {
// DecimalFormat/NumberFormat were artificially limiting the number of digits,
// preventing formatting of big decimals.
UErrorCode status = U_ZERO_ERROR;
DecimalFormatSymbols symbols(Locale::getEnglish(), status);
LocalPointer<DecimalFormat> df(new DecimalFormat("###.##", symbols, status), status);
TEST_CHECK_STATUS(status);
// Create a decimal number with a million digits.
const int32_t NUMSIZE=1000000;
char *num = new char[NUMSIZE];
for (int32_t i=0; i<NUMSIZE; i++) {
num[i] = '0' + (i+1) % 10;
}
num[NUMSIZE-3] = '.';
num[NUMSIZE-1] = 0;
UnicodeString s;
Formattable fmtable;
fmtable.setDecimalNumber(num, status);
TEST_CHECK_STATUS(status);
FieldPosition pos(UNUM_DECIMAL_SEPARATOR_FIELD);
df->format(fmtable, s, pos, status);
TEST_CHECK_STATUS(status);
TEST_ASSERT(999999 == s.length());
TEST_ASSERT(999997 == pos.getBeginIndex());
TEST_ASSERT(999998 == pos.getEndIndex());
UnicodeString expected(num, -1, US_INV);
TEST_ASSERT(expected == s);
delete [] num;
}
#endif /* #if !UCONFIG_NO_FORMATTING */
|