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
|
# frozen_string_literal: true
require_relative 'test_helper'
class ReaderTest < Minitest::Test
DIRNAME = ASCIIDOCTOR_TEST_DIR
SAMPLE_DATA = ['first line', 'second line', 'third line']
context 'Reader' do
context 'Prepare lines' do
test 'should prepare lines from Array data' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA, reader.lines
end
test 'should prepare lines from String data' do
reader = Asciidoctor::Reader.new SAMPLE_DATA.join(Asciidoctor::LF)
assert_equal SAMPLE_DATA, reader.lines
end
test 'should prepare lines from String data with trailing newline' do
reader = Asciidoctor::Reader.new SAMPLE_DATA.join(Asciidoctor::LF) + Asciidoctor::LF
assert_equal SAMPLE_DATA, reader.lines
end
test 'should remove UTF-8 BOM from first line of String data' do
['UTF-8', 'ASCII-8BIT'].each do |start_encoding|
data = String.new %(\xef\xbb\xbf#{SAMPLE_DATA.join ::Asciidoctor::LF}), encoding: start_encoding
reader = Asciidoctor::Reader.new data, nil, normalize: true
assert_equal Encoding::UTF_8, reader.lines[0].encoding
assert_equal 'f', reader.lines[0].chr
assert_equal SAMPLE_DATA, reader.lines
end
end
test 'should remove UTF-8 BOM from first line of Array data' do
['UTF-8', 'ASCII-8BIT'].each do |start_encoding|
data = SAMPLE_DATA.drop 0
data[0] = String.new %(\xef\xbb\xbf#{data.first}), encoding: start_encoding
reader = Asciidoctor::Reader.new data, nil, normalize: true
assert_equal Encoding::UTF_8, reader.lines[0].encoding
assert_equal 'f', reader.lines[0].chr
assert_equal SAMPLE_DATA, reader.lines
end
end
test 'should encode UTF-16LE string to UTF-8 when BOM is found' do
['UTF-8', 'ASCII-8BIT'].each do |start_encoding|
data = "\ufeff#{SAMPLE_DATA.join ::Asciidoctor::LF}".encode('UTF-16LE').force_encoding(start_encoding)
reader = Asciidoctor::Reader.new data, nil, normalize: true
assert_equal Encoding::UTF_8, reader.lines[0].encoding
assert_equal 'f', reader.lines[0].chr
assert_equal SAMPLE_DATA, reader.lines
end
end
test 'should encode UTF-16LE string array to UTF-8 when BOM is found' do
['UTF-8', 'ASCII-8BIT'].each do |start_encoding|
# NOTE can't split a UTF-16LE string using .lines when encoding is set to UTF-8
data = SAMPLE_DATA.drop 0
data.unshift %(\ufeff#{data.shift})
data.each {|line| (line.encode 'UTF-16LE').force_encoding start_encoding }
reader = Asciidoctor::Reader.new data, nil, normalize: true
assert_equal Encoding::UTF_8, reader.lines[0].encoding
assert_equal 'f', reader.lines[0].chr
assert_equal SAMPLE_DATA, reader.lines
end
end
test 'should encode UTF-16BE string to UTF-8 when BOM is found' do
['UTF-8', 'ASCII-8BIT'].each do |start_encoding|
data = "\ufeff#{SAMPLE_DATA.join ::Asciidoctor::LF}".encode('UTF-16BE').force_encoding(start_encoding)
reader = Asciidoctor::Reader.new data, nil, normalize: true
assert_equal Encoding::UTF_8, reader.lines[0].encoding
assert_equal 'f', reader.lines[0].chr
assert_equal SAMPLE_DATA, reader.lines
end
end
test 'should encode UTF-16BE string array to UTF-8 when BOM is found' do
['UTF-8', 'ASCII-8BIT'].each do |start_encoding|
data = SAMPLE_DATA.drop 0
data.unshift %(\ufeff#{data.shift})
data = data.map {|line| (line.encode 'UTF-16BE').force_encoding start_encoding }
reader = Asciidoctor::Reader.new data, nil, normalize: true
assert_equal Encoding::UTF_8, reader.lines[0].encoding
assert_equal 'f', reader.lines[0].chr
assert_equal SAMPLE_DATA, reader.lines
end
end
end
context 'With empty data' do
test 'has_more_lines? should return false with empty data' do
refute Asciidoctor::Reader.new.has_more_lines?
end
test 'empty? should return true with empty data' do
assert Asciidoctor::Reader.new.empty?
assert Asciidoctor::Reader.new.eof?
end
test 'next_line_empty? should return true with empty data' do
assert Asciidoctor::Reader.new.next_line_empty?
end
test 'peek_line should return nil with empty data' do
assert_nil Asciidoctor::Reader.new.peek_line
end
test 'peek_lines should return empty Array with empty data' do
assert_equal [], Asciidoctor::Reader.new.peek_lines(1)
end
test 'read_line should return nil with empty data' do
assert_nil Asciidoctor::Reader.new.read_line
#assert_nil Asciidoctor::Reader.new.get_line
end
test 'read_lines should return empty Array with empty data' do
assert_equal [], Asciidoctor::Reader.new.read_lines
#assert_equal [], Asciidoctor::Reader.new.get_lines
end
end
context 'With data' do
test 'has_more_lines? should return true if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert reader.has_more_lines?
end
test 'empty? should return false if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
refute reader.empty?
refute reader.eof?
end
test 'next_line_empty? should return false if next line is not blank' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
refute reader.next_line_empty?
end
test 'next_line_empty? should return true if next line is blank' do
reader = Asciidoctor::Reader.new ['', 'second line']
assert reader.next_line_empty?
end
test 'peek_line should return nil if next entry is nil' do
assert_nil (Asciidoctor::Reader.new [nil]).peek_line
end
test 'peek_line should return next line if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA.first, reader.peek_line
end
test 'peek_line should not consume line or increment line number' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA.first, reader.peek_line
assert_equal SAMPLE_DATA.first, reader.peek_line
assert_equal 1, reader.lineno
end
test 'peek_line should return next lines if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA[0..1], reader.peek_lines(2)
end
test 'peek_lines should not consume lines or increment line number' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA[0..1], reader.peek_lines(2)
assert_equal SAMPLE_DATA[0..1], reader.peek_lines(2)
assert_equal 1, reader.lineno
end
test 'peek_lines should not increment line number if reader overruns buffer' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA, (reader.peek_lines SAMPLE_DATA.size * 2)
assert_equal 1, reader.lineno
end
test 'peek_lines should peek all lines if no arguments are given' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA, reader.peek_lines
assert_equal 1, reader.lineno
end
test 'peek_lines should not invert order of lines' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA, reader.lines
reader.peek_lines 3
assert_equal SAMPLE_DATA, reader.lines
end
test 'read_line should return next line if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA.first, reader.read_line
end
test 'read_line should consume next line and increment line number' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA[0], reader.read_line
assert_equal SAMPLE_DATA[1], reader.read_line
assert_equal 3, reader.lineno
end
test 'advance should consume next line and return a Boolean indicating if a line was consumed' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert reader.advance
assert reader.advance
assert reader.advance
refute reader.advance
end
test 'read_lines should return all lines' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA, reader.read_lines
end
test 'read should return all lines joined as String' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA.join(::Asciidoctor::LF), reader.read
end
test 'has_more_lines? should return false after read_lines is invoked' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.read_lines
refute reader.has_more_lines?
end
test 'unshift puts line onto Reader as next line to read' do
reader = Asciidoctor::Reader.new SAMPLE_DATA, nil, normalize: true
reader.unshift 'line zero'
assert_equal 'line zero', reader.peek_line
assert_equal 'line zero', reader.read_line
assert_equal 1, reader.lineno
end
test 'terminate should consume all lines and update line number' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.terminate
assert reader.eof?
assert_equal 4, reader.lineno
end
test 'skip_blank_lines should skip blank lines' do
reader = Asciidoctor::Reader.new ['', ''].concat(SAMPLE_DATA)
reader.skip_blank_lines
assert_equal SAMPLE_DATA.first, reader.peek_line
end
test 'lines should return remaining lines' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.read_line
assert_equal SAMPLE_DATA[1..-1], reader.lines
end
test 'source_lines should return copy of original data Array' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.read_lines
assert_equal SAMPLE_DATA, reader.source_lines
end
test 'source should return original data Array joined as String' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.read_lines
assert_equal SAMPLE_DATA.join(::Asciidoctor::LF), reader.source
end
end
context 'Line context' do
test 'cursor.to_s should return file name and line number of current line' do
reader = Asciidoctor::Reader.new SAMPLE_DATA, 'sample.adoc'
reader.read_line
assert_equal 'sample.adoc: line 2', reader.cursor.to_s
end
test 'line_info should return file name and line number of current line' do
reader = Asciidoctor::Reader.new SAMPLE_DATA, 'sample.adoc'
reader.read_line
assert_equal 'sample.adoc: line 2', reader.line_info
end
test 'cursor_at_prev_line should return file name and line number of previous line read' do
reader = Asciidoctor::Reader.new SAMPLE_DATA, 'sample.adoc'
reader.read_line
assert_equal 'sample.adoc: line 1', reader.cursor_at_prev_line.to_s
end
end
context 'Read lines until' do
test 'Read lines until until end' do
lines = <<~'EOS'.lines
This is one paragraph.
This is another paragraph.
EOS
reader = Asciidoctor::Reader.new lines, nil, normalize: true
result = reader.read_lines_until
assert_equal 3, result.size
assert_equal lines.map(&:chomp), result
refute reader.has_more_lines?
assert reader.eof?
end
test 'Read lines until until blank line' do
lines = <<~'EOS'.lines
This is one paragraph.
This is another paragraph.
EOS
reader = Asciidoctor::Reader.new lines, nil, normalize: true
result = reader.read_lines_until break_on_blank_lines: true
assert_equal 1, result.size
assert_equal lines.first.chomp, result.first
assert_equal lines.last.chomp, reader.peek_line
end
test 'Read lines until until blank line preserving last line' do
lines = <<~'EOS'.split ::Asciidoctor::LF
This is one paragraph.
This is another paragraph.
EOS
reader = Asciidoctor::Reader.new lines
result = reader.read_lines_until break_on_blank_lines: true, preserve_last_line: true
assert_equal 1, result.size
assert_equal lines.first.chomp, result.first
assert reader.next_line_empty?
end
test 'Read lines until until condition is true' do
lines = <<~'EOS'.split ::Asciidoctor::LF
--
This is one paragraph inside the block.
This is another paragraph inside the block.
--
This is a paragraph outside the block.
EOS
reader = Asciidoctor::Reader.new lines
reader.read_line
result = reader.read_lines_until {|line| line == '--' }
assert_equal 3, result.size
assert_equal lines[1, 3], result
assert reader.next_line_empty?
end
test 'Read lines until until condition is true, taking last line' do
lines = <<~'EOS'.split ::Asciidoctor::LF
--
This is one paragraph inside the block.
This is another paragraph inside the block.
--
This is a paragraph outside the block.
EOS
reader = Asciidoctor::Reader.new lines
reader.read_line
result = reader.read_lines_until(read_last_line: true) {|line| line == '--' }
assert_equal 4, result.size
assert_equal lines[1, 4], result
assert reader.next_line_empty?
end
test 'Read lines until until condition is true, taking and preserving last line' do
lines = <<~'EOS'.split ::Asciidoctor::LF
--
This is one paragraph inside the block.
This is another paragraph inside the block.
--
This is a paragraph outside the block.
EOS
reader = Asciidoctor::Reader.new lines
reader.read_line
result = reader.read_lines_until(read_last_line: true, preserve_last_line: true) {|line| line == '--' }
assert_equal 4, result.size
assert_equal lines[1, 4], result
assert_equal '--', reader.peek_line
end
test 'read lines until terminator' do
lines = <<~'EOS'.lines
****
captured
also captured
****
not captured
EOS
expected = ['captured', '', 'also captured']
doc = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, lines, nil, normalize: true
terminator = reader.read_line
result = reader.read_lines_until terminator: terminator, skip_processing: true
assert_equal expected, result
refute reader.unterminated
end
test 'should flag reader as unterminated if reader reaches end of source without finding terminator' do
lines = <<~'EOS'.lines
****
captured
also captured
captured yet again
EOS
expected = lines[1..-1].map(&:chomp)
using_memory_logger do |logger|
doc = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, lines, nil, normalize: true
terminator = reader.peek_line
result = reader.read_lines_until terminator: terminator, skip_first_line: true, skip_processing: true
assert_equal expected, result
assert reader.unterminated
assert_message logger, :WARN, '<stdin>: line 1: unterminated **** block', Hash
end
end
end
end
context 'PreprocessorReader' do
context 'Type hierarchy' do
test 'PreprocessorReader should extend from Reader' do
reader = empty_document.reader
assert_kind_of Asciidoctor::PreprocessorReader, reader
end
test 'PreprocessorReader should invoke or emulate Reader initializer' do
doc = Asciidoctor::Document.new SAMPLE_DATA
reader = doc.reader
assert_equal SAMPLE_DATA, reader.lines
assert_equal 1, reader.lineno
end
end
context 'Prepare lines' do
test 'should prepare and normalize lines from Array data' do
data = SAMPLE_DATA.drop 0
data.unshift ''
data.push ''
doc = Asciidoctor::Document.new data
reader = doc.reader
assert_equal [''] + SAMPLE_DATA, reader.lines
end
test 'should prepare and normalize lines from String data' do
data = SAMPLE_DATA.drop 0
data.unshift ' '
data.push ' '
data_as_string = data * ::Asciidoctor::LF
doc = Asciidoctor::Document.new data_as_string
reader = doc.reader
assert_equal [''] + SAMPLE_DATA, reader.lines
end
test 'should drop all lines if all lines are empty' do
data = ['', ' ', '', ' ']
doc = Asciidoctor::Document.new data
reader = doc.reader
assert reader.lines.empty?
end
test 'should clean CRLF from end of lines' do
input = <<~EOS
source\r
with\r
CRLF\r
line endings\r
EOS
[input, input.lines, input.split(::Asciidoctor::LF), input.split(::Asciidoctor::LF).join(::Asciidoctor::LF)].each do |lines|
doc = Asciidoctor::Document.new lines
reader = doc.reader
reader.lines.each do |line|
refute line.end_with?("\r"), "CRLF not properly cleaned for source lines: #{lines.inspect}"
refute line.end_with?("\r\n"), "CRLF not properly cleaned for source lines: #{lines.inspect}"
refute line.end_with?("\n"), "CRLF not properly cleaned for source lines: #{lines.inspect}"
end
end
end
test 'should not skip front matter by default' do
input = <<~'EOS'
---
layout: post
title: Document Title
author: username
tags: [ first, second ]
---
= Document Title
Author Name
preamble
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
refute doc.attributes.key?('front-matter')
assert_equal '---', reader.peek_line
assert_equal 1, reader.lineno
end
test 'should not skip front matter if ending delimiter is not found' do
input = <<~'EOS'
---
title: Document Title
tags: [ first, second ]
= Document Title
Author Name
preamble
EOS
doc = Asciidoctor::Document.new input, attributes: { 'skip-front-matter' => '' }
reader = doc.reader
assert_equal '---', reader.peek_line
refute doc.attributes.key? 'front-matter'
assert_equal 1, reader.lineno
end
test 'should skip front matter if specified by skip-front-matter attribute' do
front_matter = <<~'EOS'.chop
layout: post
title: Document Title
author: username
tags: [ first, second ]
EOS
input = <<~EOS
---
#{front_matter}
---
= Document Title
Author Name
preamble
EOS
doc = Asciidoctor::Document.new input, attributes: { 'skip-front-matter' => '' }
reader = doc.reader
assert_equal '= Document Title', reader.peek_line
assert_equal front_matter, doc.attributes['front-matter']
assert_equal 7, reader.lineno
end
end
context 'Include Stack' do
test 'PreprocessorReader#push_include method should return reader' do
reader = empty_document.reader
append_lines = %w(one two three)
result = reader.push_include append_lines, '<stdin>', '<stdin>'
assert_equal reader, result
end
test 'PreprocessorReader#push_include method should put lines on top of stack' do
lines = %w(a b c)
doc = Asciidoctor::Document.new lines
reader = doc.reader
append_lines = %w(one two three)
reader.push_include append_lines, '', '<stdin>'
assert_equal 1, reader.include_stack.size
assert_equal 'one', reader.read_line.rstrip
end
test 'PreprocessorReader#push_include method should gracefully handle file and path' do
lines = %w(a b c)
doc = Asciidoctor::Document.new lines
reader = doc.reader
append_lines = %w(one two three)
reader.push_include append_lines
assert_equal 1, reader.include_stack.size
assert_equal 'one', reader.read_line.rstrip
assert_nil reader.file
assert_equal '<stdin>', reader.path
end
test 'PreprocessorReader#push_include method should set path from file automatically if not specified' do
lines = %w(a b c)
doc = Asciidoctor::Document.new lines
reader = doc.reader
append_lines = %w(one two three)
reader.push_include append_lines, '/tmp/lines.adoc'
assert_equal '/tmp/lines.adoc', reader.file
assert_equal 'lines.adoc', reader.path
assert doc.catalog[:includes]['lines']
end
test 'PreprocessorReader#push_include method should accept file as a URI and compute dir and path' do
file_uri = ::URI.parse 'http://example.com/docs/file.adoc'
dir_uri = ::URI.parse 'http://example.com/docs'
reader = empty_document.reader
reader.push_include %w(one two three), file_uri
assert_same file_uri, reader.file
assert_equal dir_uri, reader.dir
assert_equal 'file.adoc', reader.path
end
test 'PreprocessorReader#push_include method should accept file as a top-level URI and compute dir and path' do
file_uri = ::URI.parse 'http://example.com/index.adoc'
dir_uri = ::URI.parse 'http://example.com'
reader = empty_document.reader
reader.push_include %w(one two three), file_uri
assert_same file_uri, reader.file
assert_equal dir_uri, reader.dir
assert_equal 'index.adoc', reader.path
end
test 'PreprocessorReader#push_include method should not fail if data is nil' do
lines = %w(a b c)
doc = Asciidoctor::Document.new lines
reader = doc.reader
reader.push_include nil, '', '<stdin>'
assert_equal 0, reader.include_stack.size
assert_equal 'a', reader.read_line.rstrip
end
test 'PreprocessorReader#push_include method should ignore dot in directory name when computing include path' do
lines = %w(a b c)
doc = Asciidoctor::Document.new lines
reader = doc.reader
append_lines = %w(one two three)
reader.push_include append_lines, nil, 'include.d/data'
assert_nil reader.file
assert_equal 'include.d/data', reader.path
assert doc.catalog[:includes]['include.d/data']
end
end
context 'Include Directive' do
test 'should replace include directive with link macro in default safe mode' do
input = 'include::include-file.adoc[]'
doc = Asciidoctor::Document.new input
reader = doc.reader
assert_equal 'link:include-file.adoc[role=include]', reader.read_line
end
test 'should not add role to link macro used to replace include directive in compat mode' do
input = 'include::include-file.adoc[]'
doc = Asciidoctor::Document.new input, attributes: { 'compat-mode' => '' }
reader = doc.reader
assert_equal 'link:include-file.adoc[]', reader.read_line
end
test 'should escape spaces in target when generating link from include directive' do
input = 'include::foo bar baz.adoc[]'
doc = Asciidoctor::Document.new input
reader = doc.reader
assert_equal 'link:pass:c[foo bar baz.adoc][role=include]', reader.read_line
end
test 'should replace include directive with link macro if safe mode allows it, but allow-uri-read is not set' do
using_memory_logger do |logger|
input = 'include::https://example.org/dist/info.adoc[]'
doc = Asciidoctor::Document.new input, safe: :safe
reader = doc.reader
assert_equal 'link:https://example.org/dist/info.adoc[role=include]', reader.read_line
assert_empty logger
end
end
test 'should not add role to link macro that replaces include directive with remote target in compat mode' do
input = 'include::https://example.org/dist/info.adoc[]'
doc = Asciidoctor::Document.new input, safe: :safe, attributes: { 'compat-mode' => '' }
reader = doc.reader
assert_equal 'link:https://example.org/dist/info.adoc[]', reader.read_line
end
test 'should escape spaces in target when generating link from remote include directive' do
input = 'include::https://example.org/no such file.adoc[]'
doc = Asciidoctor::Document.new input, safe: :safe
reader = doc.reader
assert_equal 'link:pass:c[https://example.org/no such file.adoc][role=include]', reader.read_line
end
test 'include directive is enabled when safe mode is less than SECURE' do
input = 'include::fixtures/include-file.adoc[]'
doc = document_from_string input, safe: :safe, standalone: false, base_dir: DIRNAME
output = doc.convert
assert_match(/included content/, output)
assert doc.catalog[:includes]['fixtures/include-file']
end
test 'should strip BOM from include file' do
input = %(:showtitle:\ninclude::fixtures/file-with-utf8-bom.adoc[])
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_css '.paragraph', output, 0
assert_css 'h1', output, 1
assert_match(/<h1>人<\/h1>/, output)
end
test 'should include content from a file on the classloader', if: jruby? do
require fixture_path 'assets.jar'
input = 'include::uri:classloader:/includes-in-jar/include-file.adoc[]'
doc = document_from_string input, safe: :unsafe, standalone: false, base_dir: DIRNAME
output = doc.convert
assert_match(/included from a file/, output)
assert doc.catalog[:includes]['uri:classloader:/includes-in-jar/include-file']
end
test 'should not track include in catalog for non-AsciiDoc include files' do
input = <<~'EOS'
----
include::fixtures/circle.svg[]
----
EOS
doc = document_from_string input, safe: :safe, standalone: false, base_dir: DIRNAME
assert doc.catalog[:includes].empty?
end
test 'include directive should resolve file with spaces in name' do
input = 'include::fixtures/include file.adoc[]'
include_file = File.join DIRNAME, 'fixtures', 'include-file.adoc'
include_file_with_sp = File.join DIRNAME, 'fixtures', 'include file.adoc'
begin
FileUtils.cp include_file, include_file_with_sp
doc = document_from_string input, safe: :safe, standalone: false, base_dir: DIRNAME
output = doc.convert
assert_match(/included content/, output)
ensure
FileUtils.rm include_file_with_sp
end
end
test 'include directive should resolve file with {sp} in name' do
input = 'include::fixtures/include{sp}file.adoc[]'
include_file = File.join DIRNAME, 'fixtures', 'include-file.adoc'
include_file_with_sp = File.join DIRNAME, 'fixtures', 'include file.adoc'
begin
FileUtils.cp include_file, include_file_with_sp
doc = document_from_string input, safe: :safe, standalone: false, base_dir: DIRNAME
output = doc.convert
assert_match(/included content/, output)
ensure
FileUtils.rm include_file_with_sp
end
end
test 'include directive should not match if target is empty or starts or ends with space' do
['include::[]', 'include:: []', 'include:: not-include[]', 'include::not-include []'].each do |input|
doc = Asciidoctor::Document.new input
reader = doc.reader
assert_equal input, reader.read_line
end
end
test 'include directive should not attempt to resolve target as remote if allow-uri-read is set and URL is not on first line' do
using_memory_logger do |logger|
input = <<~'EOS'
:target: not-a-file.adoc + \
http://example.org/team.adoc
include::{target}[]
EOS
doc = Asciidoctor.load input, safe: :safe, base_dir: fixturedir
lines = doc.blocks[0].lines
assert_equal [%(Unresolved directive in <stdin> - include::not-a-file.adoc +\nhttp://example.org/team.adoc[])], lines
assert_message logger, :ERROR, %(<stdin>: line 4: include file not found: #{fixture_path 'not-a-file.adoc'} +\nhttp://example.org/team.adoc), Hash
end
end
test 'include directive should resolve file relative to current include' do
input = 'include::fixtures/parent-include.adoc[]'
pseudo_docfile = File.join DIRNAME, 'main.adoc'
fixtures_dir = File.join DIRNAME, 'fixtures'
parent_include_docfile = File.join fixtures_dir, 'parent-include.adoc'
child_include_docfile = File.join fixtures_dir, 'child-include.adoc'
grandchild_include_docfile = File.join fixtures_dir, 'grandchild-include.adoc'
doc = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input, pseudo_docfile, normalize: true
assert_equal pseudo_docfile, reader.file
assert_equal DIRNAME, reader.dir
assert_equal 'main.adoc', reader.path
assert_equal 'first line of parent', reader.read_line
assert_equal 'fixtures/parent-include.adoc: line 1', reader.cursor_at_prev_line.to_s
assert_equal parent_include_docfile, reader.file
assert_equal fixtures_dir, reader.dir
assert_equal 'fixtures/parent-include.adoc', reader.path
reader.skip_blank_lines
assert_equal 'first line of child', reader.read_line
assert_equal 'fixtures/child-include.adoc: line 1', reader.cursor_at_prev_line.to_s
assert_equal child_include_docfile, reader.file
assert_equal fixtures_dir, reader.dir
assert_equal 'fixtures/child-include.adoc', reader.path
reader.skip_blank_lines
assert_equal 'first line of grandchild', reader.read_line
assert_equal 'fixtures/grandchild-include.adoc: line 1', reader.cursor_at_prev_line.to_s
assert_equal grandchild_include_docfile, reader.file
assert_equal fixtures_dir, reader.dir
assert_equal 'fixtures/grandchild-include.adoc', reader.path
reader.skip_blank_lines
assert_equal 'last line of grandchild', reader.read_line
reader.skip_blank_lines
assert_equal 'last line of child', reader.read_line
reader.skip_blank_lines
assert_equal 'last line of parent', reader.read_line
assert_equal 'fixtures/parent-include.adoc: line 5', reader.cursor_at_prev_line.to_s
assert_equal parent_include_docfile, reader.file
assert_equal fixtures_dir, reader.dir
assert_equal 'fixtures/parent-include.adoc', reader.path
end
test 'include directive should process lines when file extension of target is .asciidoc' do
input = 'include::fixtures/include-alt-extension.asciidoc[]'
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal 3, doc.blocks.size
assert_equal ['first line'], doc.blocks[0].lines
assert_equal ['Asciidoctor!'], doc.blocks[1].lines
assert_equal ['last line'], doc.blocks[2].lines
end
test 'should only strip trailing newlines, not trailing whitespace, if include file is not AsciiDoc' do
input = <<~'EOS'
....
include::fixtures/data.tsv[]
....
EOS
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal 1, doc.blocks.size
assert doc.blocks[0].lines[2].end_with? ?\t
end
test 'should fail to read include file if not UTF-8 encoded and encoding is not specified' do
input = <<~'EOS'
....
include::fixtures/iso-8859-1.txt[]
....
EOS
assert_raises StandardError, 'invalid byte sequence in UTF-8' do
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal 1, doc.blocks.size
refute_equal ['Où est l\'hôpital ?'], doc.blocks[0].lines
doc.convert
end
end
test 'should ignore encoding attribute if value is not a valid encoding' do
input = <<~'EOS'
....
include::fixtures/encoding.adoc[tag=romé,encoding=iso-1000-1]
....
EOS
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal 1, doc.blocks.size
assert_equal doc.blocks[0].lines[0].encoding, Encoding::UTF_8
assert_equal ['Gregory Romé has written an AsciiDoc plugin for the Redmine project management application.'], doc.blocks[0].lines
end
test 'should use encoding specified by encoding attribute when reading include file' do
input = <<~'EOS'
....
include::fixtures/iso-8859-1.txt[encoding=iso-8859-1]
....
EOS
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal 1, doc.blocks.size
assert_equal doc.blocks[0].lines[0].encoding, Encoding::UTF_8
assert_equal ['Où est l\'hôpital ?'], doc.blocks[0].lines
end
test 'unresolved target referenced by include directive is skipped when optional option is set' do
input = <<~'EOS'
include::fixtures/{no-such-file}[opts=optional]
trailing content
EOS
begin
using_memory_logger do |logger|
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal 1, doc.blocks.size
assert_equal ['trailing content'], doc.blocks[0].lines
assert_message logger, :INFO, '~<stdin>: line 1: optional include dropped because include file not found', Hash
end
rescue
flunk 'include directive should not raise exception on unresolved target'
end
end
test 'should skip include directive that references missing file if optional option is set' do
input = <<~'EOS'
include::fixtures/no-such-file.adoc[opts=optional]
trailing content
EOS
begin
using_memory_logger do |logger|
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal 1, doc.blocks.size
assert_equal ['trailing content'], doc.blocks[0].lines
assert_message logger, :INFO, '~<stdin>: line 1: optional include dropped because include file not found', Hash
end
rescue
flunk 'include directive should not raise exception on missing file'
end
end
test 'should replace include directive that references missing file with message' do
input = <<~'EOS'
include::fixtures/no-such-file.adoc[]
trailing content
EOS
begin
using_memory_logger do |logger|
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal 2, doc.blocks.size
assert_equal ['Unresolved directive in <stdin> - include::fixtures/no-such-file.adoc[]'], doc.blocks[0].lines
assert_equal ['trailing content'], doc.blocks[1].lines
assert_message logger, :ERROR, '~<stdin>: line 1: include file not found', Hash
end
rescue
flunk 'include directive should not raise exception on missing file'
end
end
test 'should replace include directive that references unreadable file with message', unless: (windows? || Process.euid == 0) do
include_file = File.join DIRNAME, 'fixtures', 'chapter-a.adoc'
old_mode = (File.stat include_file).mode
FileUtils.chmod 0o000, include_file
input = <<~'EOS'
include::fixtures/chapter-a.adoc[]
trailing content
EOS
begin
using_memory_logger do |logger|
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal 2, doc.blocks.size
assert_equal ['Unresolved directive in <stdin> - include::fixtures/chapter-a.adoc[]'], doc.blocks[0].lines
assert_equal ['trailing content'], doc.blocks[1].lines
assert_message logger, :ERROR, '~<stdin>: line 1: include file not readable', Hash
end
rescue
flunk 'include directive should not raise exception on missing file'
ensure
FileUtils.chmod old_mode, include_file
end
end
# IMPORTANT this test needs to be run on Windows to verify proper behavior in Windows
test 'can resolve include directive with absolute path' do
include_path = ::File.join DIRNAME, 'fixtures', 'chapter-a.adoc'
input = %(include::#{include_path}[])
result = document_from_string input, safe: :safe
assert_equal 'Chapter A', result.doctitle
result = document_from_string input, safe: :unsafe, base_dir: ::Dir.tmpdir
assert_equal 'Chapter A', result.doctitle
end
test 'include directive can retrieve data from uri' do
url = %(http://#{resolve_localhost}:9876/name/asciidoctor)
input = <<~EOS
....
include::#{url}[]
....
EOS
expect = /\{"name": "asciidoctor"\}/
output = using_test_webserver do
convert_string_to_embedded input, safe: :safe, attributes: { 'allow-uri-read' => '' }
end
refute_nil output
assert_match(expect, output)
end
test 'nested include directives are resolved relative to current file' do
input = <<~'EOS'
....
include::fixtures/outer-include.adoc[]
....
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~'EOS'.chop
first line of outer
first line of middle
first line of inner
last line of inner
last line of middle
last line of outer
EOS
assert_includes output, expected
end
test 'nested remote include directive is resolved relative to uri of current file' do
url = %(http://#{resolve_localhost}:9876/fixtures/outer-include.adoc)
input = <<~EOS
....
include::#{url}[]
....
EOS
output = using_test_webserver do
convert_string_to_embedded input, safe: :safe, attributes: { 'allow-uri-read' => '' }
end
expected = <<~'EOS'.chop
first line of outer
first line of middle
first line of inner
last line of inner
last line of middle
last line of outer
EOS
assert_includes output, expected
end
test 'nested remote include directive that cannot be resolved does not crash processor' do
include_url = %(http://#{resolve_localhost}:9876/fixtures/file-with-missing-include.adoc)
nested_include_url = 'no-such-file.adoc'
input = <<~EOS
....
include::#{include_url}[]
....
EOS
begin
using_memory_logger do |logger|
result = using_test_webserver do
convert_string_to_embedded input, safe: :safe, attributes: { 'allow-uri-read' => '' }
end
assert_includes result, %(Unresolved directive in #{include_url} - include::#{nested_include_url}[])
assert_message logger, :ERROR, %(#{include_url}: line 1: include uri not readable: http://#{resolve_localhost}:9876/fixtures/#{nested_include_url}), Hash
end
rescue
flunk 'include directive should not raise exception on missing file'
end
end
test 'should support tag filtering for remote includes' do
url = %(http://#{resolve_localhost}:9876/fixtures/tagged-class.rb)
input = <<~EOS
[source,ruby]
----
include::#{url}[tag=init,indent=0]
----
EOS
output = using_test_webserver do
convert_string_to_embedded input, safe: :safe, attributes: { 'allow-uri-read' => '' }
end
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
<code class="language-ruby" data-lang="ruby">def initialize breed
@breed = breed
end</code>
EOS
assert_includes output, expected
end
test 'should not crash if include directive references inaccessible uri' do
url = %(http://#{resolve_localhost}:9876/no_such_file)
input = <<~EOS
....
include::#{url}[]
....
EOS
begin
using_memory_logger do |logger|
output = using_test_webserver do
convert_string_to_embedded input, safe: :safe, attributes: { 'allow-uri-read' => '' }
end
refute_nil output
assert_match(/Unresolved directive/, output)
assert_message logger, :ERROR, %(<stdin>: line 2: include uri not readable: #{url}), Hash
end
rescue
flunk 'include directive should not raise exception on inaccessible uri'
end
end
test 'include directive supports selecting lines by line number' do
input = 'include::fixtures/include-file.adoc[lines=1;3..4;6..-1]'
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_match(/first line/, output)
refute_match(/second line/, output)
assert_match(/third line/, output)
assert_match(/fourth line/, output)
refute_match(/fifth line/, output)
assert_match(/sixth line/, output)
assert_match(/seventh line/, output)
assert_match(/eighth line/, output)
assert_match(/last line of included content/, output)
end
test 'include directive supports line ranges separated by commas in quoted attribute value' do
input = 'include::fixtures/include-file.adoc[lines="1,3..4,6..-1"]'
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_match(/first line/, output)
refute_match(/second line/, output)
assert_match(/third line/, output)
assert_match(/fourth line/, output)
refute_match(/fifth line/, output)
assert_match(/sixth line/, output)
assert_match(/seventh line/, output)
assert_match(/eighth line/, output)
assert_match(/last line of included content/, output)
end
test 'include directive ignores spaces between line ranges in quoted attribute value' do
input = 'include::fixtures/include-file.adoc[lines="1, 3..4 , 6 .. -1"]'
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_match(/first line/, output)
refute_match(/second line/, output)
assert_match(/third line/, output)
assert_match(/fourth line/, output)
refute_match(/fifth line/, output)
assert_match(/sixth line/, output)
assert_match(/seventh line/, output)
assert_match(/eighth line/, output)
assert_match(/last line of included content/, output)
end
test 'include directive supports implicit endless range' do
input = 'include::fixtures/include-file.adoc[lines=6..]'
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
refute_match(/first line/, output)
refute_match(/second line/, output)
refute_match(/third line/, output)
refute_match(/fourth line/, output)
refute_match(/fifth line/, output)
assert_match(/sixth line/, output)
assert_match(/seventh line/, output)
assert_match(/eighth line/, output)
assert_match(/last line of included content/, output)
end
test 'include directive ignores lines attribute if empty' do
input = <<~'EOS'
++++
include::fixtures/include-file.adoc[lines=]
++++
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_includes output, 'first line of included content'
assert_includes output, 'last line of included content'
end
test 'include directive ignores lines attribute with invalid range' do
input = <<~'EOS'
++++
include::fixtures/include-file.adoc[lines=10..5]
++++
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_includes output, 'first line of included content'
assert_includes output, 'last line of included content'
end
test 'include directive supports selecting lines by tag' do
input = 'include::fixtures/include-file.adoc[tag=snippetA]'
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_match(/snippetA content/, output)
refute_match(/snippetB content/, output)
refute_match(/non-tagged content/, output)
refute_match(/included content/, output)
end
test 'include directive supports selecting lines by tags' do
input = 'include::fixtures/include-file.adoc[tags=snippetA;snippetB]'
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_match(/snippetA content/, output)
assert_match(/snippetB content/, output)
refute_match(/non-tagged content/, output)
refute_match(/included content/, output)
end
test 'include directive supports selecting lines by tag in language that uses circumfix comments' do
{
'include-file.xml' => '<snippet>content</snippet>',
'include-file.ml' => 'let s = SS.empty;;',
'include-file.jsx' => '<p>Welcome to the club.</p>',
}.each do |filename, expect|
input = <<~EOS
[source,xml]
----
include::fixtures/#{filename}[tag=snippet,indent=0]
----
EOS
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
assert_equal expect, doc.blocks[0].source
end
end
test 'include directive supports selecting lines by tag in file that has CRLF line endings' do
begin
tmp_include = Tempfile.new %w(include- .adoc)
tmp_include_dir, tmp_include_path = File.split tmp_include.path
tmp_include.write %(do not include\r\ntag::include-me[]\r\nincluded line\r\nend::include-me[]\r\ndo not include\r\n)
tmp_include.close
input = %(include::#{tmp_include_path}[tag=include-me])
output = convert_string_to_embedded input, safe: :safe, base_dir: tmp_include_dir
assert_includes output, 'included line'
refute_includes output, 'do not include'
ensure
tmp_include.close!
end
end
test 'include directive finds closing tag on last line of file without a trailing newline' do
begin
tmp_include = Tempfile.new %w(include- .adoc)
tmp_include_dir, tmp_include_path = File.split tmp_include.path
tmp_include.write %(line not included\ntag::include-me[]\nline included\nend::include-me[])
tmp_include.close
input = %(include::#{tmp_include_path}[tag=include-me])
using_memory_logger do |logger|
output = convert_string_to_embedded input, safe: :safe, base_dir: tmp_include_dir
assert_empty logger.messages
assert_includes output, 'line included'
refute_includes output, 'line not included'
end
ensure
tmp_include.close!
end
end
test 'include directive does not select lines containing tag directives within selected tag region' do
input = <<~'EOS'
++++
include::fixtures/include-file.adoc[tags=snippet]
++++
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~'EOS'.chop
snippetA content
non-tagged content
snippetB content
EOS
assert_equal expected, output
end
test 'include directive skips lines inside tag which is negated' do
input = <<~'EOS'
----
include::fixtures/tagged-class-enclosed.rb[tags=all;!bark]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects all lines without a tag directive when value is double asterisk' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=**]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
else
'woof woof'
end
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects all lines except lines inside tag which is negated when value starts with double asterisk' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=**;!bark]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects all lines, including lines inside nested tags, except lines inside tag which is negated when value starts with double asterisk' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=**;!init]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
else
'woof woof'
end
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects all lines outside of tags when value is double asterisk followed by negated wildcard' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=**;!*]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~'EOS'.chop
class Dog
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive skips all tagged regions when value of tags attribute is negated wildcard' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=!*]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = %(class Dog\nend)
assert_includes output, %(<pre>#{expected}</pre>)
end
# FIXME this is a weird one since we'd expect it to only select the specified tags; but it's always been this way
test 'include directive selects all lines except for lines containing tag directive if value is double asterisk followed by nested tag names' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=**;bark-beagle;bark-all]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
else
'woof woof'
end
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
# FIXME this is a weird one since we'd expect it to only select the specified tags; but it's always been this way
test 'include directive selects all lines except for lines containing tag directive when value is double asterisk followed by outer tag name' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=**;bark]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
else
'woof woof'
end
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects all lines inside unspecified tags when value is negated double asterisk followed by negated tags' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=!**;!init]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~EOS.chop
\x20 def bark
\x20 if @breed == 'beagle'
\x20 'woof woof woof woof woof'
\x20 else
\x20 'woof woof'
\x20 end
\x20 end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects all lines except tag which is negated when value only contains negated tag' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tag=!bark]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects all lines except tags which are negated when value only contains negated tags' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=!bark;!init]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~'EOS'.chop
class Dog
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'should recognize tag wildcard if not at start of tags list' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=init;**;*;!bark-other]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
end
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects lines between tags when value of tags attribute is wildcard' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=*]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~EOS.chop
\x20 def initialize breed
\x20 @breed = breed
\x20 end
\x20 def bark
\x20 if @breed == 'beagle'
\x20 'woof woof woof woof woof'
\x20 else
\x20 'woof woof'
\x20 end
\x20 end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects lines inside tags when value of tags attribute is wildcard and tag surrounds content' do
input = <<~'EOS'
----
include::fixtures/tagged-class-enclosed.rb[tags=*]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
else
'woof woof'
end
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive selects lines inside all tags except tag which is negated when value of tags attribute is wildcard followed by negated tag' do
input = <<~'EOS'
----
include::fixtures/tagged-class-enclosed.rb[tags=*;!init]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
else
'woof woof'
end
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive skips all tagged regions except ones re-enabled when value of tags attribute is negated wildcard followed by tag name' do
['!*;init', '**;!*;init'].each do |pattern|
input = <<~EOS
----
include::fixtures/tagged-class.rb[tags=#{pattern}]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
end
test 'include directive includes regions outside tags and inside specified tags when value begins with negated wildcard' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=!*;bark]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
class Dog
def bark
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive includes lines inside tag except for lines inside nested tags when tag is followed by negated wildcard' do
['bark;!*', '!**;bark;!*', '!**;!*;bark'].each do |pattern|
input = <<~EOS
----
include::fixtures/tagged-class.rb[tags=#{pattern}]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~EOS.chop
\x20 def bark
\x20 end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
end
test 'include directive selects lines inside tag except for lines inside nested tags when tag is preceded by negated double asterisk and negated wildcard' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=!**;!*;bark]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~EOS.chop
\x20 def bark
\x20 end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive does not select lines inside tag that has been included then excluded' do
input = <<~'EOS'
----
include::fixtures/tagged-class.rb[tags=!*;init;!init]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~'EOS'.chop
class Dog
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'include directive only selects lines inside specified tag, even if proceeded by negated double asterisk' do
['bark', '!**;bark'].each do |pattern|
input = <<~EOS
----
include::fixtures/tagged-class.rb[tags=#{pattern}]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected = <<~EOS.chop
\x20 def bark
\x20 if @breed == 'beagle'
\x20 'woof woof woof woof woof'
\x20 else
\x20 'woof woof'
\x20 end
\x20 end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
end
test 'include directive selects lines inside specified tag and ignores lines inside a negated tag' do
input = <<~'EOS'
[indent=0]
----
include::fixtures/tagged-class.rb[tags=bark;!bark-other]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
end
end
EOS
assert_includes output, %(<pre>#{expected}</pre>)
end
test 'should warn if specified tag is not found in include file' do
input = 'include::fixtures/include-file.adoc[tag=no-such-tag]'
using_memory_logger do |logger|
convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_message logger, :WARN, %(~<stdin>: line 1: tag 'no-such-tag' not found in include file), Hash
end
end
test 'should not warn if specified negated tag is not found in include file' do
input = <<~'EOS'
----
include::fixtures/tagged-class-enclosed.rb[tag=!no-such-tag]
----
EOS
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
else
'woof woof'
end
end
end
EOS
using_memory_logger do |logger|
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_includes output, %(<pre>#{expected}</pre>)
assert_empty logger.messages
end
end
test 'should warn if specified tags are not found in include file' do
input = <<~'EOS'
++++
include::fixtures/include-file.adoc[tags=no-such-tag-b;no-such-tag-a]
++++
EOS
using_memory_logger do |logger|
convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
expected_tags = 'no-such-tag-b, no-such-tag-a'
assert_message logger, :WARN, %(~<stdin>: line 2: tags '#{expected_tags}' not found in include file), Hash
end
end
test 'should not warn if specified negated tags are not found in include file' do
input = <<~'EOS'
----
include::fixtures/tagged-class-enclosed.rb[tags=all;!no-such-tag;!unknown-tag]
----
EOS
expected = <<~EOS.chop
class Dog
def initialize breed
@breed = breed
end
def bark
if @breed == 'beagle'
'woof woof woof woof woof'
else
'woof woof'
end
end
end
EOS
using_memory_logger do |logger|
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_includes output, %(<pre>#{expected}</pre>)
assert_empty logger.messages
end
end
test 'should warn if specified tag in include file is not closed' do
input = <<~'EOS'
++++
include::fixtures/unclosed-tag.adoc[tag=a]
++++
EOS
using_memory_logger do |logger|
result = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_equal 'a', result
assert_message logger, :WARN, %(~<stdin>: line 2: detected unclosed tag 'a' starting at line 2 of include file), Hash
refute_nil logger.messages[0][:message][:include_location]
end
end
test 'should warn if end tag in included file is mismatched' do
input = <<~'EOS'
++++
include::fixtures/mismatched-end-tag.adoc[tags=a;b]
++++
EOS
inc_path = File.join DIRNAME, 'fixtures/mismatched-end-tag.adoc'
using_memory_logger do |logger|
result = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_equal %(a\nb), result
assert_message logger, :WARN, %(<stdin>: line 2: mismatched end tag (expected 'b' but found 'a') at line 5 of include file: #{inc_path}), Hash
refute_nil logger.messages[0][:message][:include_location]
end
end
test 'should warn if unexpected end tag is found in included file' do
input = <<~'EOS'
++++
include::fixtures/unexpected-end-tag.adoc[tags=a]
++++
EOS
inc_path = File.join DIRNAME, 'fixtures/unexpected-end-tag.adoc'
using_memory_logger do |logger|
result = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_equal 'a', result
assert_message logger, :WARN, %(<stdin>: line 2: unexpected end tag 'a' at line 4 of include file: #{inc_path}), Hash
refute_nil logger.messages[0][:message][:include_location]
end
end
test 'include directive ignores tags attribute when empty' do
['tag', 'tags'].each do |attr_name|
input = <<~EOS
++++
include::fixtures/include-file.xml[#{attr_name}=]
++++
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_match(/(?:tag|end)::/, output, 2)
end
end
test 'lines attribute takes precedence over tags attribute in include directive' do
input = 'include::fixtures/include-file.adoc[lines=1, tags=snippetA;snippetB]'
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_match(/first line of included content/, output)
refute_match(/snippetA content/, output)
refute_match(/snippetB content/, output)
end
test 'indent of included file can be reset to size of indent attribute' do
input = <<~'EOS'
[source, xml]
----
include::fixtures/basic-docinfo.xml[lines=2..3, indent=0]
----
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
result = xmlnodes_at_xpath('//pre', output, 1).text
assert_equal "<year>2013</year>\n<holder>Acmeâ„¢, Inc.</holder>", result
end
test 'should substitute attribute references in attrlist' do
input = <<~'EOS'
:name-of-tag: snippetA
include::fixtures/include-file.adoc[tag={name-of-tag}]
EOS
output = convert_string_to_embedded input, safe: :safe, base_dir: DIRNAME
assert_match(/snippetA content/, output)
refute_match(/snippetB content/, output)
refute_match(/non-tagged content/, output)
refute_match(/included content/, output)
end
test 'should fall back to built-in include directive behavior when not handled by include processor' do
input = 'include::fixtures/include-file.adoc[]'
include_processor = Class.new do
def initialize document; end
def handles? target
false
end
def process reader, target, attributes
raise 'TestIncludeHandler should not have been invoked'
end
end
document = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new document, input, nil, normalize: true
reader.instance_variable_set '@include_processors', [include_processor.new(document)]
lines = reader.read_lines
source = lines * ::Asciidoctor::LF
assert_match(/included content/, source)
end
test 'leveloffset attribute entries should be added to content if leveloffset attribute is specified' do
input = 'include::fixtures/main.adoc[]'
expected = <<~'EOS'.split ::Asciidoctor::LF
= Main Document
preamble
:leveloffset: +1
= Chapter A
content
:leveloffset!:
EOS
document = Asciidoctor.load input, safe: :safe, base_dir: DIRNAME, parse: false
assert_equal expected, document.reader.read_lines
end
test 'attributes are substituted in target of include directive' do
input = <<~'EOS'
:fixturesdir: fixtures
:ext: adoc
include::{fixturesdir}/include-file.{ext}[]
EOS
doc = document_from_string input, safe: :safe, base_dir: DIRNAME
output = doc.convert
assert_match(/included content/, output)
end
test 'line is skipped by default if target of include directive resolves to empty' do
input = 'include::{blank}[]'
using_memory_logger do |logger|
doc = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input, nil, normalize: true
line = reader.read_line
assert_equal 'Unresolved directive in <stdin> - include::{blank}[]', line
assert_message logger, :WARN, '<stdin>: line 1: include dropped because resolved target is blank: include::{blank}[]', Hash
end
end
test 'include is dropped if target contains missing attribute and attribute-missing is drop-line' do
input = 'include::{foodir}/include-file.adoc[]'
using_memory_logger Logger::INFO do |logger|
doc = empty_safe_document base_dir: DIRNAME, attributes: { 'attribute-missing' => 'drop-line' }
reader = Asciidoctor::PreprocessorReader.new doc, input, nil, normalize: true
line = reader.read_line
assert_nil line
assert_messages logger, [
[:INFO, 'dropping line containing reference to missing attribute: foodir'],
[:INFO, '<stdin>: line 1: include dropped due to missing attribute: include::{foodir}/include-file.adoc[]', Hash],
]
end
end
test 'line following dropped include is not dropped' do
input = <<~'EOS'
include::{foodir}/include-file.adoc[]
yo
EOS
using_memory_logger do |logger|
doc = empty_safe_document base_dir: DIRNAME, attributes: { 'attribute-missing' => 'warn' }
reader = Asciidoctor::PreprocessorReader.new doc, input, nil, normalize: true
line = reader.read_line
assert_equal 'Unresolved directive in <stdin> - include::{foodir}/include-file.adoc[]', line
line = reader.read_line
assert_equal 'yo', line
assert_messages logger, [
[:INFO, 'dropping line containing reference to missing attribute: foodir'],
[:WARN, '<stdin>: line 1: include dropped due to missing attribute: include::{foodir}/include-file.adoc[]', Hash],
]
end
end
test 'escaped include directive is left unprocessed' do
input = <<~'EOS'
\include::fixtures/include-file.adoc[]
\escape preserved here
EOS
doc = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input, nil, normalize: true
# we should be able to peek it multiple times and still have the backslash preserved
# this is the test for @unescape_next_line
assert_equal 'include::fixtures/include-file.adoc[]', reader.peek_line
assert_equal 'include::fixtures/include-file.adoc[]', reader.peek_line
assert_equal 'include::fixtures/include-file.adoc[]', reader.read_line
assert_equal '\\escape preserved here', reader.read_line
end
test 'include directive not at start of line is ignored' do
input = ' include::include-file.adoc[]'
para = block_from_string input
assert_equal 1, para.lines.size
# NOTE the space gets stripped because the line is treated as an inline literal
assert_equal :literal, para.context
assert_equal 'include::include-file.adoc[]', para.source
end
test 'include directive is disabled when max-include-depth attribute is 0' do
input = 'include::include-file.adoc[]'
para = block_from_string input, safe: :safe, attributes: { 'max-include-depth' => 0 }
assert_equal 1, para.lines.size
assert_equal 'include::include-file.adoc[]', para.source
end
test 'max-include-depth cannot be set by document' do
input = <<~'EOS'
:max-include-depth: 1
include::include-file.adoc[]
EOS
para = block_from_string input, safe: :safe, attributes: { 'max-include-depth' => 0 }
assert_equal 1, para.lines.size
assert_equal 'include::include-file.adoc[]', para.source
end
test 'include directive should be disabled if max include depth has been exceeded' do
input = 'include::fixtures/parent-include.adoc[depth=1]'
using_memory_logger do |logger|
pseudo_docfile = File.join DIRNAME, 'main.adoc'
doc = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input, Asciidoctor::Reader::Cursor.new(pseudo_docfile), normalize: true
lines = reader.readlines
assert_includes lines, 'include::grandchild-include.adoc[]'
assert_message logger, :ERROR, 'fixtures/child-include.adoc: line 3: maximum include depth of 1 exceeded', Hash
end
end
test 'include directive should be disabled if max include depth set in nested context has been exceeded' do
input = 'include::fixtures/parent-include-restricted.adoc[depth=3]'
using_memory_logger do |logger|
pseudo_docfile = File.join DIRNAME, 'main.adoc'
doc = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input, Asciidoctor::Reader::Cursor.new(pseudo_docfile), normalize: true
lines = reader.readlines
assert_includes lines, 'first line of child'
assert_includes lines, 'include::grandchild-include.adoc[]'
assert_message logger, :ERROR, 'fixtures/child-include.adoc: line 3: maximum include depth of 0 exceeded', Hash
end
end
test 'read_lines_until should not process lines if process option is false' do
lines = <<~'EOS'.lines
////
include::fixtures/no-such-file.adoc[]
////
EOS
doc = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, lines, nil, normalize: true
reader.read_line
result = reader.read_lines_until(terminator: '////', skip_processing: true)
assert_equal lines.map(&:chomp)[1..1], result
end
test 'skip_comment_lines should not process lines read' do
lines = <<~'EOS'.lines
////
include::fixtures/no-such-file.adoc[]
////
EOS
using_memory_logger do |logger|
doc = empty_safe_document base_dir: DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, lines, nil, normalize: true
reader.skip_comment_lines
assert reader.empty?
assert logger.empty?
end
end
end
context 'Conditional Inclusions' do
test 'process_line returns nil if cursor advanced' do
input = <<~'EOS'
ifdef::asciidoctor[]
Asciidoctor!
endif::asciidoctor[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
assert_nil reader.send :process_line, reader.lines.first
end
test 'peek_line advances cursor to next conditional line of content' do
input = <<~'EOS'
ifdef::asciidoctor[]
Asciidoctor!
endif::asciidoctor[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
assert_equal 1, reader.lineno
assert_equal 'Asciidoctor!', reader.peek_line
assert_equal 2, reader.lineno
end
test 'peek_lines should preprocess lines if direct is false' do
input = <<~'EOS'
The Asciidoctor
ifdef::asciidoctor[is in.]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
result = reader.peek_lines 2, false
assert_equal ['The Asciidoctor', 'is in.'], result
end
test 'peek_lines should not preprocess lines if direct is true' do
input = <<~'EOS'
The Asciidoctor
ifdef::asciidoctor[is in.]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
result = reader.peek_lines 2, true
assert_equal ['The Asciidoctor', 'ifdef::asciidoctor[is in.]'], result
end
test 'peek_lines should not prevent subsequent preprocessing of peeked lines' do
input = <<~'EOS'
The Asciidoctor
ifdef::asciidoctor[is in.]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
result = reader.peek_lines 2, true
result = reader.peek_lines 2, false
assert_equal ['The Asciidoctor', 'is in.'], result
end
test 'process_line returns line if cursor not advanced' do
input = <<~'EOS'
content
ifdef::asciidoctor[]
Asciidoctor!
endif::asciidoctor[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
refute_nil reader.send :process_line, reader.lines.first
end
test 'peek_line does not advance cursor when on a regular content line' do
input = <<~'EOS'
content
ifdef::asciidoctor[]
Asciidoctor!
endif::asciidoctor[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
assert_equal 1, reader.lineno
assert_equal 'content', reader.peek_line
assert_equal 1, reader.lineno
end
test 'peek_line returns nil if cursor advances past end of source' do
input = <<~'EOS'
ifdef::foobar[]
swallowed content
endif::foobar[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
assert_equal 1, reader.lineno
assert_nil reader.peek_line
assert_equal 4, reader.lineno
end
test 'peek_line returns nil if contents of skipped conditional is empty line' do
input = <<~'EOS'
ifdef::foobar[]
endif::foobar[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
assert_equal 1, reader.lineno
assert_nil reader.peek_line
end
test 'ifdef with defined attribute includes content' do
input = <<~'EOS'
ifdef::holygrail[]
There is a holy grail!
endif::holygrail[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'holygrail' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'There is a holy grail!', (lines * ::Asciidoctor::LF)
end
test 'ifdef with defined attribute includes text in brackets' do
input = <<~'EOS'
On our quest we go...
ifdef::holygrail[There is a holy grail!]
There was much rejoicing.
EOS
doc = Asciidoctor::Document.new input, attributes: { 'holygrail' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "On our quest we go...\nThere is a holy grail!\nThere was much rejoicing.", (lines * ::Asciidoctor::LF)
end
test 'ifdef with defined attribute processes include directive in brackets' do
input = 'ifdef::asciidoctor-version[include::fixtures/include-file.adoc[tag=snippetA]]'
doc = Asciidoctor::Document.new input, safe: :safe, base_dir: DIRNAME
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'snippetA content', lines[0]
end
test 'ifdef attribute name is not case sensitive' do
input = <<~'EOS'
ifdef::showScript[]
The script is shown!
endif::showScript[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'showscript' => '' }
result = doc.reader.read
assert_equal 'The script is shown!', result
end
test 'ifndef with defined attribute does not include text in brackets' do
input = <<~'EOS'
On our quest we go...
ifndef::hardships[There is a holy grail!]
There was no rejoicing.
EOS
doc = Asciidoctor::Document.new input, attributes: { 'hardships' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "On our quest we go...\nThere was no rejoicing.", (lines * ::Asciidoctor::LF)
end
test 'include with non-matching nested exclude' do
input = <<~'EOS'
ifdef::grail[]
holy
ifdef::swallow[]
swallow
endif::swallow[]
grail
endif::grail[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'grail' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "holy\ngrail", (lines * ::Asciidoctor::LF)
end
test 'nested excludes with same condition' do
input = <<~'EOS'
ifndef::grail[]
ifndef::grail[]
not here
endif::grail[]
endif::grail[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'grail' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', (lines * ::Asciidoctor::LF)
end
test 'include with nested exclude of inverted condition' do
input = <<~'EOS'
ifdef::grail[]
holy
ifndef::grail[]
not here
endif::grail[]
grail
endif::grail[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'grail' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "holy\ngrail", (lines * ::Asciidoctor::LF)
end
test 'exclude with matching nested exclude' do
input = <<~'EOS'
poof
ifdef::swallow[]
no
ifdef::swallow[]
swallow
endif::swallow[]
here
endif::swallow[]
gone
EOS
doc = Asciidoctor::Document.new input, attributes: { 'grail' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "poof\ngone", (lines * ::Asciidoctor::LF)
end
test 'exclude with nested include using shorthand end' do
input = <<~'EOS'
poof
ifndef::grail[]
no grail
ifndef::swallow[]
or swallow
endif::[]
in here
endif::[]
gone
EOS
doc = Asciidoctor::Document.new input, attributes: { 'grail' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "poof\ngone", (lines * ::Asciidoctor::LF)
end
test 'ifdef with one alternative attribute set includes content' do
input = <<~'EOS'
ifdef::holygrail,swallow[]
Our quest is complete!
endif::holygrail,swallow[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'swallow' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Our quest is complete!', (lines * ::Asciidoctor::LF)
end
test 'ifdef with no alternative attributes set does not include content' do
input = <<~'EOS'
ifdef::holygrail,swallow[]
Our quest is complete!
endif::holygrail,swallow[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', (lines * ::Asciidoctor::LF)
end
test 'ifdef with all required attributes set includes content' do
input = <<~'EOS'
ifdef::holygrail+swallow[]
Our quest is complete!
endif::holygrail+swallow[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'holygrail' => '', 'swallow' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Our quest is complete!', (lines * ::Asciidoctor::LF)
end
test 'ifdef with missing required attributes does not include content' do
input = <<~'EOS'
ifdef::holygrail+swallow[]
Our quest is complete!
endif::holygrail+swallow[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'holygrail' => '' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', (lines * ::Asciidoctor::LF)
end
test 'ifdef should permit leading, trailing, and repeat operators' do
{
'asciidoctor,' => 'content',
',asciidoctor' => 'content',
'asciidoctor+' => '',
'+asciidoctor' => '',
'asciidoctor,,asciidoctor-version' => 'content',
'asciidoctor++asciidoctor-version' => '',
}.each do |condition, expected|
input = <<~EOS
ifdef::#{condition}[]
content
endif::[]
EOS
assert_equal expected, (document_from_string input, parse: false).reader.read
end
end
test 'ifndef with undefined attribute includes block' do
input = <<~'EOS'
ifndef::holygrail[]
Our quest continues to find the holy grail!
endif::holygrail[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Our quest continues to find the holy grail!', (lines * ::Asciidoctor::LF)
end
test 'ifndef with one alternative attribute set does not include content' do
input = <<~'EOS'
ifndef::holygrail,swallow[]
Our quest is complete!
endif::holygrail,swallow[]
EOS
result = (Asciidoctor::Document.new input, attributes: { 'swallow' => '' }).reader.read
assert_empty result
end
test 'ifndef with both alternative attributes set does not include content' do
input = <<~'EOS'
ifndef::holygrail,swallow[]
Our quest is complete!
endif::holygrail,swallow[]
EOS
result = (Asciidoctor::Document.new input, attributes: { 'swallow' => '', 'holygrail' => '' }).reader.read
assert_empty result
end
test 'ifndef with no alternative attributes set includes content' do
input = <<~'EOS'
ifndef::holygrail,swallow[]
Our quest is complete!
endif::holygrail,swallow[]
EOS
result = (Asciidoctor::Document.new input).reader.read
assert_equal 'Our quest is complete!', result
end
test 'ifndef with no required attributes set includes content' do
input = <<~'EOS'
ifndef::holygrail+swallow[]
Our quest is complete!
endif::holygrail+swallow[]
EOS
result = (Asciidoctor::Document.new input).reader.read
assert_equal 'Our quest is complete!', result
end
test 'ifndef with all required attributes set does not include content' do
input = <<~'EOS'
ifndef::holygrail+swallow[]
Our quest is complete!
endif::holygrail+swallow[]
EOS
result = (Asciidoctor::Document.new input, attributes: { 'swallow' => '', 'holygrail' => '' }).reader.read
assert_empty result
end
test 'ifndef with at least one required attributes set does not include content' do
input = <<~'EOS'
ifndef::holygrail+swallow[]
Our quest is complete!
endif::holygrail+swallow[]
EOS
result = (Asciidoctor::Document.new input, attributes: { 'swallow' => '' }).reader.read
assert_equal 'Our quest is complete!', result
end
test 'ifdef around empty line does not introduce extra line' do
input = <<~'EOS'
before
ifdef::no-such-attribute[]
endif::[]
after
EOS
result = (Asciidoctor::Document.new input).reader.read
assert_equal %(before\nafter), result
end
test 'should log warning if endif is unmatched' do
input = <<~'EOS'
Our quest is complete!
endif::on-quest[]
EOS
using_memory_logger do |logger|
result = (Asciidoctor::Document.new input, attributes: { 'on-quest' => '' }).reader.read
assert_equal 'Our quest is complete!', result
assert_message logger, :ERROR, '~<stdin>: line 2: unmatched preprocessor directive: endif::on-quest[]', Hash
end
end
test 'should log warning if endif is mismatched' do
input = <<~'EOS'
ifdef::on-quest[]
Our quest is complete!
endif::on-journey[]
EOS
using_memory_logger do |logger|
result = (Asciidoctor::Document.new input, attributes: { 'on-quest' => '' }, sourcemap: true).reader.read
assert_equal 'Our quest is complete!', result
assert_messages logger, [
[:ERROR, '~<stdin>: line 3: mismatched preprocessor directive: endif::on-journey[]', Hash],
[:ERROR, '~<stdin>: line 1: detected unterminated preprocessor conditional directive: ifdef::on-quest[]', Hash],
]
end
end
test 'should log warning if endif contains text' do
input = <<~'EOS'
ifdef::on-quest[]
Our quest is complete!
endif::on-quest[complete!]
fin
EOS
using_memory_logger do |logger|
result = (Asciidoctor::Document.new input, attributes: { 'on-quest' => '' }, sourcemap: true).reader.read
assert_equal %(Our quest is complete!\nfin), result
assert_messages logger, [
[:ERROR, '~<stdin>: line 3: malformed preprocessor directive - text not permitted: endif::on-quest[complete!]', Hash],
[:ERROR, '~<stdin>: line 1: detected unterminated preprocessor conditional directive: ifdef::on-quest[]', Hash],
]
end
end
test 'escaped ifdef is unescaped and ignored' do
input = <<~'EOS'
\ifdef::holygrail[]
content
\endif::holygrail[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "ifdef::holygrail[]\ncontent\nendif::holygrail[]", (lines * ::Asciidoctor::LF)
end
test 'ifeval comparing missing attribute to nil includes content' do
input = <<~'EOS'
ifeval::['{foo}' == '']
No foo for you!
endif::[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'No foo for you!', (lines * ::Asciidoctor::LF)
end
test 'ifeval comparing missing attribute to 0 drops content' do
input = <<~'EOS'
ifeval::[{leveloffset} == 0]
I didn't make the cut!
endif::[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', (lines * ::Asciidoctor::LF)
end
test 'ifeval running unsupported operation on missing attribute drops content' do
input = <<~'EOS'
ifeval::[{leveloffset} >= 3]
I didn't make the cut!
endif::[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', (lines * ::Asciidoctor::LF)
end
test 'ifeval running invalid operation drops content' do
input = <<~'EOS'
ifeval::[{asciidoctor-version} > true]
I didn't make the cut!
endif::[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', (lines * ::Asciidoctor::LF)
end
test 'ifeval comparing double-quoted attribute to matching string includes content' do
input = <<~'EOS'
ifeval::["{gem}" == "asciidoctor"]
Asciidoctor it is!
endif::[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'gem' => 'asciidoctor' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Asciidoctor it is!', (lines * ::Asciidoctor::LF)
end
test 'ifeval comparing single-quoted attribute to matching string includes content' do
input = <<~'EOS'
ifeval::['{gem}' == 'asciidoctor']
Asciidoctor it is!
endif::[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'gem' => 'asciidoctor' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Asciidoctor it is!', (lines * ::Asciidoctor::LF)
end
test 'ifeval comparing quoted attribute to non-matching string drops content' do
input = <<~'EOS'
ifeval::['{gem}' == 'asciidoctor']
Asciidoctor it is!
endif::[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'gem' => 'tilt' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', (lines * ::Asciidoctor::LF)
end
test 'ifeval comparing attribute to lower version number includes content' do
input = <<~'EOS'
ifeval::['{asciidoctor-version}' >= '0.1.0']
That version will do!
endif::[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'That version will do!', (lines * ::Asciidoctor::LF)
end
test 'ifeval comparing attribute to self includes content' do
input = <<~'EOS'
ifeval::['{asciidoctor-version}' == '{asciidoctor-version}']
Of course it's the same!
endif::[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Of course it\'s the same!', (lines * ::Asciidoctor::LF)
end
test 'ifeval arguments can be transposed' do
input = <<~'EOS'
ifeval::['0.1.0' <= '{asciidoctor-version}']
That version will do!
endif::[]
EOS
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'That version will do!', (lines * ::Asciidoctor::LF)
end
test 'ifeval matching numeric equality includes content' do
input = <<~'EOS'
ifeval::[{rings} == 1]
One ring to rule them all!
endif::[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'rings' => '1' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'One ring to rule them all!', (lines * ::Asciidoctor::LF)
end
test 'ifeval matching numeric inequality includes content' do
input = <<~'EOS'
ifeval::[{rings} != 0]
One ring to rule them all!
endif::[]
EOS
doc = Asciidoctor::Document.new input, attributes: { 'rings' => '1' }
reader = doc.reader
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'One ring to rule them all!', (lines * ::Asciidoctor::LF)
end
test 'should warn if ifeval has target' do
input = <<~'EOS'
ifeval::target[1 == 1]
content
EOS
using_memory_logger do |logger|
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
lines << reader.read_line while reader.has_more_lines?
assert_equal 'content', (lines * ::Asciidoctor::LF)
assert_message logger, :ERROR, '~<stdin>: line 1: malformed preprocessor directive - target not permitted: ifeval::target[1 == 1]', Hash
end
end
test 'should warn if ifeval has invalid expression' do
input = <<~'EOS'
ifeval::[1 | 2]
content
EOS
using_memory_logger do |logger|
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
lines << reader.read_line while reader.has_more_lines?
assert_equal 'content', (lines * ::Asciidoctor::LF)
assert_message logger, :ERROR, '~<stdin>: line 1: malformed preprocessor directive - invalid expression: ifeval::[1 | 2]', Hash
end
end
test 'should warn if ifeval is missing expression' do
input = <<~'EOS'
ifeval::[]
content
EOS
using_memory_logger do |logger|
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
lines << reader.read_line while reader.has_more_lines?
assert_equal 'content', (lines * ::Asciidoctor::LF)
assert_message logger, :ERROR, '~<stdin>: line 1: malformed preprocessor directive - missing expression: ifeval::[]', Hash
end
end
test 'ifdef with no target is ignored' do
input = <<~'EOS'
ifdef::[]
content
EOS
using_memory_logger do |logger|
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
lines << reader.read_line while reader.has_more_lines?
assert_equal 'content', (lines * ::Asciidoctor::LF)
assert_message logger, :ERROR, '~<stdin>: line 1: malformed preprocessor directive - missing target: ifdef::[]', Hash
end
end
test 'should not warn about invalid ifdef preprocessor directive if already skipping' do
input = <<~'EOS'
ifdef::attribute-not-set[]
foo
ifdef::[]
bar
endif::[]
baz
EOS
using_memory_logger do |logger|
result = (Asciidoctor::Document.new input).reader.read
assert_equal 'baz', result
assert_empty logger
end
end
test 'should not warn about invalid ifeval preprocessor directive if already skipping' do
input = <<~'EOS'
ifdef::attribute-not-set[]
foo
ifeval::[]
bar
endif::[]
baz
EOS
using_memory_logger do |logger|
result = (Asciidoctor::Document.new input).reader.read
assert_equal 'baz', result
assert_empty logger
end
end
test 'should log error with end position if preprocessor conditional directive is unterminated' do
input = <<~'EOS'
before
ifdef::not-set[]
skip
these
lines
fin
EOS
using_memory_logger do |logger|
doc = Asciidoctor::Document.new input
reader = doc.reader
lines = []
lines << reader.read_line while reader.has_more_lines?
assert_equal 'before', (lines * Asciidoctor::LF)
assert_message logger, :ERROR, '~<stdin>: line 6: detected unterminated preprocessor conditional directive: ifdef::not-set[]', Hash
end
end
test 'should log error with start location if preprocessor conditional directive is unterminated and sourcemap is set' do
input = <<~'EOS'
before
ifdef::not-set[]
skip
these
lines
fin
EOS
using_memory_logger do |logger|
doc = Asciidoctor::Document.new input, sourcemap: true
reader = doc.reader
lines = []
lines << reader.read_line while reader.has_more_lines?
assert_equal 'before', (lines * Asciidoctor::LF)
assert_message logger, :ERROR, '~<stdin>: line 2: detected unterminated preprocessor conditional directive: ifdef::not-set[]', Hash
end
end
test 'should log error if multiple preprocessor conditional directives are unterminated' do
input = <<~'EOS'
before
ifdef::not-set[]
skip
these
lines
ifeval::[1 == 2]
{asciidoctor-version}
fin
EOS
using_memory_logger do |logger|
doc = Asciidoctor::Document.new input, sourcemap: true
reader = doc.reader
lines = []
lines << reader.read_line while reader.has_more_lines?
assert_equal 'before', (lines * Asciidoctor::LF)
assert_messages logger, [
[:ERROR, '~<stdin>: line 2: detected unterminated preprocessor conditional directive: ifdef::not-set[]', Hash],
[:ERROR, '~<stdin>: line 6: detected unterminated preprocessor conditional directive: ifeval::[1 == 2]', Hash],
]
end
end
test 'should not fail to process preprocessor directive that evaluates to false and has a large number of lines' do
lines = (%w(data) * 5000) * ?\n
input = <<~EOS
before
ifdef::attribute-not-set[]
#{lines}
endif::attribute-not-set[]
after
EOS
doc = Asciidoctor.load input
assert_equal 2, doc.blocks.size
assert_equal 'before', doc.blocks[0].source
assert_equal 'after', doc.blocks[1].source
end
test 'should not fail to process lines if reader contains a nil entry' do
input = ['before', '', '', '', 'after']
doc = Asciidoctor.load input, extensions: proc {
preprocessor do
process do |_, reader|
reader.source_lines[2] = nil
nil
end
end
}
assert_equal 2, doc.blocks.size
assert_equal 'before', doc.blocks[0].source
assert_equal 'after', doc.blocks[1].source
end
end
end
end
|