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 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019
|
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
import os, sys, runpy, getopt, traceback, types, threading, time, datetime, re, itertools, random, subprocess, shutil
import copy, inspect, xml.sax.saxutils
from platform import machine as platform_machine
isPython2 = sys.version_info[0] == 2
if isPython2:
import Queue as queue
from StringIO import StringIO
else:
import queue
from io import StringIO
from collections import OrderedDict
import Expect
toplevel = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
def run(cmd, cwd=None, err=False, stdout=False, stdin=None, stdinRepeat=True):
p = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=None if stdout else subprocess.PIPE,
stderr=subprocess.STDOUT, cwd=cwd)
try:
if stdin:
try:
while True:
p.stdin.write(stdin)
p.stdin.flush()
if not stdinRepeat:
break
time.sleep(1)
except:
pass
out = (p.stderr if stdout else p.stdout).read().decode('UTF-8').strip()
if(not err and p.wait() != 0) or (err and p.wait() == 0) :
raise RuntimeError(cmd + " failed:\n" + out)
finally:
#
# Without this we get warnings when running with python_d on Windows
#
# ResourceWarning: unclosed file <_io.TextIOWrapper name=3 encoding='cp1252'>
#
(p.stderr if stdout else p.stdout).close()
try:
p.stdin.close()
except Exception:
pass
return out
def val(v, quoteValue=True):
if type(v) == bool:
return "1" if v else "0"
elif type(v) == str:
if not quoteValue or v.find(" ") < 0:
return v
v = v.replace("\\", "\\\\").replace("\"", "\\\"")
return "\"{0}\"".format(v)
else:
return str(v)
illegalXMLChars = re.compile(u'[\x00-\x08\x0b\x0c\x0e-\x1F\uD800-\uDFFF\uFFFE\uFFFF]')
def escapeXml(s, attribute=False):
# Remove backspace characters from the output (they aren't accepted by Jenkins XML parser)
if isPython2:
s = "".join(ch for ch in unicode(s.decode("utf-8")) if ch != u"\u0008").encode("utf-8")
else:
s = "".join(ch for ch in s if ch != u"\u0008")
s = illegalXMLChars.sub("?", s) # Strip invalid XML characters
return xml.sax.saxutils.quoteattr(s) if attribute else xml.sax.saxutils.escape(s)
"""
Component abstract class. The driver and mapping classes rely on the component
class to provide component specific information.
"""
class Component(object):
def __init__(self):
self.nugetVersion = {}
"""
Returns whether or not to use the binary distribution.
"""
def useBinDist(self, mapping, current):
return True
"""
Returns the component installation directory if using a binary distribution
or the mapping directory if using a source distribution.
"""
def getInstallDir(self, mapping, current):
raise Error("must be overriden")
def getSourceDir(self):
return toplevel
def getTestDir(self, mapping):
if isinstance(mapping, JavaMapping):
return os.path.join(mapping.getPath(), "test", "src", "main", "java", "test")
elif isinstance(mapping, TypeScriptMapping):
return os.path.join(mapping.getPath(), "test", "typescript")
return os.path.join(mapping.getPath(), "test")
def getScriptDir(self):
return os.path.join(self.getSourceDir(), "scripts", "tests")
def getPhpExtension(self, mapping, current):
raise RuntimeError("must be overriden if component provides php mapping")
def getNugetPackage(self, mapping):
return "zeroc.{0}.{1}".format(self.__class__.__name__.lower(),
"net" if isinstance(mapping, CSharpMapping) else platform.getPlatformToolset())
def getNugetPackageVersion(self, mapping):
if not mapping in self.nugetVersion:
file = self.getNugetPackageVersionFile(mapping)
if file.endswith(".nuspec"):
expr = "<version>(.*)</version>"
elif file.endswith("packages.config"):
expr = "id=\"{0}\" version=\"(.*)\" target".format(self.getNugetPackage(mapping))
if expr:
with open(file, "r") as config:
m = re.search(expr, config.read())
if m:
self.nugetVersion[mapping] = m.group(1)
if not mapping in self.nugetVersion:
raise RuntimeError("couldn't figure out the nuget version from `{0}'".format(file))
return self.nugetVersion[mapping]
def getNugetPackageVersionFile(self, mapping):
raise RuntimeError("must be overriden if component provides C++ or C# nuget packages")
def getFilters(self, mapping, config):
return ([], [])
def canRun(self, testId, mapping, current):
return True
def isMainThreadOnly(self, testId):
return True
def getDefaultProcesses(self, mapping, processType, testId):
return None
def getDefaultExe(self, mapping, processType):
return None
def getDefaultSource(self, mapping, processType):
return None
def getOptions(self, testcase, current):
return None
def getRunOrder(self):
return []
def getEnv(self, process, current):
return {}
def getProps(self, process, current):
return {}
def overrideConfig(self, mapping, config):
return config
def isCross(self, testId):
return False
def getSliceDir(self, mapping, current):
installDir = self.getInstallDir(mapping, current)
if installDir.endswith(mapping.name):
installDir = installDir[0:len(installDir) - len(mapping.name) - 1]
if platform.getInstallDir() and installDir == platform.getInstallDir():
return os.path.join(installDir, "share", "ice", "slice")
else:
return os.path.join(installDir, "slice")
def getBinDir(self, process, mapping, current):
return platform._getBinDir(self, process, mapping, current)
def getLibDir(self, process, mapping, current):
return platform._getLibDir(self, process, mapping, current)
def getPhpIncludePath(self, mapping, current):
return "{0}/{1}".format(self.getInstallDir(mapping, current), "php" if self.useBinDist(mapping, current) else "lib")
def _useBinDist(self, mapping, current, envName):
env = os.environ.get(envName, "").split()
return 'all' in env or mapping.name in env
def _getInstallDir(self, mapping, current, envHomeName):
if self.useBinDist(mapping, current):
# On Windows or for the C# mapping we first look for Nuget packages rather than the binary installation
if isinstance(platform, Windows) or isinstance(mapping, CSharpMapping):
packageDir = platform.getNugetPackageDir(self, mapping, current)
if envHomeName and not os.path.exists(packageDir):
home = os.environ.get(envHomeName, "")
if not home or not os.path.exists(home):
raise RuntimeError("Cannot detect a valid distribution in `" + envHomeName + "'")
return home
else:
return packageDir
else:
return os.environ.get(envHomeName, platform.getInstallDir())
elif mapping:
return mapping.getPath()
else:
return self.getSourceDir()
class Platform(object):
def __init__(self):
try:
self.nugetPackageCache = re.search("global-packages: (.*)",
run("dotnet nuget locals --list global-packages")).groups(1)[0]
except:
self.nugetPackageCache = None
self._hasNodeJS = None
self._hasSwift = None
def init(self, component):
self.parseBuildVariables(component, {
"supported-platforms" : ("supportedPlatforms", lambda s : s.split(" ")),
"supported-configs" : ("supportedConfigs", lambda s : s.split(" "))
})
def hasDotNet(self):
return self.nugetPackageCache != None
def hasNodeJS(self):
if self._hasNodeJS is None:
try:
run("node --version")
self._hasNodeJS = True
except:
self._hasNodeJS = False
return self._hasNodeJS
def hasSwift(self, version):
if self._hasSwift is None:
try:
m = re.search("Apple Swift version ([0-9]+\.[0-9]+)", run("swift --version"))
if m and m.group(1):
self._hasSwift = tuple([int(n) for n in m.group(1).split(".")]) >= version
else:
self.hasSwift = False
except:
self._hasSwift = False
return self._hasSwift
def parseBuildVariables(self, component, variables):
# Run make to get the values of the given variables
if os.path.exists(os.path.join(component.getSourceDir(), "Makefile")): # Top level makefile
cwd = component.getSourceDir()
elif Mapping.getByName("cpp"):
cwd = Mapping.getByName("cpp").getPath()
output = run('make print V="{0}"'.format(" ".join(variables.keys())), cwd=cwd)
for l in output.split("\n"):
match = re.match(r'^.*:.*: (.*) = (.*)', l)
if match and match.group(1):
if match.group(1) in variables:
(varname, valuefn) = variables[match.group(1).strip()]
value = match.group(2).strip() or ""
setattr(self, varname, valuefn(value) if valuefn else value)
def getDefaultBuildPlatform(self):
return self.supportedPlatforms[0]
def getDefaultBuildConfig(self):
return self.supportedConfigs[0]
def _getBinDir(self, component, process, mapping, current):
installDir = component.getInstallDir(mapping, current)
if isinstance(mapping, CSharpMapping):
if component.useBinDist(mapping, current):
return os.path.join(installDir, "tools", mapping.getBinTargetFramework(current))
else:
return os.path.join(installDir, "bin", mapping.getBinTargetFramework(current))
return os.path.join(installDir, "bin")
def _getLibDir(self, component, process, mapping, current):
installDir = component.getInstallDir(mapping, current)
if isinstance(mapping, CSharpMapping):
return os.path.join(installDir, "lib", "netstandard2.0")
return os.path.join(installDir, "lib")
def getBuildSubDir(self, mapping, name, current):
# Return the build sub-directory, to be overriden by specializations
buildPlatform = current.driver.configs[mapping].buildPlatform
buildConfig = current.driver.configs[mapping].buildConfig
return os.path.join("build", buildPlatform, buildConfig)
def getLdPathEnvName(self):
return "LD_LIBRARY_PATH"
def getInstallDir(self):
return "/usr"
def getNugetPackageDir(self, component, mapping, current):
if not self.nugetPackageCache:
return None
return os.path.join(self.nugetPackageCache,
component.getNugetPackage(mapping),
component.getNugetPackageVersion(mapping))
def hasOpenSSL(self):
# This is used by the IceSSL test suite to figure out how to setup certificates
return False
def getDotNetExe(self):
return "dotnet"
class Darwin(Platform):
def getDefaultBuildPlatform(self):
return "macosx"
def getLdPathEnvName(self):
return "DYLD_LIBRARY_PATH"
def getInstallDir(self):
return "/usr/local"
class AIX(Platform):
def hasOpenSSL(self):
return True
def _getLibDir(self, component, process, mapping, current):
installDir = component.getInstallDir(mapping, current)
if component.useBinDist(mapping, current):
return os.path.join(installDir, "lib")
else:
return os.path.join(installDir, "lib32" if current.config.buildPlatform == "ppc" else "lib")
def getDefaultBuildPlatform(self):
return "ppc64"
def getInstallDir(self):
return "/opt/freeware"
class Linux(Platform):
def __init__(self):
Platform.__init__(self)
self.multiArch = {}
self.linuxId = None
self.buildPlatform = None
self.foreignPlatforms = []
def init(self, component):
Platform.init(self, component)
self.parseBuildVariables(component, {
"linux_id" : ("linuxId", None),
"build-platform" : ("buildPlatform", None),
"foreign-platforms" : ("foreignPlatforms", lambda s : s.split(" ") if s else []),
})
if self.linuxId in ["ubuntu", "debian"]:
for p in [self.buildPlatform] + self.foreignPlatforms:
self.multiArch[p] = run("dpkg-architecture -f -a{0} -qDEB_HOST_MULTIARCH 2> /dev/null".format(p))
def hasOpenSSL(self):
return True
def _getBinDir(self, component, process, mapping, current):
installDir = component.getInstallDir(mapping, current)
if isinstance(mapping, CSharpMapping):
return Platform._getBinDir(self, component, process, mapping, current)
if self.linuxId in ["ubuntu", "debian"]:
binDir = os.path.join(installDir, "bin", self.multiArch[current.driver.configs[mapping].buildPlatform])
if os.path.exists(binDir):
return binDir
return os.path.join(installDir, "bin")
def _getLibDir(self, component, process, mapping, current):
installDir = component.getInstallDir(mapping, current)
if isinstance(mapping, CSharpMapping):
return Platform._getLibDir(self, component, process, mapping, current)
buildPlatform = current.driver.configs[mapping].buildPlatform
# PHP module is always installed in the lib directory for the default build platform
if isinstance(mapping, PhpMapping) and buildPlatform == self.getDefaultBuildPlatform():
return os.path.join(installDir, "lib")
if self.linuxId in ["centos", "rhel", "fedora"]:
return os.path.join(installDir, "lib64" if buildPlatform == "x64" else "lib")
elif self.linuxId in ["ubuntu", "debian"]:
return os.path.join(installDir, "lib", self.multiArch[buildPlatform])
return os.path.join(installDir, "lib")
def getBuildSubDir(self, mapping, name, current):
buildPlatform = current.driver.configs[mapping].buildPlatform
buildConfig = current.driver.configs[mapping].buildConfig
if self.linuxId in ["ubuntu", "debian"]:
return os.path.join("build", self.multiArch[buildPlatform], buildConfig)
else:
return os.path.join("build", buildPlatform, buildConfig)
def getLinuxId(self):
return self.linuxId
class Windows(Platform):
def __init__(self):
Platform.__init__(self)
self.compiler = None
def parseBuildVariables(self, component, variables):
pass # Nothing to do, we don't support the make build system on Windows
def getDefaultBuildPlatform(self):
return "x64" if "X64" in os.environ.get("PLATFORM", "") else "Win32"
def getDefaultBuildConfig(self):
return "Release"
def getCompiler(self):
if self.compiler != None:
return self.compiler
if os.environ.get("CPP_COMPILER", "") != "":
self.compiler = os.environ["CPP_COMPILER"]
else:
try:
out = run("cl")
if out.find("Version 16.") != -1:
self.compiler = "v100"
elif out.find("Version 17.") != -1:
self.compiler = "v110"
elif out.find("Version 18.") != -1:
self.compiler = "v120"
elif out.find("Version 19.00.") != -1:
self.compiler = "v140"
elif out.find("Version 19.1") != -1:
self.compiler = "v141"
elif out.find("Version 19.2") != -1:
self.compiler = "v142"
elif out.find("Version 19.3") != -1:
self.compiler = "v143"
else:
raise RuntimeError("Unknown compiler version:\n{0}".format(out))
except:
self.compiler = ""
return self.compiler
def getPlatformToolset(self):
return self.getCompiler().replace("VC", "v")
def _getBinDir(self, component, process, mapping, current):
installDir = component.getInstallDir(mapping, current)
platform = current.driver.configs[mapping].buildPlatform
config = "Debug" if current.driver.configs[mapping].buildConfig.find("Debug") >= 0 else "Release"
if component.useBinDist(mapping, current):
if installDir != self.getNugetPackageDir(component, mapping, current):
return os.path.join(installDir, "bin")
elif isinstance(process, SliceTranslator):
return os.path.join(installDir, "tools")
elif isinstance(mapping, CSharpMapping):
return os.path.join(installDir, "tools", mapping.getBinTargetFramework(current))
elif process.isReleaseOnly():
# Some services are only available in release mode in the Nuget package
return os.path.join(installDir, "build", "native", "bin", platform, "Release")
else:
return os.path.join(installDir, "build", "native", "bin", platform, config)
else:
if isinstance(mapping, CSharpMapping):
return os.path.join(installDir, "bin", mapping.getBinTargetFramework(current))
elif isinstance(mapping, PhpMapping):
return os.path.join(self.getNugetPackageDir(component, mapping, current),
"build", "native", "bin", platform, config)
else:
return os.path.join(installDir, "bin", platform, config)
def _getLibDir(self, component, process, mapping, current):
installDir = component.getInstallDir(mapping, current)
if isinstance(mapping, CSharpMapping):
return os.path.join(installDir, "lib", mapping.getLibTargetFramework(current))
else:
platform = current.driver.configs[mapping].buildPlatform
config = "Debug" if current.driver.configs[mapping].buildConfig.find("Debug") >= 0 else "Release"
if isinstance(mapping, PhpMapping):
return os.path.join(installDir, "lib", "php-{0}".format(current.config.phpVersion), platform, config)
if isinstance(mapping, MatlabMapping):
return os.path.join(installDir, "lib", platform, config)
elif component.useBinDist(mapping, current):
return os.path.join(installDir, "build", "native", "bin", platform, config)
else:
return os.path.join(installDir, "bin", platform, config)
def getBuildSubDir(self, mapping, name, current):
buildPlatform = current.driver.configs[mapping].buildPlatform
buildConfig = current.driver.configs[mapping].buildConfig
if os.path.exists(os.path.join(current.testcase.getPath(current), "msbuild", name)):
return os.path.join("msbuild", name, buildPlatform, buildConfig)
else:
return os.path.join("msbuild", buildPlatform, buildConfig)
def getLdPathEnvName(self):
return "PATH"
def getInstallDir(self):
return None # No default installation directory on Windows
def getNugetPackageDir(self, component, mapping, current):
if isinstance(mapping, CSharpMapping) and current.config.dotnet:
return Platform.getNugetPackageDir(self, component, mapping, current)
else:
package = "{0}.{1}".format(component.getNugetPackage(mapping), component.getNugetPackageVersion(mapping))
# The package directory is either under the msbuild directory or in the mapping directory depending
# on where the solution is located.
if os.path.exists(os.path.join(mapping.path, "msbuild", "packages")):
return os.path.join(mapping.path, "msbuild", "packages", package)
else:
return os.path.join(mapping.path, "packages", package)
def getDotNetExe(self):
try:
return run("where dotnet").strip().splitlines()[0]
except:
return None
def parseOptions(obj, options, mapped={}):
# Transform configuration options provided on the command line to
# object data members. The data members must be already set on the
# object and with the correct type.
if not hasattr(obj, "parsedOptions"):
obj.parsedOptions=[]
remaining = []
for (o, a) in options:
if o.startswith("--"): o = o[2:]
if o.startswith("-"): o = o[1:]
if not a and o.startswith("no-"):
a = "false"
o = o[3:]
if o in mapped:
o = mapped[o]
if hasattr(obj, o):
if isinstance(getattr(obj, o), bool):
setattr(obj, o, True if not a else (a.lower() in ["yes", "true", "1"]))
elif isinstance(getattr(obj, o), list):
l = getattr(obj, o)
l.append(a)
else:
if not a and not isinstance(a, str):
a = "0"
setattr(obj, o, type(getattr(obj, o))(a))
if not o in obj.parsedOptions:
obj.parsedOptions.append(o)
else:
remaining.append((o, a))
options[:] = remaining
"""
Mapping abstract class. The mapping class provides mapping specific information.
Multiple components can share the same mapping rules as long as the layout is
similar.
"""
class Mapping(object):
mappings = OrderedDict()
disabled = OrderedDict()
class Config(object):
@classmethod
def getSupportedArgs(self):
return ("", ["config=", "platform=", "protocol=", "target=", "compress", "ipv6", "no-ipv6", "serialize",
"mx", "cprops=", "sprops="])
@classmethod
def usage(self):
pass
@classmethod
def commonUsage(self):
print("")
print("Mapping options:")
print("--protocol=<prot> Run with the given protocol.")
print("--compress Run the tests with protocol compression.")
print("--ipv6 Use IPv6 addresses.")
print("--serialize Run with connection serialization.")
print("--mx Run with metrics enabled.")
print("--cprops=<properties> Specifies a list of additional client properties.")
print("--sprops=<properties> Specifies a list of additional server properties.")
print("--config=<config> Build configuration for native executables.")
print("--platform=<platform> Build platform for native executables.")
def __init__(self, options=[]):
# Build configuration
self.parsedOptions = []
self.buildConfig = os.environ.get("CONFIGS", "").split(" ")[0]
if self.buildConfig:
self.parsedOptions.append("buildConfig")
else:
self.buildConfig = platform.getDefaultBuildConfig()
self.buildPlatform = os.environ.get("PLATFORMS", "").split(" ")[0]
if self.buildPlatform:
self.parsedOptions.append("buildPlatform")
else:
self.buildPlatform = platform.getDefaultBuildPlatform()
self.pathOverride = ""
self.protocol = "tcp"
self.compress = False
self.serialize = False
self.ipv6 = False
self.mx = False
self.cprops = []
self.sprops = []
# Options bellow are not parsed by the base class by still initialized here for convenience (this
# avoid having to check the configuration type)
self.openssl = False
self.browser = ""
self.es5 = False
self.worker = False
self.dotnet = False
self.framework = ""
self.android = False
self.device = ""
self.avd = ""
self.phpVersion = "7.1"
self.python = sys.executable
parseOptions(self, options, { "config" : "buildConfig", "platform" : "buildPlatform" })
def __str__(self):
s = []
for o in self.parsedOptions:
v = getattr(self, o)
if v: s.append(o if type(v) == bool else str(v))
return ",".join(s)
def getAll(self, current, testcase, rand=False):
#
# A generator to generate combinations of options (e.g.: tcp/compress/mx, ssl/ipv6/serialize, etc)
#
def gen(supportedOptions):
if not supportedOptions:
yield self
return
supportedOptions = supportedOptions.copy()
supportedOptions.update(testcase.getMapping().getOptions(current))
supportedOptions.update(testcase.getTestSuite().getOptions(current))
supportedOptions.update(testcase.getOptions(current))
for o in self.parsedOptions:
# Remove options which were explicitly set
if o in supportedOptions:
del supportedOptions[o]
if len(supportedOptions) == 0:
yield self
return
# Find the option with the longest list of values
length = max([len(v) for v in supportedOptions.values()])
# Replace the values with a cycle iterator on the values
for (k, v) in supportedOptions.items():
supportedOptions[k] = itertools.cycle(random.sample(v, len(v)) if rand else v)
# Now, for the length of the longest array of values, we return
# an array with the supported option combinations
for i in range(0, length):
options = []
for k, v in supportedOptions.items():
v = next(v)
if v:
if type(v) == bool:
if v:
options.append(("--{0}".format(k), None))
else:
options.append(("--{0}".format(k), v))
# Add parsed options
for o in self.parsedOptions:
v = getattr(self, o)
if type(v) == bool:
if v:
options.append(("--{0}".format(o), None))
elif type(v) == list:
options += [("--{0}".format(o), e) for e in v]
else:
options.append(("--{0}".format(o), v))
yield self.__class__(options)
return [c for c in gen(current.driver.filterOptions(current.driver.getComponent().getOptions(testcase, current)))]
def canRun(self, testId, current):
if not current.driver.getComponent().canRun(testId, current.testcase.getMapping(), current):
return False
options = {}
options.update(current.testcase.getMapping().getOptions(current))
options.update(current.testcase.getTestSuite().getOptions(current))
options.update(current.testcase.getOptions(current))
for (k, v) in options.items():
if hasattr(self, k):
if not getattr(self, k) in v:
return False
elif hasattr(current.driver, k):
if not getattr(current.driver, k) in v:
return False
else:
return True
def cloneRunnable(self, current):
#
# Clone this configuration and make sure all the options are supported
#
options = {}
options.update(current.testcase.getMapping().getOptions(current))
options.update(current.testcase.getTestSuite().getOptions(current))
options.update(current.testcase.getOptions(current))
clone = copy.copy(self)
for o in self.parsedOptions:
if o in options and getattr(self, o) not in options[o]:
setattr(clone, o, options[o][0] if len(options[o]) > 0 else None)
return clone
def cloneAndOverrideWith(self, current):
#
# Clone this configuration and override options with options from the given configuration
# (the parent configuraton). This is usefull when running cross-testing. For example, JS
# tests don't support all the options so we clone the C++ configuration and override the
# options that are set on the JS configuration.
#
clone = copy.copy(self)
for o in current.config.parsedOptions + ["protocol"]:
if o not in ["buildConfig", "buildPlatform"]:
setattr(clone, o, getattr(current.config, o))
clone.parsedOptions = current.config.parsedOptions
return clone
def getArgs(self, process, current):
return []
def getProps(self, process, current):
props = {}
if isinstance(process, IceProcess):
props["Ice.Warn.Connections"] = True
if self.protocol:
props["Ice.Default.Protocol"] = self.protocol
if self.compress:
props["Ice.Override.Compress"] = "1"
if self.serialize:
props["Ice.ThreadPool.Server.Serialize"] = "1"
props["Ice.IPv6"] = self.ipv6
if self.ipv6:
props["Ice.PreferIPv6Address"] = True
if self.mx:
props["Ice.Admin.Endpoints"] = "tcp -h \"::1\"" if self.ipv6 else "tcp -h 127.0.0.1"
props["Ice.Admin.InstanceName"] = "Server" if isinstance(process, Server) else "Client"
props["IceMX.Metrics.Debug.GroupBy"] ="id"
props["IceMX.Metrics.Parent.GroupBy"] = "parent"
props["IceMX.Metrics.All.GroupBy"] = "none"
#
# Speed up Windows testing. We override the connect timeout for some tests which are
# establishing connections to inactive ports. It takes around 1s for such connection
# establishment to fail on Windows.
#
# if isinstance(platform, Windows):
# if current.testsuite.getId().startswith("IceGrid") or \
# current.testsuite.getId() in ["Ice/binding",
# "Ice/location",
# "Ice/background",
# "Ice/faultTolerance",
# "Ice/services",
# "IceDiscovery/simple"]:
# props["Ice.Override.ConnectTimeout"] = "400"
# Additional properties specified on the command line with --cprops or --sprops
additionalProps = []
if self.cprops and isinstance(process, Client):
additionalProps = self.cprops
elif self.sprops and isinstance(process, Server):
additionalProps = self.sprops
for pps in additionalProps:
for p in pps.split(" "):
if p.find("=") > 0:
(k , v) = p.split("=")
props[k] = v
else:
props[p] = True
return props
@classmethod
def getByName(self, name):
if not name in self.mappings:
raise RuntimeError("unknown mapping: `{0}', known mappings: `{1}'".format(
name, list(self.mappings)))
return self.mappings.get(name)
@classmethod
def getByPath(self, path):
path = os.path.normpath(path)
for m in self.mappings.values():
if path.startswith(os.path.normpath(m.getTestDir())):
return m
@classmethod
def getAllByPath(self, path):
path = os.path.abspath(path)
mappings = []
for m in self.mappings.values():
if path.startswith(m.getPath() + os.sep):
mappings.append(m)
return mappings
@classmethod
def add(self, name, mapping, component, path=None, enable=True):
name = name.replace("\\", "/")
m = mapping.init(name, component, path)
if enable:
self.mappings[name] = m
else:
self.disabled[name] = m
@classmethod
def disable(self, name):
m = self.mappings[name]
if m:
self.disabled[name] = m
del self.mappings[name]
@classmethod
def remove(self, name):
del self.mappings[name]
@classmethod
def getAll(self, driver=None, includeDisabled=False):
return [m for m in self.mappings.values() if not driver or driver.matchLanguage(str(m))] + \
([m for m in self.disabled.values() if not driver or driver.matchLanguage(str(m))] if includeDisabled else [])
def __init__(self, path=None):
self.name = None
self.path = os.path.abspath(path) if path else None
self.testsuites = {}
def init(self, name, component, path=None):
self.name = name
self.component = component
if not self.path:
self.path = os.path.normpath(os.path.join(self.component.getSourceDir(), path or name))
return self
def __str__(self):
return self.name
def getTestDir(self):
return self.component.getTestDir(self)
def createConfig(self, options):
config = self.Config(options)
return self.component.overrideConfig(self, config)
def filterTestSuite(self, testId, config, filters=[], rfilters=[]):
if len(filters) > 0:
for f in filters:
if f.search(self.name + "/" + testId):
break
else:
return True
if len(rfilters) > 0:
for f in rfilters:
if f.search(self.name + "/" + testId):
return True
return False
def loadTestSuites(self, tests, config, filters=[], rfilters=[]):
global currentMapping
currentMapping = self
global currentConfig
currentConfig = config
try:
origsyspath = sys.path
prefix = os.path.commonprefix([toplevel, self.component.getScriptDir()])
moduleprefix = self.component.getScriptDir()[len(prefix) + 1:].replace(os.sep, ".") + "."
sys.path = [prefix] + sys.path
for test in tests or [""]:
testDir = self.component.getTestDir(self)
for root, dirs, files in os.walk(os.path.join(testDir, test.replace('/', os.sep))):
testId = root[len(testDir) + 1:]
if os.sep != "/":
testId = testId.replace(os.sep, "/")
if self.filterTestSuite(testId, config, filters, rfilters):
continue
#
# First check if there's a test.py file in the test directory, if there's one use it.
#
if "test.py" in files :
#
# WORKAROUND for Python issue 15230 (fixed in 3.2) where run_path doesn't work correctly.
#
#runpy.run_path(os.path.join(root, "test.py"))
origsyspath = sys.path
sys.path = [root] + sys.path
runpy.run_module("test", init_globals=globals(), run_name=root)
origsyspath = sys.path
continue
#
# If there's no test.py file in the test directory, we check if there's a common
# script for the test in scripts/tests. If there's one we use it.
#
if os.path.isfile(os.path.join(self.component.getScriptDir(), testId + ".py")):
runpy.run_module(moduleprefix + testId.replace("/", "."), init_globals=globals(), run_name=root)
continue
#
# Finally, we try to "discover/compute" the test by looking up for well-known
# files.
#
testcases = self.computeTestCases(testId, files)
if testcases:
TestSuite(root, testcases)
finally:
currentMapping = None
sys.path = origsyspath
def getTestSuites(self, ids=[]):
if not ids:
return self.testsuites.values()
return [self.testsuites[testSuiteId] for testSuiteId in ids if testSuiteId in self.testsuites]
def addTestSuite(self, testsuite):
assert len(testsuite.path) > len(self.component.getTestDir(self)) + 1
testSuiteId = testsuite.path[len(self.component.getTestDir(self)) + 1:].replace('\\', '/')
self.testsuites[testSuiteId] = testsuite
return testSuiteId
def findTestSuite(self, testsuite):
return self.testsuites.get(testsuite if isinstance(testsuite, str) else testsuite.id)
def computeTestCases(self, testId, files):
# Instantiate a new test suite if the directory contains well-known source files.
def checkFile(f, m):
try:
# If given mapping is same as local mapping, just check the files set, otherwise check
# with the mapping
return (self.getDefaultSource(f) in files) if m == self else m.hasSource(testId, f)
except KeyError:
# Expected if the mapping doesn't support the process type
return False
checkClient = lambda f: checkFile(f, self.getClientMapping(testId))
checkServer = lambda f: checkFile(f, self.getServerMapping(testId))
testcases = []
if checkClient("client") and checkServer("server"):
testcases.append(ClientServerTestCase())
if checkClient("client") and checkServer("serveramd") and self.getServerMapping(testId) == self:
testcases.append(ClientAMDServerTestCase())
if checkClient("client") and checkServer("servertie") and self.getServerMapping(testId) == self:
testcases.append(ClientTieServerTestCase())
if checkClient("client") and checkServer("serveramdtie") and self.getServerMapping(testId) == self:
testcases.append(ClientAMDTieServerTestCase())
if checkClient("client") and len(testcases) == 0:
testcases.append(ClientTestCase())
if checkClient("collocated"):
testcases.append(CollocatedTestCase())
if len(testcases) > 0:
return testcases
def hasSource(self, testId, processType):
try:
return os.path.exists(os.path.join(self.component.getTestDir(self), testId, self.getDefaultSource(processType)))
except KeyError:
return False
def getPath(self):
return self.path
def getTestCwd(self, process, current):
return current.testcase.getPath(current)
def getDefaultSource(self, processType):
default = self.component.getDefaultSource(self, processType)
if default:
return default
return self._getDefaultSource(processType)
def getDefaultProcesses(self, processType, testsuite):
default = self.component.getDefaultProcesses(self, processType, testsuite.getId())
if default:
return default
return self._getDefaultProcesses(processType)
def getDefaultExe(self, processType):
default = self.component.getDefaultExe(self, processType)
if default:
return default
return self._getDefaultExe(processType)
def _getDefaultSource(self, processType):
return processType
def _getDefaultProcesses(self, processType):
#
# If no server or client is explicitly set with a testcase, getDefaultProcess is called
# to figure out which process class to instantiate.
#
name, ext = os.path.splitext(self.getDefaultSource(processType))
if name in globals():
return [globals()[name]()]
return [Server()] if processType.startswith("server") else [Client()] if processType else []
def _getDefaultExe(self, processType):
return os.path.splitext(self.getDefaultSource(processType))[0]
def getClientMapping(self, testId=None):
# The client mapping is always the same as this mapping.
return self
def getServerMapping(self, testId=None):
# Can be overridden for client-only mapping that relies on another mapping for servers
return self
def getBuildDir(self, name, current):
return platform.getBuildSubDir(self, name, current)
def getCommandLine(self, current, process, exe, args):
cmd = ""
if process.isFromBinDir():
# If it's a process from the bin directory, the location is platform specific
# so we check with the platform.
cmd = os.path.join(self.component.getBinDir(process, self, current), exe)
elif current.testcase:
# If it's a process from a testcase, the binary is in the test build directory.
cmd = os.path.join(current.testcase.getPath(current), current.getBuildDir(exe), exe)
else:
cmd = exe
if isinstance(platform, Windows) and not exe.endswith(".exe"):
cmd += ".exe"
return cmd + " " + args if args else cmd
def getProps(self, process, current):
props = {}
if isinstance(process, IceProcess):
if current.config.protocol in ["bt", "bts"]:
props["Ice.Plugin.IceBT"] = self.getPluginEntryPoint("IceBT", process, current)
if current.config.protocol in ["ssl", "wss", "bts", "iaps"]:
props.update(self.getSSLProps(process, current))
return props
def getSSLProps(self, process, current):
sslProps = {
"Ice.Plugin.IceSSL" : self.getPluginEntryPoint("IceSSL", process, current),
"IceSSL.Password": "password",
"IceSSL.DefaultDir": "" if current.config.buildPlatform == "iphoneos" else os.path.join(self.component.getSourceDir(), "certs"),
}
#
# If the client doesn't support client certificates, set IceSSL.VerifyPeer to 0
#
if isinstance(process, Server):
if isinstance(current.testsuite.getMapping(), JavaScriptMixin):
sslProps["IceSSL.VerifyPeer"] = 0
return sslProps
def getArgs(self, process, current):
return []
def getEnv(self, process, current):
return {}
def getOptions(self, current):
return {}
#
# A Runnable can be used as a "client" for in test cases, it provides
# implements run, setup and teardown methods.
#
class Runnable(object):
def __init__(self, desc=None):
self.desc = desc
def setup(self, current):
### Only called when ran from testcase
pass
def teardown(self, current, success):
### Only called when ran from testcase
pass
def run(self, current):
pass
#
# A Process describes how to run an executable process.
#
class Process(Runnable):
processType = None
def __init__(self, exe=None, outfilters=None, quiet=False, args=None, props=None, envs=None, desc=None,
mapping=None, preexec_fn=None, traceProps=None):
Runnable.__init__(self, desc)
self.exe = exe
self.outfilters = outfilters or []
self.quiet = quiet
self.args = args or []
self.props = props or {}
self.traceProps = traceProps or {}
self.envs = envs or {}
self.mapping = mapping
self.preexec_fn = preexec_fn
def __str__(self):
if not self.exe:
return str(self.__class__)
return self.exe + (" ({0})".format(self.desc) if self.desc else "")
def getOutput(self, current, encoding="utf-8"):
assert(self in current.processes)
def d(s):
return s if isPython2 else s.decode(encoding) if isinstance(s, bytes) else s
output = d(current.processes[self].getOutput())
try:
# Apply outfilters to the output
if len(self.outfilters) > 0:
lines = output.split('\n')
newLines = []
previous = ""
for line in [line + '\n' for line in lines]:
for f in self.outfilters:
if isinstance(f, types.LambdaType) or isinstance(f, types.FunctionType):
line = f(line)
elif f.search(line):
break
else:
if line.endswith('\n'):
if previous:
newLines.append(previous + line)
previous = ""
else:
newLines.append(line)
else:
previous += line
output = "".join(newLines)
output = output.strip()
return output + '\n' if output else ""
except Exception as ex:
print("unexpected exception while filtering process output:\n" + str(ex))
raise
def run(self, current, args=[], props={}, exitstatus=0, timeout=None):
class WatchDog:
def __init__(self, timeout):
self.lastProgressTime = time.time()
self.lock = threading.Lock()
def reset(self):
with self.lock: self.lastProgressTime = time.time()
def timedOut(self, timeout):
with self.lock:
return (time.time() - self.lastProgressTime) >= timeout
watchDog = WatchDog(timeout)
self.start(current, args, props, watchDog=watchDog)
process = current.processes[self]
if timeout is None:
# If it's not a local process use a large timeout as the watch dog might not
# get invoked (TODO: improve remote processes to use the watch dog)
timeout = 60 if isinstance(process, Expect.Expect) else 480
if not self.quiet and not current.driver.isWorkerThread():
# Print out the process output to stdout if we're running the client form the main thread.
process.trace(self.outfilters)
try:
while True:
try:
process.waitSuccess(exitstatus=exitstatus, timeout=30)
break
except KeyboardInterrupt:
current.driver.setInterrupt(True)
raise
except Expect.TIMEOUT:
if watchDog and watchDog.timedOut(timeout):
print("process {0} is hanging - {1}".format(process, time.strftime("%x %X")))
if current.driver.isInterrupted():
self.stop(current, False, exitstatus)
raise
finally:
self.stop(current, True, exitstatus)
def getEffectiveArgs(self, current, args):
allArgs = []
allArgs += current.driver.getArgs(self, current)
allArgs += current.config.getArgs(self, current)
allArgs += self.getMapping(current).getArgs(self, current)
allArgs += current.testcase.getArgs(self, current)
allArgs += self.getArgs(current)
allArgs += self.args(self, current) if callable(self.args) else self.args
allArgs += args
allArgs = [a.encode("utf-8") if type(a) == "unicode" else str(a) for a in allArgs]
return allArgs
def getEffectiveProps(self, current, props):
allProps = {}
allProps.update(current.driver.getProps(self, current))
allProps.update(current.driver.getComponent().getProps(self, current))
allProps.update(current.config.getProps(self, current))
allProps.update(self.getMapping(current).getProps(self, current))
allProps.update(current.testcase.getProps(self, current))
allProps.update(self.getProps(current))
allProps.update(self.props(self, current) if callable(self.props) else self.props)
allProps.update(props)
return allProps
def getEffectiveEnv(self, current):
def merge(envs, newEnvs):
if platform.getLdPathEnvName() in newEnvs and platform.getLdPathEnvName() in envs:
newEnvs[platform.getLdPathEnvName()] += os.pathsep + envs[platform.getLdPathEnvName()]
envs.update(newEnvs)
allEnvs = {}
merge(allEnvs, current.driver.getComponent().getEnv(self, current))
merge(allEnvs, self.getMapping(current).getEnv(self, current))
merge(allEnvs, current.testcase.getEnv(self, current))
merge(allEnvs, self.getEnv(current))
merge(allEnvs, self.envs(self, current) if callable(self.envs) else self.envs)
return allEnvs
def getEffectiveTraceProps(self, current):
traceProps = {}
traceProps.update(current.testcase.getTraceProps(self, current))
traceProps.update(self.traceProps(self, current) if callable(self.traceProps) else self.traceProps)
return traceProps
def start(self, current, args=[], props={}, watchDog=None):
allArgs = self.getEffectiveArgs(current, args)
allProps = self.getEffectiveProps(current, props)
allEnvs = self.getEffectiveEnv(current)
processController = current.driver.getProcessController(current, self)
current.processes[self] = processController.start(self, current, allArgs, allProps, allEnvs, watchDog)
try:
self.waitForStart(current)
except:
self.stop(current)
raise
def waitForStart(self, current):
# To be overridden in specialization to wait for a token indicating the process readiness.
pass
def stop(self, current, waitSuccess=False, exitstatus=0):
if self in current.processes:
process = current.processes[self]
try:
# Wait for the process to exit successfully by itself.
if not process.isTerminated() and waitSuccess:
while True:
try:
process.waitSuccess(exitstatus=exitstatus, timeout=30)
break
except KeyboardInterrupt:
current.driver.setInterrupt(True)
raise
except Expect.TIMEOUT:
print("process {0} is hanging on shutdown - {1}".format(process, time.strftime("%x %X")))
if current.driver.isInterrupted():
raise
except RuntimeError as ex:
output = self.getOutput(current)
if output:
raise RuntimeError(str(ex) + output)
else:
raise ex
finally:
if not process.isTerminated():
process.terminate()
if not self.quiet: # Write the output to the test case (but not on stdout)
current.write(self.getOutput(current), stdout=False)
def teardown(self, current, success):
if self in current.processes:
current.processes[self].teardown(current, success)
def expect(self, current, pattern, timeout=60):
assert(self in current.processes and isinstance(current.processes[self], Expect.Expect))
return current.processes[self].expect(pattern, timeout)
def expectall(self, current, pattern, timeout=60):
assert(self in current.processes and isinstance(current.processes[self], Expect.Expect))
return current.processes[self].expectall(pattern, timeout)
def sendline(self, current, data):
assert(self in current.processes and isinstance(current.processes[self], Expect.Expect))
return current.processes[self].sendline(data)
def getMatch(self, current):
assert(self in current.processes and isinstance(current.processes[self], Expect.Expect))
return current.processes[self].match
def isStarted(self, current):
return self in current.processes and not current.processes[self].isTerminated()
def isFromBinDir(self):
return False
def isReleaseOnly(self):
return False
def getArgs(self, current):
return []
def getProps(self, current):
return {}
def getEnv(self, current):
return {}
def getMapping(self, current):
return self.mapping or current.testcase.getMapping()
def getExe(self, current):
processType = self.processType or current.testcase.getProcessType(self)
return self.exe or self.getMapping(current).getDefaultExe(processType)
def getCommandLine(self, current, args=""):
return self.getMapping(current).getCommandLine(current, self, self.getExe(current), args).strip()
#
# A simple client (used to run Slice/IceUtil clients for example)
#
class SimpleClient(Process):
pass
#
# An IceProcess specialization class. This is used by drivers to figure out if
# the process accepts Ice configuration properties.
#
class IceProcess(Process):
pass
#
# An Ice server process. It's possible to configure when the server is considered
# ready by setting readyCount or ready. The start method will only return once
# the server is considered "ready". It can also be configure to wait (the default)
# or not wait for shutdown when the stop method is invoked.
#
class Server(IceProcess):
def __init__(self, exe=None, waitForShutdown=True, readyCount=1, ready=None, startTimeout=300, *args, **kargs):
IceProcess.__init__(self, exe, *args, **kargs)
self.waitForShutdown = waitForShutdown
self.readyCount = readyCount
self.ready = ready
self.startTimeout = startTimeout
def getProps(self, current):
props = IceProcess.getProps(self, current)
props.update({
"Ice.ThreadPool.Server.Size": 1,
"Ice.ThreadPool.Server.SizeMax": 3,
"Ice.ThreadPool.Server.SizeWarn": 0,
})
props.update(current.driver.getProcessProps(current, self.ready, self.readyCount + (1 if current.config.mx else 0)))
return props
def waitForStart(self, current):
# Wait for the process to be ready
current.processes[self].waitReady(self.ready, self.readyCount + (1 if current.config.mx else 0), self.startTimeout)
# Filter out remaining ready messages
self.outfilters.append(re.compile("[^\n]+ ready"))
# If we are not asked to be quiet and running from the main thread, print the server output
if not self.quiet and not current.driver.isWorkerThread():
current.processes[self].trace(self.outfilters)
def stop(self, current, waitSuccess=False, exitstatus=0):
IceProcess.stop(self, current, waitSuccess and self.waitForShutdown, exitstatus)
#
# An Ice client process.
#
class Client(IceProcess):
pass
#
# Executables for processes inheriting this marker class are looked up in the
# Ice distribution bin directory.
#
class ProcessFromBinDir:
def isFromBinDir(self):
return True
#
# Executables for processes inheriting this marker class are only provided
# as a Release executable on Windows
#
class ProcessIsReleaseOnly:
def isReleaseOnly(self):
return True
class SliceTranslator(ProcessFromBinDir, ProcessIsReleaseOnly, SimpleClient):
def __init__(self, translator):
SimpleClient.__init__(self, exe=translator, quiet=True, mapping=Mapping.getByName("cpp"))
def getCommandLine(self, current, args=""):
#
# Look for slice2py installed by pip if not found in the bin directory
#
if self.exe == "slice2py":
translator = self.getMapping(current).getCommandLine(current, self, self.getExe(current), "")
if not os.path.exists(translator):
translator = sys.executable + " -m slice2py"
return (translator + " " + args).strip()
else:
return Process.getCommandLine(self, current, args)
class ServerAMD(Server):
pass
class Collocated(Client):
pass
class EchoServer(Server):
def __init__(self):
Server.__init__(self, mapping=Mapping.getByName("cpp"), quiet=True, waitForShutdown=False)
def getProps(self, current):
props = Server.getProps(self, current)
props["Ice.MessageSizeMax"] = 8192 # Don't limit the amount of data to transmit between client/server
return props
def getCommandLine(self, current, args=""):
current.push(self.mapping.findTestSuite("Ice/echo").findTestCase("server"))
try:
return Server.getCommandLine(self, current, args)
finally:
current.pop()
#
# A test case is composed of servers and clients. When run, all servers are started
# sequentially. When the servers are ready, the clients are also ran sequentially.
# Once all the clients are terminated, the servers are stopped (which waits for the
# successful completion of the server).
#
# A TestCase is also a "Runnable", like the Process class. In other words, it can be
# used a client to allow nested test cases.
#
class TestCase(Runnable):
def __init__(self, name, client=None, clients=None, server=None, servers=None, args=None, props=None, envs=None,
options=None, desc=None, traceProps=None):
Runnable.__init__(self, desc)
self.name = name
self.parent = None
self.mapping = None
self.testsuite = None
self.options = options or {}
self.args = args or []
self.props = props or {}
self.traceProps = traceProps or {}
self.envs = envs or {}
#
# Setup client list, "client" can be a string in which case it's assumed to
# to the client executable name.
#
self.clients = clients
if client:
client = Client(exe=client) if isinstance(client, str) else client
self.clients = [client] if not self.clients else self.clients + [client]
#
# Setup server list, "server" can be a string in which case it's assumed to
# to the server executable name.
#
self.servers = servers
if server:
server = Server(exe=server) if isinstance(server, str) else server
self.servers = [server] if not self.servers else self.servers + [server]
def __str__(self):
return self.name
def init(self, mapping, testsuite):
# init is called when the testcase is added to the given testsuite
self.mapping = mapping
self.testsuite = testsuite
#
# If no clients are explicitly specified, we instantiate one if getClientType()
# returns the type of client to instantiate (client, collocated, etc)
#
testId = self.testsuite.getId()
if not self.clients:
if self.getClientType():
self.clients = self.mapping.getClientMapping(testId).getDefaultProcesses(self.getClientType(), testsuite)
else:
self.clients = []
#
# If no servers are explicitly specified, we instantiate one if getServerType()
# returns the type of server to instantiate (server, serveramd, etc)
#
if not self.servers:
if self.getServerType():
self.servers = self.mapping.getServerMapping(testId).getDefaultProcesses(self.getServerType(), testsuite)
else:
self.servers = []
def getOptions(self, current):
return self.options(current) if callable(self.options) else self.options
def canRun(self, current):
# Can be overriden
return True
def setupServerSide(self, current):
# Can be overridden to perform setup activities before the server side is started
pass
def teardownServerSide(self, current, success):
# Can be overridden to perform terddown after the server side is stopped
pass
def setupClientSide(self, current):
# Can be overridden to perform setup activities before the client side is started
pass
def teardownClientSide(self, current, success):
# Can be overridden to perform terddown after the client side is stopped
pass
def startServerSide(self, current):
for server in self.servers:
self._startServer(current, server)
def stopServerSide(self, current, success):
for server in reversed(self.servers):
self._stopServer(current, server, success)
def runClientSide(self, current):
for client in self.clients:
self._runClient(current, client)
def getTestSuite(self):
return self.testsuite
def getParent(self):
return self.parent
def getName(self):
return self.name
def getPath(self, current):
path = self.testsuite.getPath()
if current.config.pathOverride:
return path.replace(toplevel, current.config.pathOverride)
else:
return path
def getMapping(self):
return self.mapping
def getArgs(self, process, current):
return self.args
def getProps(self, process, current):
return self.props
def getTraceProps(self, process, current):
return self.traceProps
def getEnv(self, process, current):
return self.envs
def getProcessType(self, process):
if process in self.clients:
return self.getClientType()
elif process in self.servers:
return self.getServerType()
elif isinstance(process, Server):
return self.getServerType()
else:
return self.getClientType()
def getClientType(self):
# Overridden by test case specialization to specify the type of client to instantiate
# if no client is explicitly provided
return None
def getServerType(self):
# Overridden by test case specialization to specify the type of client to instantiate
# if no server is explicitly provided
return None
def getServerTestCase(self, cross=None):
testsuite = (cross or self.mapping).getServerMapping(self.testsuite.getId()).findTestSuite(self.testsuite)
return testsuite.findTestCase(self) if testsuite else None
def getClientTestCase(self):
testsuite = self.mapping.getClientMapping(self.testsuite.getId()).findTestSuite(self.testsuite)
return testsuite.findTestCase(self) if testsuite else None
def _startServerSide(self, current):
# Set the host to use for the server side
current.push(self)
current.host = current.driver.getProcessController(current).getHost(current)
self.setupServerSide(current)
try:
self.startServerSide(current)
return current.host
except:
self._stopServerSide(current, False)
raise
finally:
current.pop()
def _stopServerSide(self, current, success):
current.push(self)
try:
self.stopServerSide(current, success)
finally:
for server in reversed(self.servers):
if server.isStarted(current):
self._stopServer(current, server, False)
self.teardownServerSide(current, success)
current.pop()
def _startServer(self, current, server):
if server.desc:
current.write("starting {0}... ".format(server.desc))
server.setup(current)
server.start(current)
if server.desc:
current.writeln("ok")
def _stopServer(self, current, server, success):
try:
server.stop(current, success)
except:
success = False
raise
finally:
server.teardown(current, success)
def _runClientSide(self, current, host=None):
current.push(self, host)
self.setupClientSide(current)
success = False
try:
self.runClientSide(current)
success = True
finally:
self.teardownClientSide(current, success)
current.pop()
def _runClient(self, current, client):
success = False
if client.desc:
current.writeln("running {0}...".format(client.desc))
client.setup(current)
try:
client.run(current)
success = True
finally:
client.teardown(current, success)
def run(self, current):
try:
current.push(self)
if not self.parent:
current.result.started(current)
self.setup(current)
self.runWithDriver(current)
self.teardown(current, True)
if not self.parent:
current.result.succeeded(current)
except Exception as ex:
self.teardown(current, False)
if not self.parent:
current.result.failed(current, traceback.format_exc() if current.driver.debug else str(ex))
raise
finally:
current.pop()
class ClientTestCase(TestCase):
def __init__(self, name="client", *args, **kargs):
TestCase.__init__(self, name, *args, **kargs)
def runWithDriver(self, current):
current.driver.runTestCase(current)
def getClientType(self):
return "client"
class ClientServerTestCase(ClientTestCase):
def __init__(self, name="client/server", *args, **kargs):
TestCase.__init__(self, name, *args, **kargs)
def runWithDriver(self, current):
current.driver.runClientServerTestCase(current)
def getServerType(self):
return "server"
class CollocatedTestCase(ClientTestCase):
def __init__(self, name="collocated", *args, **kargs):
TestCase.__init__(self, name, *args, **kargs)
def getClientType(self):
return "collocated"
class ClientAMDServerTestCase(ClientServerTestCase):
def __init__(self, name="client/amd server", *args, **kargs):
ClientServerTestCase.__init__(self, name, *args, **kargs)
def getServerType(self):
return "serveramd"
class ClientTieServerTestCase(ClientServerTestCase):
def __init__(self, name="client/tie server", *args, **kargs):
ClientServerTestCase.__init__(self, name, *args, **kargs)
def getServerType(self):
return "servertie"
class ClientAMDTieServerTestCase(ClientServerTestCase):
def __init__(self, name="client/amd tie server", *args, **kargs):
ClientServerTestCase.__init__(self, name, *args, **kargs)
def getServerType(self):
return "serveramdtie"
class Result:
getKey = lambda self, current: (current.testcase, current.config) if isinstance(current, Driver.Current) else current
getDesc = lambda self, current: current.desc if isinstance(current, Driver.Current) else ""
def __init__(self, testsuite, writeToStdout):
self.testsuite = testsuite
self._failed = {}
self._skipped = {}
self._stdout = StringIO()
self._writeToStdout = writeToStdout
self._testcases = {}
self._duration = 0
self._testCaseDuration = 0;
def start(self):
self._duration = time.time()
def finished(self):
self._duration = time.time() - self._duration
def started(self, current):
self._testCaseDuration = time.time();
self._start = self._stdout.tell()
def failed(self, current, exception):
print(exception)
key = self.getKey(current)
self._testCaseDuration = time.time() - self._testCaseDuration;
self.writeln("\ntest in {0} failed:\n{1}".format(self.testsuite, exception))
self._testcases[key] = (self._start, self._stdout.tell(), self._testCaseDuration, self.getDesc(current))
self._failed[key] = exception
# If ADDRINUSE, dump the current processes
output = self.getOutput(key)
for s in ["EADDRINUSE", "Address already in use"]:
if output.find(s) >= 0:
if isinstance(platform, Windows):
self.writeln(run("netstat -on"))
self.writeln(run("powershell.exe \"Get-Process | Select id,name,path\""))
else:
self.writeln(run("lsof -n -P -i; ps ax"))
def succeeded(self, current):
key = self.getKey(current)
self._testCaseDuration = time.time() - self._testCaseDuration;
self._testcases[key] = (self._start, self._stdout.tell(), self._testCaseDuration, self.getDesc(current))
def skipped(self, current, reason):
self.writeln("skipped, " + reason)
self._skipped[self.getKey(current)] = reason
def isSuccess(self):
return len(self._failed) == 0
def getFailed(self):
return self._failed
def getDuration(self):
return self._duration
def getOutput(self, key=None):
if key:
if key in self._testcases:
(start, end, duration, desc) = self._testcases[key]
self._stdout.seek(start)
try:
return self._stdout.read(end - start)
finally:
self._stdout.seek(0, os.SEEK_END)
return self._stdout.getvalue()
def write(self, msg, stdout=True):
if self._writeToStdout and stdout:
try:
sys.stdout.write(msg)
except UnicodeEncodeError:
#
# The console doesn't support the encoding of the message, we convert the message
# to an UTF-8 byte sequence and print out the byte sequence. We replace all the
# double backslash from the byte sequence string representation to single back
# slash.
#
sys.stdout.write(str(msg.encode("utf-8")).replace("\\\\", "\\"))
sys.stdout.flush()
self._stdout.write(msg)
def writeln(self, msg, stdout=True):
if self._writeToStdout and stdout:
try:
print(msg)
except UnicodeEncodeError:
#
# The console doesn't support the encoding of the message, we convert the message
# to an UTF-8 byte sequence and print out the byte sequence. We replace all the
# double backslash from the byte sequence string representation to single back
# slash.
#
print(str(msg.encode("utf-8")).replace("\\\\", "\\"))
self._stdout.write(msg)
self._stdout.write("\n")
def writeAsXml(self, out, hostname=""):
out.write(' <testsuite tests="{0}" failures="{1}" skipped="{2}" time="{3:.9f}" name="{5}/{4}">\n'
.format(len(self._testcases) - 2,
len(self._failed),
0,
self._duration,
self.testsuite,
self.testsuite.getMapping()))
for (k, v) in self._testcases.items():
if isinstance(k, str):
# Don't keep track of setup/teardown steps
continue
# Don't write skipped tests, this doesn't really provide useful information and clutters
# the output.
if k in self._skipped:
continue
(tc, cf) = k
(s, e, d, c) = v
if c:
name = "{0} [{1}]".format(tc, c)
else:
name = str(tc)
if hostname:
name += " on " + hostname
out.write(' <testcase name="{0}" time="{1:.9f}" classname="{2}.{3}">\n'
.format(escapeXml(name),
d,
self.testsuite.getMapping(),
self.testsuite.getId().replace("/", ".")))
if k in self._failed:
last = self._failed[k].strip().split('\n')
if len(last) > 0:
last = last[len(last) - 1]
if hostname:
last = "Failed on {0}\n{1}".format(hostname, last)
out.write(' <failure message={1}>{0}</failure>\n'.format(escapeXml(self._failed[k]),
escapeXml(last, True)))
# elif k in self._skipped:
# out.write(' <skipped message="{0}"/>\n'.format(escapeXml(self._skipped[k], True)))
out.write(' <system-out>\n')
if hostname:
out.write('Running on {0}\n'.format(hostname))
out.write(escapeXml(self.getOutput(k)))
out.write(' </system-out>\n')
out.write(' </testcase>\n')
out.write( '</testsuite>\n')
class TestSuite(object):
def __init__(self, path, testcases=None, options=None, libDirs=None, runOnMainThread=False, chdir=False,
multihost=True, mapping=None):
global currentMapping
self.path = os.path.dirname(path) if os.path.basename(path) == "test.py" else path
self.mapping = currentMapping or Mapping.getByPath(self.path)
self.id = self.mapping.addTestSuite(self)
self.options = options or {}
self.libDirs = libDirs or []
self.runOnMainThread = runOnMainThread
self.chdir = chdir
self.multihost = multihost
if self.chdir:
# Only tests running on main thread can change the current working directory
self.runOnMainThread = True
if testcases is None:
files = [f for f in os.listdir(self.path) if os.path.isfile(os.path.join(self.path, f))]
testcases = self.mapping.computeTestCases(self.id, files)
self.testcases = OrderedDict()
for testcase in testcases if testcases else []:
testcase.init(self.mapping, self)
if testcase.name in self.testcases:
raise RuntimeError("duplicate testcase {0} in testsuite {1}".format(testcase, self))
self.testcases[testcase.name] = testcase
def __str__(self):
return self.id
def getId(self):
return self.id
def getOptions(self, current):
return self.options(current) if callable(self.options) else self.options
def getPath(self):
return self.path
def getMapping(self):
return self.mapping
def getLibDirs(self):
return self.libDirs
def isMainThreadOnly(self, driver):
if self.runOnMainThread or driver.getComponent().isMainThreadOnly(self.id):
return True
if isinstance(self.mapping, MatlabMapping):
return True
# Only Objective-C mapping cross test support workers.
if isinstance(self.mapping, ObjCMapping) and not driver.getComponent().isCross(self.id):
return True
config = driver.configs[self.mapping]
if "iphone" in config.buildPlatform or config.browser or config.android:
return True # Not supported yet for tests that require a remote process controller
return False
def addTestCase(self, testcase):
if testcase.name in self.testcases:
raise RuntimeError("duplicate testcase {0} in testsuite {1}".format(testcase, self))
testcase.init(self.mapping, self)
self.testcases[testcase.name] = testcase
def findTestCase(self, testcase):
return self.testcases.get(testcase if isinstance(testcase, str) else testcase.name)
def getTestCases(self):
return self.testcases.values()
def setup(self, current):
pass
def run(self, current):
try:
current.result.start()
cwd=None
if self.chdir:
cwd = os.getcwd()
os.chdir(self.path)
current.driver.runTestSuite(current)
finally:
if cwd: os.chdir(cwd)
current.result.finished()
def teardown(self, current, success):
pass
def isMultiHost(self):
return self.multihost
class ProcessController:
def __init__(self, current):
pass
def start(self, process, current, args, props, envs, watchDog):
raise NotImplemented()
def destroy(self, driver):
pass
class LocalProcessController(ProcessController):
class LocalProcess(Expect.Expect):
def __init__(self, traceFile, *args, **kargs):
Expect.Expect.__init__(self, *args, **kargs)
self.traceFile = traceFile
def waitReady(self, ready, readyCount, startTimeout):
if ready:
self.expect("%s ready\n" % ready, timeout = startTimeout)
else:
while readyCount > 0:
self.expect("[^\n]+ ready\n", timeout = startTimeout)
readyCount -= 1
def isTerminated(self):
return self.p is None
def teardown(self, current, success):
if self.traceFile:
if success or current.driver.isInterrupted():
os.remove(self.traceFile)
else:
current.writeln("saved {0}".format(self.traceFile))
def getHost(self, current):
return current.driver.getHost(current.config.protocol, current.config.ipv6)
def start(self, process, current, args, props, envs, watchDog):
#
# Props and arguments can use the format parameters set below in the kargs
# dictionary. It's time to convert them to their values.
#
kargs = {
"process": process,
"testcase": current.testcase,
"testdir": current.testsuite.getPath(),
"builddir": current.getBuildDir(process.getExe(current)),
}
traceFile = ""
if not isinstance(process.getMapping(current), JavaScriptMixin):
traceProps = process.getEffectiveTraceProps(current)
if traceProps:
if "Ice.ProgramName" in props:
programName = props["Ice.ProgramName"]
else:
programName = process.exe or current.testcase.getProcessType(process)
traceFile = os.path.join(current.testsuite.getPath(),
"{0}-{1}.log".format(programName, time.strftime("%m%d%y-%H%M")))
if isinstance(process.getMapping(current), ObjCMapping):
traceProps["Ice.StdErr"] = traceFile
else:
traceProps["Ice.LogFile"] = traceFile
props.update(traceProps)
args = ["--{0}={1}".format(k, val(v)) for k,v in props.items()] + [val(a) for a in args]
for k, v in envs.items():
envs[k] = val(v, quoteValue=False)
cmd = ""
if current.driver.valgrind:
cmd += "valgrind -q --child-silent-after-fork=yes --leak-check=full --suppressions=\"{0}\" ".format(
os.path.join(current.driver.getComponent().getSourceDir(), "config", "valgrind.sup"))
exe = process.getCommandLine(current, " ".join(args))
cmd += exe.format(**kargs)
if current.driver.debug:
if len(envs) > 0:
current.writeln("({0} env={1})".format(cmd, envs))
else:
current.writeln("({0})".format(cmd))
env = os.environ.copy()
env.update(envs)
mapping = process.getMapping(current)
cwd = mapping.getTestCwd(process, current)
process = LocalProcessController.LocalProcess(command=cmd,
startReader=False,
env=env,
cwd=cwd,
desc=process.desc or exe,
preexec_fn=process.preexec_fn,
mapping=str(mapping),
traceFile=traceFile)
process.startReader(watchDog)
return process
class RemoteProcessController(ProcessController):
class RemoteProcess:
def __init__(self, exe, proxy):
self.exe = exe
self.proxy = proxy
self.terminated = False
self.stdout = False
self.output = ""
def __str__(self):
return "{0} proxy={1}".format(self.exe, self.proxy)
def waitReady(self, ready, readyCount, startTimeout):
self.proxy.waitReady(startTimeout)
def waitSuccess(self, exitstatus=0, timeout=60):
import Ice
try:
result = self.proxy.waitSuccess(timeout)
except Ice.UserException as ex:
if "timed out" in ex.reason:
raise Expect.TIMEOUT("waitSuccess timeout")
else:
raise
except Ice.LocalException:
raise
if exitstatus != result:
raise RuntimeError("unexpected exit status: expected: %d, got %d\n" % (exitstatus, result))
def getOutput(self):
return self.output
def trace(self, outfilters):
self.stdout = True
def isTerminated(self):
return self.terminated
def terminate(self):
self.output = self.proxy.terminate().strip()
self.terminated = True
if self.stdout and self.output:
print(self.output)
def teardown(self, current, success):
pass
def __init__(self, current, endpoints="tcp"):
self.processControllerProxies = {}
self.controllerApps = []
self.driver = current.driver
self.cond = threading.Condition()
comm = current.driver.getCommunicator()
import Test
class ProcessControllerRegistryI(Test.Common.ProcessControllerRegistry):
def __init__(self, remoteProcessController):
self.remoteProcessController = remoteProcessController
def setProcessController(self, proxy, current):
import Test
proxy = Test.Common.ProcessControllerPrx.uncheckedCast(current.con.createProxy(proxy.ice_getIdentity()))
self.remoteProcessController.setProcessController(proxy)
import Ice
comm.getProperties().setProperty("Adapter.AdapterId", Ice.generateUUID())
self.adapter = comm.createObjectAdapterWithEndpoints("Adapter", endpoints)
self.adapter.add(ProcessControllerRegistryI(self), comm.stringToIdentity("Util/ProcessControllerRegistry"))
self.adapter.activate()
def __str__(self):
return "remote controller"
def getHost(self, current):
return self.getController(current).getHost(current.config.protocol, current.config.ipv6)
def getController(self, current):
ident = self.getControllerIdentity(current)
if type(ident) == str:
ident = current.driver.getCommunicator().stringToIdentity(ident)
import Ice
import Test
proxy = None
with self.cond:
if ident in self.processControllerProxies:
proxy = self.processControllerProxies[ident]
if proxy:
try:
proxy.ice_ping()
return proxy
except Ice.NoEndpointException:
self.clearProcessController(proxy)
comm = current.driver.getCommunicator()
if current.driver.controllerApp:
if ident in self.controllerApps:
self.restartControllerApp(current, ident) # Controller must have crashed, restart it
else:
self.controllerApps.append(ident)
self.startControllerApp(current, ident)
# Use well-known proxy and IceDiscovery to discover the process controller object from the app.
proxy = Test.Common.ProcessControllerPrx.uncheckedCast(comm.stringToProxy(comm.identityToString(ident)))
#
# First try to discover the process controller with IceDiscovery, if this doesn't
# work we'll wait for 10s for the process controller to register with the registry.
# If the wait times out, we retry again.
#
def callback(future):
try:
future.result()
with self.cond:
if not ident in self.processControllerProxies:
self.processControllerProxies[proxy.ice_getIdentity()] = proxy
self.cond.notifyAll()
except Exception:
pass
nRetry = 0
while nRetry < 120:
nRetry += 1
if self.supportsDiscovery():
proxy.ice_pingAsync().add_done_callback(callback)
with self.cond:
if not ident in self.processControllerProxies:
self.cond.wait(5)
if ident in self.processControllerProxies:
return self.processControllerProxies[ident]
# If the controller isn't up after a while, we restart it. With the iOS simulator,
# it's not uncommon to get Springoard crashes when starting the controller.
if nRetry == 50:
sys.stdout.write("controller application unreachable, restarting... ")
sys.stdout.flush()
self.restartControllerApp(current, ident)
print("ok")
raise RuntimeError("couldn't reach the remote controller `{0}'".format(ident))
def setProcessController(self, proxy):
with self.cond:
self.processControllerProxies[proxy.ice_getIdentity()] = proxy
conn = proxy.ice_getConnection()
if(hasattr(conn, "setCloseCallback")):
proxy.ice_getConnection().setCloseCallback(lambda conn : self.clearProcessController(proxy, conn))
else:
import Ice
class CallbackI(Ice.ConnectionCallback):
def __init__(self, registry):
self.registry = registry
def heartbeath(self, conn):
pass
def closed(self, conn):
self.registry.clearProcessController(proxy, conn)
proxy.ice_getConnection().setCallback(CallbackI(self))
self.cond.notifyAll()
def supportsDiscovery(self):
return True
def clearProcessController(self, proxy, conn=None):
with self.cond:
if proxy.ice_getIdentity() in self.processControllerProxies:
if not conn:
conn = proxy.ice_getCachedConnection()
if conn == self.processControllerProxies[proxy.ice_getIdentity()].ice_getCachedConnection():
del self.processControllerProxies[proxy.ice_getIdentity()]
def startControllerApp(self, current, ident):
pass
def restartControllerApp(self, current, ident):
self.stopControllerApp(ident)
self.startControllerApp(current, ident)
def stopControllerApp(self, ident):
pass
def start(self, process, current, args, props, envs, watchDog):
# Get the process controller
processController = self.getController(current)
# TODO: support envs?
exe = process.getExe(current)
args = ["--{0}={1}".format(k, val(v, quoteValue=False)) for k,v in props.items()] + [val(a) for a in args]
if current.driver.debug:
current.writeln("(executing `{0}/{1}' on `{2}' args = {3})".format(current.testsuite, exe, self, args))
prx = processController.start(str(current.testsuite), exe, args)
# Create bi-dir proxy in case we're talking to a bi-bir process controller.
if self.adapter:
prx = processController.ice_getConnection().createProxy(prx.ice_getIdentity())
import Test
return RemoteProcessController.RemoteProcess(exe, Test.Common.ProcessPrx.uncheckedCast(prx))
def destroy(self, driver):
if driver.controllerApp:
for ident in self.controllerApps:
self.stopControllerApp(ident)
self.controllerApps = []
if self.adapter:
self.adapter.destroy()
class AndroidProcessController(RemoteProcessController):
def __init__(self, current):
endpoint = None
if current.config.device:
endpoint = "tcp -h 0.0.0.0 -p 15001"
elif current.config.avd or not current.config.device:
endpoint = "tcp -h 127.0.0.1 -p 15001"
RemoteProcessController.__init__(self, current, endpoint)
self.device = current.config.device
self.avd = current.config.avd
self.emulator = None # Keep a reference to the android emulator process
def __str__(self):
return "Android"
def supportsDiscovery(self):
return self.device is not None # Discovery is only used with devices
def getControllerIdentity(self, current):
if isinstance(current.testcase.getMapping(), JavaCompatMapping):
return "AndroidCompat/ProcessController"
else:
return "Android/ProcessController"
def adb(self):
return "adb -d" if self.device == "usb" else "adb"
def startEmulator(self, avd):
#
# First check if the AVD image is available
#
print("starting the emulator... ")
out = run("emulator -list-avds")
if avd not in out:
raise RuntimeError("couldn't find AVD `{}'".format(avd))
#
# Find and unused port to run android emulator, between 5554 and 5584
#
port = -1
out = run("adb devices -l")
for p in range(5554, 5586, 2):
if not "emulator-{}".format(p) in out:
port = p
if port == -1:
raise RuntimeError("cannot find free port in range 5554-5584, to run android emulator")
self.device = "emulator-{}".format(port)
cmd = "emulator -avd {0} -port {1} -no-audio -partition-size 768 -no-snapshot -gpu auto -no-boot-anim -no-window".format(avd, port)
self.emulator = subprocess.Popen(cmd, shell=True)
if self.emulator.poll():
raise RuntimeError("failed to start the Android emulator `{}' on port {}".format(avd, port))
self.avd = avd
#
# Wait for the device to be ready
#
t = time.time()
while True:
try:
lines = run("{} shell getprop sys.boot_completed".format(self.adb()))
if len(lines) > 0 and lines[0].strip() == "1":
break
except RuntimeError:
pass # expected if device is offline
#
# If the emulator doesn't complete boot in 300 seconds give up
#
if (time.time() - t) > 300:
raise RuntimeError("couldn't start the Android emulator `{}'".format(avd))
time.sleep(2)
def startControllerApp(self, current, ident):
# Stop previous controller app before starting new one
for ident in self.controllerApps:
self.stopControllerApp(ident)
if current.config.avd:
self.startEmulator(current.config.avd)
elif not current.config.device:
# Create Android Virtual Device
sdk = current.testcase.getMapping().getSDKPackage()
print("creating virtual device ({0})... ".format(sdk))
try:
run("avdmanager -v delete avd -n IceTests") # Delete the created device
except:
pass
# The SDK is downloaded by test VMs instead of here.
#run("sdkmanager \"{0}\"".format(sdk), stdout=True, stdin="yes", stdinRepeat=True) # yes to accept licenses
run("avdmanager -v create avd -k \"{0}\" -d \"Nexus 6\" -n IceTests".format(sdk))
self.startEmulator("IceTests")
elif current.config.device != "usb":
run("adb connect {}".format(current.config.device))
# First try uninstall in case the controller was left behind from a previous run
try:
run("{} shell pm uninstall com.zeroc.testcontroller".format(self.adb()))
except:
pass
run("{} install -t -r {}".format(self.adb(), current.testcase.getMapping().getApk(current)))
run("{} shell am start -n \"{}\" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER".format(
self.adb(), current.testcase.getMapping().getActivityName()))
def stopControllerApp(self, ident):
try:
run("{} shell pm uninstall com.zeroc.testcontroller".format(self.adb()))
except:
pass
if self.avd:
try:
run("{} emu kill".format(self.adb()))
except:
pass
if self.avd == "IceTests":
try:
run("avdmanager -v delete avd -n IceTests") # Delete the created device
except:
pass
#
# Wait for the emulator to shutdown
#
if self.emulator:
sys.stdout.write("Waiting for the emulator to shutdown..")
sys.stdout.flush()
while True:
if self.emulator.poll() != None:
print(" ok")
break
sys.stdout.write(".")
sys.stdout.flush()
time.sleep(0.5)
try:
run("adb kill-server")
except:
pass
class iOSSimulatorProcessController(RemoteProcessController):
device = "iOSSimulatorProcessController"
deviceID = "com.apple.CoreSimulator.SimDeviceType.iPhone-13"
def __init__(self, current):
RemoteProcessController.__init__(self, current, None)
self.simulatorID = None
self.runtimeID = None
# Pick the last iOS simulator runtime ID in the list of iOS simulators (assumed to be the latest).
try:
for r in run("xcrun simctl list runtimes").split('\n'):
m = re.search("iOS .* \\(.*\\) - (.*)", r)
if m:
self.runtimeID = m.group(1)
except:
pass
if not self.runtimeID:
self.runtimeID = "com.apple.CoreSimulator.SimRuntime.iOS-15-2" # Default value
def __str__(self):
return "iOS Simulator ({})".format(self.runtimeID.replace("com.apple.CoreSimulator.SimRuntime.", "").strip())
def getControllerIdentity(self, current):
return current.testcase.getMapping().getIOSControllerIdentity(current)
def startControllerApp(self, current, ident):
mapping = current.testcase.getMapping()
appFullPath = mapping.getIOSAppFullPath(current)
sys.stdout.write("launching simulator... ")
sys.stdout.flush()
try:
run("xcrun simctl boot \"{0}\"".format(self.device))
run("xcrun simctl bootstatus \"{0}\"".format(self.device)) # Wait for the boot to complete
except Exception as ex:
if str(ex).find("Booted") >= 0:
pass
elif str(ex).find("Invalid device") >= 0 or str(ex).find("Assertion failure in SimDevicePair"):
#
# Create the simulator device if it doesn't exist
#
self.simulatorID = run("xcrun simctl create \"{0}\" {1} {2}".format(self.device, self.deviceID, self.runtimeID))
run("xcrun simctl boot \"{0}\"".format(self.device))
run("xcrun simctl bootstatus \"{0}\"".format(self.device)) # Wait for the boot to complete
#
# This not longer works on iOS 15 simulator, fails with:
# "Could not write domain com.apple.springboard; exiting"
#
# We update the watchdog timer scale to prevent issues with the controller app taking too long
# to start on the simulator. The security validation of the app can take a significant time and
# causes the watch dog to kick-in leaving the springboard app in a bogus state where it's not
# possible to terminate and restart the controller
#
# run("xcrun simctl spawn \"{0}\" defaults write com.apple.springboard FBLaunchWatchdogScale 20".format(self.device))
# run("xcrun simctl shutdown \"{0}\"".format(self.device))
# run("xcrun simctl boot \"{0}\"".format(self.device))
else:
raise
print("ok")
sys.stdout.write("launching {0}... ".format(os.path.basename(appFullPath)))
sys.stdout.flush()
if not os.path.exists(appFullPath):
raise RuntimeError("couldn't find iOS simulator controller application, did you build it?")
run("xcrun simctl install \"{0}\" \"{1}\"".format(self.device, appFullPath))
run("xcrun simctl launch \"{0}\" {1}".format(self.device, ident.name))
print("ok")
def restartControllerApp(self, current, ident):
# We reboot the simulator if the controller fails to start. Terminating the controller app
# with simctl terminate doesn't always work, it can hang if the controller app died because
# of the springboard watchdog.
run("xcrun simctl shutdown \"{0}\"".format(self.device))
nRetry = 0
while nRetry < 20:
try:
run("xcrun simctl boot \"{0}\"".format(self.device))
break
except Exception:
time.sleep(1.0)
nRetry += 1
run("xcrun simctl launch \"{0}\" {1}".format(self.device, ident.name))
def stopControllerApp(self, ident):
try:
run("xcrun simctl uninstall \"{0}\" {1}".format(self.device, ident.name))
except:
pass
def destroy(self, driver):
RemoteProcessController.destroy(self, driver)
sys.stdout.write("shutting down simulator... ")
sys.stdout.flush()
try:
run("xcrun simctl shutdown \"{0}\"".format(self.simulatorID))
except:
pass
print("ok")
if self.simulatorID:
sys.stdout.write("destroying simulator... ")
sys.stdout.flush()
try:
run("xcrun simctl delete \"{0}\"".format(self.simulatorID))
except:
pass
print("ok")
class iOSDeviceProcessController(RemoteProcessController):
appPath = "cpp/test/ios/controller/build"
def __init__(self, current):
RemoteProcessController.__init__(self, current, None)
def __str__(self):
return "iOS Device"
def getControllerIdentity(self, current):
return current.testcase.getMapping().getIOSControllerIdentity(current)
def startControllerApp(self, current, ident):
# TODO: use ios-deploy to deploy and run the application on an attached device?
pass
def stopControllerApp(self, ident):
pass
class BrowserProcessController(RemoteProcessController):
def __init__(self, current):
self.host = current.driver.host or "127.0.0.1"
RemoteProcessController.__init__(self, current, "ws -h {0} -p 15002:wss -h {0} -p 15003".format(self.host))
self.httpServer = None
self.url = None
self.driver = None
try:
cmd = "node -e \"require('./bin/HttpServer')()\""
cwd = current.testcase.getMapping().getPath()
self.httpServer = Expect.Expect(cmd, cwd=cwd)
self.httpServer.expect("listening on ports")
if current.config.browser.startswith("Remote:"):
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
(driver, capabilities, port) = current.config.browser.split(":")
self.driver = webdriver.Remote("http://localhost:{0}".format(port),
desired_capabilities=getattr(DesiredCapabilities, capabilities),
keep_alive=True)
elif current.config.browser != "Manual":
from selenium import webdriver
if current.config.browser.find(":") > 0:
(driver, port) = current.config.browser.split(":")
else:
(driver, port) = (current.config.browser, 0)
if not hasattr(webdriver, driver):
raise RuntimeError("unknown browser `{0}'".format(driver))
if driver == "Firefox":
if isinstance(platform, Linux) and os.environ.get("DISPLAY", "") != ":1" and os.environ.get("USER", "") == "ubuntu":
current.writeln("error: DISPLAY is unset, setting it to :1")
os.environ["DISPLAY"] = ":1"
#
# We need to specify a profile for Firefox. This profile only provides the cert8.db which
# contains our Test CA cert. It should be possible to avoid this by setting the webdriver
# acceptInsecureCerts capability but it's only supported by latest Firefox releases.
#
profilepath = os.path.join(current.driver.getComponent().getSourceDir(), "scripts", "selenium", "firefox")
options = webdriver.FirefoxOptions()
options.set_preference("profile", profilepath)
self.driver = webdriver.Firefox(options=options)
elif driver == "Ie":
# Make sure we start with a clean cache
options = webdriver.IeOptions()
options.ensure_clean_session = True
self.driver = webdriver.Ie(options=options)
elif driver == "Safari" and int(port) > 0:
service = webdriver.SafariService(port=port, reuse_service=True)
self.driver = webdriver.Safari(service=service)
else:
self.driver = getattr(webdriver, driver)()
except:
self.destroy(current.driver)
raise
def __str__(self):
return str(self.driver) if self.driver else "Manual"
def supportsDiscovery(self):
return False
def getControllerIdentity(self, current):
#
# Load the controller page each time we're asked for the controller and if we're running
# another testcase, the controller page will connect to the process controller registry
# to register itself with this script.
#
testsuite = ""
if current.config.es5:
testsuite += "es5/"
elif isinstance(current.testcase.getMapping(), TypeScriptMapping):
testsuite += "typescript/"
testsuite += str(current.testsuite)
if current.config.protocol == "wss":
protocol = "https"
port = "9090"
cport = "15003"
else:
protocol = "http"
port = "8080"
cport = "15002"
url = "{0}://{5}:{1}/test/{2}/controller.html?port={3}&worker={4}".format(protocol,
port,
testsuite,
cport,
current.config.worker,
self.host)
if url != self.url:
self.url = url
ident = current.driver.getCommunicator().stringToIdentity("Browser/ProcessController")
if self.driver:
# Clear the previous controller connection if it exists. This ensures that the reload
# of the test controller will use a new connection (with Chrome the connection close
# callback for the old page is sometime called after the new paged is loaded).
with self.cond:
if ident in self.processControllerProxies:
prx = self.processControllerProxies[ident]
self.clearProcessController(prx, prx.ice_getCachedConnection())
self.driver.get(url)
else:
# If no process controller is registered, we request the user to load the controller
# page in the browser. Once loaded, the controller will register and we'll redirect to
# the correct testsuite page.
prx = None
with self.cond:
while True:
if ident in self.processControllerProxies:
prx = self.processControllerProxies[ident]
break
print("Please load http://{0}:8080/{1}".format(self.host,
"es5/start" if current.config.es5 else "start"))
self.cond.wait(5)
try:
import Test
Test.Common.BrowserProcessControllerPrx.uncheckedCast(prx).redirect(url)
except:
pass
finally:
self.clearProcessController(prx, prx.ice_getCachedConnection())
return "Browser/ProcessController"
def getController(self, current):
try:
return RemoteProcessController.getController(self, current)
except RuntimeError as ex:
if self.driver:
# Print out the client & server console element values
for element in ["clientConsole", "serverConsole"]:
try:
console = self.driver.find_element_by_id(element).get_attribute('value')
if len(console) > 0:
print("controller {0} value:\n{1}".format(element, console))
except Exception as exc:
print("couldn't get controller {0} value:\n{1}".format(element, exc))
pass
# Print out the browser log
try:
print("browser log:\n{0}".format(self.driver.get_log("browser")))
except:
pass # Not all browsers support retrieving the browser console log
raise ex
def destroy(self, driver):
RemoteProcessController.destroy(self, driver)
if self.httpServer:
self.httpServer.terminate()
self.httpServer = None
try:
self.driver.quit()
except:
pass
class Driver:
class Current:
def __init__(self, driver, testsuite, result):
self.driver = driver
self.testsuite = testsuite
self.config = driver.configs[testsuite.getMapping()]
self.desc = ""
self.result = result
self.host = None
self.testcase = None
self.testcases = []
self.processes = {}
self.dirs = []
self.files = []
def getTestEndpoint(self, *args, **kargs):
return self.driver.getTestEndpoint(*args, **kargs)
def getBuildDir(self, name):
return self.testcase.getMapping().getBuildDir(name, self)
def getPluginEntryPoint(self, plugin, process):
return self.testcase.getMapping().getPluginEntryPoint(plugin, process, self)
def write(self, *args, **kargs):
self.result.write(*args, **kargs)
def writeln(self, *args, **kargs):
self.result.writeln(*args, **kargs)
def push(self, testcase, host=None):
if not testcase.mapping:
assert(not testcase.parent and not testcase.testsuite)
testcase.mapping = self.testcase.getMapping()
testcase.testsuite = self.testcase.getTestSuite()
testcase.parent = self.testcase
self.testcases.append((self.testcase, self.config, self.host))
self.testcase = testcase
self.config = self.driver.configs[self.testcase.getMapping()].cloneAndOverrideWith(self)
self.host = host
def pop(self):
assert(self.testcase)
testcase = self.testcase
(self.testcase, self.config, self.host) = self.testcases.pop()
if testcase.parent and self.testcase != testcase:
testcase.mapping = None
testcase.testsuite = None
testcase.parent = None
def createFile(self, path, lines, encoding=None):
path = os.path.join(self.testsuite.getPath(), path.decode("utf-8") if isPython2 else path)
with open(path, "w", encoding=encoding) if not isPython2 and encoding else open(path, "w") as file:
for l in lines:
file.write("%s\n" % l)
self.files.append(path)
def mkdirs(self, dirs):
for d in dirs if isinstance(dirs, list) else [dirs]:
d = os.path.join(self.testsuite.getPath(), d)
self.dirs.append(d)
if not os.path.exists(d):
os.makedirs(d)
def destroy(self):
for d in self.dirs:
if os.path.exists(d): shutil.rmtree(d)
for f in self.files:
if os.path.exists(f): os.unlink(f)
drivers = {}
driver = "local"
@classmethod
def add(self, name, driver, default=False):
if default:
Driver.driver = name
self.driver = name
self.drivers[name] = driver
@classmethod
def getAll(self):
return list(self.drivers.values())
@classmethod
def create(self, options, component):
parseOptions(self, options)
driver = self.drivers.get(self.driver)
if not driver:
raise RuntimeError("unknown driver `{0}'".format(self.driver))
return driver(options, component)
@classmethod
def getSupportedArgs(self):
return ("dlrR", ["debug", "driver=", "filter=", "rfilter=", "host=", "host-ipv6=", "host-bt=", "interface=",
"controller-app", "valgrind", "languages=", "rlanguages="])
@classmethod
def usage(self):
pass
@classmethod
def commonUsage(self):
print("")
print("Driver options:")
print("-d | --debug Verbose information.")
print("--driver=<driver> Use the given driver (local, client, server or remote).")
print("--filter=<regex> Run all the tests that match the given regex.")
print("--rfilter=<regex> Run all the tests that do not match the given regex.")
print("--languages=l1,l2,... List of comma-separated language mappings to test.")
print("--rlanguages=l1,l2,.. List of comma-separated language mappings to not test.")
print("--host=<addr> The IPv4 address to use for Ice.Default.Host.")
print("--host-ipv6=<addr> The IPv6 address to use for Ice.Default.Host.")
print("--host-bt=<addr> The Bluetooth address to use for Ice.Default.Host.")
print("--interface=<IP> The multicast interface to use to discover controllers.")
print("--controller-app Start the process controller application.")
print("--valgrind Start executables with valgrind.")
def __init__(self, options, component):
self.component = component
self.debug = False
self.filters = []
self.rfilters = []
self.host = ""
self.hostIPv6 = ""
self.hostBT = ""
self.controllerApp = False
self.valgrind = False
self.languages = ",".join(os.environ.get("LANGUAGES", "").split(" "))
self.languages = [self.languages] if self.languages else []
self.rlanguages = []
self.failures = []
parseOptions(self, options, { "d": "debug",
"r" : "filters",
"R" : "rfilters",
"filter" : "filters",
"rfilter" : "rfilters",
"host-ipv6" : "hostIPv6",
"host-bt" : "hostBT",
"controller-app" : "controllerApp"})
if self.languages:
self.languages = [i for sublist in [l.split(",") for l in self.languages] for i in sublist]
if self.rlanguages:
self.rlanguages = [i for sublist in [l.split(",") for l in self.rlanguages] for i in sublist]
(self.filters, self.rfilters) = ([re.compile(a) for a in self.filters], [re.compile(a) for a in self.rfilters])
self.communicator = None
self.interface = ""
self.processControllers = {}
def setConfigs(self, configs):
self.configs = configs
def getFilters(self, mapping, config):
# Return the driver and component filters
(filters, rfilters) = self.component.getFilters(mapping, config)
(filters, rfilters) = ([re.compile(a) for a in filters], [re.compile(a) for a in rfilters])
return (self.filters + filters, self.rfilters + rfilters)
def getHost(self, protocol, ipv6):
if protocol == "bt":
if not self.hostBT:
raise RuntimeError("no Bluetooth address set with --host-bt")
return self.hostBT
elif ipv6:
return self.hostIPv6 or "::1"
else:
return self.host or "127.0.0.1"
def getComponent(self):
return self.component
def isWorkerThread(self):
return False
def getTestEndpoint(self, portnum, protocol="default"):
return "{0} -p {1}".format(protocol, self.getTestPort(portnum))
def getTestPort(self, portnum):
return 12010 + portnum
def getArgs(self, process, current):
### Return driver specific arguments
return []
def getProps(self, process, current):
props = {}
if isinstance(process, IceProcess):
if not self.host:
props["Ice.Default.Host"] = "0:0:0:0:0:0:0:1" if current.config.ipv6 else "127.0.0.1"
else:
props["Ice.Default.Host"] = self.host
return props
def getMappings(self):
### Return additional mappings to load required by the driver
return []
def matchLanguage(self, language):
if self.languages and language not in self.languages:
return False
if self.rlanguages and language in self.rlanguages:
return False
return True
def getCommunicator(self):
self.initCommunicator()
return self.communicator
def initCommunicator(self):
if self.communicator:
return
try:
import Ice
except ImportError:
# Try to add the local Python build to the sys.path
try:
pythonMapping = Mapping.getByName("python")
if pythonMapping:
for p in pythonMapping.getPythonDirs(pythonMapping.getPath(), self.configs[pythonMapping]):
sys.path.append(p)
except RuntimeError:
print("couldn't find IcePy, running these tests require it to be installed or built")
import Ice
Ice.loadSlice(os.path.join(self.component.getSourceDir(), "scripts", "Controller.ice"))
initData = Ice.InitializationData()
initData.properties = Ice.createProperties()
# Load IceSSL, this is useful to talk with WSS for JavaScript
initData.properties.setProperty("Ice.Plugin.IceSSL", "IceSSL:createIceSSL")
initData.properties.setProperty("IceSSL.DefaultDir", os.path.join(self.component.getSourceDir(), "certs"))
initData.properties.setProperty("IceSSL.CertFile", "server.p12")
initData.properties.setProperty("IceSSL.Password", "password")
initData.properties.setProperty("IceSSL.Keychain", "test.keychain")
initData.properties.setProperty("IceSSL.KeychainPassword", "password")
initData.properties.setProperty("IceSSL.VerifyPeer", "0")
initData.properties.setProperty("Ice.Plugin.IceDiscovery", "IceDiscovery:createIceDiscovery")
initData.properties.setProperty("IceDiscovery.DomainId", "TestController")
initData.properties.setProperty("IceDiscovery.Interface", self.interface)
initData.properties.setProperty("Ice.Default.Host", self.interface)
initData.properties.setProperty("Ice.ThreadPool.Server.Size", "10")
# initData.properties.setProperty("Ice.Trace.Protocol", "1")
# initData.properties.setProperty("Ice.Trace.Network", "2")
# initData.properties.setProperty("Ice.StdErr", "allTests.log")
initData.properties.setProperty("Ice.Override.Timeout", "10000")
initData.properties.setProperty("Ice.Override.ConnectTimeout", "10000")
self.communicator = Ice.initialize(initData)
def getProcessController(self, current, process=None):
processController = None
if current.config.buildPlatform == "iphonesimulator":
processController = iOSSimulatorProcessController
elif current.config.buildPlatform == "iphoneos":
processController = iOSDeviceProcessController
elif process and current.config.browser and isinstance(process.getMapping(current), JavaScriptMixin):
processController = BrowserProcessController
elif process and current.config.android:
processController = AndroidProcessController
else:
processController = LocalProcessController
if processController in self.processControllers:
return self.processControllers[processController]
# Instantiate the controller
self.processControllers[processController] = processController(current)
return self.processControllers[processController]
def getProcessProps(self, current, ready, readyCount):
props = {}
if ready or readyCount > 0:
if current.config.buildPlatform not in ["iphonesimulator", "iphoneos"]:
props["Ice.PrintAdapterReady"] = 1
return props
def destroy(self):
for controller in self.processControllers.values():
controller.destroy(self)
if self.communicator:
self.communicator.destroy()
class CppMapping(Mapping):
class Config(Mapping.Config):
@classmethod
def getSupportedArgs(self):
return ("", ["cpp-config=", "cpp-platform=", "cpp-path=", "openssl"])
@classmethod
def usage(self):
print("")
print("C++ Mapping options:")
print("--cpp-path=<path> Path of alternate source tree for the C++ mapping.")
print("--cpp-config=<config> C++ build configuration for native executables (overrides --config).")
print("--cpp-platform=<platform> C++ build platform for native executables (overrides --platform).")
print("--openssl Run SSL tests with OpenSSL instead of the default platform SSL engine.")
def __init__(self, options=[]):
Mapping.Config.__init__(self, options)
# Derive from the build config the cpp11 option. This is used by canRun to allow filtering
# tests on the cpp11 value in the testcase options specification
self.cpp11 = self.buildConfig.lower().find("cpp11") >= 0
parseOptions(self, options, { "cpp-config" : "buildConfig",
"cpp-platform" : "buildPlatform",
"cpp-path" : "pathOverride" })
if self.pathOverride:
self.pathOverride = os.path.abspath(self.pathOverride)
def getProps(self, process, current):
props = Mapping.getProps(self, process, current)
if isinstance(process, IceProcess):
props["Ice.NullHandleAbort"] = True
props["Ice.PrintStackTraces"] = "1"
return props
def getSSLProps(self, process, current):
props = Mapping.getSSLProps(self, process, current)
server = isinstance(process, Server)
props.update({
"IceSSL.CAs": "cacert.pem",
"IceSSL.CertFile": "server.p12" if server else "client.p12"
})
if isinstance(platform, Darwin):
props.update({
"IceSSL.KeychainPassword" : "password",
"IceSSL.Keychain": "server.keychain" if server else "client.keychain"
})
return props
def getPluginEntryPoint(self, plugin, process, current):
return {
"IceSSL" : "IceSSLOpenSSL:createIceSSLOpenSSL" if current.config.openssl else "IceSSL:createIceSSL",
"IceBT" : "IceBT:createIceBT",
"IceDiscovery" : "IceDiscovery:createIceDiscovery",
"IceLocatorDiscovery" : "IceLocatorDiscovery:createIceLocatorDiscovery"
}[plugin]
def getEnv(self, process, current):
#
# On Windows, add the testcommon directories to the PATH
#
libPaths = []
if isinstance(platform, Windows):
testcommon = os.path.join(self.path, "test", "Common")
if os.path.exists(testcommon):
libPaths.append(os.path.join(testcommon, self.getBuildDir("testcommon", current)))
#
# On most platforms, we also need to add the library directory to the library path environment variable.
#
if not isinstance(platform, Darwin):
libPaths.append(self.component.getLibDir(process, self, current))
# On AIX we also need to add the lib directory for the TestCommon library
# when testing against a binary distribution
if isinstance(platform, AIX) and self.component.useBinDist(self, current):
libPaths.append(os.path.join(self.path, "lib32" if current.config.buildPlatform == "ppc" else "lib"))
#
# Add the test suite library directories to the platform library path environment variable.
#
if current.testcase:
for d in set([current.getBuildDir(d) for d in current.testcase.getTestSuite().getLibDirs()]):
libPaths.append(d)
env = {}
if len(libPaths) > 0:
env[platform.getLdPathEnvName()] = os.pathsep.join(libPaths)
return env
def _getDefaultSource(self, processType):
return {
"client" : "Client.cpp",
"server" : "Server.cpp",
"serveramd" : "ServerAMD.cpp",
"collocated" : "Collocated.cpp",
"subscriber" : "Subscriber.cpp",
"publisher" : "Publisher.cpp",
}[processType]
def _getDefaultExe(self, processType):
return Mapping._getDefaultExe(self, processType).lower()
def getIOSControllerIdentity(self, current):
category = "iPhoneSimulator" if current.config.buildPlatform == "iphonesimulator" else "iPhoneOS"
mapping = "Cpp11" if current.config.cpp11 else "Cpp98"
return "{0}/com.zeroc.{1}-Test-Controller".format(category, mapping)
def getIOSAppFullPath(self, current):
appName = "C++11 Test Controller.app" if current.config.cpp11 else "C++98 Test Controller.app"
path = os.path.join(self.component.getTestDir(self), "ios", "controller")
path = os.path.join(path, "build-{0}-{1}".format(current.config.buildPlatform, current.config.buildConfig))
build = "Debug" if os.path.exists(os.path.join(path, "Debug-{0}".format(current.config.buildPlatform))) else "Release"
return os.path.join(path, "{0}-{1}".format(build, current.config.buildPlatform), appName)
class JavaMapping(Mapping):
class Config(Mapping.Config):
@classmethod
def getSupportedArgs(self):
return ("", ["device=", "avd=", "android"])
@classmethod
def usage(self):
print("")
print("Java Mapping options:")
print("--android Run the Android tests.")
print("--device=<device-id> ID of the Android emulator or device used to run the tests.")
print("--avd=<name> Start specific Android Virtual Device.")
def getCommandLine(self, current, process, exe, args):
javaHome = os.getenv("JAVA_HOME", "")
java = os.path.join(javaHome, "bin", "java") if javaHome else "java"
javaArgs = self.getJavaArgs(process, current)
if process.isFromBinDir():
if javaArgs:
return "{0} -ea {1} {2} {3}".format(java, " ".join(javaArgs), exe, args)
else:
return "{0} -ea {1} {2}".format(java, exe, args)
testdir = self.component.getTestDir(self)
assert(current.testcase.getPath(current).startswith(testdir))
package = "test." + current.testcase.getPath(current)[len(testdir) + 1:].replace(os.sep, ".")
javaArgs = self.getJavaArgs(process, current)
if javaArgs:
return "{0} -ea {1} -Dtest.class={2}.{3} test.TestDriver {4}".format(java, " ".join(javaArgs), package, exe, args)
else:
return "{0} -ea -Dtest.class={1}.{2} test.TestDriver {3}".format(java, package, exe, args)
def getJavaArgs(self, process, current):
# TODO: WORKAROUND for https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911925
if isinstance(platform, Linux) and platform.getLinuxId() in ["debian", "ubuntu"]:
return ["-Djdk.net.URLClassPath.disableClassPathURLCheck=true"]
return []
def getSSLProps(self, process, current):
props = Mapping.getSSLProps(self, process, current)
if current.config.android:
props.update({
"IceSSL.KeystoreType" : "BKS",
"IceSSL.TruststoreType" : "BKS",
"Ice.InitPlugins" : "0",
"IceSSL.Keystore": "server.bks" if isinstance(process, Server) else "client.bks"
})
else:
props.update({
"IceSSL.Keystore": "server.jks" if isinstance(process, Server) else "client.jks",
})
return props
def getPluginEntryPoint(self, plugin, process, current):
return {
"IceSSL" : "com.zeroc.IceSSL.PluginFactory",
"IceBT" : "com.zeroc.IceBT.PluginFactory",
"IceDiscovery" : "com.zeroc.IceDiscovery.PluginFactory",
"IceLocatorDiscovery" : "com.zeroc.IceLocatorDiscovery.PluginFactory"
}[plugin]
def getEnv(self, process, current):
return { "CLASSPATH" : os.path.join(self.path, "lib", "test.jar") }
def _getDefaultSource(self, processType):
return {
"client" : "Client.java",
"server" : "Server.java",
"serveramd" : "AMDServer.java",
"servertie" : "TieServer.java",
"serveramdtie" : "AMDTieServer.java",
"collocated" : "Collocated.java",
}[processType]
def getSDKPackage(self):
return "system-images;android-33;google_apis;{}".format(
"arm64-v8a" if platform_machine() == "arm64" else "x86_64")
def getApk(self, current):
return os.path.join(self.getPath(), "test", "android", "controller", "build", "outputs", "apk", "debug",
"controller-debug.apk")
def getActivityName(self):
return "com.zeroc.testcontroller/.ControllerActivity"
class JavaCompatMapping(JavaMapping):
class Config(JavaMapping.Config):
@classmethod
def usage(self):
print("")
print("Java Compat Mapping options:")
print("--android Run the Android tests.")
print("--device=<device-id> ID of the Android emulator or device used to run the tests.")
print("--avd=<name> Start specific Android Virtual Device.")
def getPluginEntryPoint(self, plugin, process, current):
return {
"IceSSL" : "IceSSL.PluginFactory",
"IceBT" : "IceBT.PluginFactory",
"IceDiscovery" : "IceDiscovery.PluginFactory",
"IceLocatorDiscovery" : "IceLocatorDiscovery.PluginFactory"
}[plugin]
def getEnv(self, process, current):
classPath = [os.path.join(self.path, "lib", "test.jar")]
if os.path.exists(os.path.join(self.path, "lib", "IceTestLambda.jar")):
classPath += [os.path.join(self.path, "lib", "IceTestLambda.jar")]
return { "CLASSPATH" : os.pathsep.join(classPath) }
def getSDKPackage(self):
return "system-images;android-33;google_apis;{}".format(
"arm64-v8a" if platform_machine() == "arm64" else "x86_64")
class CSharpMapping(Mapping):
class Config(Mapping.Config):
@classmethod
def getSupportedArgs(self):
return ("", ["framework="])
@classmethod
def usage(self):
print("")
print("C# mapping options:")
print("--framework=net45|net6.0|net7.0 Choose the framework used to run .NET tests")
def __init__(self, options=[]):
Mapping.Config.__init__(self, options)
if self.framework == "":
self.framework = "net6.0"
self.dotnet = not isinstance(platform, Windows) or self.framework != "net45"
self.libTargetFramework = "netstandard2.0" if self.framework != "net45" else self.framework
self.binTargetFramework = self.framework
self.testTargetFramework = self.framework
def getBinTargetFramework(self, current):
return current.config.binTargetFramework
def getLibTargetFramework(self, current):
return current.config.libTargetFramework
def getTargetFramework(self, current):
return current.config.testTargetFramework
def getBuildDir(self, name, current):
if current.config.framework in ["net45"]:
return os.path.join("msbuild", name, current.config.framework)
else:
return os.path.join("msbuild", name, "netstandard2.0", self.getTargetFramework(current))
def getSSLProps(self, process, current):
props = Mapping.getSSLProps(self, process, current)
props.update({
"IceSSL.Password": "password",
"IceSSL.DefaultDir": os.path.join(self.component.getSourceDir(), "certs"),
"IceSSL.CAs": "cacert.pem",
"IceSSL.VerifyPeer": "0" if current.config.protocol == "wss" else "2",
"IceSSL.CertFile": "server.p12" if isinstance(process, Server) else "client.p12",
})
return props
def getPluginEntryPoint(self, plugin, process, current):
plugindir = self.component.getLibDir(process, self, current)
#
# If the plug-in assembly exists in the test directory, this is a good indication that the
# test include a reference to the plug-in, in this case we must use the test dir as the
# plug-in base directory to avoid loading two instances of the same assembly.
#
proccessType = current.testcase.getProcessType(process)
if proccessType:
testdir = os.path.join(current.testcase.getPath(current), self.getBuildDir(proccessType, current))
if os.path.isfile(os.path.join(testdir, plugin + ".dll")):
plugindir = testdir
plugindir += os.sep
return {
"IceSSL" : plugindir + "IceSSL.dll:IceSSL.PluginFactory",
"IceDiscovery" : plugindir + "IceDiscovery.dll:IceDiscovery.PluginFactory",
"IceLocatorDiscovery" : plugindir + "IceLocatorDiscovery.dll:IceLocatorDiscovery.PluginFactory"
}[plugin]
def getEnv(self, process, current):
env = {}
if isinstance(platform, Windows):
if self.component.useBinDist(self, current):
env['PATH'] = self.component.getBinDir(process, self, current)
else:
env['PATH'] = os.path.join(self.component.getSourceDir(), "cpp", "msbuild", "packages",
"bzip2.{0}.1.0.6.10".format(platform.getPlatformToolset()),
"build", "native", "bin", "x64", "Release")
if not current.config.dotnet:
env['DEVPATH'] = self.component.getLibDir(process, self, current)
return env
def _getDefaultSource(self, processType):
return {
"client" : "Client.cs",
"server" : "Server.cs",
"serveramd" : "ServerAMD.cs",
"servertie" : "ServerTie.cs",
"serveramdtie" : "ServerAMDTie.cs",
"collocated" : "Collocated.cs",
}[processType]
def _getDefaultExe(self, processType):
return Mapping._getDefaultExe(self, processType).lower()
def getCommandLine(self, current, process, exe, args):
if process.isFromBinDir():
path = self.component.getBinDir(process, self, current)
else:
path = os.path.join(current.testcase.getPath(current), current.getBuildDir(exe))
useDotnetExe = process.isFromBinDir() and current.config.testTargetFramework != "net45"
command = ""
if useDotnetExe:
command += "dotnet "
command += os.path.join(path, exe)
if useDotnetExe:
command += ".dll "
elif isinstance(platform, Windows):
command += ".exe"
command += " {}".format(args)
return command
def getSDKPackage(self):
return "system-images;android-33;google_apis;{}".format(
"arm64-v8a" if platform_machine() == "arm64" else "x86_64")
class CppBasedMapping(Mapping):
class Config(Mapping.Config):
@classmethod
def getSupportedArgs(self):
return ("", [self.mappingName + "-config=", self.mappingName + "-platform=", "openssl"])
@classmethod
def usage(self):
print("")
print(self.mappingDesc + " mapping options:")
print("--{0}-config=<config> {1} build configuration for native executables (overrides --config)."
.format(self.mappingName, self.mappingDesc))
print("--{0}-platform=<platform> {1} build platform for native executables (overrides --platform)."
.format(self.mappingName, self.mappingDesc))
print("--openssl Run SSL tests with OpenSSL instead of the default platform SSL engine.")
def __init__(self, options=[]):
Mapping.Config.__init__(self, options)
parseOptions(self, options,
{ self.mappingName + "-config" : "buildConfig",
self.mappingName + "-platform" : "buildPlatform" })
def getSSLProps(self, process, current):
return Mapping.getByName("cpp").getSSLProps(process, current)
def getPluginEntryPoint(self, plugin, process, current):
return Mapping.getByName("cpp").getPluginEntryPoint(plugin, process, current)
def getEnv(self, process, current):
env = Mapping.getEnv(self, process, current)
if self.component.getInstallDir(self, current) != platform.getInstallDir():
# If not installed in the default platform installation directory, add
# the C++ library directory to the library path
env[platform.getLdPathEnvName()] = self.component.getLibDir(process, Mapping.getByName("cpp"), current)
return env
class ObjCMapping(CppBasedMapping):
class Config(CppBasedMapping.Config):
mappingName = "objc"
mappingDesc = "Objective-C"
def __init__(self, options=[]):
Mapping.Config.__init__(self, options)
self.arc = self.buildConfig.lower().find("arc") >= 0
def _getDefaultSource(self, processType):
return {
"client" : "Client.m",
"server" : "Server.m",
"collocated" : "Collocated.m",
}[processType]
def _getDefaultExe(self, processType):
return Mapping._getDefaultExe(self, processType).lower()
def getIOSControllerIdentity(self, current):
category = "iPhoneSimulator" if current.config.buildPlatform == "iphonesimulator" else "iPhoneOS"
mapping = "ObjC-ARC" if current.config.arc else "ObjC"
return "{0}/com.zeroc.{1}-Test-Controller".format(category, mapping)
def getIOSAppFullPath(self, current):
appName = "Objective-C ARC Test Controller.app" if current.config.arc else "Objective-C Test Controller.app"
path = os.path.join(self.component.getTestDir(self), "ios", "controller")
path = os.path.join(path, "build-{0}-{1}".format(current.config.buildPlatform, current.config.buildConfig))
build = "Debug" if os.path.exists(os.path.join(path, "Debug-{0}".format(current.config.buildPlatform))) else "Release"
return os.path.join(path, "{0}-{1}".format(build, current.config.buildPlatform), appName)
class PythonMapping(CppBasedMapping):
class Config(CppBasedMapping.Config):
mappingName = "python"
mappingDesc = "Python"
@classmethod
def getSupportedArgs(self):
return ("", ["python="])
@classmethod
def usage(self):
print("")
print("Python mapping options:")
print("--python=<interpreter> Choose the interperter used to run python tests")
def __init__(self, options=[]):
Mapping.Config.__init__(self, options)
self.pythonVersion = None
def getPythonVersion(self):
if self.pythonVersion is None:
version = subprocess.check_output(
[currentConfig.python,
"-c",
"import sys; print(\"{0}.{1}\".format(sys.version_info[0], sys.version_info[1]))"])
if type(version) != str:
version = version.decode("utf-8")
self.pythonVersion = tuple(int(num) for num in version.split("."))
return self.pythonVersion
def getCommandLine(self, current, process, exe, args):
return "\"{0}\" {1} {2} {3}".format(current.config.python,
os.path.join(self.path, "test", "TestHelper.py"),
exe,
args)
def getEnv(self, process, current):
env = CppBasedMapping.getEnv(self, process, current)
dirs = []
if self.component.getInstallDir(self, current) != platform.getInstallDir():
# If not installed in the default platform installation directory, add
# the Ice python directory to PYTHONPATH
dirs += self.getPythonDirs(self.component.getInstallDir(self, current), current.config)
dirs += [current.testcase.getPath(current)]
env["PYTHONPATH"] = os.pathsep.join(dirs)
return env
def getPythonDirs(self, iceDir, config):
dirs = []
if isinstance(platform, Windows):
dirs.append(os.path.join(iceDir, "python", config.buildPlatform, config.buildConfig))
dirs.append(os.path.join(iceDir, "python"))
return dirs
def _getDefaultSource(self, processType):
return {
"client" : "Client.py",
"server" : "Server.py",
"serveramd" : "ServerAMD.py",
"collocated" : "Collocated.py",
}[processType]
class CppBasedClientMapping(CppBasedMapping):
def loadTestSuites(self, tests, config, filters, rfilters):
Mapping.loadTestSuites(self, tests, config, filters, rfilters)
self.getServerMapping().loadTestSuites(self.testsuites.keys(), config)
def getServerMapping(self, testId=None):
return Mapping.getByName("cpp") # By default, run clients against C++ mapping executables
class RubyMapping(CppBasedClientMapping):
class Config(CppBasedClientMapping.Config):
mappingName = "ruby"
mappingDesc = "Ruby"
def getCommandLine(self, current, process, exe, args):
return "ruby {0} {1} {2}".format(os.path.join(self.path, "test", "TestHelper.rb"), exe, args)
def getEnv(self, process, current):
env = CppBasedMapping.getEnv(self, process, current)
dirs = []
if self.component.getInstallDir(self, current) != platform.getInstallDir():
# If not installed in the default platform installation directory, add
# the Ice ruby directory to RUBYLIB
dirs += [os.path.join(self.path, "ruby")]
dirs += [current.testcase.getPath(current)]
env["RUBYLIB"] = os.pathsep.join(dirs)
return env
def _getDefaultSource(self, processType):
return { "client" : "Client.rb" }[processType]
class PhpMapping(CppBasedClientMapping):
class Config(CppBasedClientMapping.Config):
mappingName = "php"
mappingDesc = "PHP"
@classmethod
def getSupportedArgs(self):
return ("", ["php-version="])
@classmethod
def usage(self):
print("")
print("PHP Mapping options:")
print("--php-version=[7.1|7.2|7.3|8.0|8.1] PHP Version used for Windows builds")
def __init__(self, options=[]):
CppBasedClientMapping.Config.__init__(self, options)
parseOptions(self, options, { "php-version" : "phpVersion" })
def getCommandLine(self, current, process, exe, args):
phpArgs = []
php = "php"
#
# On Windows, when using a source distribution use the php executable from
# the Nuget PHP dependency.
#
if isinstance(platform, Windows) and not self.component.useBinDist(self, current):
nugetVersions = {
"7.1": "7.1.17",
"7.2": "7.2.8",
"7.3": "7.3.0",
"8.0": "8.0.0.1",
"8.1": "8.1.0"
}
nugetVersion = nugetVersions[current.config.phpVersion]
threadSafe = current.driver.configs[self].buildConfig in ["Debug", "Release"]
buildPlatform = current.driver.configs[self].buildPlatform
buildConfig = "Debug" if current.driver.configs[self].buildConfig.find("Debug") >= 0 else "Release"
packageName = "php-{0}-{1}.{2}".format(current.config.phpVersion, "ts" if threadSafe else "nts", nugetVersion)
php = os.path.join(self.path, "msbuild", "packages", packageName, "build", "native", "bin",
buildPlatform, buildConfig, "php.exe")
#
# If Ice is not installed in the system directory, specify its location with PHP
# configuration arguments.
#
if isinstance(platform, Windows) and not self.component.useBinDist(self, current) or \
platform.getInstallDir() and self.component.getInstallDir(self, current) != platform.getInstallDir():
phpArgs += ["-n"] # Do not load any php.ini files
phpArgs += ["-d", "extension_dir='{0}'".format(self.component.getLibDir(process, self, current))]
phpArgs += ["-d", "extension='{0}'".format(self.component.getPhpExtension(self, current))]
phpArgs += ["-d", "include_path='{0}'".format(self.component.getPhpIncludePath(self, current))]
if hasattr(process, "getPhpArgs"):
phpArgs += process.getPhpArgs(current)
return "{0} {1} -f {2} -- {3} {4}".format(php,
" ".join(phpArgs),
os.path.join(self.path, "test", "TestHelper.php"),
exe,
args)
def _getDefaultSource(self, processType):
return { "client" : "Client.php" }[processType]
class MatlabMapping(CppBasedClientMapping):
class Config(CppBasedClientMapping.Config):
mappingName = "matlab"
mappingDesc = "MATLAB"
def getCommandLine(self, current, process, exe, args):
matlabHome = os.getenv("MATLAB_HOME")
# -wait and -minimize are not available on Linux, -log causes duplicate output to stdout on Linux
return "{0} -nodesktop -nosplash{1} -r \"cd '{2}', runTest {3} {4} {5}\"".format(
"matlab" if matlabHome is None else os.path.join(matlabHome, "bin", "matlab"),
" -wait -log -minimize" if isinstance(platform, Windows) else "",
os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "matlab", "test", "lib")),
self.getTestCwd(process, current),
current.driver.getComponent().getLibDir(process, self, current),
args)
def getServerMapping(self, testId=None):
return Mapping.getByName("python") # Run clients against Python mapping servers
def _getDefaultSource(self, processType):
return { "client" : "client.m" }[processType]
def getOptions(self, current):
#
# Metrics tests configuration not supported with MATLAB they use the Admin adapter.
#
options = CppBasedClientMapping.getOptions(self, current)
options["mx"] = [ False ]
return options
class JavaScriptMixin():
def loadTestSuites(self, tests, config, filters, rfilters):
# Exclude es5 directory, these are the same tests but transpiled with babel the JavaScript mapping
# use them when --es5 option is set.
rfilters += [re.compile("es5/*")]
# Exclude typescript directory when the mapping is not typescript otherwise we endup with duplicate entries
if self.name != "typescript":
rfilters += [re.compile("typescript/*")]
Mapping.loadTestSuites(self, tests, config, filters, rfilters)
self.getServerMapping().loadTestSuites(list(self.testsuites.keys()) + ["Ice/echo"], config)
def getServerMapping(self, testId=None):
if testId and self.hasSource(testId, "server"):
return self
else:
return Mapping.getByName("cpp") # Run clients against C++ mapping servers if no JS server provided
def _getDefaultProcesses(self, processType):
if processType.startswith("server"):
return [EchoServer(), Server()]
return Mapping._getDefaultProcesses(self, processType)
def getCommonDir(self, current):
return os.path.join(self.getPath(), "test", "Common")
def getCommandLine(self, current, process, exe, args):
return "node {0}/run.js {1} {2}".format(self.getCommonDir(current), exe, args)
def getEnv(self, process, current):
env = Mapping.getEnv(self, process, current)
env["NODE_PATH"] = os.pathsep.join([self.getCommonDir(current), self.getTestCwd(process, current)])
return env
def getSSLProps(self, process, current):
return {}
def getOptions(self, current):
options = {
"protocol" : ["ws", "wss"] if current.config.browser else ["tcp"],
"compress" : [False],
"ipv6" : [False],
"serialize" : [False],
"mx" : [False],
}
return options
class JavaScriptMapping(JavaScriptMixin,Mapping):
class Config(Mapping.Config):
@classmethod
def getSupportedArgs(self):
return ("", ["es5", "browser=", "worker"])
@classmethod
def usage(self):
print("")
print("JavaScript mapping options:")
print("--es5 Use JavaScript ES5 (Babel compiled code).")
print("--browser=<name> Run with the given browser.")
print("--worker Run with Web workers enabled.")
def __init__(self, options=[]):
Mapping.Config.__init__(self, options)
if self.browser and self.protocol == "tcp":
self.protocol = "ws"
# Ie only support ES5 for now
if self.browser in ["Ie"]:
self.es5 = True
def getCommonDir(self, current):
if current.config.es5:
return os.path.join(self.getPath(), "test", "es5", "Common")
else:
return os.path.join(self.getPath(), "test", "Common")
def _getDefaultSource(self, processType):
return { "client" : "Client.js", "serveramd" : "ServerAMD.js", "server" : "Server.js" }[processType]
def getTestCwd(self, process, current):
if current.config.es5:
# Change to the ES5 test directory if testing ES5
return os.path.join(self.path, "test", "es5", current.testcase.getTestSuite().getId())
else:
return os.path.join(self.path, "test", current.testcase.getTestSuite().getId())
def getOptions(self, current):
options = JavaScriptMixin.getOptions(self, current)
options.update({
"es5" : [True] if current.config.es5 else [False, True],
"worker" : [False, True] if current.config.browser and current.config.browser != "Ie" else [False],
})
return options
class TypeScriptMapping(JavaScriptMixin,Mapping):
class Config(Mapping.Config):
@classmethod
def getSupportedArgs(self):
return ("", ["browser=", "worker"])
@classmethod
def usage(self):
print("")
print("TypeScript mapping options:")
print("--browser=<name> Run with the given browser.")
print("--worker Run with Web workers enabled.")
def __init__(self, options=[]):
Mapping.Config.__init__(self, options)
if self.browser and self.protocol == "tcp":
self.protocol = "ws"
def canRun(self, testId, current):
# TODO: test TypeScript with browser, the test are currently only compiled for CommonJS (NodeJS)
return Mapping.Config.canRun(self, testId, current) and not self.browser
def _getDefaultSource(self, processType):
return { "client" : "Client.ts", "serveramd" : "ServerAMD.ts", "server" : "Server.ts" }[processType]
class SwiftMapping(Mapping):
class Config(CppBasedClientMapping.Config):
mappingName = "swift"
mappingDesc = "Swift"
def __init__(self, options=[]):
CppBasedClientMapping.Config.__init__(self, options)
if self.buildConfig == platform.getDefaultBuildConfig():
# Check the OPTIMIZE environment variable to figure out if it's Debug/Release build
self.buildConfig = "Release" if os.environ.get("OPTIMIZE", "yes") != "no" else "Debug"
def getCommandLine(self, current, process, exe, args):
testdir = self.component.getTestDir(self)
assert(current.testcase.getPath(current).startswith(testdir))
package = current.testcase.getPath(current)[len(testdir) + 1:].replace(os.sep, ".")
cmd = "xcodebuild -project {0} -target 'TestDriver {1}' -configuration {2} -showBuildSettings".format(
self.getXcodeProject(current),
"macOS",
current.config.buildConfig)
targetBuildDir = re.search("\sTARGET_BUILD_DIR = (.*)", run(cmd)).groups(1)[0]
testDriver = os.path.join(targetBuildDir, "TestDriver.app/Contents/MacOS/TestDriver")
if not os.path.exists(testDriver):
# Fallback location, required with Xcode 14.2
testDriver = os.path.join(
current.testcase.getMapping().getPath(),
"build",
current.config.buildConfig,
"TestDriver.app/Contents/MacOS/TestDriver")
return "{0} {1} {2} {3}".format(testDriver, package, exe, args)
def _getDefaultSource(self, processType):
return { "client" : "Client.swift",
"server" : "Server.swift",
"serveramd" : "ServerAMD.swift",
"collocated" : "Collocated.swift"
}[processType]
def getIOSControllerIdentity(self, current):
category = "iPhoneSimulator" if current.config.buildPlatform == "iphonesimulator" else "iPhoneOS"
return "{0}/com.zeroc.Swift-Test-Controller".format(category)
def getIOSAppFullPath(self, current):
cmd = "xcodebuild -project {0} \
-target 'TestDriver iOS' \
-configuration {1} \
-showBuildSettings \
-sdk {2}".format(self.getXcodeProject(current),
current.config.buildConfig,
current.config.buildPlatform)
targetBuildDir = re.search("\sTARGET_BUILD_DIR = (.*)", run(cmd)).groups(1)[0]
testDriver = os.path.join(targetBuildDir, "TestDriver.app")
if not os.path.exists(testDriver):
# Fallback location, required with Xcode 14.2
testDriver = os.path.join(
current.testcase.getMapping().getPath(),
"build",
"{0}-{1}".format(current.config.buildConfig, current.config.buildPlatform),
"TestDriver.app")
return testDriver
def getSSLProps(self, process, current):
props = Mapping.getByName("cpp").getSSLProps(process, current)
props["IceSSL.DefaultDir"] = ("certs" if current.config.buildPlatform == "iphoneos" else
os.path.join(self.component.getSourceDir(), "certs"))
return props
def getPluginEntryPoint(self, plugin, process, current):
return Mapping.getByName("cpp").getPluginEntryPoint(plugin, process, current)
def getXcodeProject(self, current):
return "{0}/{1}".format(current.testcase.getMapping().getPath(),
"ice.xcodeproj")
# TODO ice-test.xcodeproj once Carthage supports binary XCFramework projects
# "ice-test.xcodeproj" if self.component.useBinDist(self, current) else "ice.xcodeproj")
#
# Instantiate platform global variable
#
platform = None
if sys.platform == "darwin":
platform = Darwin()
elif sys.platform.startswith("aix"):
platform = AIX()
elif sys.platform.startswith("linux") or sys.platform.startswith("gnukfreebsd"):
platform = Linux()
elif sys.platform == "win32" or sys.platform[:6] == "cygwin":
platform = Windows()
if not platform:
print("can't run on unknown platform `{0}'".format(sys.platform))
sys.exit(1)
#
# Import component classes and instantiate the default component
#
from Component import *
#
# Initialize the platform with component
#
platform.init(component)
#
# Import local driver
#
from LocalDriver import *
def runTestsWithPath(path):
mappings = Mapping.getAllByPath(path)
if not mappings:
print("couldn't find mapping for `{0}' (is this mapping supported on this platform?)".format(path))
sys.exit(0)
runTests(mappings)
def runTests(mappings=None, drivers=None):
if not mappings:
mappings = Mapping.getAll()
if not drivers:
drivers = Driver.getAll()
def usage():
print("Usage: " + sys.argv[0] + " [options] [tests]")
print("")
print("Options:")
print("-h | --help Show this message")
Driver.commonUsage()
for driver in drivers:
driver.usage()
Mapping.Config.commonUsage()
for mapping in mappings:
mapping.Config.usage()
print("")
driver = None
try:
options = [Driver.getSupportedArgs(), Mapping.Config.getSupportedArgs()]
options += [driver.getSupportedArgs() for driver in drivers]
options += [mapping.Config.getSupportedArgs() for mapping in Mapping.getAll(includeDisabled=True)]
shortOptions = "h"
longOptions = ["help"]
for so, lo in options:
shortOptions += so
longOptions += lo
opts, args = getopt.gnu_getopt(sys.argv[1:], shortOptions, longOptions)
for (o, a) in opts:
if o in ["-h", "--help"]:
usage()
sys.exit(0)
#
# Create the driver
#
driver = Driver.create(opts, component)
#
# Create the configurations for each mapping.
#
configs = {}
for mapping in Mapping.getAll():
if mapping not in configs:
configs[mapping] = mapping.createConfig(opts[:])
#
# If the user specified --languages/rlanguages, only run matching mappings.
#
mappings = [m for m in mappings if driver.matchLanguage(str(m))]
#
# Provide the configurations to the driver and load the test suites for each mapping.
#
driver.setConfigs(configs)
for mapping in mappings + driver.getMappings():
(filters, rfilters) = driver.getFilters(mapping, configs[mapping])
mapping.loadTestSuites(args, configs[mapping], filters, rfilters)
#
# Finally, run the test suites with the driver.
#
try:
sys.exit(driver.run(mappings, args))
except KeyboardInterrupt:
pass
finally:
driver.destroy()
except Exception as e:
print(sys.argv[0] + ": unexpected exception raised:\n" + traceback.format_exc())
sys.exit(1)
|