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 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539
|
#!/usr/bin/env python3
##===--- fix_includes_test.py - test for fix_includes.py ------------------===##
#
# The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
from __future__ import print_function
"""Test for fix_includes.py
Test test test!
"""
__author__ = 'csilvers@google.com (Craig Silverstein)'
try:
from cStringIO import StringIO
except ImportError:
from io import StringIO
import re
import sys
# I use unittest instead of googletest to ease opensourcing.
import unittest
import fix_includes
class FakeFlags(object):
def __init__(self):
self.blank_lines = False
self.comments = True
self.update_comments = False
self.dry_run = False
self.ignore_re = None
self.only_re = None
self.safe_headers = False
self.separate_project_includes = None
self.keep_iwyu_namespace_format = False
self.reorder = True
self.basedir = None
class FixIncludesBase(unittest.TestCase):
"""Does setup that every test will want."""
def _ReadFile(self, filename, fileinfo):
assert filename in self.before_map, filename
return self.before_map[filename]
def _ParseFileInfo(self, filename):
return fix_includes.FileInfo('\n', 'utf-8')
def _WriteFile(self, filename, fileinfo, contents):
return self.actual_after_contents.extend(contents)
def setUp(self):
self.flags = FakeFlags()
# Map from filename to its contents (a list of lines) before fixing.
self.before_map = {}
# Map from filename to the 'correct' contents it should have after fixing.
self.expected_after_map = {}
# INPUT: fix_includes._ReadFile takes a filename
# and returns the contents of filename (as a list).
# FileInfo controls encoding details of the file,
# wire it to return something that agrees with the
# tests.
fix_includes._ReadFile = self._ReadFile
fix_includes.FileInfo.parse = self._ParseFileInfo
# OUTPUT: Instead of writing to file, save full output.
self.actual_after_contents = []
fix_includes._WriteFile = self._WriteFile
# Stub out stdout
self.stdout_stub = StringIO()
fix_includes.sys.stdout = self.stdout_stub
def RegisterFileContents(self, file_contents_map):
"""Parses and stores the given map from filename to file-contents.
The values of the map are file 'contents', written in a simple
markup language that allows us to encode both the 'before' and
expected 'after' contents of a file. Every line is taken
literally to be in both the before and after, with the following
exceptions:
1) Lines that look like '///+foo' are removed from 'before',
and replaced by 'foo' in 'after'. (This is an 'add'
instruction.)
2) Lines that end in '///-' are removed from both 'after'
and the '\s*///-' suffix is removed from 'before'.
(This is a 'remove' instruction.)
This function processes the input map to produce self.before_map
and self.expected_after_map.
Arguments:
file_contents_map: a map from filename to 'contents'. Contents
is a string, having the format mentioned above.
"""
remove_re = re.compile('\s*///-$')
for (filename, contents) in file_contents_map.items():
before_contents = []
expected_after_contents = []
for line in contents.splitlines(True):
m = remove_re.search(line)
if m:
# The trailing line separator is stripped, so append a '\n'.
before_contents.append(line[:m.start()] + '\n')
elif line.startswith('///+'):
expected_after_contents.append(line[len('///+'):])
else:
before_contents.append(line)
expected_after_contents.append(line)
self.before_map[filename] = before_contents
self.expected_after_map[filename] = expected_after_contents
def ProcessAndTest(self, iwyu_output, cmdline_files=None, unedited_files=[],
expected_num_modified_files=None, cwd=None):
"""For all files mentioned in iwyu_output, compare expected and actual.
Arguments:
iwyu_output: the output the iwyu script gave when run over the
set of input files.
cmdline_files: files to pass in to ProcessIWYUOutput (that, in
an actual fix_includes run, would come from the commandline).
These limit what files fix_includes chooses to edit.
unedited_files: the list of files that are listed in iwyu_output,
but fix_files has chosen not to edit for some reason.
expected_num_modified_files: what we expect ProcessIWYUOutput to
return. If None, suppress this check.
cwd: working directory passed to ProcessIWYUOutput, used to normalize
paths in cmdline_files. If None, no normalization occurs.
"""
filenames = re.findall('^(\S+) should add these lines:', iwyu_output, re.M)
if not filenames: # This is the other possible starting-line
filenames = re.findall('^\((\S+) has correct #includes/fwd-decls\)',
iwyu_output, re.M)
expected_after = []
for filename in fix_includes.OrderedSet(filenames): # uniquify
filename = fix_includes.NormalizeFilePath(self.flags.basedir, filename)
if filename not in unedited_files:
expected_after.extend(self.expected_after_map[filename])
iwyu_output_as_file = StringIO(iwyu_output)
num_modified_files = fix_includes.ProcessIWYUOutput(iwyu_output_as_file,
cmdline_files,
self.flags,
cwd=cwd)
if expected_after != self.actual_after_contents:
print("=== Expected:")
for line in expected_after:
print(line)
print("=== Got:")
for line in self.actual_after_contents:
print(line)
print("===")
self.assertListEqual(expected_after, self.actual_after_contents)
if expected_num_modified_files is not None:
self.assertEqual(expected_num_modified_files, num_modified_files)
class FixIncludesTest(FixIncludesBase):
"""End-to-end tests from input file to output file."""
def testSimple(self):
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
simple should add these lines:
#include <stdio.h>
#include "used2.h"
simple should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for simple:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'simple': infile})
self.ProcessAndTest(iwyu_output, expected_num_modified_files=1)
def testUnifiedDiffOutput(self):
"""Test the unified diff output generated by dry runs."""
infile = """
#include <notused.h>
int main() { return 0; }
"""
iwyu_output = """\
unified_diff.cc should add these lines:
unified_diff.cc should remove these lines:
- #include <notused.h> // lines 2-2
The full include-list for unified_diff.cc:
---
"""
diff_expect = """\
>>> Fixing #includes in 'unified_diff.cc'
@@ -1,4 +1,2 @@
-
-#include <notused.h>
int main() { return 0; }
IWYU edited 1 files on your behalf.
"""
self.flags.dry_run = True
self.RegisterFileContents({'unified_diff.cc': infile})
self.ProcessAndTest(iwyu_output, unedited_files=['unified_diff.cc'])
self.assertEqual(self.stdout_stub.getvalue(), diff_expect)
def testNodiffOutput(self):
"""Tests handling of the '(<file> has correct #includes)' iwyu output."""
infile = """\
// Copyright 2010
#include <stdio.h>
#include <ctype.h> // iwyu will not reorder, even though non-alphabetical
namespace Foo;
namespace Bar;
int main() { return 0; }
"""
iwyu_output = "(nodiffs.h has correct #includes/fwd-decls)\n"
self.RegisterFileContents({'nodiffs.h': infile})
# fix_includes gives special output when there are no changes, so
# we can't use the normal ProcessAndTest.
iwyu_output_as_file = StringIO(iwyu_output)
num_modified_files = fix_includes.ProcessIWYUOutput(iwyu_output_as_file,
None, self.flags, None)
self.assertListEqual([], self.actual_after_contents) # 'no diffs'
self.assertEqual(0, num_modified_files)
def testNodiffOutputWithNoSorting(self):
"""Tests 'correct #includes' iwyu output, but does not need reordering."""
infile = """\
// Copyright 2010
#include <ctype.h>
#include <stdio.h>
namespace Foo;
namespace Bar;
int main() { return 0; }
"""
iwyu_output = "(nodiffs_nosorting.h has correct #includes/fwd-decls)\n"
self.RegisterFileContents({'nodiffs_nosorting.h': infile})
# fix_includes gives special output when there are no changes, so
# we can't use the normal ProcessAndTest.
iwyu_output_as_file = StringIO(iwyu_output)
num_modified_files = fix_includes.ProcessIWYUOutput(iwyu_output_as_file,
None, self.flags, None)
self.assertListEqual([], self.actual_after_contents) # 'no diffs'
self.assertEqual(0, num_modified_files)
def testRemoveEmptyNamespace(self):
"""Tests we remove a namespace if we remove all fwd-decls inside it."""
infile = """\
// Copyright 2010
#include <stdio.h>
namespace ns { ///-
class Foo; ///-
namespace ns2 { ///-
namespace ns3 { ///-
class Bar; ///-
} } ///-
class Baz; ///-
} ///-
///-
int main() { return 0; }
"""
iwyu_output = """\
empty_namespace should add these lines:
empty_namespace should remove these lines:
- class Foo; // lines 6-6
- namespace ns { namespace ns2 { namespace ns3 { class Bar; } } } // lines 9-9
- namespace ns { class Baz; } } // lines 11-11
The full include-list for empty_namespace:
#include <stdio.h>
---
"""
self.RegisterFileContents({'empty_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testRemoveEmptyAllmanNamespace(self):
"""Tests we remove a namespace with Allman braces if we remove all fwd-decls inside it."""
infile = """\
// Copyright 2010
#include <stdio.h>
namespace ns ///-
{ ///-
class Foo; ///-
namespace ns2 ///-
{ ///-
namespace ns3 ///-
{ ///-
class Bar; ///-
} ///-
} ///-
class Baz; ///-
} ///-
///-
int main() { return 0; }
"""
iwyu_output = """\
empty_namespace should add these lines:
empty_namespace should remove these lines:
- class Foo; // lines 7-7
- namespace ns { namespace ns2 { namespace ns3 { class Bar; } } } // lines 12-12
- namespace ns { class Baz; } } // lines 15-15
The full include-list for empty_namespace:
#include <stdio.h>
---
"""
self.RegisterFileContents({'empty_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testRemoveEmptyMixedNamespace(self):
"""Tests we remove a namespace with mixed braces if we remove all fwd-decls inside it."""
infile = """\
// Copyright 2010
#include <stdio.h>
namespace ns ///-
{ ///-
class Foo; ///-
namespace ns2 { namespace ns3 ///-
{ ///-
class Bar; ///-
} ///-
} ///-
class Baz; ///-
} ///-
///-
int main() { return 0; }
"""
iwyu_output = """\
empty_namespace should add these lines:
empty_namespace should remove these lines:
- class Foo; // lines 7-7
- namespace ns { namespace ns2 { namespace ns3 { class Bar; } } } // lines 10-10
- namespace ns { class Baz; } } // lines 13-13
The full include-list for empty_namespace:
#include <stdio.h>
---
"""
self.RegisterFileContents({'empty_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testCXX17NS(self):
"""Tests handling of output using the --cxx17ns switch."""
infile = """\
#include "cxx17ns-i1.h"///-
///+
///+namespace a::b::c {
///+struct One;
///+} // namespace a::b::c
///+namespace a::b {
///+struct One2;
///+} // namespace a::b
///+namespace a {
///+struct One4;
///+struct One3;
///+} // namespace a
struct Two {
Two(a::b::c::One& one);
Two(a::b::One2& one);
Two(a::One3& one);
Two(a::One4& one);
};
"""
iwyu_output = """\
cxx17ns.cc should add these lines:
namespace a { namespace { struct One4; } }
namespace a { struct One3; }
namespace a::b { struct One2; }
namespace a::b::c { struct One; }
cxx17ns.cc should remove these lines:
- #include "cxx17ns-i1.h" // lines 1-1
The full include-list for cxx17ns.cc:
namespace a { namespace { struct One4; } }
namespace a { struct One3; }
namespace a::b { struct One2; }
namespace a::b::c { struct One; }
---
"""
self.RegisterFileContents({'cxx17ns.cc': infile})
self.ProcessAndTest(iwyu_output)
def testNamespaceAlias(self):
"""Tests we leave namespace aliases alone."""
infile = """\
#include <stdint.h> ///-
namespace outer {
namespace middle {
namespace inner {
enum Values {
VAL
};
} // namespace inner
} // namespace middle
// This alias should not be mistaken for an Allman namespace dfn
namespace inner = middle::inner;
} // namespace outer
"""
iwyu_output = """\
namespace_alias.cc should add these lines:
namespace_alias.cc should remove these lines:
- #include <stdint.h> // lines 1-1
The full include-list for namespace_alias.cc:
---
"""
self.RegisterFileContents({'namespace_alias.cc': infile})
self.ProcessAndTest(iwyu_output)
def testRemovePartOfEmptyNamespace(self):
"""Tests we remove a namespace if empty, but not enclosing namespaces."""
infile = """\
// Copyright 2010
namespace maps_transit_realtime {
namespace service_alerts {
class StaticServiceAlertStore;
namespace trigger { ///-
class Trigger; ///-
} // namespace trigger ///-
namespace ui { ///-
class Alert; ///-
} // namespace ui ///-
} // namespace service_alerts
} // namespace maps_transit_realtime
int main() { return 0; }
"""
iwyu_output = """\
empty_internal_namespace should add these lines:
empty_internal_namespace should remove these lines:
- namespace maps_transit_realtime { namespace service_alerts { namespace trigger { class Trigger; } } } // lines 7-7
- namespace maps_transit_realtime { namespace service_alerts { namespace ui { class Alert; } } } // lines 10-10
The full include-list for empty_internal_namespace:
namespace maps_transit_realtime { namespace service_alerts { class StaticServiceAlertStore; } } // lines 5-5
---
"""
self.RegisterFileContents({'empty_internal_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testRemovePartOfEmptyAllmanNamespace(self):
"""Tests we remove a namespace with Allman braces if empty, but not enclosing namespaces."""
infile = """\
// Copyright 2010
namespace maps_transit_realtime
{
namespace service_alerts
{
class StaticServiceAlertStore;
namespace trigger ///-
{ ///-
class Trigger; ///-
} // namespace trigger ///-
namespace ui ///-
{ ///-
class Alert; ///-
} // namespace ui ///-
} // namespace service_alerts
} // namespace maps_transit_realtime
int main() { return 0; }
"""
iwyu_output = """\
empty_internal_namespace should add these lines:
empty_internal_namespace should remove these lines:
- namespace maps_transit_realtime { namespace service_alerts { namespace trigger { class Trigger; } } } // lines 10-10
- namespace maps_transit_realtime { namespace service_alerts { namespace ui { class Alert; } } } // lines 14-14
The full include-list for empty_internal_namespace:
namespace maps_transit_realtime { namespace service_alerts { class StaticServiceAlertStore; } } // lines 7-7
---
"""
self.RegisterFileContents({'empty_internal_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testRemovePartOfEmptyMixedNamespace(self):
"""Tests we remove a namespace with mixed braces if empty, but not enclosing namespaces."""
infile = """\
// Copyright 2010
namespace maps_transit_realtime
{
class StaticServiceAlertStore;
namespace service_alerts { namespace trigger ///-
{ ///-
class Trigger; ///-
} // namespace trigger ///-
namespace ui ///-
{ ///-
class Alert; ///-
} // namespace ui ///-
} // namespace service_alerts ///-
} // namespace maps_transit_realtime
int main() { return 0; }
"""
iwyu_output = """\
empty_internal_namespace should add these lines:
empty_internal_namespace should remove these lines:
- namespace maps_transit_realtime { namespace service_alerts { namespace trigger { class Trigger; } } } // lines 8-8
- namespace maps_transit_realtime { namespace service_alerts { namespace ui { class Alert; } } } // lines 12-12
The full include-list for empty_internal_namespace:
namespace maps_transit_realtime { class StaticServiceAlertStore; } // lines 5-5
---
"""
self.RegisterFileContents({'empty_internal_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testRemoveEmptyIfdef(self):
"""Tests we remove an #ifdef if we remove all #includes inside it."""
# Also makes sure we reorder properly around the removed ifdef.
infile = """\
// Copyright 2010
#include <stdio.h>
///+#include <stdlib.h>
// Only on windows. ///-
#ifdef OS_WINDOWS ///-
#include <notused.h> ///-
#include <notused2.h> ///-
#endif ///-
#include "used.h"
#include <stdlib.h> ///-
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
empty_ifdef should add these lines:
#include "used2.h"
empty_ifdef should remove these lines:
- #include <notused.h> // lines 6-6
- #include <notused2.h> // lines 7-7
The full include-list for empty_ifdef:
#include <stdio.h>
#include <stdlib.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'empty_ifdef': infile})
self.ProcessAndTest(iwyu_output)
def testRemoveEmptyNestedIfdef(self):
"""Tests we remove an empty #ifdef inside a non-empty #ifdef."""
infile = """\
// Copyright 2010
#include <stdio.h>
#ifdef NDEBUG
// Only on windows. ///-
# ifdef OS_WINDOWS ///-
# include <notused.h> ///-
# include <notused2.h> ///-
# endif ///-
# undef VERBOSE_LOGGING
#endif
///+#include <stdlib.h>
#include "used.h"
#include <stdlib.h> ///-
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
empty_nested_ifdef should add these lines:
#include "used2.h"
empty_nested_ifdef should remove these lines:
- #include <notused.h> // lines 7-7
- #include <notused2.h> // lines 8-8
The full include-list for empty_nested_ifdef:
#include <stdlib.h>
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'empty_nested_ifdef': infile})
self.ProcessAndTest(iwyu_output)
def testNonEmptyIfdef(self):
"""Tests we keep an #ifdef if we don't remove all #includes inside it."""
infile = """\
// Copyright 2010
#include <stdio.h>
#ifdef OS_WINDOWS
#include <notused.h> ///-
#include <used_win.h>
#endif
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
nonempty_ifdef should add these lines:
#include "used2.h"
nonempty_ifdef should remove these lines:
- #include <notused.h> // lines 5-5
The full include-list for nonempty_ifdef:
#include <used_win.h>
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'nonempty_ifdef': infile})
self.ProcessAndTest(iwyu_output)
def testKeepIfdefsWithNonIncludes(self):
"""Tests we keep an #ifdef if we have a non-#include inside it."""
infile = """\
// Copyright 2010
#include <stdio.h>
#ifdef OS_WINDOWS
#define IN_WINDOWS
#include <notused.h> ///-
#endif
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
nonempty_ifdef should add these lines:
#include "used2.h"
nonempty_ifdef should remove these lines:
- #include <notused.h> // lines 6-6
The full include-list for nonempty_ifdef:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'nonempty_ifdef': infile})
self.ProcessAndTest(iwyu_output)
def testRemoveComments(self):
"""Tests we remove comments above #includes."""
infile = """\
// Copyright 2010
#include <stdio.h>
// This file is not used. ///-
#include <notused.h> ///-
///-
// This file is not used either. ///-
// It's not used. ///-
// Not used at all. ///-
#include <notused2.h> ///-
///-
#include "notused3.h" ///-
// This comment should stay, it's not before an #include.
const int kInt = 5;
// This file is used.
// It's definitedly used.
#include "used.h"
///+#include "used2.h"
const int kInt2 = 6;
///-
// This forward-declare is in a reorder_span all by itself. ///-
class NotUsed; ///-
// This comment should stay, it's not before an #include.
int main() { return 0; }
"""
iwyu_output = """\
remove_comments should add these lines:
#include "used2.h"
remove_comments should remove these lines:
- #include <notused.h> // lines 5-5
- #include <notused2.h> // lines 10-10
- #include "notused3.h" // lines 12-12
- class NotUsed; // lines 23-23
The full include-list for remove_comments:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'remove_comments': infile})
self.ProcessAndTest(iwyu_output)
def testNoBlankLineAfterTopOfFileCxxComments(self):
"""Tests we don't remove top-of-file c++ comments right before #includes."""
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
top_of_file_comments.cc should add these lines:
#include <stdio.h>
#include "used2.h"
top_of_file_comments.cc should remove these lines:
- #include <notused.h> // lines 2-2
The full include-list for top_of_file_comments.cc:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'top_of_file_comments.cc': infile})
self.ProcessAndTest(iwyu_output)
def testNoBlankLineAfterTopOfFileCComments(self):
"""Tests we don't remove top-of-file c comments right before #includes."""
infile = """\
/*
* Copyright 2010
*/
#include <notused.h> ///-
/* This is a one-line c-style comment. */ ///-
#include <notused2.h> /* this is a c-style comment after a line */ ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
top_of_file_comments.c should add these lines:
#include <stdio.h>
#include "used2.h"
top_of_file_comments.c should remove these lines:
- #include <notused.h> // lines 4-4
- #include <notused2.h> // lines 6-6
The full include-list for top_of_file_comments.c:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'top_of_file_comments.c': infile})
self.ProcessAndTest(iwyu_output)
def testNotFullLineCComments(self):
"""Tests that we treat lines with c comments then code as code-lines."""
infile = """\
// Copyright 2010
///+#include <stdio.h>
///+
/* code here */ x = 4;
int main() { return 0; }
"""
iwyu_output = """\
not_full_line_c_comments.c should add these lines:
#include <stdio.h>
not_full_line_c_comments.c should remove these lines:
The full include-list for not_full_line_c_comments.c:
#include <stdio.h>
---
"""
self.RegisterFileContents({'not_full_line_c_comments.c': infile})
self.ProcessAndTest(iwyu_output)
def testUnusualHFileNames(self):
"""Tests we treat .pb.h files as header files."""
infile = """\
/*
* Copyright 2010
*/
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.pb.h"
///+#include "used2.pb.h"
int main() { return 0; }
"""
iwyu_output = """\
pb.h.cc should add these lines:
#include <stdio.h>
#include "used2.pb.h"
pb.h.cc should remove these lines:
- #include <notused.h> // lines 4-4
The full include-list for pb.h.cc:
#include <stdio.h>
#include "used.pb.h"
#include "used2.pb.h"
---
"""
self.RegisterFileContents({'pb.h.cc': infile})
self.ProcessAndTest(iwyu_output)
def testFwdDeclLines(self):
"""Tests that we keep or remove forward declares based on iwyu output."""
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
struct KeepStruct;
class NoKeepClass; ///-
template<typename Foo> class KeepTplClass;
int main() { return 0; }
"""
iwyu_output = """\
fwd_decl should add these lines:
#include <stdio.h>
#include "used2.h"
fwd_decl should remove these lines:
- #include <notused.h> // lines 3-3
- class NoKeepClass; // lines 7-7
The full include-list for fwd_decl:
#include <stdio.h>
#include "used.h"
#include "used2.h"
struct KeepStruct; // lines 6-6
template<typename Foo> class KeepTplClass; // lines 8-8
---
"""
self.RegisterFileContents({'fwd_decl': infile})
self.ProcessAndTest(iwyu_output)
def testMultiLineFwdDecls(self):
"""Tests we keep forward-decls that span more than one line."""
infile = """\
// Copyright 2010
struct KeepStruct;
class NoKeepClass; ///-
template<typename Foo, typename Bar = Baz>
class Keep2LineTplClass;
template<typename Foo, typename Bar = Baz> ///-
class NoKeep2LineTplClass; ///-
template<typename Foo,
typename Bar = Baz>
class Keep3LineTplClass;
template<typename Foo, ///-
typename Bar = Baz> ///-
class NoKeep3LineTplClass; ///-
int main() { return 0; }
"""
iwyu_output = """\
multiline_fwd_decl should add these lines:
multiline_fwd_decl should remove these lines:
- class NoKeepClass; // lines 4-4
- template<typename Foo, typename Bar = Baz> class NoKeep2LineTplClass; // lines 7-8
- template<typename Foo, typename Bar = Baz> class NoKeep3LineTplClass; // lines 12-14
The full include-list for multiline_fwd_decl:
struct KeepStruct; // lines 3-3
template<typename Foo, typename Bar=Baz> class Keep2LineTplClass; // lines 5-6
template<typename Foo, typename Bar=Baz> class Keep3LineTplClass; // lines 9-11
---
"""
self.RegisterFileContents({'multiline_fwd_decl': infile})
self.ProcessAndTest(iwyu_output)
def testKeepExplicitSpecializations(self):
"""Tests we don't interpret an explicit spec. as a forward-declare."""
infile = """\
// Copyright 2010
struct KeepStruct;
class NoKeepClass; ///-
template<typename Foo> class KeepTplClass;
///+
template<> class KeepTplClass<int>;
template<typename T> void TplFn<T>();
int main() { return 0; }
"""
iwyu_output = """\
explicit_specialization should add these lines:
explicit_specialization should remove these lines:
- class NoKeepClass; // lines 4-4
The full include-list for explicit_specialization:
struct KeepStruct; // lines 3-3
template<typename Foo> class KeepTplClass; // lines 5-5
---
"""
self.RegisterFileContents({'explicit_specialization': infile})
self.ProcessAndTest(iwyu_output)
def testKeepNestedForwardDeclares(self):
"""Tests that we don't remove forward-declares inside classes/structs."""
infile = """\
// Copyright 2010
class Keep;
class NoKeep; ///-
///+
class Nest {
class NestedClass;
///+
class NestedClass {
};
class NestedClass2 { }; // looks just like a fwd declare, except for the {}
template<typename T>
class NestedTplClass; // test multi-line nested classes as well
///+
friend class NoKeep;
template<typename T> friend class NoKeepTpl;
};
int main() { return 0; }
"""
iwyu_output = """\
nested_fwd_decl should add these lines:
nested_fwd_decl should remove these lines:
- class NoKeep; // lines 4-4
The full include-list for nested_fwd_decl:
class Keep; // lines 3-3
class Nest::NestedClass; // lines 6-6
template<typename T> class Nest::NestedTplClass; // lines 11-11
---
"""
self.RegisterFileContents({'nested_fwd_decl': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareBeforeUsingStatement(self):
"""Tests we never add a forward-declare after a contentful line."""
infile = """\
// Copyright 2010
#include "foo.h"
///+namespace Bar {
///+class Baz;
///+} // namespace Bar
///+
using Bar::baz;
namespace Foo { class Bang; } ///-
///+namespace Foo {
///+class Bang;
///+} // namespace Foo
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_before_using should add these lines:
namespace Bar { class Baz; }
add_fwd_decl_before_using should remove these lines:
The full include-list for add_fwd_decl_before_using:
#include "foo.h"
namespace Bar { class Baz; }
namespace Foo { class Bang; } // lines 7-7
---
"""
self.RegisterFileContents({'add_fwd_decl_before_using': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInNamespace(self):
"""Make sure we normalize namespaces properly."""
infile = """\
// Copyright 2010
#include "foo.h"
///+namespace ns {
///+class Foo;
///+namespace ns2 {
///+namespace ns3 {
///+class Bar;
///+template <typename T> class Bang;
///+} // namespace ns3
///+} // namespace ns2
///+namespace ns4 {
///+class Baz;
///+} // namespace ns4
///+} // namespace ns
///+
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_inside_namespace should add these lines:
namespace ns { class Foo; }
namespace ns { namespace ns2 { namespace ns3 { class Bar; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class Bang; } } }
namespace ns { namespace ns4 { class Baz; } }
add_fwd_decl_inside_namespace should remove these lines:
The full include-list for add_fwd_decl_inside_namespace:
#include "foo.h" // lines 3-3
namespace ns { class Foo; }
namespace ns { namespace ns2 { namespace ns3 { class Bar; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class Bang; } } }
namespace ns { namespace ns4 { class Baz; } }
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNamespaceSometimes(self):
"""Tests that in special situations, we will put fwd-decls inside a ns."""
infile = """\
// Copyright 2010
#include "foo.h"
class Bar;
template <typename T> class Baz;
namespace ns {
namespace ns2 { // we sure do love nesting our namespaces!
class NsFoo;
///+namespace ns3 {
///+class NsBang;
///+template <typename T> class NsBaz;
///+} // namespace ns3
template <typename T> class NsBar;
}
}
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_inside_namespace should add these lines:
namespace ns { namespace ns2 { namespace ns3 { class NsBang; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class NsBaz; } } }
add_fwd_decl_inside_namespace should remove these lines:
The full include-list for add_fwd_decl_inside_namespace:
#include "foo.h" // lines 3-3
class Bar; // lines 5-5
namespace ns { namespace ns2 { class NsFoo; } } // lines 12-12
namespace ns { namespace ns2 { namespace ns3 { class NsBang; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class NsBaz; } } }
namespace ns { namespace ns2 { template <typename T> class NsBar; } } // lines 13-13
template <typename T> class Baz; // lines 6-6
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNamespaceWithHeaderGuard(self):
"""Tests that the header guard doesn't confuse our in-ns algorithm."""
infile = """\
// Copyright 2010
#ifndef HDR_GUARD
#define HDR_GUARD
#include "foo.h"
class Bar;
template <typename T> class Baz;
namespace ns {
namespace ns2 { // we sure do love nesting our namespaces!
class NsFoo;
///+namespace ns3 {
///+class NsBang;
///+template <typename T> class NsBaz;
///+} // namespace ns3
template <typename T> class NsBar;
}
}
#endif // HDR_GUARD
"""
iwyu_output = """\
add_fwd_decl_with_hdr_guard should add these lines:
namespace ns { namespace ns2 { namespace ns3 { class NsBang; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class NsBaz; } } }
add_fwd_decl_with_hdr_guard should remove these lines:
The full include-list for add_fwd_decl_with_hdr_guard:
#include "foo.h" // lines 6-6
class Bar; // lines 8-8
namespace ns { namespace ns2 { class NsFoo; } } // lines 15-15
namespace ns { namespace ns2 { namespace ns3 { class NsBang; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class NsBaz; } } }
namespace ns { namespace ns2 { template <typename T> class NsBar; } } // lines 16-16
template <typename T> class Baz; // lines 9-9
---
"""
self.RegisterFileContents({'add_fwd_decl_with_hdr_guard': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNamespaceWithIfDef(self):
"""Tests that ifdef blocks are ignored when finding namespaces."""
infile = """\
// Copyright 2010
#include "foo.h"
class Bar;
template <typename T> class Baz;
#ifdef THIS_IS_A_CONTENTFUL_LINE
#include "bar.h"
#endif
namespace ns {
namespace ns2 {
///+class NsBang;
class NsFoo;
template <typename T> class NsBar;
///+template <typename T> class NsBaz;
}
}
int main() { return 0; }
"""
iwyu_output = """\
add_forward_declares_after_ifdef_code should add these lines:
namespace ns { namespace ns2 { class NsBang; } }
namespace ns { namespace ns2 { template <typename T> class NsBaz; } }
add_forward_declares_after_ifdef_code should remove these lines:
The full include-list for add_forward_declares_after_ifdef_code:
#include "foo.h" // lines 3-3
class Bar; // lines 5-5
namespace ns { namespace ns2 { class NsBang; } }
namespace ns { namespace ns2 { class NsFoo; } } // lines 16-16
namespace ns { namespace ns2 { template <typename T> class NsBar; } } // lines 17-17
namespace ns { namespace ns2 { template <typename T> class NsBaz; } }
template <typename T> class Baz; // lines 6-6
---
"""
self.RegisterFileContents({'add_forward_declares_after_ifdef_code': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNamespaceWithoutForwardDeclaresAlready(self):
"""Tests we put fwd-decls inside an ns even if the ns has no fwd-decl."""
infile = """\
// Copyright 2010
#include "foo.h"
class Bar;
template <typename T> class Baz;
namespace ns {
namespace ns2 { // we sure do love nesting our namespaces!
///-
///+namespace ns3 {
///+class NsBang;
///+template <typename T> class NsBaz;
///+} // namespace ns3
///+
int MyFunction() { }
}
}
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_inside_namespace_without_fwd_decl should add these lines:
namespace ns { namespace ns2 { namespace ns3 { class NsBang; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class NsBaz; } } }
add_fwd_decl_inside_namespace_without_fwd_decl should remove these lines:
The full include-list for add_fwd_decl_inside_namespace_without_fwd_decl:
#include "foo.h" // lines 3-3
class Bar; // lines 5-5
namespace ns { namespace ns2 { namespace ns3 { class NsBang; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class NsBaz; } } }
template <typename T> class Baz; // lines 6-6
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_namespace_without_fwd_decl':
infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNamespaceWithCompactEndings(self):
"""Tests we put fwd-decls inside an ns when using compact namespace endings."""
infile = """\
// Copyright 2010
namespace ns { namespace ns1 { namespace ns2 {
class Ns2Bang;
}} // namespace ns2 // namespace ns1
///+class NsBar;
class NsBaz;
///-
namespace ns3 { namespace ns4 { ///-
class Ns4Bye; ///-
}} // namespace ns4 // namespace ns3 ///-
} // namespace ns
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_inside_namespace_without_compact_endings should add these lines:
namespace ns { class NsBar; }
add_fwd_decl_inside_namespace_without_compact_endings should remove these lines:
- namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { namespace ns4 { class Ns4Bye; } } } } } // lines 9-9
The full include-list for add_fwd_decl_inside_namespace_without_compact_endings:
namespace ns { namespace ns1 { namespace ns2 { class Ns2Bang; } } } // lines 4-4
namespace ns { class NsBaz; } // lines 6-6
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_namespace_without_compact_endings':
infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNamespaceWithUnnamedNamespace(self):
"""Tests that unnamed namespaces do not mess up our in-ns calculation."""
infile = """\
// Copyright 2010
#include "foo.h"
class Bar;
namespace ns {
///+class NsBang;
///+template <typename T> class NsBaz;
namespace {
class NsFoo;
template <typename T> class NsBar;
}
}
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_inside_namespace_unnamed_ns should add these lines:
namespace ns { class NsBang; }
namespace ns { template <typename T> class NsBaz; }
add_fwd_decl_inside_namespace_unnamed_ns should remove these lines:
The full include-list for add_fwd_decl_inside_namespace_unnamed_ns:
#include "foo.h" // lines 3-3
class Bar; // lines 5-5
namespace ns { namespace { class NsFoo; } } // lines 10-10
namespace ns { class NsBang; }
namespace ns { template <typename T> class NsBaz; }
namespace ns { namespace { template <typename T> class NsBar; } } // lines 11-11
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_namespace_unnamed_ns':
infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNamespacesWithUnnamedNamespaceAndContent(self):
"""Tests that nested namespaces with forward declares still get new additions."""
infile = """\
// Copyright 2010
#include "foo.h"
class Bar;
///+class Baz;
namespace ns {
///+class NsBang;
///+template <typename T> class NsBaz;
namespace {
///+class NsBaz;
class NsFoo;
template <typename T> class NsBar;
}
namespace ns1 {
///+class Ns1Bar;
///+class Ns1Baz;
class Ns1Foo;
int ns_int = 5; // here's my contentful line
}
}
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_inside_namespaces_with_existing_content should add these lines:
class Baz;
namespace ns { class NsBang; }
namespace ns { template <typename T> class NsBaz; }
namespace ns { namespace { class NsBaz; } }
namespace ns { namespace ns1 { class Ns1Bar; } }
namespace ns { namespace ns1 { class Ns1Baz; } }
add_fwd_decl_inside_namespaces_with_existing_content should remove these lines:
The full include-list for add_fwd_decl_inside_namespaces_with_existing_content:
#include "foo.h" // lines 3-3
class Bar; // lines 5-5
class Baz;
namespace ns { namespace { class NsFoo; } } // lines 10-10
namespace ns { namespace { class NsBaz; } }
namespace ns { class NsBang; }
namespace ns { template <typename T> class NsBaz; }
namespace ns { namespace { template <typename T> class NsBar; } } // lines 11-11
namespace ns { namespace ns1 { class Ns1Foo; } } // lines 15-15
namespace ns { namespace ns1 { class Ns1Bar; } }
namespace ns { namespace ns1 { class Ns1Baz; } }
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_namespaces_with_existing_content':
infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideAllmanNamespacesWithUnnamedNamespaceAndContent(self):
"""Tests that nested Allman namespaces with forward declares still get new additions."""
infile = """\
// Copyright 2010
#include "foo.h"
class Bar;
///+class Baz;
namespace ns
{
///+class NsBang;
///+template <typename T> class NsBaz;
namespace
{
///+class NsBaz;
class NsFoo;
template <typename T> class NsBar;
}
namespace ns1
{
///+class Ns1Bar;
///+class Ns1Baz;
class Ns1Foo;
int ns_int = 5; // here's my contentful line
}
}
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_inside_allman_namespaces_with_existing_content should add these lines:
class Baz;
namespace ns { class NsBang; }
namespace ns { template <typename T> class NsBaz; }
namespace ns { namespace { class NsBaz; } }
namespace ns { namespace ns1 { class Ns1Bar; } }
namespace ns { namespace ns1 { class Ns1Baz; } }
add_fwd_decl_inside_allman_namespaces_with_existing_content should remove these lines:
The full include-list for add_fwd_decl_inside_allman_namespaces_with_existing_content:
#include "foo.h" // lines 3-3
class Bar; // lines 5-5
class Baz;
namespace ns { namespace { class NsFoo; } } // lines 12-12
namespace ns { namespace { class NsBaz; } }
namespace ns { class NsBang; }
namespace ns { template <typename T> class NsBaz; }
namespace ns { namespace { template <typename T> class NsBar; } } // lines 13-13
namespace ns { namespace ns1 { class Ns1Foo; } } // lines 18-18
namespace ns { namespace ns1 { class Ns1Bar; } }
namespace ns { namespace ns1 { class Ns1Baz; } }
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_allman_namespaces_with_existing_content':
infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideMixedNamespacesWithUnnamedNamespaceAndContent(self):
"""Tests that nested mixed namespaces with forward declares still get new additions."""
infile = """\
// Copyright 2010
#include "bar.h"
///+
///+class Baz;
///+
namespace ns { namespace ns1 { namespace ns2
{
///+class Ns2Bang;
///+template <typename T> class Ns2Baz;
///+
namespace
{
///+class NsaBaz;
class NsaFoo;
template <typename T> class NsaBar;
} // namespace
namespace ns3 {
///+class Ns3Bar;
///+class Ns3Baz;
class Ns3Foo;
///+
int ns3_int = 5; // here's my contentful line
} // namespace ns3
} // namespace ns2
} // namespace ns1
} // namespace ns
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_inside_mixed_namespaces_with_existing_content should add these lines:
class Baz;
namespace ns { namespace ns1 { namespace ns2 { class Ns2Bang; } } }
namespace ns { namespace ns1 { namespace ns2 { template <typename T> class Ns2Baz; } } }
namespace ns { namespace ns1 { namespace ns2 { namespace { class NsaBaz; } } } }
namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Bar; } } } }
namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Baz; } } } }
add_fwd_decl_inside_mixed_namespaces_with_existing_content should remove these lines:
The full include-list for add_fwd_decl_inside_mixed_namespaces_with_existing_content:
#include "bar.h" // lines 3-3
#include "foo.h"
class Baz;
namespace ns { namespace ns1 { namespace ns2 { class Ns2Bang; } } }
namespace ns { namespace ns1 { namespace ns2 { template <typename T> class Ns2Baz; } } }
namespace ns { namespace ns1 { namespace ns2 { namespace { class NsaFoo; } } } } // lines 8-8
namespace ns { namespace ns1 { namespace ns2 { namespace { template <typename T> class NsaBar; } } } } // lines 9-9
namespace ns { namespace ns1 { namespace ns2 { namespace { class NsaBaz; } } } }
namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Bar; } } } }
namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Baz; } } } }
namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Foo; } } } } // lines 12-12
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_mixed_namespaces_with_existing_content':
infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInsideNestedNamespacesAndTopLevelForComplexNamespaces(self):
"""Tests that nested namespaces still get new additions while putting hard to resolve forward declares at the top."""
infile = """\
// Copyright 2010
///+namespace ns {
///+class NsBang;
///+namespace ns1 {
///+Ns1Bang;
///+} // namespace ns1
///+} // namespace ns
///+
namespace ns { namespace ns1 { namespace ns2 {
class Ns2Bang;
class Ns2Bar; ///-
///+class Ns2Baz;
///+
namespace ns3 {
///+class Ns3Bang;
class Ns3Baz;
} // namespace ns3
} // namespace ns2
} // namespace ns1
} // namespace ns
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_inside_nested_namespaces_and_top_level_for_complex_namespaces should add these lines:
namespace ns { class NsBang; }
namespace ns { namespace ns1 { Ns1Bang; }
namespace ns { namespace ns1 { namespace ns2 { class Ns2Baz; } } }
namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Bang; } } } }
add_fwd_decl_inside_nested_namespaces_and_top_level_for_complex_namespaces should remove these lines:
- namespace ns { namespace ns1 { namespace ns2 { class Ns2Bar; } } } // lines 5-5
The full include-list for add_fwd_decl_inside_nested_namespaces_and_top_level_for_complex_namespaces:
namespace ns { class NsBang; }
namespace ns { namespace ns1 { Ns1Bang; }
namespace ns { namespace ns1 { namespace ns2 { class Ns2Bang; } } } // lines 4-4
namespace ns { namespace ns1 { namespace ns2 { class Ns2Baz; } } }
namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Bang; } } } }
namespace ns { namespace ns1 { namespace ns2 { namespace ns3 { class Ns3Baz; } } } } // lines 7-7
---
"""
self.RegisterFileContents({'add_fwd_decl_inside_nested_namespaces_and_top_level_for_complex_namespaces':
infile})
self.ProcessAndTest(iwyu_output)
def testRemoveNamespaces(self):
"""Tests that we keep or remove ns's based on fwd decl content."""
infile = """\
// Copyright 2010
namespace ns1 {
struct KeepStruct;
class NoKeepClass; ///-
template<typename Foo> class KeepTplClass;
}
///-
namespace ns1 { ///-
namespace ns2 { ///-
// This should all go away. ///-
// Even with the multi-line comment here. ///-
template<typename Foo> class NoKeepTplClass; ///-
} ///-
} ///-
int main() { return 0; }
"""
iwyu_output = """\
ns_fwd_decl should add these lines:
ns_fwd_decl should remove these lines:
- class NoKeepClass; // lines 5-5
- namespace ns1 { namespace ns2 { template<typename Foo> class NoKeepTplClass; } } // lines 13-13
The full include-list for ns_fwd_decl:
namespace ns1 { struct KeepStruct; } // lines 4-4
namespace ns1 { template<typename Foo> class KeepTplClass; } // lines 6-6
---
"""
self.RegisterFileContents({'ns_fwd_decl': infile})
self.ProcessAndTest(iwyu_output)
def testKeepNamespacesWithNonForwardDecls(self):
"""Tests we never remove a ns with 'real' content in it."""
infile = """\
// Copyright 2010
namespace ns1 {
int ns_int = 5;
class NoKeepClass; ///-
}
int main() { return 0; }
"""
iwyu_output = """\
keep_ns_fwd_decl should add these lines:
keep_ns_fwd_decl should remove these lines:
- class NoKeepClass; // lines 5-5
The full include-list for keep_ns_fwd_decl:
---
"""
self.RegisterFileContents({'keep_ns_fwd_decl': infile})
self.ProcessAndTest(iwyu_output)
def testICUNamespaces(self):
"""Tests we treat the icu namespace macros as namespaces."""
infile = """\
// Copyright 2010
U_NAMESPACE_BEGIN // macro from icu
struct KeepStruct;
class NoKeepClass; ///-
template<typename Foo> class KeepTplClass;
U_NAMESPACE_END
///-
U_NAMESPACE_BEGIN ///-
template<typename Foo> class NoKeepTplClass; ///-
U_NAMESPACE_END ///-
int main() { return 0; }
"""
iwyu_output = """\
icu_namespace should add these lines:
icu_namespace should remove these lines:
- class NoKeepClass; // lines 5-5
- template<typename Foo> class NoKeepTplClass; // lines 10-10
The full include-list for icu_namespace:
namespace ns1 { struct KeepStruct; } // lines 4-4
namespace ns1 { template<typename Foo> class KeepTplClass; } // lines 6-6
---
"""
self.RegisterFileContents({'icu_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testHashNamespaces(self):
"""Tests we treat the hash namespace macros as namespaces."""
infile = """\
// Copyright 2010
HASH_NAMESPACE_DECLARATION_START // macro from hash.h
struct KeepStruct;
class NoKeepClass; ///-
template<typename Foo> class KeepTplClass;
HASH_NAMESPACE_DECLARATION_END
///-
HASH_NAMESPACE_DECLARATION_START ///-
template<typename Foo> class NoKeepTplClass; ///-
HASH_NAMESPACE_DECLARATION_END ///-
int main() { return 0; }
"""
iwyu_output = """\
hash_namespace should add these lines:
hash_namespace should remove these lines:
- class NoKeepClass; // lines 5-5
- template<typename Foo> class NoKeepTplClass; // lines 10-10
The full include-list for hash_namespace:
namespace ns1 { struct KeepStruct; } // lines 4-4
namespace ns1 { template<typename Foo> class KeepTplClass; } // lines 6-6
---
"""
self.RegisterFileContents({'hash_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testElaboratedClasses(self):
"""Tests we don't remove lines like 'class Foo* fooptr'."""
infile = """\
// Copyright 2010
struct KeepStruct;
class NoKeepClass; ///-
///+
struct NoKeepStruct* s;
struct NoKeepStruct& t;
int main() { return 0; }
"""
iwyu_output = """\
elaborated_class should add these lines:
elaborated_class should remove these lines:
- class NoKeepClass; // lines 4-4
The full include-list for elaborated_class:
struct KeepStruct; // lines 3-3
---
"""
self.RegisterFileContents({'elaborated_class': infile})
self.ProcessAndTest(iwyu_output)
def testBFlag(self):
"""Tests that --b properly separates sections."""
self.flags.blank_lines = True
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include "subdir/bflag.h"
///+
///+#include <stdio.h>
///+
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
subdir/bflag.cc should add these lines:
#include "subdir/bflag.h"
#include <stdio.h>
#include "used2.h"
subdir/bflag.cc should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for subdir/bflag.cc:
#include "subdir/bflag.h"
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'subdir/bflag.cc': infile})
self.ProcessAndTest(iwyu_output)
def testSafeHeadersFlag(self):
"""Tests that --safe_headers causes us to not delete lines."""
self.flags.safe_headers = True
infile = """\
// Copyright 2010
#include <notused.h>
#include <notused2.h> // Hello!
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
class Foo;
template<typename T>
class Bar;
int main() { return 0; }
"""
iwyu_output = """\
safe_flag.h should add these lines:
#include <stdio.h>
#include "used2.h"
safe_flag.h should remove these lines:
- #include <notused.h> // lines 3-3
- #include <notused.h> // lines 4-4
- class Foo // lines 7-7
- class Bar // lines 8-9
The full include-list for safe_flag.h:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'safe_flag.h': infile})
self.ProcessAndTest(iwyu_output)
def testSafeHeadersFlagTwice(self):
"""Tests running --safe_headers 2ce in a row doesn't duplicate comments."""
self.flags.safe_headers = True
infile = """\
// Copyright 2010
#include <notused.h> // iwyu says this can be removed
#include <notused2.h> // Hello!; iwyu says this can be removed
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
class Foo; // iwyu says this can be removed
template<typename T> // iwyu says this can be removed
class Bar; // iwyu says this can be removed
int main() { return 0; }
"""
iwyu_output = """\
safe_flag_twice.h should add these lines:
#include <stdio.h>
#include "used2.h"
safe_flag_twice.h should remove these lines:
- #include <notused.h> // lines 3-3
- #include <notused.h> // lines 4-4
- class Foo // lines 7-7
- class Bar // lines 8-9
The full include-list for safe_flag_twice.h:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'safe_flag_twice.h': infile})
self.ProcessAndTest(iwyu_output)
def testSafeHeadersFlagOnCcFiles(self):
"""Tests that we delete even in --safe_headers mode, on .cc files."""
self.flags.safe_headers = True
infile = """\
// Copyright 2010
#include <notused.h> ///-
#include <notused2.h> // Hello! ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
class Foo; ///-
template<typename T> ///-
class Bar; ///-
///-
int main() { return 0; }
"""
iwyu_output = """\
safe_flag.cc should add these lines:
#include <stdio.h>
#include "used2.h"
safe_flag.cc should remove these lines:
- #include <notused.h> // lines 3-3
- #include <notused.h> // lines 4-4
- class Foo // lines 7-7
- class Bar // lines 8-9
The full include-list for safe_flag.cc:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'safe_flag.cc': infile})
self.ProcessAndTest(iwyu_output)
def testIncludeComments(self):
"""Tests that we properly include comments on #include lines."""
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include "subdir/include_comments.h"
///+#include <stdio.h> // for printf(), etc.
#include "used.h" ///-
///+#include "used.h" // for Used
///+#include "used2.h" // for Used2, Used2::Used2, Used2::~Used2, Used2::Used_Enum, operator==()
int main() { return 0; }
"""
iwyu_output = """\
subdir/include_comments.cc should add these lines:
#include "subdir/include_comments.h"
#include <stdio.h> // for printf(), etc.
#include "used2.h" // for Used2, Used2::Used2, Used2::~Used2, Used2::Used_Enum, operator==()
subdir/include_comments.cc should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for subdir/include_comments.cc:
#include "subdir/include_comments.h"
#include <stdio.h> // for printf(), etc.
#include "used.h" // for Used
#include "used2.h" // for Used2, Used2::Used2, Used2::~Used2, Used2::Used_Enum, operator==()
---
"""
self.RegisterFileContents({'subdir/include_comments.cc': infile})
self.ProcessAndTest(iwyu_output)
def testNocommentsFlag(self):
"""Tests we properly don't include/modify comments with --nocomments."""
self.flags.comments = False
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include "subdir/include_comments.h"
///+#include <stdio.h>
#include "used.h" // my favorite #include!
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
subdir/include_comments.cc should add these lines:
#include "subdir/include_comments.h"
#include <stdio.h> // for printf(), etc.
#include "used2.h" // for Used2, Used2::Used2, Used2::~Used2, Used2::Used_Enum, operator==()
subdir/include_comments.cc should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for subdir/include_comments.cc:
#include "subdir/include_comments.h"
#include <stdio.h> // for printf(), etc.
#include "used.h" // for Used
#include "used2.h" // for Used2, Used2::Used2, Used2::~Used2, Used2::Used_Enum, operator==()
---
"""
self.RegisterFileContents({'subdir/include_comments.cc': infile})
self.ProcessAndTest(iwyu_output)
def testUpdateCommentsFlag(self):
"""Tests we update comments with --update_comments."""
self.flags.update_comments = True
infile = """\
#include "must_keep.h" // IWYU pragma: keep
#include "used.h" // for SomethingElse ///-
///+#include "used.h" // for Used
Used used;
int main() { return 0; }
"""
iwyu_output = """\
subdir/include_comments.cc should add these lines:
subdir/include_comments.cc should remove these lines:
The full include-list for subdir/include_comments.cc:
#include "must_keep.h"
#include "used.h" // for Used
---
"""
self.RegisterFileContents({'subdir/include_comments.cc': infile})
self.ProcessAndTest(iwyu_output)
def testNoUpdateCommentsFlag(self):
"""Tests we don't update comments with --noupdate_comments."""
self.flags.update_comments = False
infile = """\
#include "must_keep.h" // IWYU pragma: keep
#include "used.h" // for SomethingElse
Used used;
int main() { return 0; }
"""
iwyu_output = """\
subdir/include_comments.cc should add these lines:
subdir/include_comments.cc should remove these lines:
The full include-list for subdir/include_comments.cc:
#include "must_keep.h"
#include "used.h" // for Used
---
"""
self.RegisterFileContents({'subdir/include_comments.cc': infile})
self.ProcessAndTest(iwyu_output,
unedited_files=['subdir/include_comments.cc'])
def testFixingTwoFiles(self):
"""Make sure data for one fix doesn't overlap with a second."""
file_a = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
#include "used_only_in_file_a.h"
#include "used_only_in_file_b.h" ///-
class FileAClass; // kept for file A, not for file B
class FileBClass; // kept for file B, not for file A ///-
"""
file_b = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
#include "used_only_in_file_a.h" ///-
#include "used_only_in_file_b.h"
class FileAClass; // kept for file A, not for file B ///-
class FileBClass; // kept for file B, not for file A
"""
iwyu_output = """\
file_a.cc should add these lines:
#include <stdio.h>
#include "used2.h"
file_a.cc should remove these lines:
- #include <notused.h> // lines 3-3
- #include "used_only_in_file_b.h" // lines 6-6
- class FileBClass; // lines 9-9
The full include-list for file_a.cc:
#include <stdio.h>
#include "used.h"
#include "used2.h"
#include "used_only_in_file_a.h"
class FileAClass; // lines 8-8
---
file_b.cc should add these lines:
#include <stdio.h>
#include "used2.h"
file_b.cc should remove these lines:
- #include <notused.h> // lines 3-3
- #include "used_only_in_file_a.h" // lines 5-5
- class FileAClass; // lines 8-8
The full include-list for file_b.cc:
#include <stdio.h>
#include "used.h"
#include "used2.h"
#include "used_only_in_file_b.h"
class FileBClass; // lines 9-9
---
"""
self.RegisterFileContents({'file_a.cc': file_a, 'file_b.cc': file_b})
self.ProcessAndTest(iwyu_output)
def testListingTheSameFileTwice(self):
"""Test when foo.cc is specified twice. It should fix conservatively."""
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
///+#include "include_this_file" // for reason 2
#include "used.h"
///+#include "used2.h"
#include "used_only_in_file_a.h"
#include "used_only_in_file_b.h" ///-
class FileAClass; // kept for file A, not for file B
class FileBClass; // kept for file B, not for file A ///-
///+namespace foo {
///+template <typename Arg1> ClassTemplate;
///+} // namespace foo
///+template <typename Arg1> ClassTemplate;
"""
iwyu_output = """\
twice.cc should add these lines:
#include <stdio.h>
#include "include_this_file" // for reason 1
namespace foo { template <typename Arg1> ClassTemplate; }
template <typename Arg1> ClassTemplate;
twice.cc should remove these lines:
- #include <notused.h> // lines 3-3
- #include "used_only_in_file_a.h" // lines 5-5
- #include "used_only_in_file_b.h" // lines 6-6
- class FileAClass; // lines 8-8
- class FileBClass; // lines 9-9
The full include-list for twice.cc:
#include <stdio.h>
#include "include_this_file" // for reason 1
#include "used.h"
namespace foo { template <typename Arg1> ClassTemplate; }
template <typename Arg1> ClassTemplate;
---
twice.cc should add these lines:
#include "used2.h"
#include "include_this_file" // for reason 2
namespace foo { template <typename Arg2> ClassTemplate; }
template <typename Arg2> ClassTemplate;
twice.cc should remove these lines:
- #include <notused.h> // lines 3-3
- #include "used_only_in_file_b.h" // lines 6-6
- class FileBClass; // lines 9-9
The full include-list for twice.cc:
#include "include_this_file" // for reason 2
#include "used.h"
#include "used2.h"
#include "used_only_in_file_a.h"
class FileAClass; // lines 8-8
namespace foo { template <typename Arg2> ClassTemplate; }
template <typename Arg2> ClassTemplate;
---
"""
self.RegisterFileContents({'twice.cc': infile})
self.ProcessAndTest(iwyu_output)
def testListingTheSameFileTwiceAndOnceIsANoop(self):
"""Test when foo.cc is specified twice, once with 'all correct'."""
infile = """\
// Copyright 2010
#include <notused.h>
///+#include <stdio.h>
///+#include "include_this_file" // for reason 1
#include "used.h"
#include "used_only_in_file_a.h"
class FileAClass;
///+namespace foo {
///+template <typename Arg1> ClassTemplate;
///+} // namespace foo
///+template <typename Arg1> ClassTemplate;
"""
iwyu_output = """\
twice.cc should add these lines:
#include <stdio.h>
#include "include_this_file" // for reason 1
namespace foo { template <typename Arg1> ClassTemplate; }
template <typename Arg1> ClassTemplate;
twice.cc should remove these lines:
- #include <notused.h> // lines 3-3
- #include "used_only_in_file_a.h" // lines 5-5
- class FileAClass; // lines 7-7
The full include-list for twice.cc:
#include <stdio.h>
#include "include_this_file" // for reason 1
#include "used.h"
namespace foo { template <typename Arg1> ClassTemplate; }
template <typename Arg1> ClassTemplate;
---
(twice.cc has correct #includes/fwd-decls)
"""
self.RegisterFileContents({'twice.cc': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclare(self):
"""Test adding a forward-declare, rather than keeping one."""
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
///+
///+struct NotUsed;
int main() { return 0; }
"""
iwyu_output = """\
new_fwd_decl should add these lines:
#include <stdio.h>
#include "used2.h"
struct NotUsed;
new_fwd_decl should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for new_fwd_decl:
#include <stdio.h>
#include "used.h"
#include "used2.h"
struct NotUsed;
---
"""
self.RegisterFileContents({'new_fwd_decl': infile})
self.ProcessAndTest(iwyu_output)
def testAddAndKeepForwardDeclare(self):
"""Test adding a forward-declare in addition to keeping one."""
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
class ForwardDeclClass;
///+struct NotUsed;
int main() { return 0; }
"""
iwyu_output = """\
new_and_keep_fwd_decl should add these lines:
#include <stdio.h>
#include "used2.h"
struct NotUsed;
new_and_keep_fwd_decl should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for new_and_keep_fwd_decl:
#include <stdio.h>
#include "used.h"
#include "used2.h"
class ForwardDeclareClass; // lines 6-6
struct NotUsed;
---
"""
self.RegisterFileContents({'new_and_keep_fwd_decl': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeToFileThatHasOnlyForwardDeclarations(self):
"""Tests we add an #include in an appropriate place if none exist."""
infile = """\
// Copyright 2010
///+#include <stdio.h>
///+#include "used.h"
///+
const int kFoo = 5; // we should insert before the contentful line.
class Foo;
int main() { return 0; }
"""
iwyu_output = """\
no_include_fwd_decl should add these lines:
#include <stdio.h>
#include "used.h"
no_include_fwd_decl should remove these lines:
The full include-list for no_include_fwd_decl:
#include <stdio.h>
#include "used.h"
class Foo; // lines 5-5
---
"""
self.RegisterFileContents({'no_include_fwd_decl': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclarationToFileThatHasOnlyIncludes(self):
"""Tests we add a forward-declare in an appropriate place if none exist."""
infile = """\
// Copyright 2010
const int kFoo = 5; // make sure we don't just insert at the beginning
#include <stdio.h>
#include "used.h"
///+
///+class Foo;
int main() { return 0; }
"""
iwyu_output = """\
no_fwd_decl_include should add these lines:
class Foo;
no_fwd_decl_include should remove these lines:
The full include-list for no_fwd_decl_include:
#include <stdio.h>
#include "used.h"
class Foo;
---
"""
self.RegisterFileContents({'no_fwd_decl_include': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeToContentlessFile(self):
"""Tests we add an #include ok to a basically empty file.."""
infile = """\
// Copyright 2010
///+#include <stdio.h>
///+#include "used.h"
///+
///+class Foo;
"""
iwyu_output = """\
no_include should add these lines:
#include <stdio.h>
#include "used.h"
class Foo;
no_include should remove these lines:
The full include-list for no_include:
#include <stdio.h>
#include "used.h"
class Foo;
---
"""
self.RegisterFileContents({'no_include': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeToEmptyFile(self):
"""Tests we add an #include ok to an empty file.."""
infile = ''
iwyu_output = """\
empty_file should add these lines:
#include <stdio.h>
#include "used.h"
class Foo;
empty_file should remove these lines:
The full include-list for empty_file:
#include <stdio.h>
#include "used.h"
class Foo;
---
"""
self.RegisterFileContents({'empty_file': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeToOnlyOneContentfulLineFile(self):
"""Prevent regression when the only contentful line was the last."""
infile = """\
// Copyright 2010
///+
///+#include <stdio.h>
int main() { return 0; }
"""
iwyu_output = """\
only_one_contentful_line.c should add these lines:
#include <stdio.h>
only_one_contentful_line.c should remove these lines:
The full include-list for only_one_contentful_line.c:
#include <stdio.h>
---
"""
self.RegisterFileContents({'only_one_contentful_line.c': infile})
self.ProcessAndTest(iwyu_output)
def testCommentsAtEndOfFile(self):
"""Tests we don't crash if a file ends with #includs and then a comment."""
infile = """\
// Copyright 2010
const int kFoo = 5; // make sure we don't just insert at the beginning
#include <stdio.h>
#include "used.h"
///+
///+class Foo;
// Comments, and then...nothing
"""
iwyu_output = """\
comments_at_end_of_file should add these lines:
class Foo;
comments_at_end_of_file should remove these lines:
The full include-list for comments_at_end_of_file:
#include <stdio.h>
#include "used.h"
class Foo;
---
"""
self.RegisterFileContents({'comments_at_end_of_file': infile})
self.ProcessAndTest(iwyu_output)
def testAddSystemIncludeToFileWithoutAny(self):
"""Tests we add a system #include to a non-sys location when needed."""
infile = """\
// Copyright 2010
#ifdef HAVE_TYPE_TRAITS_H
#include <type_traits.h>
#endif
///+#include <stdio.h>
#include "used.h"
int main() { return 0; }
"""
iwyu_output = """\
system_include should add these lines:
#include <stdio.h>
system_include should remove these lines:
The full include-list for system_include:
#include <stdio.h>
#include "used.h"
---
"""
self.RegisterFileContents({'system_include': infile})
self.ProcessAndTest(iwyu_output)
def testAddNonSystemHeaderUnderMainCUHeader(self):
"""Tests we distinguish main-cu headers from other non-system headers."""
infile = """\
// Copyright 2010
///+#include "main_cu.h"
#include "main_cu-inl.h"
///-
#include <stdio.h>
///+#include <stdlib.h>
#ifdef WINDOWS
#include <windows.h>
#endif
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
main_cu_test.cc should add these lines:
#include <stdlib.h>
#include "main_cu.h"
#include "used2.h"
main_cu_test.cc should remove these lines:
The full include-list for main_cu_test.cc:
#include "main_cu.h"
#include "main_cu-inl.h"
#include <stdio.h>
#include <stdlib.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'main_cu_test.cc': infile})
self.ProcessAndTest(iwyu_output)
def testAddWithNearestIncludes(self):
"""Tests we add "includes" with <includes> when there's a choice."""
infile = """\
// Copyright 2010
#include "nearest_include.h"
static int x = 6;
#include <stdio.h>
///+#include "used.h"
static int y = 7;
class Foo;
int main() { return 0; }
"""
iwyu_output = """\
nearest_include.cc should add these lines:
#include "used.h"
nearest_include.cc should remove these lines:
The full include-list for nearest_include.cc:
#include "nearest_include.h"
#include <stdio.h>
#include "used.h"
class Foo; // lines 9-9
---
"""
self.RegisterFileContents({'nearest_include.cc': infile})
self.ProcessAndTest(iwyu_output)
def testFalseAlarmHeaderGuard(self):
"""Tests we calculate top-level-ness even in face of a fake header-guard."""
infile = """\
// Copyright 2010
#include "nearest_toplevel_include.h"
static int x = 6;
#include <stdio.h>
///+#include "used.h"
#ifndef MAP_ANONYMOUS // This is the fake header guard!
# define MAP_ANONYMOUS MAP_ANON
#endif
#ifdef FOO
#include <foo.h>
#endif
#if defined(BAR)
#include <bar.h>
#endif
static int y = 7;
class Foo;
int main() { return 0; }
"""
iwyu_output = """\
nearest_toplevel_include.cc should add these lines:
#include "used.h"
nearest_toplevel_include.cc should remove these lines:
The full include-list for nearest_toplevel_include.cc:
#include "nearest_toplevel_include.h"
#include <bar.h>
#include <foo.h>
#include <stdio.h>
#include "used.h"
class Foo; // lines 9-9
---
"""
self.RegisterFileContents({'nearest_toplevel_include.cc': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeAfterHeaderGuard(self):
"""Test that we are willing to insert .h's inside a header guard."""
infile = """\
// Copyright 2010
#ifndef SIMPLE_H_
#define SIMPLE_H_
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
#endif
"""
iwyu_output = """\
simple.h should add these lines:
#include <stdio.h>
#include "used2.h"
simple.h should remove these lines:
- #include <notused.h> // lines 6-6
The full include-list for simple.h:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'simple.h': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeAfterSoloPragmaOnce(self):
"""Test that we are willing to insert .h's after #pragma once."""
infile = """\
// Copyright 2010
#pragma once
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
"""
iwyu_output = """\
pragma_once.h should add these lines:
#include <stdio.h>
#include "used2.h"
pragma_once.h should remove these lines:
- #include <notused.h> // lines 5-5
The full include-list for pragma_once.h:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'pragma_once.h': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeAfterPragmaOnceWithHeaderGuard(self):
"""Test that we are willing to insert .h's after #pragma once and header
guard."""
infile = """\
// Copyright 2010
#pragma once
#ifndef PRAGMA_ONCE_H_
#define PRAGMA_ONCE_H_
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
#endif
"""
iwyu_output = """\
pragma_once_with_guard.h should add these lines:
#include <stdio.h>
#include "used2.h"
pragma_once_with_guard.h should remove these lines:
- #include <notused.h> // lines 7-7
The full include-list for pragma_once_with_guard.h:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'pragma_once_with_guard.h': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeAfterEarlyPragmaOnce(self):
"""Test that we are willing to insert .h's after early #pragma once."""
infile = """\
#pragma once
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
"""
iwyu_output = """\
early_pragma_once.h should add these lines:
#include <stdio.h>
#include "used2.h"
early_pragma_once.h should remove these lines:
- #include <notused.h> // lines 4-4
The full include-list for early_pragma_once.h:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'early_pragma_once.h': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeAfterEarlyPragmaOnceWithHeaderGuard(self):
"""Test that we are willing to insert .h's after early #pragma once and
header guard."""
infile = """\
#pragma once
// Copyright 2010
#ifndef PRAGMA_ONCE_H_
#define PRAGMA_ONCE_H_
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
#endif
"""
iwyu_output = """\
early_pragma_once_with_guard.h should add these lines:
#include <stdio.h>
#include "used2.h"
early_pragma_once_with_guard.h should remove these lines:
- #include <notused.h> // lines 7-7
The full include-list for early_pragma_once_with_guard.h:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'early_pragma_once_with_guard.h': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeAfterWeirdPragmaOnce(self):
"""Test that we are willing to insert .h's after creatively formatted
#pragma once."""
infile = """\
# pragma once
#include <notused.h> ///-
///+#include <stdio.h>
"""
iwyu_output = """\
weird_pragma_once.h should add these lines:
#include <stdio.h>
weird_pragma_once.h should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for weird_pragma_once.h:
#include <stdio.h>
---
"""
self.RegisterFileContents({'weird_pragma_once.h': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeBeforePragmaMessage(self):
"""Test that non-once #pragmas are pushed after the #includes."""
infile = """\
///+#include <stdio.h>
///+
#pragma message "Hello world!"
#include <notused.h> ///-
"""
iwyu_output = """\
weird_pragma_once.h should add these lines:
#include <stdio.h>
weird_pragma_once.h should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for weird_pragma_once.h:
#include <stdio.h>
---
"""
self.RegisterFileContents({'weird_pragma_once.h': infile})
self.ProcessAndTest(iwyu_output)
def testNoSpaceBeforePragmaPop(self):
"""Tests that we don't inject a blank line before a #pragma pop """
infile = """\
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Warray-bounds"
#include <cstdint>
#pragma GCC diagnostic pop
#include <exception> ///-
"""
iwyu_output = """\
pragma_spaces.cc should add these lines:
pragma_spaces.cc should remove these lines:
- #include <exception> // lines 5-5
The full include-list for pragma_spaces.cc:
#include <cstdint>
---
"""
self.RegisterFileContents({'pragma_spaces.cc': infile})
self.ProcessAndTest(iwyu_output)
def testSpaceBeforePragmaPush(self):
"""Tests that we inject a blank line before a #pragma push """
infile = """\
#include <cctype>
///+
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Warray-bounds"
#include <cstdint>
#pragma GCC diagnostic pop
#include <exception> ///-
"""
iwyu_output = """\
pragma_spaces.cc should add these lines:
pragma_spaces.cc should remove these lines:
- #include <exception> // lines 6-6
The full include-list for pragma_spaces.cc:
#include <cctype>
#include <cstdint>
---
"""
self.RegisterFileContents({'pragma_spaces.cc': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeAfterWeirdHeaderGuard(self):
"""Test that we are willing to insert .h's inside a non-standard h-guard."""
infile = """\
// Copyright 2010
#if ! defined (SIMPLE_H_)
#define SIMPLE_H_
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
#endif
"""
iwyu_output = """\
simple.h should add these lines:
#include <stdio.h>
#include "used2.h"
simple.h should remove these lines:
- #include <notused.h> // lines 6-6
The full include-list for simple.h:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'simple.h': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeAfterHeaderGuardLikeIfdef(self):
"""Test that we are willing to insert .h's inside a h-guard-*like* line."""
infile = """\
// Copyright 2010
#ifdef __linux // serves the same role as a header guard
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
#endif
// Comments are allowed after the header guard.
"""
iwyu_output = """\
os_header_guard.h should add these lines:
#include <stdio.h>
#include "used2.h"
os_header_guard.h should remove these lines:
- #include <notused.h> // lines 5-5
The full include-list for os_header_guard.h:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'os_header_guard.h': infile})
self.ProcessAndTest(iwyu_output)
def testAddIncludeAfterHeaderGuardButBeforeComments(self):
"""Test that we introduce new #includes right after a header guard."""
infile = """\
// Copyright 2010
#ifndef SIMPLE_WITH_COMMENT_H_
#define SIMPLE_WITH_COMMENT_H_
///+#include <stdio.h>
///+#include "used.h"
///+
// This is a comment
void ForThisFunction();
#endif
"""
iwyu_output = """\
simple_with_comment.h should add these lines:
#include <stdio.h>
#include "used.h"
simple_with_comment.h should remove these lines:
The full include-list for simple_with_comment.h:
#include <stdio.h>
#include "used.h"
---
"""
self.RegisterFileContents({'simple_with_comment.h': infile})
self.ProcessAndTest(iwyu_output)
def testIdentifyingHeaderGuardLines(self):
"""Test that not all #defines look like header guards."""
infile = """\
// Copyright 2010
#ifndef IDENTIFYING_HEADER_GUARD_LINES_H_
#define IDENTIFYING_HEADER_GUARD_LINES_H_
namespace foo {
///+namespace bar {
///+class Baz;
///+} // namespace bar
///+
// The namespace decl should come before this #define, not after.
// It will, unless we wrongly say the #define is a header-guard define.
#define NOT_A_HEADER_GUARD_LINE 1
}
#endif
"""
iwyu_output = """\
identifying_header_guard_lines.h should add these lines:
namespace foo { namespace bar { class Baz; } }
identifying_header_guard_lines.h should remove these lines:
The full include-list for identifying_header_guard_lines.h:
namespace foo { namespace bar { class Baz; } }
---
"""
self.RegisterFileContents({'identifying_header_guard_lines.h': infile})
self.ProcessAndTest(iwyu_output)
def testIncludeOfCcFile(self):
"""Test that iwyu leaves .cc #includes alone."""
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
int kFoo = 5;
#include "not_mentioned.cc"
int main() { return 0; }
"""
iwyu_output = """\
cc_include should add these lines:
#include <stdio.h>
#include "used2.h"
cc_include should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for cc_include:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'cc_include': infile})
self.ProcessAndTest(iwyu_output)
def testCommentsBeforeIncludeLines(self):
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+// This is the first include.
///+// Or it will be, after we reorder.
///+#include <stdio.h>
// This is the second include.
// Or *it* will be, after we reorder.
#include "used.h"
// This is the first include. ///-
// Or it will be, after we reorder. ///-
#include <stdio.h> ///-
int main() { return 0; }
"""
iwyu_output = """\
comments_with_includes should add these lines:
comments_with_includes should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for comments_with_includes:
#include <stdio.h>
#include "used.h"
---
"""
self.RegisterFileContents({'comments_with_includes': infile})
self.ProcessAndTest(iwyu_output)
def testRemoveDuplicateIncludes(self):
"""Tests we uniquify if an #include is in there twice."""
infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
#include "used2.h"
#include "used.h" // same line even though it has a comment ///-
// Even though these two comment-lines are the same, they won't get de-duped.
// Even though these two comment-lines are the same, they won't get de-duped.
#ifdef _WINDOWS
// But keep this one because it's in an #ifdef.
#include "used.h"
#endif
int main() { return 0; }
"""
iwyu_output = """\
remove_duplicate_includes should add these lines:
#include <stdio.h>
remove_duplicate_includes should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for remove_duplicate_includes:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'remove_duplicate_includes': infile})
self.ProcessAndTest(iwyu_output)
def testRemoveDuplicateForwardDeclarations(self):
"""Tests we uniquify if an #include is in there twice."""
infile = """\
#include <notused.h> ///-
class A;
template<typename T> // Comment in the middle not a problem
class B;
class A; ///-
template<typename T> ///-
class B; ///-
template<typename T> class B; ///-
int main() { return 0; }
"""
iwyu_output = """\
remove_duplicate_forward_declarations should add these lines:
remove_duplicate_forward_declarations should remove these lines:
- #include <notused.h> // lines 1-1
The full include-list for remove_duplicate_forward_declarations:
class A; // lines 2-2
template <typename T> class B; // lines 3-4
class A; // lines 5-5
template <typename T> class B; // lines 6-7
template <typename T> class B; // lines 8-8
---
"""
self.RegisterFileContents({'remove_duplicate_forward_declarations': infile})
self.ProcessAndTest(iwyu_output)
def testDontRemoveTemplateLines(self):
"""Tests we don't accidentally think repeated template lines are dupes."""
infile = """\
#include <notused.h> ///-
template<typename T>
class A;
template<typename T>
class B;
void f(A&, B&);
"""
iwyu_output = """\
dont_remove_template_lines should add these lines:
dont_remove_template_lines should remove these lines:
- #include <notused.h> // lines 1-1
The full include-list for dont_remove_template_lines:
template <typename T> class A; // lines 2-3
template <typename T> class B; // lines 4-5
---
"""
self.RegisterFileContents({'dont_remove_template_lines': infile})
self.ProcessAndTest(iwyu_output)
def testDontRemoveSimilarNestedDeclarations(self):
"""Tests we don't accidentally think repeated nested forward declarations
are dupes."""
infile = """\
#include <notused.h> ///-
class A {
class Inner;
};
class B {
class Inner;
};
"""
iwyu_output = """\
dont_remove_similar_nested should add these lines:
dont_remove_similar_nested should remove these lines:
- #include <notused.h> // lines 1-1
The full include-list for dont_remove_similar_nested:
class A::Inner; // lines 4-4
class B::Inner; // lines 8-8
---
"""
self.RegisterFileContents({'dont_remove_similar_nested': infile})
self.ProcessAndTest(iwyu_output)
def testNestedNamespaces(self):
infile = """\
// Copyright 2010
///+#include <stdio.h>
///+
namespace X {
class OneA
///+
namespace Y {
///+class TwoA;
class TwoB;
class TwoA; ///-
}}
class Toplevel;
///-
namespace A { ///-
namespace B { namespace C { ///-
class Delete1; ///-
}}} ///-
///-
namespace A { namespace B { class Delete2; } } ///-
///-
namespace A { ///-
namespace B { ///-
class Delete3; ///-
} ///-
} // namespace A ///-
int main() { return 0; }
"""
iwyu_output = """\
many_namespaces should add these lines:
#include <stdio.h>
many_namespaces should remove these lines:
- class Delete1; // lines 13-13
- class Delete2; // lines 16-16
- class Delete3; // lines 20-20
The full include-list for many_namespaces:
#include <stdio.h>
class Toplevel; // lines 9-9
class TwoA; // lines 7-7
class TwoB; // lines 6-6
class OneA; // lines 4-4
---
"""
self.RegisterFileContents({'many_namespaces': infile})
self.ProcessAndTest(iwyu_output)
def testDoNotInsertIncludeIntoAClass(self):
infile = """\
// Copyright 2010
///+#include <stdio.h>
///+
class Foo {
};
class Bar {
class FwdDecl;
FwdDecl* f;
}
"""
iwyu_output = """\
include_not_in_class should add these lines:
#include <stdio.h>
include_not_in_class should remove these lines:
The full include-list for include_not_in_class:
#include <stdio.h>
class FwdDecl; // lines 7-7
---
"""
self.RegisterFileContents({'include_not_in_class': infile})
self.ProcessAndTest(iwyu_output)
def testIdenticalForwardDeclaredNamesInDifferentNamespaces(self):
infile = """\
// Copyright 2010
///+namespace ns1 {
///+class ForwardDeclared;
///+} // namespace ns1
///+namespace ns2 {
///+class ForwardDeclared;
///+} // namespace ns2
"""
iwyu_output = """\
identical_names should add these lines:
namespace ns1 { class ForwardDeclared; }
namespace ns2 { class ForwardDeclared; }
identical_names should remove these lines:
The full include-list for identical_names:
namespace ns1 { class ForwardDeclared; }
namespace ns2 { class ForwardDeclared; }
---
"""
self.RegisterFileContents({'identical_names': infile})
self.ProcessAndTest(iwyu_output)
def testIterativeNamespaceDelete(self):
"""Tests deleting a namespace with an emptied #ifdef inside it."""
infile = """\
// Copyright 2010
///-
namespace foo { ///-
#ifdef FWD_DECL ///-
class Bar; ///-
#endif ///-
} ///-
int main() { return 0; }
"""
iwyu_output = """\
iterative_namespace should add these lines:
iterative_namespace should remove these lines:
- class Bar; // lines 5-5
The full include-list for iterative_namespace:
---
"""
self.RegisterFileContents({'iterative_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testIterativeAllmanNamespaceDelete(self):
"""Tests deleting an Allman namespace with an emptied #ifdef inside it."""
infile = """\
// Copyright 2010
///-
namespace foo ///-
{ ///-
#ifdef FWD_DECL ///-
class Bar; ///-
#endif ///-
} ///-
int main() { return 0; }
"""
iwyu_output = """\
iterative_namespace should add these lines:
iterative_namespace should remove these lines:
- class Bar; // lines 6-6
The full include-list for iterative_namespace:
---
"""
self.RegisterFileContents({'iterative_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testIterativeMixedNamespaceDelete(self):
"""Tests deleting a namespace with mixed braces with an emptied #ifdef inside it."""
infile = """\
// Copyright 2010
///-
namespace foo { namespace baz ///-
{ ///-
#ifdef FWD_DECL ///-
class Bar; ///-
#endif ///-
} ///-
} ///-
int main() { return 0; }
"""
iwyu_output = """\
iterative_namespace should add these lines:
iterative_namespace should remove these lines:
- class Bar; // lines 6-6
The full include-list for iterative_namespace:
---
"""
self.RegisterFileContents({'iterative_namespace': infile})
self.ProcessAndTest(iwyu_output)
def testIterativeIfdefDelete(self):
"""Tests deleting an ifdef with an emptied namespace inside it."""
infile = """\
// Copyright 2010
///-
#ifdef FWD_DECL ///-
namespace foo { ///-
class Bar; ///-
} ///-
#endif ///-
int main() { return 0; }
"""
iwyu_output = """\
iterative_ifdef should add these lines:
iterative_ifdef should remove these lines:
- class Bar; // lines 5-5
The full include-list for iterative_ifdef:
---
"""
self.RegisterFileContents({'iterative_ifdef': infile})
self.ProcessAndTest(iwyu_output)
def testOutOfRangeLineNumber(self):
"""Test we skip editing completely if iwyu has a really big line number."""
# fix_includes skips the file-editing if it detects a problem, as
# in this test case. The way that skipping is evidenced in the
# test, is the output is empty.
infile = """\
// Copyright 2010 ///-
///-
#include <notused.h> ///-
#include "used.h" ///-
///-
int main() { return 0; } ///-
"""
iwyu_output = """\
out_of_range should add these lines:
#include <stdio.h>
#include "used2.h"
out_of_range should remove these lines:
- #include <notused.h> // lines 3-3
- #include <bignumber.h> // lines 3000-3000
The full include-list for out_of_range:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'out_of_range': infile})
self.ProcessAndTest(iwyu_output)
def testDeleteExtraneousBlankLines(self):
"""Test we delete blank lines around deleted spans correctly."""
infile = """\
// Copyright 2010
class Foo { };
///-
class Bar; ///-
class Baz { };
class Bang; ///-
///-
class Qux { };
int main() { return 0; }
"""
iwyu_output = """\
extraneous_blank_lines should add these lines:
extraneous_blank_lines should remove these lines:
- class Bar; // lines 5-5
- class Bang; // lines 11-11
The full include-list for extraneous_blank_lines:
---
"""
self.RegisterFileContents({'extraneous_blank_lines': infile})
self.ProcessAndTest(iwyu_output)
def testKeepNolintComment(self):
"""Test we keep a nolint comment."""
infile = """\
// Copyright 2010
#include "bar.h" // NOLINT(iwyu)
#include "baz.h" // NOLINT(iwyu): blah blah
int main() { return 0; }
"""
iwyu_output = """\
keep_nolint should add these lines:
keep_nolint should remove these lines:
The full include-list for keep_nolint:
#include "bar.h" // lines 3-3
#include "baz.h" // lines 4-4
---
"""
self.RegisterFileContents({'keep_nolint': infile})
# No files are written, because there are no changes.
self.ProcessAndTest(iwyu_output, unedited_files=['keep_nolint'])
def testKeepNolintCommentInNocommentMode(self):
"""Test we keep a nolint comment even with --nocomments."""
self.flags.comments = False
self.testKeepNolintComment()
# Test the IWYUOutputParser method _MatchSectionHeading.
def testIWYUOutputParserMatchSectionHeadingSuccess(self):
parser = fix_includes.IWYUOutputParser()
self.assertEqual(None, parser.current_section)
self.assertEqual('<unknown file>', parser.filename)
self.assertTrue(parser._ProcessOneLine(''))
self.assertEqual(None, parser.current_section)
self.assertEqual('<unknown file>', parser.filename)
self.assertTrue(parser._ProcessOneLine(
'myfile.cc should add these lines:'))
self.assertEqual(parser._ADD_SECTION_RE, parser.current_section)
self.assertEqual('add', parser._RE_TO_NAME[parser.current_section])
self.assertEqual('myfile.cc', parser.filename)
self.assertTrue(parser._ProcessOneLine(
'myfile.cc should remove these lines:'))
self.assertEqual(parser._REMOVE_SECTION_RE, parser.current_section)
self.assertEqual('remove', parser._RE_TO_NAME[parser.current_section])
self.assertEqual('myfile.cc', parser.filename)
self.assertTrue(parser._ProcessOneLine(
'The full include-list for myfile.cc:'))
self.assertEqual(parser._TOTAL_SECTION_RE, parser.current_section)
self.assertEqual('total', parser._RE_TO_NAME[parser.current_section])
self.assertEqual('myfile.cc', parser.filename)
self.assertTrue(not parser._ProcessOneLine('---'))
self.assertEqual(parser._SECTION_END_RE, parser.current_section)
self.assertEqual('end', parser._RE_TO_NAME[parser.current_section])
self.assertEqual('myfile.cc', parser.filename)
def testIWYUOutputParserMatchSectionHeadingWindowsPaths(self):
# Windows path names can contain the ':' character, so make sure that parses
# correctly. IWYU uses POSIX-style forward slashes consistently, so follow
# suit here.
parser = fix_includes.IWYUOutputParser()
self.assertTrue(parser._ProcessOneLine(
'C:/src/myfile.cc should add these lines:'))
self.assertEqual(parser._ADD_SECTION_RE, parser.current_section)
self.assertEqual('add', parser._RE_TO_NAME[parser.current_section])
self.assertEqual('C:/src/myfile.cc', parser.filename)
self.assertTrue(parser._ProcessOneLine(
'C:/src/myfile.cc should remove these lines:'))
self.assertEqual(parser._REMOVE_SECTION_RE, parser.current_section)
self.assertEqual('remove', parser._RE_TO_NAME[parser.current_section])
self.assertEqual('C:/src/myfile.cc', parser.filename)
self.assertTrue(parser._ProcessOneLine(
'The full include-list for C:/src/myfile.cc:'))
self.assertEqual(parser._TOTAL_SECTION_RE, parser.current_section)
self.assertEqual('total', parser._RE_TO_NAME[parser.current_section])
self.assertEqual('C:/src/myfile.cc', parser.filename)
def testIWYUOutputParserProcessOneLineProcessNoEditsHeader(self):
parser = fix_includes.IWYUOutputParser()
line = '(myfile.cc has correct #includes/fwd-decls)'
self.assertTrue(not parser._ProcessOneLine(line))
self.assertEqual(parser._NO_EDITS_RE, parser.current_section)
self.assertEqual('no_edits', parser._RE_TO_NAME[parser.current_section])
self.assertEqual('myfile.cc', parser.filename)
def testIWYUOutputParserProcessOneLineAddNotSeenFirst(self):
parser = fix_includes.IWYUOutputParser()
self.assertRaises(fix_includes.FixIncludesError,
parser._ProcessOneLine,
'myfile.cc should remove these lines:')
def testIWYUOutputParserProcessOneLineOutOfOrder(self):
parser = fix_includes.IWYUOutputParser()
self.assertTrue(parser._ProcessOneLine(
'myfile.cc should add these lines:'))
self.assertRaises(fix_includes.FixIncludesError,
parser._ProcessOneLine,
'The full include-list for myfile.cc:')
def testIWYUOutputParserProcessOneLineIncorrectFilename(self):
parser = fix_includes.IWYUOutputParser()
self.assertTrue(parser._ProcessOneLine(
'myfile.cc should add these lines:'))
self.assertRaises(fix_includes.FixIncludesError,
parser._ProcessOneLine,
'not_myfile.cc should remove these lines:')
def testIWYUOutputParserProcessOneLineNoMatcher(self):
parser = fix_includes.IWYUOutputParser()
# We successfully process this not-in-any-section line, but update no data.
self.assertTrue(parser._ProcessOneLine('#include <foo>'))
self.assertEqual(None, parser.current_section)
self.assertEqual('<unknown file>', parser.filename)
def testIWYUOutputParserSuccess(self):
"""Tests the IWYUOutputParser method ParseOneRecord."""
iwyu_output = """\
simple should add these lines:
#include <stdio.h>
#include "used2.h"
namespace ns {class ForwardDeclared;}
simple should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for simple:
#include <stdio.h>
#include "used.h"
#include "used2.h"
namespace ns {class ForwardDeclared;}
---
"""
parser = fix_includes.IWYUOutputParser()
record = parser.ParseOneRecord(iwyu_output.splitlines(), self.flags)
self.assertEqual('simple', record.filename)
self.assertSetEqual(set([3]), record.lines_to_delete)
self.assertSetEqual(set(('#include <stdio.h>',
'#include "used2.h"',
'namespace ns {class ForwardDeclared;}')),
record.includes_and_forward_declares_to_add)
def testIWYUOutputParserRemoveLineNoComment(self):
iwyu_output = """\
no_comment should add these lines:
no_comment should remove these lines:
- #include <notused.h>
The full include-list for no_key:
---
"""
parser = fix_includes.IWYUOutputParser()
self.assertRaises(fix_includes.FixIncludesError,
parser.ParseOneRecord,
iwyu_output.splitlines(),
self.flags)
def testFileSpecifiedOnCommandline(self):
"""Test we limit editing to files specified on the commandline."""
changed_infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
unchanged_infile = """\
// Copyright 2010
#include <notused.h>
#include "used.h"
int main() { return 0; }
"""
iwyu_output = """\
changed should add these lines:
#include <stdio.h>
#include "used2.h"
changed should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for changed:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
# Have the exact same iwyu output for 'unchanged' as for 'changed'.
iwyu_output += iwyu_output.replace('changed', 'unchanged')
self.RegisterFileContents({'changed': changed_infile,
'unchanged': unchanged_infile})
# unchanged should not be edited, since it is not listed on the 'cmdline'.
self.ProcessAndTest(iwyu_output, cmdline_files=['changed'],
unedited_files=['unchanged'])
def testIgnoreRe(self):
"""Test the behavior of the --ignore_re flag."""
changed_infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
unchanged_infile = """\
// Copyright 2010
#include <notused.h>
#include "used.h"
int main() { return 0; }
"""
iwyu_output = """\
changed should add these lines:
#include <stdio.h>
#include "used2.h"
changed should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for changed:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
# Have the exact same iwyu output for 'unchanged' as for 'changed'.
iwyu_output += iwyu_output.replace('changed', 'unchanged')
self.RegisterFileContents({'changed': changed_infile,
'unchanged': unchanged_infile})
# unchanged should not be edited, since it matches ignore_re.
self.flags.ignore_re = 'nch'
self.ProcessAndTest(iwyu_output, unedited_files=['unchanged'])
def testOnlyRe(self):
"""Test the behavior of the --only_re flag."""
changed_infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
unchanged_infile = """\
// Copyright 2010
#include <notused.h>
#include "used.h"
int main() { return 0; }
"""
iwyu_output = """\
output should add these lines:
#include <stdio.h>
#include "used2.h"
output should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for output:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
# Have the exact same iwyu output for 'alice.cpp' as for 'bob.cpp'.
iwyu_output = (iwyu_output.replace('output', 'alice.cpp') +
iwyu_output.replace('output', 'bob.cpp'))
self.RegisterFileContents({'alice.cpp': changed_infile,
'bob.cpp': unchanged_infile})
# only alice.cpp should be edited, since it matches only_re.
self.flags.only_re = 'lice'
self.ProcessAndTest(iwyu_output, unedited_files=['bob.cpp'])
def testIgnoreAndOnlyRe(self):
"""Test the behavior of both --ignore_re and --only_re flags."""
changed_infile = """\
// Copyright 2010
#include <notused.h> ///-
///+#include <stdio.h>
#include "used.h"
///+#include "used2.h"
int main() { return 0; }
"""
unchanged_infile = """\
// Copyright 2010
#include <notused.h>
#include "used.h"
int main() { return 0; }
"""
iwyu_output = """\
output should add these lines:
#include <stdio.h>
#include "used2.h"
output should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for output:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
# Have the exact same iwyu output for 'alice.cpp' as for 'bob.cpp' and 'charlie.cpp'
iwyu_output = (iwyu_output.replace('output', 'alice.cpp') +
iwyu_output.replace('output', 'bob.cpp') +
iwyu_output.replace('output', 'charlie.cpp'))
self.RegisterFileContents({'alice.cpp': changed_infile,
'bob.cpp': unchanged_infile,
'charlie.cpp': changed_infile})
# only alice.cpp should be edited, since it matches only_re and not ignore_re
self.flags.only_re = 'li'
self.flags.ignore_re = 'char'
self.ProcessAndTest(iwyu_output, unedited_files=['bob.cpp', 'charlie.cpp'])
def testSortIncludes(self):
"""Test sorting includes only -- like running fix_includes.py -s."""
infile = """\
// Copyright 2010
#include <stdio.h>
// This file is not used.
#include <notused.h>
// This file is not used either.
// It's not used.
// Not used at all.
#include <notused2.h>
#include "notused3.h"
// This comment should stay, it's not before an #include.
const int kInt = 5;
// This file is used.
// It's definitedly used.
#include "used.h"
#include <stdlib.h>
const int kInt2 = 6;
#include "foo.cc"
// This comment should stay, it's not before an #include.
int main() { return 0; }
"""
expected_output = """\
// Copyright 2010
// This file is not used.
#include <notused.h>
// This file is not used either.
// It's not used.
// Not used at all.
#include <notused2.h>
#include <stdio.h>
#include "notused3.h"
// This comment should stay, it's not before an #include.
const int kInt = 5;
#include <stdlib.h>
// This file is used.
// It's definitedly used.
#include "used.h"
const int kInt2 = 6;
#include "foo.cc"
// This comment should stay, it's not before an #include.
int main() { return 0; }
"""
self.RegisterFileContents({'sort': infile})
num_files_modified = fix_includes.SortIncludesInFiles(['sort'], self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testSortingMultipleFiles(self):
"""Tests passing more than one argument to SortIncludesInFiles()."""
infile1 = """\
#include <stdlib.h>
#include <stdio.h>
#include <stddef.h>
"""
infile2 = """\
#include "z.h"
#include "y.h"
#include "x.y"
"""
expected_output = """\
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include "x.y"
#include "y.h"
#include "z.h"
"""
self.RegisterFileContents({'f1': infile1, 'f2': infile2})
num_files_modified = fix_includes.SortIncludesInFiles(['f1', 'f2'],
self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(2, num_files_modified)
def testSortingIncludesAlreadySorted(self):
"""Tests sorting includes only, when includes are already sorted."""
infile = """\
// Copyright 2010
#include <ctype.h>
#include <stdio.h>
namespace Foo; // fwd-decls are out of order, but sorter ignores them
namespace Bar;
int main() { return 0; }
"""
self.RegisterFileContents({'sort_nosorting.h': infile})
num_files_modified = fix_includes.SortIncludesInFiles(['sort_nosorting.h'],
self.flags)
self.assertListEqual([], self.actual_after_contents)
self.assertEqual(0, num_files_modified)
def testBarrierIncludes(self):
"""Tests that we correctly sort 'around' _BARRIER_INCLUDES."""
infile = """\
// Copyright 2010
#include <linux/a_stay_top.h>
#include <stdlib.h> ///-
#include <linux/can_sort_around_this_deleted_include> ///-
#include <stdio.h>
///+#include <stdlib.h>
#include "user/include.h"
///+#include "user/new_include.h"
#include <linux/c_stay_second.h>
#include <linux/b_stay_third.h>
#include <ctype.h>
#include <cpp_include>
///+#include <new_cpp_include>
#include <linux/d_stay_fourth.h>
int main() { return 0; }
"""
iwyu_output = """\
barrier_includes.h should add these lines:
#include "user/new_include.h"
#include <new_cpp_include>
barrier_includes.h should remove these lines:
- #include <linux/can_sort_around_this_deleted_include> // lines 5-5
The full include-list for barrier_includes.h:
#include "user/include.h"
#include "user/new_include.h"
#include <cpp_include>
#include <ctype.h>
#include <linux/a_stay_top.h>
#include <linux/b_stay_third.h>
#include <linux/c_stay_second.h>
#include <linux/d_stay_fourth.h>
#include <new_cpp_include>
#include <stdio.h>
#include <stdlib.h>
---
"""
self.RegisterFileContents({'barrier_includes.h': infile})
self.ProcessAndTest(iwyu_output)
def testSortingMainCUIncludeInSameDirectory(self):
"""Check that we identify when first .h file is a main-cu #include."""
infile = """\
#include <stdio.h>
#include "me/subdir0/foo.h"
#include "other/baz.h"
"""
expected_output = """\
#include "me/subdir0/foo.h"
#include <stdio.h>
#include "other/baz.h"
"""
self.RegisterFileContents({'me/subdir0/foo.cc': infile})
num_files_modified = fix_includes.SortIncludesInFiles(
['me/subdir0/foo.cc'], self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testSortingMainCUIncludeViaPragma(self):
"""Check that we treat (potentially multiple) associated headers as
main-cu #includes."""
infile = """\
#include <stdio.h>
#include "other/dir/bar.h" // IWYU pragma: associated
#include "other/baz.h" // IWYU pragma: associated
"""
expected_output = """\
#include "other/baz.h" // IWYU pragma: associated
#include "other/dir/bar.h" // IWYU pragma: associated
#include <stdio.h>
"""
self.RegisterFileContents({'me/subdir0/foo.cc': infile})
num_files_modified = fix_includes.SortIncludesInFiles(
['me/subdir0/foo.cc'], self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testSortingMainCUIncludeWithUpperCaseH(self):
"""Check that we identify when first .H file is a main-cu #include."""
infile = """\
#include <stdio.h>
#include "foo.H"
"""
expected_output = """\
#include "foo.H"
#include <stdio.h>
"""
self.RegisterFileContents({'foo.cc': infile})
num_files_modified = fix_includes.SortIncludesInFiles(
['foo.cc'], self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testSortingMainCUIncludeWithHpp(self):
"""Check that we identify when first .hpp file is a main-cu #include."""
infile = """\
#include <stdio.h>
#include "foo.hpp"
"""
expected_output = """\
#include "foo.hpp"
#include <stdio.h>
"""
self.RegisterFileContents({'foo.cc': infile})
num_files_modified = fix_includes.SortIncludesInFiles(
['foo.cc'], self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testSortingMainCUIncludeWithMixedCaseInl(self):
"""Check that we identify when first -inl.hpp file with mixed case
is a main-cu #include."""
infile = """\
#include <stdio.h>
#include "foo-InL.h"
"""
expected_output = """\
#include "foo-InL.h"
#include <stdio.h>
"""
self.RegisterFileContents({'foo.cc': infile})
num_files_modified = fix_includes.SortIncludesInFiles(
['foo.cc'], self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testSortingMainCUIncludeInSameDirectoryWithInl(self):
"""Check that we identify when first -inl.h file is a main-cu #include."""
infile = """\
#include <stdio.h>
#include "me/subdir0/foo-inl.h"
#include "other/baz.h"
"""
expected_output = """\
#include "me/subdir0/foo-inl.h"
#include <stdio.h>
#include "other/baz.h"
"""
self.RegisterFileContents({'me/subdir0/foo.cc': infile})
num_files_modified = fix_includes.SortIncludesInFiles(
['me/subdir0/foo.cc'], self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testSortingMainCUIncludeInDifferentDirectory(self):
"""Check that we identify when first .h file is a main-cu #include."""
infile = """\
#include "me/subdir0/foo.h"
#include <stdio.h>
#include "other/baz.h"
"""
self.RegisterFileContents({'me/other_subdir/foo.cc': infile})
num_files_modified = fix_includes.SortIncludesInFiles(
['me/other_subdir/foo.cc'], self.flags)
self.assertListEqual([], self.actual_after_contents)
self.assertEqual(0, num_files_modified)
def testSortingMainCUIncludeInDifferentDirectoryWhenNotFirst(self):
"""Check that we don't let second .h be a main-cu #include."""
infile = """\
#include <stdio.h>
#include "me/subdir0/foo.h"
#include "other/baz.h"
"""
self.RegisterFileContents({'me/other_subdir/foo.cc': infile})
num_files_modified = fix_includes.SortIncludesInFiles(
['me/other_subdir/foo.cc'], self.flags)
self.assertListEqual([], self.actual_after_contents)
self.assertEqual(0, num_files_modified)
def testSortingProjectIncludesAuto(self):
"""Check that project includes can be sorted separately."""
infile = """\
#include "me/subdir0/foo.h"
#include <stdio.h>
#include "me/subdir2/bar.h"
#include "me/subdir1/bar.h"
#include "me/subdir0/bar.h"
#include "other/baz.h"
"""
expected_output = """\
#include "me/subdir0/foo.h"
#include <stdio.h>
#include "other/baz.h"
#include "me/subdir0/bar.h"
#include "me/subdir1/bar.h"
#include "me/subdir2/bar.h"
"""
self.RegisterFileContents({'me/subdir0/foo.cc': infile})
self.flags.separate_project_includes = '<tld>'
num_files_modified = fix_includes.SortIncludesInFiles(['me/subdir0/foo.cc'],
self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testSortingProjectIncludesUserSpecified(self):
"""Test user-specified project directory name."""
infile = """\
#include "me/subdir0/foo.h"
#include <stdio.h>
#include "me/subdir2/bar.h"
#include "me/subdir1/bar.h"
#include "me/subdir0/bar.h"
#include "other/baz.h"
"""
expected_output = """\
#include "me/subdir0/foo.h"
#include <stdio.h>
#include "me/subdir1/bar.h"
#include "me/subdir2/bar.h"
#include "other/baz.h"
#include "me/subdir0/bar.h"
"""
self.RegisterFileContents({'me/subdir0/foo.cc': infile})
self.flags.separate_project_includes = 'me/subdir0'
num_files_modified = fix_includes.SortIncludesInFiles(['me/subdir0/foo.cc'],
self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testAddingNewIncludesAfterRemovingOldOnes(self):
infile = """\
// Copyright 2008 Google Inc. All Rights Reserved.
// Author: zhifengc@google.com (Zhifeng Chen)
#ifndef STRUCTUREDSEARCH_COMMON_INTERNAL_DFS_H_
#define STRUCTUREDSEARCH_COMMON_INTERNAL_DFS_H_
#include "util/task/status.h" ///-
#include "strings/stringpiece.h" ///-
///+#include <string> // for string
///+#include "base/macros.h" // for DISALLOW_COPY_AND_ASSIGN
///+#include "base/scoped_ptr.h" // for scoped_ptr
class Query;
///+namespace util {
///+class Status;
///+} // namespace util
namespace structuredsearch {
///+class FieldSpecification;
class FieldTokenizer;
class FieldSpecification; ///-
class TokenizationSpec;
class QueryXlator { ... };
#endif // #define STRUCTUREDSEARCH_COMMON_INTERNAL_DFS_H_
"""
iwyu_output = """\
structuredsearch/common/internal/query_field_xlate.h should add these lines:
#include <string> // for string
#include "base/macros.h" // for DISALLOW_COPY_AND_ASSIGN
#include "base/scoped_ptr.h" // for scoped_ptr
namespace util { class Status; }
structuredsearch/common/internal/query_field_xlate.h should remove these lines:
- #include "strings/stringpiece.h" // lines 8-8
- #include "util/task/status.h" // lines 7-7
The full include-list for structuredsearch/common/internal/query_field_xlate.h:
#include <string> // for string
#include "base/macros.h" // for DISALLOW_COPY_AND_ASSIGN
#include "base/scoped_ptr.h" // for scoped_ptr
class Query; // lines 10-10
namespace structuredsearch { class FieldSpecification; } // lines 15-15
namespace structuredsearch { class FieldTokenizer; } // lines 14-14
namespace structuredsearch { class TokenizationSpec; } // lines 16-16
namespace util { class Status; }
---
"""
self.RegisterFileContents(
{'structuredsearch/common/internal/query_field_xlate.h': infile})
self.ProcessAndTest(iwyu_output)
def testDryRun(self):
"""Tests that --dry_run mode does not modify files."""
self.flags.dry_run = True
infile = """\
// Copyright 2010
#include <notused.h>
#include <stdio.h>
#include "used.h"
#include "used2.h"
int main() { return 0; }
"""
iwyu_output = """\
dry_run should add these lines:
#include <stdio.h>
#include "used2.h"
dry_run should remove these lines:
- #include <notused.h> // lines 3-3
The full include-list for dry_run:
#include <stdio.h>
#include "used.h"
#include "used2.h"
---
"""
self.RegisterFileContents({'dry_run': infile})
num_modified_files = fix_includes.ProcessIWYUOutput(
StringIO(iwyu_output), ['dry_run'], self.flags, None)
self.assertListEqual([], self.actual_after_contents)
self.assertEqual(1, num_modified_files)
def testAddForwardDeclareAndKeepIwyuNamespaceFormat(self):
"""Tests that --keep_iwyu_namespace_format writes namespace lines
using the IWYU one-line format.
Input code similar to case testAddForwardDeclareInNamespace."""
self.flags.keep_iwyu_namespace_format = True
infile = """\
// Copyright 2010
#include "foo.h"
///+namespace ns { class Foo; }
///+namespace ns { namespace ns2 { namespace ns3 { class Bar; } } }
///+namespace ns { namespace ns2 { namespace ns3 { template <typename T> class Bang; } } }
///+namespace ns { namespace ns4 { class Baz; } }
///+
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_declare_keep_iwyu_namespace should add these lines:
namespace ns { class Foo; }
namespace ns { namespace ns2 { namespace ns3 { class Bar; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class Bang; } } }
namespace ns { namespace ns4 { class Baz; } }
add_fwd_declare_keep_iwyu_namespace should remove these lines:
The full include-list for add_fwd_declare_keep_iwyu_namespace:
#include "foo.h" // lines 3-3
namespace ns { class Foo; }
namespace ns { namespace ns2 { namespace ns3 { class Bar; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class Bang; } } }
namespace ns { namespace ns4 { class Baz; } }
---
"""
self.RegisterFileContents({'add_fwd_declare_keep_iwyu_namespace': infile})
self.ProcessAndTest(iwyu_output, expected_num_modified_files=1)
def testAddNestedForwardDeclaresWithKeepIwyuNamespaceFormat(self):
"""Tests that --keep_iwyu_namespace_format writes namespace lines
using the IWYU one-line format.
Input code similar to case
testAddForwardDeclareInsideNamespaceWithoutForwardDeclaresAlready."""
self.flags.keep_iwyu_namespace_format = True
infile = """\
// Copyright 2010
#include "foo.h"
class Bar;
///+class Foo;
///+namespace ns1 { class NsFoo; }
///+namespace ns1 { namespace ns2 { namespace ns3 { class NsBaz; } } }
///+namespace ns1 { namespace ns2 { namespace ns3 { template <typename T> class NsBang; } } }
template <typename T> class Baz;
namespace ns {
///-
///+class NsFoo;
///+namespace ns2 { namespace ns3 { class NsBaz; } }
///+namespace ns2 { namespace ns3 { template <typename T> class NsBang; } }
///+
class NsBar;
namespace ns2 { // we sure do love nesting our namespaces!
int MyFunction() { }
}
}
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_decl_with_keep_iwyu_format should add these lines:
class Foo;
namespace ns { class NsFoo; }
namespace ns { namespace ns2 { namespace ns3 { class NsBaz; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class NsBang; } } }
namespace ns1 { class NsFoo; }
namespace ns1 { namespace ns2 { namespace ns3 { class NsBaz; } } }
namespace ns1 { namespace ns2 { namespace ns3 { template <typename T> class NsBang; } } }
add_fwd_decl_with_keep_iwyu_format should remove these lines:
The full include-list for add_fwd_decl_with_keep_iwyu_format:
#include "foo.h" // lines 3-3
class Bar; // lines 5-5
class Foo;
namespace ns { class NsFoo; }
namespace ns { namespace ns2 { class NsBar; } }
namespace ns { namespace ns2 { namespace ns3 { class NsBaz; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class NsBang; } } }
namespace ns1 { class NsFoo; }
namespace ns1 { namespace ns2 { namespace ns3 { class NsBaz; } } }
namespace ns1 { namespace ns2 { namespace ns3 { template <typename T> class NsBang; } } }
template <typename T> class Baz; // lines 6-6
---
"""
self.RegisterFileContents({'add_fwd_decl_with_keep_iwyu_format': infile})
self.ProcessAndTest(iwyu_output)
def testAddForwardDeclareInNamespaceWithKeepIwyuNamespaceFormat(self):
"""Tests that --keep_iwyu_namespace_format writes namespace lines
using the IWYU one-line format.
Input code similar to case testAddForwardDeclareInNamespace."""
self.flags.keep_iwyu_namespace_format = True
infile = """\
// Copyright 2010
#include "foo.h"
///+namespace ns { class Foo; }
///+namespace ns { namespace ns2 { namespace ns3 { class Bar; } } }
///+namespace ns { namespace ns2 { namespace ns3 { template <typename T> class Bang; } } }
///+namespace ns { namespace ns4 { class Baz; } }
///+
int main() { return 0; }
"""
iwyu_output = """\
add_fwd_declare_keep_iwyu_namespace should add these lines:
namespace ns { class Foo; }
namespace ns { namespace ns2 { namespace ns3 { class Bar; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class Bang; } } }
namespace ns { namespace ns4 { class Baz; } }
add_fwd_declare_keep_iwyu_namespace should remove these lines:
The full include-list for add_fwd_declare_keep_iwyu_namespace:
#include "foo.h" // lines 3-3
namespace ns { class Foo; }
namespace ns { namespace ns2 { namespace ns3 { class Bar; } } }
namespace ns { namespace ns2 { namespace ns3 { template <typename T> class Bang; } } }
namespace ns { namespace ns4 { class Baz; } }
---
"""
self.RegisterFileContents({'add_fwd_declare_keep_iwyu_namespace': infile})
self.ProcessAndTest(iwyu_output, expected_num_modified_files=1)
def testBasedir(self):
self.flags.basedir = "/project/build/"
iwyu_output = """\
../src/source.cc should add these lines:
../src/source.cc should remove these lines:
- #include <unused.h> // lines 1-1
The full include-list for ../src/source.cc:
#include <used.h>
---
"""
infile = """\
#include <unused.h> ///-
#include <used.h>
int main() { return 0; }
"""
self.RegisterFileContents({'/project/src/source.cc': infile})
self.ProcessAndTest(iwyu_output, expected_num_modified_files=1)
def testBasedirWithFilesToProcess(self):
self.flags.basedir = "/project/build/"
iwyu_output = """\
../src/changed.cc should add these lines:
../src/changed.cc should remove these lines:
- #include <unused.h> // lines 1-1
The full include-list for ../src/changed.cc:
#include <used.h>
---
"""
changed_file = """\
#include <unused.h> ///-
#include <used.h>
int main() { return 0; }
"""
unchanged_file = """\
#include <unused.h>
#include <used.h>
int main() { return 0; }
"""
iwyu_output += iwyu_output.replace('changed.cc', 'unchanged.cc')
self.RegisterFileContents({
'/project/src/changed.cc': changed_file,
'/project/src/unchanged.cc': unchanged_file
})
self.ProcessAndTest(iwyu_output, cmdline_files=['/project/src/changed.cc'],
unedited_files=['/project/src/unchanged.cc'])
def testBasedirWithRelativeCmdlineFiles(self):
self.flags.basedir = "/project/build/"
iwyu_output = """\
../src/changed.cc should add these lines:
../src/changed.cc should remove these lines:
- #include <unused.h> // lines 1-1
The full include-list for ../src/changed.cc:
#include <used.h>
---
"""
changed_file = """\
#include <unused.h> ///-
#include <used.h>
int main() { return 0; }
"""
self.RegisterFileContents({
# File path is normalized to absolute by ProcessIWYUOutput.
'/project/src/changed.cc': changed_file,
})
self.ProcessAndTest(iwyu_output, cmdline_files=['changed.cc'],
cwd='/project/src')
def testMain(self):
"""Make sure calling main doesn't crash. Inspired by a syntax-error bug."""
# Give an empty stdin so we don't actually try to parse anything.
old_stdin = sys.stdin
try:
sys.stdin = StringIO()
fix_includes.main(['fix_includes.py']) # argv[0] doesn't really matter
finally:
sys.stdin = old_stdin
def testFilenamesForSortingInMain(self):
"""Make sure if we use s, we have a filename specified, in main()."""
# -s without any files to sort.
self.assertRaises(SystemExit, fix_includes.main,
['fix_includes.py', '-s'])
def testReorderingInclusions(self):
"""Show that the --reorder flag causes #includes to be sorted."""
infile = """\
// namespace B
namespace B { class BC; } // B
// namespace A
namespace A { class AC; } // A
// b
#include "b" // b
// c
#include <c> // c
// a
#include <a> // a
// a
#include "a" // a
// asdf
#ifdef asdf
// x
#include <x> // x
// endif
#endif
"""
expected_output = """\
// namespace B
namespace B { class BC; } // B
// namespace A
namespace A { class AC; } // A
// a
#include <a> // a
// c
#include <c> // c
// a
#include "a" // a
// b
#include "b" // b
// asdf
#ifdef asdf
// x
#include <x> // x
// endif
#endif
"""
self.RegisterFileContents({'inclusions_reordered.cc': infile})
self.flags.reorder = True
num_files_modified = fix_includes.SortIncludesInFiles(
['inclusions_reordered.cc'], self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
def testNoReorderingInclusions(self):
"""Show that the --noreorder flag causes #includes not to be sorted."""
infile = """\
// namespace B
namespace B { class BC; } // B
// namespace A
namespace A { class AC; } // A
// b
#include "b" // b
// c
#include <c> // c
// a
#include <a> // a
// a
#include "a" // a
// asdf
#ifdef asdf
// x
#include <x> // x
// endif
#endif
"""
expected_output = """\
// namespace B
namespace B { class BC; } // B
// namespace A
namespace A { class AC; } // A
// c
#include <c> // c
// a
#include <a> // a
// b
#include "b" // b
// a
#include "a" // a
// asdf
#ifdef asdf
// x
#include <x> // x
// endif
#endif
"""
self.RegisterFileContents({'inclusions_not_reordered.cc': infile})
self.flags.reorder = False
num_files_modified = fix_includes.SortIncludesInFiles(
['inclusions_not_reordered.cc'], self.flags)
self.assertListEqual(expected_output.splitlines(True),
self.actual_after_contents)
self.assertEqual(1, num_files_modified)
class FileInfoTest(unittest.TestCase):
""" Unit test for file info detection """
def testEndingsWindows(self):
buf = b'first\r\nsecond\r\nthird\r\n'
self.assertEqual('\r\n', fix_includes.FileInfo.guess_linesep(buf))
def testEndingsUnix(self):
buf = b'first\nsecond\nthird\n'
self.assertEqual('\n', fix_includes.FileInfo.guess_linesep(buf))
def testEndingsMixedUnixMajority(self):
buf = b'first\nsecond\nsecond-and-a-half\r\nthird\nfourth\r\n'
self.assertEqual('\n', fix_includes.FileInfo.guess_linesep(buf))
def testEndingsMixedWindowsMajority(self):
buf = b'first\nsecond\r\nsecond-and-a-half\r\nthird\nfourth\r\n'
self.assertEqual('\r\n', fix_includes.FileInfo.guess_linesep(buf))
def testEndingsMixedTie(self):
buf = b'first\nsecond\nthird\r\nfourth\r\n'
self.assertEqual(fix_includes.FileInfo.DEFAULT_LINESEP,
fix_includes.FileInfo.guess_linesep(buf))
def testEncodingASCII(self):
buf = b'abcdefgh'
self.assertEqual('ascii', fix_includes.FileInfo.guess_encoding(buf))
def testEncodingUTF8BOM(self):
buf = b'\xef\xbb\xbfSomeASCIIButWithTheBOM'
self.assertEqual('utf-8-sig', fix_includes.FileInfo.guess_encoding(buf))
def testEncodingUTF8NoBOM(self):
# This is a recurring test input in Swedish, translates to "shrimp sandwich"
# and contains all three Swedish exotic characters.
buf = b'r\xc3\xa4ksm\xc3\xb6rg\xc3\xa5s'
self.assertEqual('utf-8', fix_includes.FileInfo.guess_encoding(buf))
def testEncodingISO8859_1(self):
# Yours truly
buf = b'Kim Gr\xe4sman'
self.assertEqual('windows-1250', fix_includes.FileInfo.guess_encoding(buf))
if __name__ == '__main__':
unittest.main()
|