1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748
|
#!/usr/bin/perl -w
use strict;
use warnings;
use 5.010;
use utf8;
use Test::More tests => 802;
# use Test::More 'no_plan';
use App::Sqitch;
use App::Sqitch::Plan;
use App::Sqitch::Target;
use Path::Class;
use Test::Exception;
use Test::NoWarnings;
use Test::MockModule;
use Test::MockObject::Extends;
use Test::Warn 0.31 qw(warning_is);
use Time::HiRes qw(sleep);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use App::Sqitch::DateTime;
use List::Util qw(max);
use lib 't/lib';
use MockOutput;
use TestConfig;
use Clone qw(clone);
my $CLASS;
BEGIN {
$CLASS = 'App::Sqitch::Engine';
use_ok $CLASS or die;
delete $ENV{PGDATABASE};
delete $ENV{PGUSER};
delete $ENV{USER};
}
can_ok $CLASS, qw(load new name run_deploy run_revert run_verify run_upgrade uri);
my ($is_deployed_tag, $is_deployed_change) = (0, 0);
my @deployed_changes;
my @deployed_change_ids;
my @resolved;
my @requiring;
my @load_changes;
my $offset_change;
my $die = '';
my $record_work = 1;
my ( $earliest_change_id, $latest_change_id, $initialized );
my $registry_version = $CLASS->registry_release;
my $script_hash;
my $try_lock_ret = 1;
my $wait_lock_ret = 0;
ENGINE: {
# Stub out an engine.
package App::Sqitch::Engine::whu;
use Moo;
use App::Sqitch::X qw(hurl);
extends 'App::Sqitch::Engine';
$INC{'App/Sqitch/Engine/whu.pm'} = __FILE__;
my @SEEN;
for my $meth (qw(
run_file
log_deploy_change
log_revert_change
log_fail_change
)) {
no strict 'refs';
*$meth = sub {
hurl 'AAAH!' if $die eq $meth;
push @SEEN => [ $meth => $_[1] ];
};
}
sub is_deployed_tag { push @SEEN => [ is_deployed_tag => $_[1] ]; $is_deployed_tag }
sub is_deployed_change { push @SEEN => [ is_deployed_change => $_[1] ]; $is_deployed_change }
sub are_deployed_changes { shift; push @SEEN => [ are_deployed_changes => [@_] ]; @deployed_change_ids }
sub change_id_for { shift; push @SEEN => [ change_id_for => {@_} ]; shift @resolved }
sub change_offset_from_id { shift; push @SEEN => [ change_offset_from_id => [@_] ]; $offset_change }
sub change_id_offset_from_id { shift; push @SEEN => [ change_id_offset_from_id => [@_] ]; $_[0] }
sub changes_requiring_change { push @SEEN => [ changes_requiring_change => $_[1] ]; @{ shift @requiring } }
sub earliest_change_id { push @SEEN => [ earliest_change_id => $_[1] ]; $earliest_change_id }
sub latest_change_id { push @SEEN => [ latest_change_id => $_[1] ]; $latest_change_id }
sub current_state { push @SEEN => [ current_state => $_[1] ]; $latest_change_id ? { change => 'what', change_id => $latest_change_id, script_hash => $script_hash } : undef }
sub initialized { push @SEEN => 'initialized'; $initialized }
sub initialize { push @SEEN => 'initialize' }
sub register_project { push @SEEN => 'register_project' }
sub deployed_changes { push @SEEN => [ deployed_changes => $_[1] ]; @deployed_changes }
sub load_change { push @SEEN => [ load_change => $_[1] ]; @load_changes }
sub deployed_changes_since { push @SEEN => [ deployed_changes_since => $_[1] ]; @deployed_changes }
sub mock_check_deploy { shift; push @SEEN => [ check_deploy_dependencies => [@_] ] }
sub mock_check_revert { shift; push @SEEN => [ check_revert_dependencies => [@_] ] }
sub mock_lock { shift; push @SEEN => [ lock_destination => [@_] ] }
sub begin_work { push @SEEN => ['begin_work'] if $record_work }
sub finish_work { push @SEEN => ['finish_work'] if $record_work }
sub log_new_tags { push @SEEN => [ log_new_tags => $_[1] ]; $_[0] }
sub _update_script_hashes { push @SEEN => ['_update_script_hashes']; $_[0] }
sub upgrade_registry { push @SEEN => 'upgrade_registry' }
sub seen { [@SEEN] }
after seen => sub { @SEEN = () };
sub name_for_change_id { return 'bugaboo' }
sub registry_version { $registry_version }
sub wait_lock { push @SEEN => 'wait_lock'; $wait_lock_ret }
sub try_lock { $try_lock_ret }
}
my $config = TestConfig->new(
'core.engine' => 'sqlite',
'core.top_dir' => dir(qw(t sql))->stringify,
'core.plan_file' => file(qw(t plans multi.plan))->stringify,
);
ok my $sqitch = App::Sqitch->new(config => $config),
'Load a sqitch sqitch object';
my $mock_engine = Test::MockModule->new($CLASS);
##############################################################################
# Test new().
my $target = App::Sqitch::Target->new( sqitch => $sqitch );
throws_ok { $CLASS->new( sqitch => $sqitch ) }
qr/\QMissing required arguments: target/,
'Should get an exception for missing sqitch param';
throws_ok { $CLASS->new( target => $target ) }
qr/\QMissing required arguments: sqitch/,
'Should get an exception for missing sqitch param';
my $array = [];
throws_ok { $CLASS->new({ sqitch => $array, target => $target }) }
qr/\QReference [] did not pass type constraint "Sqitch"/,
'Should get an exception for array sqitch param';
throws_ok { $CLASS->new({ sqitch => $sqitch, target => $array }) }
qr/\QReference [] did not pass type constraint "Target"/,
'Should get an exception for array target param';
throws_ok { $CLASS->new({ sqitch => 'foo', target => $target }) }
qr/\QValue "foo" did not pass type constraint "Sqitch"/,
'Should get an exception for string sqitch param';
throws_ok { $CLASS->new({ sqitch => $sqitch, target => 'foo' }) }
qr/\QValue "foo" did not pass type constraint "Target"/,
'Should get an exception for string target param';
isa_ok $CLASS->new({sqitch => $sqitch, target => $target}), $CLASS, 'Engine';
##############################################################################
# Test load().
$config->update('core.engine' => 'whu');
$target = App::Sqitch::Target->new( sqitch => $sqitch );
ok my $engine = $CLASS->load({
sqitch => $sqitch,
target => $target,
}), 'Load an engine';
isa_ok $engine, 'App::Sqitch::Engine::whu';
is $engine->sqitch, $sqitch, 'The sqitch attribute should be set';
# Test handling of an invalid engine.
my $unknown_target = App::Sqitch::Target->new(
sqitch => $sqitch,
uri => URI::db->new('db:nonexistent:')
);
throws_ok { $CLASS->load({ sqitch => $sqitch, target => $unknown_target }) }
'App::Sqitch::X', 'Should die on unknown target';
is $@->message, __x('Unknown engine: {engine}', engine => 'nonexistent'),
'Should get load error message';
like $@->previous_exception, qr/\QCan't locate/,
'Should have relevant previous exception';
NOENGINE: {
# Test handling of no target.
throws_ok { $CLASS->load({ sqitch => $sqitch }) } 'App::Sqitch::X',
'No target should die';
is $@->message, 'Missing "target" parameter to load()',
'It should be the expected message';
}
# Test handling a bad engine implementation.
use lib 't/lib';
my $bad_target = App::Sqitch::Target->new(
sqitch => $sqitch,
uri => URI::db->new('db:bad:')
);
throws_ok { $CLASS->load({ sqitch => $sqitch, target => $bad_target }) }
'App::Sqitch::X', 'Should die on bad engine module';
is $@->message, __x('Unknown engine: {engine}', engine => 'bad'),
'Should get another load error message';
like $@->previous_exception, qr/^LOL BADZ/,
'Should have relevant previous exception from the bad module';
##############################################################################
# Test run methods.
ok $engine->run_deploy('deploy');
is_deeply $engine->seen, [[qw(run_file deploy)]],
'run_deploy have called run_file';
ok $engine->run_revert('revert');
is_deeply $engine->seen, [[qw(run_file revert)]],
'run_revert have called run_file';
ok $engine->run_verify('verify');
is_deeply $engine->seen, [[qw(run_file verify)]],
'run_verify have called run_file';
ok $engine->run_upgrade('upgrade');
is_deeply $engine->seen, [[qw(run_file upgrade)]],
'run_upgrade have called run_file';
##############################################################################
# Test name.
can_ok $CLASS, 'name';
ok $engine = $CLASS->new({ sqitch => $sqitch, target => $target }),
"Create a $CLASS object";
throws_ok { $engine->name } 'App::Sqitch::X',
'Should get error from base engine name';
is $@->ident, 'engine', 'Name error ident should be "engine"';
is $@->message, __('No engine specified; specify via target or core.engine'),
'Name error message should be correct';
ok $engine = App::Sqitch::Engine::whu->new({sqitch => $sqitch, target => $target}),
'Create a subclass name object';
is $engine->name, 'whu', 'Subclass oject name should be "whu"';
is +App::Sqitch::Engine::whu->name, 'whu', 'Subclass class name should be "whu"';
##############################################################################
# Test config_vars.
can_ok $CLASS, 'config_vars';
is_deeply [App::Sqitch::Engine->config_vars], [
target => 'any',
registry => 'any',
client => 'any',
], 'Should have database and client in engine base class';
##############################################################################
# Test variables.
can_ok $CLASS, qw(variables set_variables clear_variables);
is_deeply [$engine->variables], [], 'Should have no variables';
ok $engine->set_variables(foo => 'bar'), 'Add a variable';
is_deeply [$engine->variables], [foo => 'bar'], 'Should have the variable';
ok $engine->set_variables(foo => 'baz', whu => 'hi', yo => 'stellar'),
'Set more variables';
is_deeply {$engine->variables}, {foo => 'baz', whu => 'hi', yo => 'stellar'},
'Should have all of the variables';
$engine->clear_variables;
is_deeply [$engine->variables], [], 'Should again have no variables';
##############################################################################
# Test target.
ok $engine = $CLASS->load({
sqitch => $sqitch,
target => $target,
}), 'Load engine';
is $engine->target, $target, 'Target should be as passed';
# Make sure password is removed from the target.
ok $engine = $CLASS->load({
sqitch => $sqitch,
target => $target,
uri => URI->new('db:whu://foo:bar@localhost/blah'),
}), 'Load engine with URI with password';
isa_ok $engine->target, 'App::Sqitch::Target', 'target attribute';
##############################################################################
# Test destination.
ok $engine = $CLASS->load({
sqitch => $sqitch,
target => $target,
}), 'Load engine';
is $engine->destination, 'db:whu:', 'Destination should be URI string';
is $engine->registry_destination, $engine->destination,
'Rgistry destination should be the same as destination';
# Make sure password is removed from the destination.
my $long_target = App::Sqitch::Target->new(
sqitch => $sqitch,
uri => URI->new('db:whu://foo:bar@localhost/blah'),
);
ok $engine = $CLASS->load({
sqitch => $sqitch,
target => $long_target,
}), 'Load engine with URI with password';
like $engine->destination, qr{^db:whu://foo:?\@localhost/blah$},
'Destination should not include password';
is $engine->registry_destination, $engine->destination,
'Registry destination should again be the same as destination';
##############################################################################
# Test _check_registry.
can_ok $engine, '_check_registry';
ok $engine->_check_registry, 'Registry should be fine at current version';
# Make the registry non-existent.
$registry_version = 0;
$initialized = 0;
throws_ok { $engine->_check_registry } 'App::Sqitch::X',
'Should get error for non-existent registry';
is $@->ident, 'engine', 'Non-existent registry error ident should be "engine"';
is $@->message, __x(
'No registry found in {destination}. Have you ever deployed?',
destination => $engine->registry_destination,
), 'Non-existent registry error message should be correct';
$engine->seen;
# Make sure it's checked on revert and verify.
for my $meth (qw(revert verify)) {
throws_ok { $engine->$meth(undef, 1, 1) } 'App::Sqitch::X', "Should get error from $meth";
is $@->ident, 'engine', qq{$meth registry error ident should be "engine"};
is $@->message, __x(
'No registry found in {destination}. Have you ever deployed?',
destination => $engine->registry_destination,
), "$meth registry error message should be correct";
$engine->seen;
}
# Make the registry out-of-date.
$registry_version = 0.1;
throws_ok { $engine->_check_registry } 'App::Sqitch::X',
'Should get error for out-of-date registry';
is $@->ident, 'engine', 'Out-of-date registry error ident should be "engine"';
is $@->message, __x(
'Registry is at version {old} but latest is {new}. Please run the "upgrade" command',
old => 0.1,
new => $engine->registry_release,
), 'Out-of-date registry error message should be correct';
# Send the registry to the future.
$registry_version = 999.99;
throws_ok { $engine->_check_registry } 'App::Sqitch::X',
'Should get error for future registry';
is $@->ident, 'engine', 'Future registry error ident should be "engine"';
is $@->message, __x(
'Registry version is {old} but {new} is the latest known. Please upgrade Sqitch',
old => 999.99,
new => $engine->registry_release,
), 'Future registry error message should be correct';
# Restore the registry version.
$registry_version = $CLASS->registry_release;
##############################################################################
# Test abstract methods.
ok $engine = $CLASS->new({
sqitch => $sqitch,
target => $target,
}), "Create a $CLASS object again";
for my $abs (qw(
initialized
initialize
register_project
run_file
run_handle
log_deploy_change
log_fail_change
log_revert_change
log_new_tags
is_deployed_tag
is_deployed_change
are_deployed_changes
change_id_for
changes_requiring_change
earliest_change_id
latest_change_id
deployed_changes
deployed_changes_since
load_change
name_for_change_id
current_state
current_changes
current_tags
search_events
registered_projects
change_offset_from_id
change_id_offset_from_id
wait_lock
registry_version
_update_script_hashes
)) {
throws_ok { $engine->$abs } qr/\Q$CLASS has not implemented $abs()/,
"Should get an unimplemented exception from $abs()"
}
##############################################################################
# Test _load_changes().
can_ok $engine, '_load_changes';
my $now = App::Sqitch::DateTime->now;
my $plan = $target->plan;
# Mock App::Sqitch::DateTime so that change tags all have the same
# timestamps.
my $mock_dt = Test::MockModule->new('App::Sqitch::DateTime');
$mock_dt->mock(now => $now);
for my $spec (
[ 'no change' => [] ],
[ 'undef' => [undef] ],
['no tags' => [
{
id => 'c8a60f1a4fdab2cf91ee7f6da08f4ac52a732b4d',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
},
]],
['multiple hashes with no tags' => [
{
id => 'c8a60f1a4fdab2cf91ee7f6da08f4ac52a732b4d',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
},
{
id => 'ae5b4397f78dfc6072ccf6d505b17f9624d0e3b0',
name => 'booyah',
project => 'engine',
note => 'Whatever',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
},
]],
['tags' => [
{
id => 'c8a60f1a4fdab2cf91ee7f6da08f4ac52a732b4d',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
tags => [qw(foo bar)],
},
]],
['tags with leading @' => [
{
id => 'c8a60f1a4fdab2cf91ee7f6da08f4ac52a732b4d',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
tags => [qw(@foo @bar)],
},
]],
['multiple hashes with tags' => [
{
id => 'c8a60f1a4fdab2cf91ee7f6da08f4ac52a732b4d',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
tags => [qw(foo bar)],
},
{
id => 'ae5b4397f78dfc6072ccf6d505b17f9624d0e3b0',
name => 'booyah',
project => 'engine',
note => 'Whatever',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
tags => [qw(@foo @bar)],
},
]],
['reworked change' => [
{
id => 'c8a60f1a4fdab2cf91ee7f6da08f4ac52a732b4d',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
tags => [qw(foo bar)],
},
{
id => 'df18b5c9739772b210fcf2c4edae095e2f6a4163',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
rtags => [qw(howdy)],
},
]],
['reworked change & multiple tags' => [
{
id => 'c8a60f1a4fdab2cf91ee7f6da08f4ac52a732b4d',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
tags => [qw(foo bar)],
},
{
id => 'ae5b4397f78dfc6072ccf6d505b17f9624d0e3b0',
name => 'booyah',
project => 'engine',
note => 'Whatever',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
tags => [qw(@settle)],
},
{
id => 'df18b5c9739772b210fcf2c4edae095e2f6a4163',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
rtags => [qw(booyah howdy)],
},
]],
['doubly reworked change' => [
{
id => 'c8a60f1a4fdab2cf91ee7f6da08f4ac52a732b4d',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
tags => [qw(foo bar)],
},
{
id => 'df18b5c9739772b210fcf2c4edae095e2f6a4163',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
rtags => [qw(howdy)],
tags => [qw(why)],
},
{
id => 'f38ceb6efcf2a813104b7bb08cc90667033ddf6b',
name => 'howdy',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
rtags => [qw(howdy)],
},
]],
) {
my ($desc, $args) = @{ $spec };
my %seen;
is_deeply [ $engine->_load_changes(@{ $args }) ], [ map {
my $tags = $_->{tags} || [];
my $rtags = $_->{rtags};
my $c = App::Sqitch::Plan::Change->new(%{ $_ }, plan => $plan );
$c->add_tag(App::Sqitch::Plan::Tag->new(
name => $_,
plan => $plan,
change => $c,
timestamp => $now,
)) for map { s/^@//; $_ } @{ $tags };
if (my $dupe = $seen{ $_->{name} }) {
$dupe->add_rework_tags( map { $seen{$_}->tags } @{ $rtags });
}
$seen{ $_->{name} } = $c;
$c;
} grep { $_ } @{ $args }], "Should load changes with $desc";
}
# Rework a change in the plan.
my $you = $plan->get('you');
my $this_rocks = $plan->get('this/rocks');
my $hey_there = $plan->get('hey-there');
ok my $rev_change = $plan->rework( name => 'you' ), 'Rework change "you"';
ok $plan->tag( name => '@beta1' ), 'Tag @beta1';
# Load changes
for my $spec (
[ 'Unplanned change' => [
{
id => 'c8a60f1a4fdab2cf91ee7f6da08f4ac52a732b4d',
name => 'you',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
},
{
id => 'df18b5c9739772b210fcf2c4edae095e2f6a4163',
name => 'this/rocks',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
},
]],
[ 'reworked change without reworked version deployed' => [
{
id => $you->id,
name => $you->name,
project => $you->project,
note => $you->note,
planner_name => $you->planner_name,
planner_email => $you->planner_email,
timestamp => $you->timestamp,
ptags => [ $hey_there->tags, $you->tags ],
},
{
id => $this_rocks->id,
name => 'this/rocks',
project => 'engine',
note => 'For realz',
planner_name => 'Barack Obama',
planner_email => 'bo@whitehouse.gov',
timestamp => $now,
},
]],
[ 'reworked change with reworked version deployed' => [
{
id => $you->id,
name => $you->name,
project => $you->project,
note => $you->note,
planner_name => $you->planner_name,
planner_email => $you->planner_email,
timestamp => $you->timestamp,
tags => [qw(@foo @bar)],
ptags => [ $hey_there->tags, $you->tags ],
},
{
id => $rev_change->id,
name => $rev_change->name,
project => 'engine',
note => $rev_change->note,
planner_name => $rev_change->planner_name,
planner_email => $rev_change->planner_email,
timestamp => $rev_change->timestamp,
},
]],
) {
my ($desc, $args) = @{ $spec };
my %seen;
is_deeply [ $engine->_load_changes(@{ $args }) ], [ map {
my $tags = $_->{tags} || [];
my $rtags = $_->{rtags};
my $ptags = $_->{ptags};
my $c = App::Sqitch::Plan::Change->new(%{ $_ }, plan => $plan );
$c->add_tag(App::Sqitch::Plan::Tag->new(
name => $_,
plan => $plan,
change => $c,
timestamp => $now,
)) for map { s/^@//; $_ } @{ $tags };
my %seen_tags;
if (@{ $ptags || [] }) {
$c->add_rework_tags( @{ $ptags });
}
if (my $dupe = $seen{ $_->{name} }) {
$dupe->add_rework_tags( map { $seen{$_}->tags } @{ $rtags });
}
$seen{ $_->{name} } = $c;
$c;
} grep { $_ } @{ $args }], "Should load changes with $desc";
}
##############################################################################
# Test deploy_change and revert_change.
ok $engine = App::Sqitch::Engine::whu->new( sqitch => $sqitch, target => $target ),
'Create a subclass name object again';
can_ok $engine, 'deploy_change', 'revert_change';
my $change = App::Sqitch::Plan::Change->new( name => 'users', plan => $target->plan );
$engine->max_name_length(length $change->format_name_with_tags);
ok $engine->deploy_change($change), 'Deploy a change';
is_deeply $engine->seen, [
['begin_work'],
[run_file => $change->deploy_file ],
[log_deploy_change => $change ],
['finish_work'],
], 'deploy_change should have called the proper methods';
is_deeply +MockOutput->get_info_literal, [[
' + users ..', '' , ' '
]], 'Output should reflect the deployment';
is_deeply +MockOutput->get_info, [[__ 'ok' ]],
'Output should reflect success';
# Have it log only.
$engine->log_only(1);
ok $engine->deploy_change($change), 'Only log a change';
is_deeply $engine->seen, [
['begin_work'],
[log_deploy_change => $change ],
['finish_work'],
], 'log-only deploy_change should not have called run_file';
is_deeply +MockOutput->get_info_literal, [[
' + users ..', '' , ' '
]], 'Output should reflect the logging';
is_deeply +MockOutput->get_info, [[__ 'ok' ]],
'Output should reflect deploy success';
# Have it verify.
ok $engine->with_verify(1), 'Enable verification';
$engine->log_only(0);
ok $engine->deploy_change($change), 'Deploy a change to be verified';
is_deeply $engine->seen, [
['begin_work'],
[run_file => $change->deploy_file ],
[run_file => $change->verify_file ],
[log_deploy_change => $change ],
['finish_work'],
], 'deploy_change with verification should run the verify file';
is_deeply +MockOutput->get_info_literal, [[
' + users ..', '' , ' '
]], 'Output should reflect the logging';
is_deeply +MockOutput->get_info, [[__ 'ok' ]],
'Output should reflect deploy success';
# Have it verify *and* log-only.
ok $engine->log_only(1), 'Enable log_only';
ok $engine->deploy_change($change), 'Verify and log a change';
is_deeply $engine->seen, [
['begin_work'],
[run_file => $change->verify_file ],
[log_deploy_change => $change ],
['finish_work'],
], 'deploy_change with verification and log-only should not run deploy';
is_deeply +MockOutput->get_info_literal, [[
' + users ..', '' , ' '
]], 'Output should reflect the logging';
is_deeply +MockOutput->get_info, [[__ 'ok' ]],
'Output should reflect deploy success';
# Make run_file fail.
$die = 'run_file';
$engine->log_only(0);
throws_ok { $engine->deploy_change($change) } 'App::Sqitch::X',
'Deploy change with error';
is $@->message, 'AAAH!', 'Error should be from run_file';
is_deeply $engine->seen, [
['begin_work'],
[log_fail_change => $change ],
['finish_work'],
], 'Should have logged change failure';
$die = '';
is_deeply +MockOutput->get_info_literal, [[
' + users ..', '' , ' '
]], 'Output should reflect the deployment, even with failure';
is_deeply +MockOutput->get_info, [[__ 'not ok' ]],
'Output should reflect deploy failure';
# Make the verify fail.
$mock_engine->mock( verify_change => sub { hurl 'WTF!' });
throws_ok { $engine->deploy_change($change) } 'App::Sqitch::X',
'Deploy change with failed verification';
is $@->message, __ 'Deploy failed', 'Error should be from deploy_change';
is_deeply $engine->seen, [
['begin_work'],
[run_file => $change->deploy_file ],
['begin_work'],
[run_file => $change->revert_file ],
[log_fail_change => $change ],
['finish_work'],
], 'Should have logged verify failure';
$die = '';
is_deeply +MockOutput->get_info_literal, [[
' + users ..', '' , ' '
]], 'Output should reflect the deployment, even with verify failure';
is_deeply +MockOutput->get_info, [[__ 'not ok' ]],
'Output should reflect deploy failure';
is_deeply +MockOutput->get_vent, [['WTF!']],
'Verify error should have been vented';
# Make the verify fail with log only.
ok $engine->log_only(1), 'Enable log_only';
throws_ok { $engine->deploy_change($change) } 'App::Sqitch::X',
'Deploy change with log-only and failed verification';
is $@->message, __ 'Deploy failed', 'Error should be from deploy_change';
is_deeply $engine->seen, [
['begin_work'],
['begin_work'],
[log_fail_change => $change ],
['finish_work'],
], 'Should have logged verify failure but not reverted';
$die = '';
is_deeply +MockOutput->get_info_literal, [[
' + users ..', '' , ' '
]], 'Output should reflect the deployment, even with verify failure';
is_deeply +MockOutput->get_info, [[__ 'not ok' ]],
'Output should reflect deploy failure';
is_deeply +MockOutput->get_vent, [['WTF!']],
'Verify error should have been vented';
# Try a change with no verify file.
$engine->log_only(0);
$mock_engine->unmock( 'verify_change' );
$change = App::Sqitch::Plan::Change->new( name => 'roles', plan => $target->plan );
ok $engine->deploy_change($change), 'Deploy a change with no verify script';
is_deeply $engine->seen, [
['begin_work'],
[run_file => $change->deploy_file ],
[log_deploy_change => $change ],
['finish_work'],
], 'deploy_change with no verify file should not run it';
is_deeply +MockOutput->get_info_literal, [[
' + roles ..', '' , ' '
]], 'Output should reflect the logging';
is_deeply +MockOutput->get_info, [[__ 'ok' ]],
'Output should reflect deploy success';
is_deeply +MockOutput->get_vent, [
[__x 'Verify script {file} does not exist', file => $change->verify_file],
], 'A warning about no verify file should have been emitted';
# Try a change with no deploy file.
$change = App::Sqitch::Plan::Change->new( name => 'foo', plan => $target->plan );
throws_ok { $engine->deploy_change($change) } 'App::Sqitch::X',
'Deploy change with log-only and failed verification';
is $@->message, __x(
'Deploy script {file} does not exist',
file => $change->deploy_file,
), 'Error should be from deploy_change';
is_deeply $engine->seen, [
['begin_work'],
['log_fail_change', $change],
['finish_work'],
], 'Should have logged just begin and finish';
$die = '';
is_deeply +MockOutput->get_info_literal, [[
' + foo ..', '..', ' ',
]], 'Output should reflect start of deployment';
is_deeply +MockOutput->get_info, [[__ 'not ok']],
'Output should acknowldge failure';
is_deeply +MockOutput->get_vent, [], 'Vent should be empty';
# Alright, disable verify now.
$engine->with_verify(0);
# Revert a change.
$change = App::Sqitch::Plan::Change->new( name => 'users', plan => $target->plan );
ok $engine->revert_change($change), 'Revert a change';
is_deeply $engine->seen, [
['begin_work'],
[run_file => $change->revert_file ],
[log_revert_change => $change ],
['finish_work'],
], 'revert_change should have called the proper methods';
is_deeply +MockOutput->get_info_literal, [[
' - users ..', '', ' '
]], 'Output should reflect reversion';
is_deeply +MockOutput->get_info, [[__ 'ok']],
'Output should acknowldge revert success';
# Revert with log-only.
ok $engine->log_only(1), 'Enable log_only';
ok $engine->revert_change($change), 'Revert a change with log-only';
is_deeply $engine->seen, [
['begin_work'],
[log_revert_change => $change ],
['finish_work'],
], 'Log-only revert_change should not have run the change script';
is_deeply +MockOutput->get_info_literal, [[
' - users ..', '', ' '
]], 'Output should reflect logged reversion';
is_deeply +MockOutput->get_info, [[__ 'ok']],
'Output should acknowldge revert success';
# Have the log throw an error.
$die = 'log_revert_change';
throws_ok { $engine->revert_change($change) }
'App::Sqitch::X', 'Should die on unknown revert logging error';
is $@->ident, 'revert', 'Sould have revert ident error';
is $@->message, 'Revert failed','Should get revert failure error message';
is_deeply $engine->seen, [
['begin_work'],
['finish_work'],
], 'Log failure should not have seen log_revert_change';
is_deeply +MockOutput->get_info_literal, [[
' - users ..', '', ' '
]], 'Output should reflect reversion';
is_deeply +MockOutput->get_info, [[__ 'not ok']],
'Output should acknowldge failure';
is_deeply +MockOutput->get_vent, [
['AAAH!'],
], 'The logging error should have been vented';
$die = '';
# Try a change with no revert file.
$change = App::Sqitch::Plan::Change->new( name => 'oops', plan => $target->plan );
throws_ok { $engine->revert_change($change) } 'App::Sqitch::X',
'Should die on missing revert script';
is $@->ident, 'revert', 'Sould have revert ident error';
is $@->message, __x(
'Revert script {file} does not exist',
file => $change->revert_file,
), 'Error should be from revert_change';
is_deeply $engine->seen, [
['begin_work'],
['finish_work'],
], 'Log failure should not have seen log_revert_change';
is_deeply +MockOutput->get_info_literal, [[
' - oops ..', '.', ' '
]], 'Output should reflect revert start';
is_deeply +MockOutput->get_info, [[__ 'not ok']],
'Output should acknowldge failure';
is_deeply +MockOutput->get_vent, [], 'Should have vented nothing';
$record_work = 0;
##############################################################################
# Test earliest_change() and latest_change().
chdir 't';
my $plan_file = file qw(sql sqitch.plan);
my $sqitch_old = $sqitch; # Hang on to this because $change does not retain it.
$config->update(
'core.top_dir' => 'sql',
'core.plan_file' => $plan_file->stringify,
);
$sqitch = App::Sqitch->new(config => $config);
$target = App::Sqitch::Target->new( sqitch => $sqitch );
$change = App::Sqitch::Plan::Change->new( name => 'lolz', plan => $target->plan );
ok $engine = App::Sqitch::Engine::whu->new( sqitch => $sqitch, target => $target ),
'Engine with sqitch with plan file';
$plan = $target->plan;
my @changes = $plan->changes;
$latest_change_id = $changes[0]->id;
is $engine->latest_change, $changes[0], 'Should get proper change from latest_change()';
is_deeply $engine->seen, [[ latest_change_id => undef ]],
'Latest change ID should have been called with no arg';
$latest_change_id = $changes[2]->id;
is $engine->latest_change(2), $changes[2],
'Should again get proper change from latest_change()';
is_deeply $engine->seen, [[ latest_change_id => 2 ]],
'Latest change ID should have been called with offset arg';
$latest_change_id = undef;
$earliest_change_id = $changes[0]->id;
is $engine->earliest_change, $changes[0], 'Should get proper change from earliest_change()';
is_deeply $engine->seen, [[ earliest_change_id => undef ]],
'Earliest change ID should have been called with no arg';
$earliest_change_id = $changes[2]->id;
is $engine->earliest_change(4), $changes[2],
'Should again get proper change from earliest_change()';
is_deeply $engine->seen, [[ earliest_change_id => 4 ]],
'Earliest change ID should have been called with offset arg';
$earliest_change_id = undef;
##############################################################################
# Test _sync_plan()
can_ok $CLASS, '_sync_plan';
$engine->seen;
is $plan->position, -1, 'Plan should start at position -1';
is $engine->start_at, undef, 'start_at should be undef';
ok $engine->_sync_plan, 'Sync the plan';
is $plan->position, -1, 'Plan should still be at position -1';
is $engine->start_at, undef, 'start_at should still be undef';
$plan->position(4);
is_deeply $engine->seen, [['current_state', undef]],
'Should not have updated IDs or hashes';
ok $engine->_sync_plan, 'Sync the plan again';
is $plan->position, -1, 'Plan should again be at position -1';
is $engine->start_at, undef, 'start_at should again be undef';
is_deeply $engine->seen, [['current_state', undef]],
'Still should not have updated IDs or hashes';
# Have latest_item return a tag.
$latest_change_id = $changes[2]->id;
ok $engine->_sync_plan, 'Sync the plan to a tag';
is $plan->position, 2, 'Plan should now be at position 2';
is $engine->start_at, 'widgets@beta', 'start_at should now be widgets@beta';
is_deeply $engine->seen, [
['current_state', undef],
['log_new_tags' => $plan->change_at(2)],
], 'Should have updated IDs';
# Have current_state return a script hash.
$script_hash = '550aeeab2ae39cba45840888b12a70820a2d6f83';
ok $engine->_sync_plan, 'Sync the plan with a random script hash';
is $plan->position, 2, 'Plan should now be at position 1';
is $engine->start_at, 'widgets@beta', 'start_at should now be widgets@beta';
is_deeply $engine->seen, [
['current_state', undef],
['log_new_tags' => $plan->change_at(2)],
], 'Should have updated IDs but not hashes';
# Have current_state return the last deployed ID as script_hash.
$script_hash = $latest_change_id;
ok $engine->_sync_plan, 'Sync the plan with a random script hash';
is $plan->position, 2, 'Plan should now be at position 1';
is $engine->start_at, 'widgets@beta', 'start_at should now be widgets@beta';
is_deeply $engine->seen, [
['current_state', undef],
['_update_script_hashes'],
['log_new_tags' => $plan->change_at(2)],
], 'Should have updated IDs and hashes';
# Return no change ID, now.
$script_hash = $latest_change_id = $changes[1]->id;
ok $engine->_sync_plan, 'Sync the plan';
is $plan->position, 1, 'Plan should be at position 1';
is $engine->start_at, 'users@alpha', 'start_at should be users@alpha';
is_deeply $engine->seen, [
['current_state', undef],
['_update_script_hashes'],
['log_new_tags' => $plan->change_at(1)],
], 'Should have updated hashes but not IDs';
# Have current_state return no script hash.
my $mock_whu = Test::MockModule->new('App::Sqitch::Engine::whu');
my $state = {change_id => $latest_change_id};
$mock_whu->mock(current_state => $state);
ok $engine->_sync_plan, 'Sync the plan with no script hash';
$mock_whu->unmock('current_state');
is $plan->position, 1, 'Plan should now be at position 1';
is $engine->start_at, 'users@alpha', 'start_at should still be users@alpha';
is_deeply $engine->seen, [
'upgrade_registry',
['_update_script_hashes'],
['log_new_tags' => $plan->change_at(1)],
], 'Should have ugpraded the registry';
is $state->{script_hash}, $latest_change_id,
'The script hash should have been set to the change ID';
# Have _no_registry return true.
$mock_engine->mock(_no_registry => 1);
ok $engine->_sync_plan, 'Sync the plan with no registry';
is $plan->position, -1, 'Plan should start at position -1';
$mock_engine->unmock('_no_registry');
##############################################################################
# Test deploy.
can_ok $CLASS, 'deploy';
$script_hash = undef;
$latest_change_id = undef;
$plan->reset;
$engine->seen;
@changes = $plan->changes;
# Mock the deploy methods to log which were called.
my $deploy_meth;
for my $meth (qw(_deploy_all _deploy_by_tag _deploy_by_change)) {
my $orig = $CLASS->can($meth);
$mock_engine->mock($meth => sub {
$deploy_meth = $meth;
$orig->(@_);
});
}
# Mock locking and dependency checking to add their calls to the seen stuff.
$mock_engine->mock( check_deploy_dependencies => sub {
shift->mock_check_deploy(@_);
});
$mock_engine->mock( check_revert_dependencies => sub {
shift->mock_check_revert(@_);
});
$mock_engine->mock(lock_destination => sub {
shift->mock_lock(@_);
});
ok $engine->deploy('@alpha'), 'Deploy to @alpha';
is $plan->position, 1, 'Plan should be at position 1';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
'initialized',
'initialize',
'register_project',
[check_deploy_dependencies => [$plan, 1]],
[run_file => $changes[0]->deploy_file],
[log_deploy_change => $changes[0]],
[run_file => $changes[1]->deploy_file],
[log_deploy_change => $changes[1]],
], 'Should have deployed through @alpha';
is $deploy_meth, '_deploy_all', 'Should have called _deploy_all()';
is_deeply +MockOutput->get_info, [
[__x 'Adding registry tables to {destination}',
destination => $engine->registry_destination,
],
[__x 'Deploying changes through {change} to {destination}',
destination => $engine->destination,
change => $plan->get('@alpha')->format_name_with_tags,
],
[__ 'ok'],
[__ 'ok'],
], 'Should have seen the output of the deploy to @alpha';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '.......', ' '],
[' + users @alpha ..', '', ' '],
], 'Both change names should be output';
# Try with log-only in all modes.
for my $mode (qw(change tag all)) {
ok $engine->log_only(1), 'Enable log_only';
ok $engine->deploy('@alpha', $mode, 1), 'Log-only deploy in $mode mode to @alpha';
is $plan->position, 1, 'Plan should be at position 1';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
'initialized',
'initialize',
'register_project',
[check_deploy_dependencies => [$plan, 1]],
[log_deploy_change => $changes[0]],
[log_deploy_change => $changes[1]],
], 'Should have deployed through @alpha without running files';
my $meth = $mode eq 'all' ? 'all' : ('by_' . $mode);
is $deploy_meth, "_deploy_$meth", "Should have called _deploy_$meth()";
is_deeply +MockOutput->get_info, [
[
__x 'Adding registry tables to {destination}',
destination => $engine->registry_destination,
],
[
__x 'Deploying changes through {change} to {destination}',
destination => $engine->destination,
change => $plan->get('@alpha')->format_name_with_tags,
],
[__ 'ok'],
[__ 'ok'],
], 'Should have seen the output of the deploy to @alpha';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '.......', ' '],
[' + users @alpha ..', '', ' '],
], 'Both change names should be output';
}
# Try with no need to initialize.
$initialized = 1;
$plan->reset;
$engine->log_only(0);
ok $engine->deploy('@alpha', 'tag'), 'Deploy to @alpha with tag mode';
is $plan->position, 1, 'Plan should again be at position 1';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
'initialized',
'upgrade_registry',
'register_project',
[check_deploy_dependencies => [$plan, 1]],
[run_file => $changes[0]->deploy_file],
[log_deploy_change => $changes[0]],
[run_file => $changes[1]->deploy_file],
[log_deploy_change => $changes[1]],
], 'Should have deployed through @alpha without initialization';
is $deploy_meth, '_deploy_by_tag', 'Should have called _deploy_by_tag()';
is_deeply +MockOutput->get_info, [
[__x 'Deploying changes through {change} to {destination}',
destination => $engine->registry_destination,
change => $plan->get('@alpha')->format_name_with_tags,
],
[__ 'ok'],
[__ 'ok'],
], 'Should have seen the output of the deploy to @alpha';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '.......', ' '],
[' + users @alpha ..', '', ' '],
], 'Both change names should be output';
# Try a bogus change.
throws_ok { $engine->deploy('nonexistent') } 'App::Sqitch::X',
'Should get an error for an unknown change';
is $@->message, __x(
'Unknown change: "{change}"',
change => 'nonexistent',
), 'The exception should report the unknown change';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
], 'Only latest_item() should have been called';
# Start with @alpha.
$latest_change_id = ($changes[1]->tags)[0]->id;
ok $engine->deploy('@alpha'), 'Deploy to alpha thrice';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
['log_new_tags' => $changes[1]],
], 'Only latest_item() should have been called';
is_deeply +MockOutput->get_info, [
[__x 'Nothing to deploy (already at "{change}")', change => '@alpha'],
], 'Should notify user that already at @alpha';
# Start with widgets.
$latest_change_id = $changes[2]->id;
throws_ok { $engine->deploy('@alpha') } 'App::Sqitch::X',
'Should fail deploying older change';
is $@->ident, 'deploy', 'Should be a "deploy" error';
is $@->message, __ 'Cannot deploy to an earlier change; use "revert" instead',
'It should suggest using "revert"';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
['log_new_tags' => $changes[2]],
], 'Should have called latest_item() and latest_tag()';
# Make sure that it upgrades the registry when deploying on existing changes.
$latest_change_id = undef;
my $mock_plan = Test::MockModule->new(ref $plan);
my $orig_pos_meth;
my @pos_vals = (1, 1);
$mock_plan->mock(position => sub { return @pos_vals ? shift @pos_vals : $orig_pos_meth->($_[0]) });
$orig_pos_meth = $mock_plan->original('position');
ok $engine->deploy(), 'Deploy to from index 1';
$mock_plan->unmock('position');
is $plan->position, 2, 'Plan should be at position 2';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
'upgrade_registry',
[check_deploy_dependencies => [$plan, 2]],
], 'Should have deployed to change 2';
is_deeply +MockOutput->get_info, [
[__x 'Deploying changes to {destination}', destination => $engine->destination ],
], 'Should have emitted deploy announcement and successes';
# Make sure we can deploy everything by change.
MockOutput->clear;
$latest_change_id = undef;
$plan->reset;
$plan->add( name => 'lolz', note => 'ha ha' );
@changes = $plan->changes;
ok $engine->deploy(undef, 'change'), 'Deploy everything by change';
is $plan->position, 3, 'Plan should be at position 3';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
'initialized',
'upgrade_registry',
'register_project',
[check_deploy_dependencies => [$plan, 3]],
[run_file => $changes[0]->deploy_file],
[log_deploy_change => $changes[0]],
[run_file => $changes[1]->deploy_file],
[log_deploy_change => $changes[1]],
[run_file => $changes[2]->deploy_file],
[log_deploy_change => $changes[2]],
[run_file => $changes[3]->deploy_file],
[log_deploy_change => $changes[3]],
], 'Should have deployed everything';
is $deploy_meth, '_deploy_by_change', 'Should have called _deploy_by_change()';
is_deeply +MockOutput->get_info, [
[__x 'Deploying changes to {destination}', destination => $engine->destination ],
[__ 'ok'],
[__ 'ok'],
[__ 'ok'],
[__ 'ok'],
], 'Should have emitted deploy announcement and successes';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
[' + widgets @beta ..', '', ' '],
[' + lolz ..', '.........', ' '],
], 'Should have seen the output of the deploy to the end';
is_deeply +MockOutput->get_debug, [
[__ 'Will deploy the following changes:' ],
['roles'],
['users @alpha'],
['widgets @beta'],
['lolz'],
], 'Debug output should show what will be deployed';
# If we deploy again, it should be up-to-date.
$latest_change_id = $changes[-1]->id;
ok $engine->deploy, 'Should return success for deploy to up-to-date DB';
is_deeply +MockOutput->get_info, [
[__ 'Nothing to deploy (up-to-date)' ],
], 'Should have emitted deploy announcement and successes';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
], 'It should have just fetched the latest change ID';
$latest_change_id = undef;
# Try invalid mode.
throws_ok { $engine->deploy(undef, 'evil_mode') } 'App::Sqitch::X',
'Should fail on invalid mode';
is $@->ident, 'deploy', 'Should be a "deploy" error';
is $@->message, __x('Unknown deployment mode: "{mode}"', mode => 'evil_mode'),
'And the message should reflect the unknown mode';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
'initialized',
'upgrade_registry',
'register_project',
[check_deploy_dependencies => [$plan, 3]],
], 'It should have check for initialization';
is_deeply +MockOutput->get_info, [
[__x 'Deploying changes to {destination}', destination => $engine->destination ],
], 'Should have announced destination';
# Try a plan with no changes.
NOSTEPS: {
my $plan_file = file qw(empty.plan);
my $fh = $plan_file->open('>') or die "Cannot open $plan_file: $!";
say $fh '%project=empty';
$fh->close or die "Error closing $plan_file: $!";
END { $plan_file->remove }
$config->update('core.plan_file' => $plan_file->stringify);
my $sqitch = App::Sqitch->new(config => $config);
my $target = App::Sqitch::Target->new(sqitch => $sqitch );
ok my $engine = App::Sqitch::Engine::whu->new(
sqitch => $sqitch,
target => $target,
), 'Engine with sqitch with no file';
$engine->max_name_length(10);
throws_ok { $engine->deploy } 'App::Sqitch::X', 'Should die with no changes';
is $@->message, __"Nothing to deploy (empty plan)",
'Should have the localized message';
is_deeply $engine->seen, [
[lock_destination => []],
[current_state => undef],
], 'It should have checked for the latest item';
}
##############################################################################
# Test _deploy_by_change()
$engine = App::Sqitch::Engine::whu->new(sqitch => $sqitch, target => $target);
$plan->reset;
$mock_engine->unmock('_deploy_by_change');
$engine->max_name_length(
max map {
length $_->format_name_with_tags
} $plan->changes
);
ok $engine->_deploy_by_change($plan, 1), 'Deploy changewise to index 1';
is_deeply $engine->seen, [
[run_file => $changes[0]->deploy_file],
[log_deploy_change => $changes[0]],
[run_file => $changes[1]->deploy_file],
[log_deploy_change => $changes[1]],
], 'Should changewise deploy to index 2';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
], 'Should have seen output of each change';
is_deeply +MockOutput->get_info, [[__ 'ok' ], [__ 'ok']],
'Output should reflect deploy successes';
ok $engine->_deploy_by_change($plan, 3), 'Deploy changewise to index 2';
is_deeply $engine->seen, [
[run_file => $changes[2]->deploy_file],
[log_deploy_change => $changes[2]],
[run_file => $changes[3]->deploy_file],
[log_deploy_change => $changes[3]],
], 'Should changewise deploy to from index 2 to index 3';
is_deeply +MockOutput->get_info_literal, [
[' + widgets @beta ..', '', ' '],
[' + lolz ..', '.........', ' '],
], 'Should have seen output of changes 2-3';
is_deeply +MockOutput->get_info, [[__ 'ok' ], [__ 'ok']],
'Output should reflect deploy successes';
# Make it die.
$plan->reset;
$die = 'run_file';
throws_ok { $engine->_deploy_by_change($plan, 2) } 'App::Sqitch::X',
'Die in _deploy_by_change';
is $@->message, 'AAAH!', 'It should have died in run_file';
is_deeply $engine->seen, [
[log_fail_change => $changes[0] ],
], 'It should have logged the failure';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
], 'Should have seen output for first change';
is_deeply +MockOutput->get_info, [[__ 'not ok']],
'Output should reflect deploy failure';
$die = '';
##############################################################################
# Test _deploy_by_tag().
$plan->reset;
$mock_engine->unmock('_deploy_by_tag');
ok $engine->_deploy_by_tag($plan, 1), 'Deploy tagwise to index 1';
is_deeply $engine->seen, [
[run_file => $changes[0]->deploy_file],
[log_deploy_change => $changes[0]],
[run_file => $changes[1]->deploy_file],
[log_deploy_change => $changes[1]],
], 'Should tagwise deploy to index 1';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
], 'Should have seen output of each change';
is_deeply +MockOutput->get_info, [[__ 'ok' ], [__ 'ok']],
'Output should reflect deploy successes';
ok $engine->_deploy_by_tag($plan, 3), 'Deploy tagwise to index 3';
is_deeply $engine->seen, [
[run_file => $changes[2]->deploy_file],
[log_deploy_change => $changes[2]],
[run_file => $changes[3]->deploy_file],
[log_deploy_change => $changes[3]],
], 'Should tagwise deploy from index 2 to index 3';
is_deeply +MockOutput->get_info_literal, [
[' + widgets @beta ..', '', ' '],
[' + lolz ..', '.........', ' '],
], 'Should have seen output of changes 3-3';
is_deeply +MockOutput->get_info, [[__ 'ok' ], [__ 'ok']],
'Output should reflect deploy successes';
# Add another couple of changes.
$plan->add(name => 'tacos' );
$plan->add(name => 'curry' );
@changes = $plan->changes;
# Make it die.
$plan->position(1);
$mock_whu->mock(log_deploy_change => sub { hurl 'ROFL' if $_[1] eq $changes[-1] });
throws_ok { $engine->_deploy_by_tag($plan, $#changes) } 'App::Sqitch::X',
'Die in log_deploy_change';
is $@->message, __('Deploy failed'), 'Should get final deploy failure message';
is_deeply $engine->seen, [
[run_file => $changes[2]->deploy_file],
[run_file => $changes[3]->deploy_file],
[run_file => $changes[4]->deploy_file],
[run_file => $changes[5]->deploy_file],
[run_file => $changes[5]->revert_file],
[log_fail_change => $changes[5] ],
[run_file => $changes[4]->revert_file],
[log_revert_change => $changes[4]],
[run_file => $changes[3]->revert_file],
[log_revert_change => $changes[3]],
], 'It should have reverted back to the last deployed tag';
is_deeply +MockOutput->get_info_literal, [
[' + widgets @beta ..', '', ' '],
[' + lolz ..', '.........', ' '],
[' + tacos ..', '........', ' '],
[' + curry ..', '........', ' '],
[' - tacos ..', '........', ' '],
[' - lolz ..', '.........', ' '],
], 'Should have seen deploy and revert messages (excluding curry revert)';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'not ok' ],
[__ 'ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes and failure';
is_deeply +MockOutput->get_vent, [
['ROFL'],
[__x 'Reverting to {change}', change => 'widgets @beta']
], 'The original error should have been vented';
$mock_whu->unmock('log_deploy_change');
# Make it die with log-only.
$plan->position(1);
ok $engine->log_only(1), 'Enable log_only';
$mock_whu->mock(log_deploy_change => sub { hurl 'ROFL' if $_[1] eq $changes[-1] });
throws_ok { $engine->_deploy_by_tag($plan, $#changes, 1) } 'App::Sqitch::X',
'Die in log_deploy_change log-only';
is $@->message, __('Deploy failed'), 'Should get final deploy failure message';
is_deeply $engine->seen, [
[log_fail_change => $changes[5] ],
[log_revert_change => $changes[4]],
[log_revert_change => $changes[3]],
], 'It should have run no deploy or revert scripts';
is_deeply +MockOutput->get_info_literal, [
[' + widgets @beta ..', '', ' '],
[' + lolz ..', '.........', ' '],
[' + tacos ..', '........', ' '],
[' + curry ..', '........', ' '],
[' - tacos ..', '........', ' '],
[' - lolz ..', '.........', ' '],
], 'Should have seen deploy and revert messages (excluding curry revert)';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'not ok' ],
[__ 'ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes and failure';
is_deeply +MockOutput->get_vent, [
['ROFL'],
[__x 'Reverting to {change}', change => 'widgets @beta']
], 'The original error should have been vented';
$mock_whu->unmock('log_deploy_change');
# Now have it fail back to the beginning.
$plan->reset;
$engine->log_only(0);
$mock_whu->mock(run_file => sub { die 'ROFL' if $_[1]->basename eq 'users.sql' });
throws_ok { $engine->_deploy_by_tag($plan, $plan->count -1 ) } 'App::Sqitch::X',
'Die in _deploy_by_tag again';
is $@->message, __('Deploy failed'), 'Should again get final deploy failure message';
is_deeply $engine->seen, [
[log_deploy_change => $changes[0]],
[log_fail_change => $changes[1]],
[log_revert_change => $changes[0]],
], 'Should have logged back to the beginning';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
[' - roles ..', '........', ' '],
], 'Should have seen deploy and revert messages';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'not ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes and failure';
my $vented = MockOutput->get_vent;
is @{ $vented }, 2, 'Should have one vented message';
my $errmsg = shift @{ $vented->[0] };
like $errmsg, qr/^ROFL\b/, 'And it should be the underlying error';
is_deeply $vented, [
[],
[__ 'Reverting all changes'],
], 'And it should had notified that all changes were reverted';
# Add a change and deploy to that, to make sure it rolls back any changes since
# last tag.
$plan->add(name => 'dr_evil' );
@changes = $plan->changes;
$plan->reset;
$mock_whu->mock(run_file => sub { hurl 'ROFL' if $_[1]->basename eq 'dr_evil.sql' });
throws_ok { $engine->_deploy_by_tag($plan, $plan->count -1 ) } 'App::Sqitch::X',
'Die in _deploy_by_tag yet again';
is $@->message, __('Deploy failed'), 'Should die "Deploy failed" again';
is_deeply $engine->seen, [
[log_deploy_change => $changes[0]],
[log_deploy_change => $changes[1]],
[log_deploy_change => $changes[2]],
[log_deploy_change => $changes[3]],
[log_deploy_change => $changes[4]],
[log_deploy_change => $changes[5]],
[log_fail_change => $changes[6]],
[log_revert_change => $changes[5] ],
[log_revert_change => $changes[4] ],
[log_revert_change => $changes[3] ],
], 'Should have reverted back to last tag';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
[' + widgets @beta ..', '', ' '],
[' + lolz ..', '.........', ' '],
[' + tacos ..', '........', ' '],
[' + curry ..', '........', ' '],
[' + dr_evil ..', '......', ' '],
[' - curry ..', '........', ' '],
[' - tacos ..', '........', ' '],
[' - lolz ..', '.........', ' '],
], 'Should have user change reversion messages';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'not ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes and failure';
is_deeply +MockOutput->get_vent, [
['ROFL'],
[__x 'Reverting to {change}', change => 'widgets @beta']
], 'Should see underlying error and reversion message';
# Make it choke on change reversion.
$mock_whu->unmock_all;
$die = '';
$plan->reset;
$mock_whu->mock(run_file => sub {
hurl 'ROFL' if $_[1] eq $changes[1]->deploy_file;
hurl 'BARF' if $_[1] eq $changes[0]->revert_file;
});
$mock_whu->mock(start_at => 'whatever');
throws_ok { $engine->_deploy_by_tag($plan, $plan->count -1 ) } 'App::Sqitch::X',
'Die in _deploy_by_tag again';
is $@->message, __('Deploy failed'), 'Should once again get final deploy failure message';
is_deeply $engine->seen, [
[log_deploy_change => $changes[0] ],
[log_fail_change => $changes[1] ],
], 'Should have tried to revert one change';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
[' - roles ..', '........', ' '],
], 'Should have seen revert message';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'not ok' ],
[__ 'not ok' ],
], 'Output should reflect deploy successes and failure';
is_deeply +MockOutput->get_vent, [
['ROFL'],
[__x 'Reverting to {change}', change => 'whatever'],
['BARF'],
[__ 'The schema will need to be manually repaired']
], 'Should get reversion failure message';
$mock_whu->unmock_all;
##############################################################################
# Test _deploy_all().
$plan->reset;
$mock_engine->unmock('_deploy_all');
ok $engine->_deploy_all($plan, 1), 'Deploy all to index 1';
is_deeply $engine->seen, [
[run_file => $changes[0]->deploy_file],
[log_deploy_change => $changes[0]],
[run_file => $changes[1]->deploy_file],
[log_deploy_change => $changes[1]],
], 'Should tagwise deploy to index 1';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
], 'Should have seen output of each change';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes';
ok $engine->_deploy_all($plan, 2), 'Deploy tagwise to index 2';
is_deeply $engine->seen, [
[run_file => $changes[2]->deploy_file],
[log_deploy_change => $changes[2]],
], 'Should tagwise deploy to from index 1 to index 2';
is_deeply +MockOutput->get_info_literal, [
[' + widgets @beta ..', '', ' '],
], 'Should have seen output of changes 3-4';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
], 'Output should reflect deploy successe';
# Make it die.
$plan->reset;
$mock_whu->mock(log_deploy_change => sub { hurl 'ROFL' if $_[1] eq $changes[2] });
throws_ok { $engine->_deploy_all($plan, 3) } 'App::Sqitch::X',
'Die in _deploy_all';
is $@->message, __('Deploy failed'), 'Should get final deploy failure message';
$mock_whu->unmock('log_deploy_change');
is_deeply $engine->seen, [
[run_file => $changes[0]->deploy_file],
[run_file => $changes[1]->deploy_file],
[run_file => $changes[2]->deploy_file],
[run_file => $changes[2]->revert_file],
[log_fail_change => $changes[2]],
[run_file => $changes[1]->revert_file],
[log_revert_change => $changes[1]],
[run_file => $changes[0]->revert_file],
[log_revert_change => $changes[0]],
], 'It should have logged up to the failure';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
[' + widgets @beta ..', '', ' '],
[' - users @alpha ..', '.', ' '],
[' - roles ..', '........', ' '],
], 'Should have seen deploy and revert messages excluding revert for failed logging';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'ok' ],
[__ 'not ok' ],
[__ 'ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes and failures';
is_deeply +MockOutput->get_vent, [
['ROFL'],
[__ 'Reverting all changes'],
], 'The original error should have been vented';
$die = '';
# Make it die with log-only.
$plan->reset;
ok $engine->log_only(1), 'Enable log_only';
$mock_whu->mock(log_deploy_change => sub { hurl 'ROFL' if $_[1] eq $changes[2] });
throws_ok { $engine->_deploy_all($plan, 3, 1) } 'App::Sqitch::X',
'Die in log-only _deploy_all';
is $@->message, __('Deploy failed'), 'Should get final deploy failure message';
$mock_whu->unmock('log_deploy_change');
is_deeply $engine->seen, [
[log_fail_change => $changes[2]],
[log_revert_change => $changes[1]],
[log_revert_change => $changes[0]],
], 'It should have run no deploys or reverts';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
[' + widgets @beta ..', '', ' '],
[' - users @alpha ..', '.', ' '],
[' - roles ..', '........', ' '],
], 'Should have seen deploy and revert messages excluding revert for failed logging';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'ok' ],
[__ 'not ok' ],
[__ 'ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes and failures';
is_deeply +MockOutput->get_vent, [
['ROFL'],
[__ 'Reverting all changes'],
], 'The original error should have been vented';
$die = '';
# Now have it fail on a later change, should still go all the way back.
$plan->reset;
$engine->log_only(0);
$mock_whu->mock(run_file => sub { hurl 'ROFL' if $_[1]->basename eq 'widgets.sql' });
throws_ok { $engine->_deploy_all($plan, $plan->count -1 ) } 'App::Sqitch::X',
'Die in _deploy_all again';
is $@->message, __('Deploy failed'), 'Should again get final deploy failure message';
is_deeply $engine->seen, [
[log_deploy_change => $changes[0]],
[log_deploy_change => $changes[1]],
[log_fail_change => $changes[2]],
[log_revert_change => $changes[1]],
[log_revert_change => $changes[0]],
], 'Should have reveted all changes and tags';
is_deeply +MockOutput->get_info_literal, [
[' + roles ..', '........', ' '],
[' + users @alpha ..', '.', ' '],
[' + widgets @beta ..', '', ' '],
[' - users @alpha ..', '.', ' '],
[' - roles ..', '........', ' '],
], 'Should see all changes revert';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'ok' ],
[__ 'not ok' ],
[__ 'ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes and failures';
is_deeply +MockOutput->get_vent, [
['ROFL'],
[__ 'Reverting all changes'],
], 'Should notifiy user of error and rollback';
# Die when starting from a later point.
$plan->position(2);
$engine->start_at('@alpha');
$mock_whu->mock(run_file => sub { hurl 'ROFL' if $_[1]->basename eq 'dr_evil.sql' });
throws_ok { $engine->_deploy_all($plan, $plan->count -1 ) } 'App::Sqitch::X',
'Die in _deploy_all on the last change';
is $@->message, __('Deploy failed'), 'Should once again get final deploy failure message';
is_deeply $engine->seen, [
[log_deploy_change => $changes[3]],
[log_deploy_change => $changes[4]],
[log_deploy_change => $changes[5]],
[log_fail_change => $changes[6]],
[log_revert_change => $changes[5]],
[log_revert_change => $changes[4]],
[log_revert_change => $changes[3]],
], 'Should have deployed to dr_evil and revered down to @alpha';
is_deeply +MockOutput->get_info_literal, [
[' + lolz ..', '.........', ' '],
[' + tacos ..', '........', ' '],
[' + curry ..', '........', ' '],
[' + dr_evil ..', '......', ' '],
[' - curry ..', '........', ' '],
[' - tacos ..', '........', ' '],
[' - lolz ..', '.........', ' '],
], 'Should see changes revert back to @alpha';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'not ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes and failures';
is_deeply +MockOutput->get_vent, [
['ROFL'],
[__x 'Reverting to {change}', change => '@alpha'],
], 'Should notifiy user of error and rollback to @alpha';
# Die with a string rather than an exception.
$plan->position(2);
$engine->start_at('@alpha');
$mock_whu->mock(run_file => sub { die 'Oops' if $_[1]->basename eq 'dr_evil.sql' });
throws_ok { $engine->_deploy_all($plan, $plan->count -1 ) } 'App::Sqitch::X',
'Die in _deploy_all on the last change';
is $@->message, __('Deploy failed'), 'Should once again get final deploy failure message';
is_deeply $engine->seen, [
[log_deploy_change => $changes[3]],
[log_deploy_change => $changes[4]],
[log_deploy_change => $changes[5]],
[log_fail_change => $changes[6]],
[log_revert_change => $changes[5]],
[log_revert_change => $changes[4]],
[log_revert_change => $changes[3]],
], 'Should have deployed to dr_evil and revered down to @alpha';
is_deeply +MockOutput->get_info_literal, [
[' + lolz ..', '.........', ' '],
[' + tacos ..', '........', ' '],
[' + curry ..', '........', ' '],
[' + dr_evil ..', '......', ' '],
[' - curry ..', '........', ' '],
[' - tacos ..', '........', ' '],
[' - lolz ..', '.........', ' '],
], 'Should see changes revert back to @alpha';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'not ok' ],
[__ 'ok' ],
[__ 'ok' ],
[__ 'ok' ],
], 'Output should reflect deploy successes and failures';
$vented = MockOutput->get_vent;
is @{ $vented }, 2, 'Should have two vented items';
like $vented->[0][0], qr/Oops/, 'First vented should be the error';
is_deeply $vented->[1], [__x 'Reverting to {change}', change => '@alpha'],
'Should notifiy user of rollback to @alpha';
$mock_whu->unmock_all;
##############################################################################
# Test is_deployed().
my $tag = App::Sqitch::Plan::Tag->new(
name => 'foo',
change => $change,
plan => $target->plan,
);
$is_deployed_tag = $is_deployed_change = 1;
ok $engine->is_deployed($tag), 'Test is_deployed(tag)';
is_deeply $engine->seen, [
[is_deployed_tag => $tag],
], 'It should have called is_deployed_tag()';
ok $engine->is_deployed($change), 'Test is_deployed(change)';
is_deeply $engine->seen, [
[is_deployed_change => $change],
], 'It should have called is_deployed_change()';
##############################################################################
# Test deploy_change.
can_ok $engine, 'deploy_change';
ok $engine->deploy_change($change), 'Deploy a change';
is_deeply $engine->seen, [
[run_file => $change->deploy_file],
[log_deploy_change => $change],
], 'It should have been deployed';
is_deeply +MockOutput->get_info_literal, [
[' + lolz ..', '.........', ' ']
], 'Should have shown change name';
is_deeply +MockOutput->get_info, [
[__ 'ok' ],
], 'Output should reflect deploy success';
# Make the logging die.
$mock_whu->mock(log_deploy_change => sub { hurl test => 'OHNO' });
throws_ok { $engine->deploy_change($change) } 'App::Sqitch::X',
'Deploying change should die on logging failure';
is $@->ident, 'private', 'Should have privat ident';
is $@->message, __('Deploy failed'), 'Should have failure message';
is_deeply $engine->seen, [
[run_file => $change->deploy_file],
[run_file => $change->revert_file],
['log_fail_change', $change],
], 'It should have been deployed and reverted';
is_deeply +MockOutput->get_info_literal, [
[' + lolz ..', '.........', ' ']
], 'Should have shown change name';
is_deeply +MockOutput->get_info, [
[__ 'not ok' ],
], 'Output should reflect deploy failure';
is_deeply +MockOutput->get_vent, [
['OHNO']
], 'Vent should reflect deployment error';
# Also make the revert fail.
$mock_whu->mock('run_revert' => sub { hurl test => 'NO REVERT' });
throws_ok { $engine->deploy_change($change) } 'App::Sqitch::X',
'Deploying change should die on logging failure';
is $@->ident, 'private', 'Should have privat ident';
is $@->message, __('Deploy failed'), 'Should have failure message';
is_deeply $engine->seen, [
[run_file => $change->deploy_file],
['log_fail_change', $change],
], 'It should have been deployed but not reverted';
is_deeply +MockOutput->get_info_literal, [
[' + lolz ..', '.........', ' ']
], 'Should have shown change name';
is_deeply +MockOutput->get_info, [
[__ 'not ok' ],
], 'Output should reflect deploy failure';
is_deeply +MockOutput->get_vent, [
['OHNO'],
['NO REVERT'],
], 'Vent should reflect deployment and reversion errors';
# Unmock.
$mock_whu->unmock('log_deploy_change');
$mock_whu->unmock('run_revert');
my $make_deps = sub {
my $conflicts = shift;
return map {
my $dep = App::Sqitch::Plan::Depend->new(
change => $_,
plan => $plan,
project => $plan->project,
conflicts => $conflicts,
);
$dep;
} @_;
};
DEPLOYDIE: {
my $mock_depend = Test::MockModule->new('App::Sqitch::Plan::Depend');
$mock_depend->mock(id => sub { undef });
# Now make it die on the actual deploy.
$die = 'log_deploy_change';
my @requires = $make_deps->( 0, qw(foo bar) );
my @conflicts = $make_deps->( 1, qw(dr_evil) );
my $change = App::Sqitch::Plan::Change->new(
name => 'lolz',
plan => $target->plan,
requires => \@requires,
conflicts => \@conflicts,
);
throws_ok { $engine->deploy_change($change) } 'App::Sqitch::X',
'Shuld die on deploy failure';
is $@->message, __ 'Deploy failed', 'Should be told the deploy failed';
is_deeply $engine->seen, [
[run_file => $change->deploy_file],
[run_file => $change->revert_file],
[log_fail_change => $change],
], 'It should failed to have been deployed';
is_deeply +MockOutput->get_vent, [
['AAAH!'],
], 'Should have vented the original error';
is_deeply +MockOutput->get_info_literal, [
[' + lolz ..', '.........', ' '],
], 'Should have shown change name';
is_deeply +MockOutput->get_info, [
[__ 'not ok' ],
], 'Output should reflect deploy failure';
$die = '';
}
##############################################################################
# Test revert_change().
can_ok $engine, 'revert_change';
ok $engine->revert_change($change), 'Revert the change';
is_deeply $engine->seen, [
[run_file => $change->revert_file],
[log_revert_change => $change],
], 'It should have been reverted';
is_deeply +MockOutput->get_info_literal, [
[' - lolz ..', '.........', ' ']
], 'Should have shown reverted change name';
is_deeply +MockOutput->get_info, [
[__ 'ok'],
], 'And the revert failure should be "ok"';
##############################################################################
# Test revert().
can_ok $engine, 'revert';
$engine->plan($plan);
# Start with no deployed IDs.
@deployed_changes = ();
ok $engine->revert(undef, 1, 1),
'Should return success for no changes to revert';
is_deeply +MockOutput->get_info, [
[__ 'Nothing to revert (nothing deployed)']
], 'Should have notified that there is nothing to revert';
is_deeply $engine->seen, [
[lock_destination => []],
[deployed_changes => undef],
], 'It should only have called deployed_changes()';
is_deeply +MockOutput->get_info, [], 'Nothing should have been output';
# Make sure deprecation warning happens.
# Test only the first line of the warning. Reason:
# https://github.com/hanfried/test-warn/issues/9
warning_is { $engine->revert }
"Engine::revert() requires the `prompt` and `prompt_default` arguments.\n",
'Should get warning omitting required arguments';
is_deeply +MockOutput->get_info, [
[__ 'Nothing to revert (nothing deployed)']
], 'Should have notified that there is nothing to revert';
is_deeply $engine->seen, [
[lock_destination => []],
[deployed_changes => undef],
], 'It should only have called deployed_changes()';
is_deeply +MockOutput->get_info, [], 'Nothing should have been output';
# Try reverting to an unknown change.
throws_ok { $engine->revert('nonexistent', 1, 1) } 'App::Sqitch::X',
'Revert should die on unknown change';
is $@->ident, 'revert', 'Should be another "revert" error';
is $@->message, __x(
'Unknown change: "{change}"',
change => 'nonexistent',
), 'The message should mention it is an unknown change';
is_deeply $engine->seen, [ [lock_destination => []], ['change_id_for', {
change_id => undef,
change => 'nonexistent',
tag => undef,
project => 'sql',
}]], 'Should have called change_id_for() with change name';
is_deeply +MockOutput->get_info, [], 'Nothing should have been output';
# Try reverting to an unknown change ID.
throws_ok { $engine->revert('8d77c5f588b60bc0f2efcda6369df5cb0177521d', 1, 1) } 'App::Sqitch::X',
'Revert should die on unknown change ID';
is $@->ident, 'revert', 'Should be another "revert" error';
is $@->message, __x(
'Unknown change: "{change}"',
change => '8d77c5f588b60bc0f2efcda6369df5cb0177521d',
), 'The message should mention it is an unknown change';
is_deeply $engine->seen, [ [lock_destination => []], ['change_id_for', {
change_id => '8d77c5f588b60bc0f2efcda6369df5cb0177521d',
change => undef,
tag => undef,
project => 'sql',
}]], 'Should have called change_id_for() with change ID';
is_deeply +MockOutput->get_info, [], 'Nothing should have been output';
# Revert an undeployed change.
throws_ok { $engine->revert('@alpha', 1, 1) } 'App::Sqitch::X',
'Revert should die on undeployed change';
is $@->ident, 'revert', 'Should be another "revert" error';
is $@->message, __x(
'Change not deployed: "{change}"',
change => '@alpha',
), 'The message should mention that the change is not deployed';
is_deeply $engine->seen, [ [lock_destination => []], ['change_id_for', {
change => '',
change_id => undef,
tag => 'alpha',
project => 'sql',
}]], 'change_id_for';
is_deeply +MockOutput->get_info, [], 'Nothing should have been output';
# Revert to a point with no following changes.
$offset_change = $changes[0];
push @resolved => $offset_change->id;
ok $engine->revert($changes[0]->id, 1, 1),
'Should return success for revert even with no changes';
is_deeply +MockOutput->get_info, [
[__x(
'No changes deployed since: "{change}"',
change => $changes[0]->id,
)]
], 'No subsequent change error message should be correct';
delete $changes[0]->{_rework_tags}; # For deep comparison.
is_deeply $engine->seen, [
[lock_destination => []],
[change_id_for => {
change_id => $changes[0]->id,
change => undef,
tag => undef,
project => 'sql',
}],
[ change_offset_from_id => [$changes[0]->id, 0] ],
[deployed_changes_since => $changes[0]],
], 'Should have called change_id_for and deployed_changes_since';
# Revert with nothing deployed.
ok $engine->revert(undef, 1, 1),
'Should return success for known but undeployed change';
is_deeply +MockOutput->get_info, [
[__ 'Nothing to revert (nothing deployed)']
], 'No changes message should be correct';
is_deeply $engine->seen, [
[lock_destination => []],
[deployed_changes => undef],
], 'Should have called deployed_changes';
# Now revert from a deployed change.
my @dbchanges;
@deployed_changes = map {
my $plan_change = $_;
my $params = {
id => $plan_change->id,
name => $plan_change->name,
project => $plan_change->project,
note => $plan_change->note,
planner_name => $plan_change->planner_name,
planner_email => $plan_change->planner_email,
timestamp => $plan_change->timestamp,
tags => [ map { $_->name } $plan_change->tags ],
};
push @dbchanges => my $db_change = App::Sqitch::Plan::Change->new(
plan => $plan,
%{ $params },
);
$db_change->add_tag( App::Sqitch::Plan::Tag->new(
name => $_->name, plan => $plan, change => $db_change
) ) for $plan_change->tags;
$db_change->tags; # Autovivify _tags For changes with no tags.
$params;
} @changes[0..3];
MockOutput->clear;
MockOutput->ask_yes_no_returns(1);
is $engine->revert(undef, 1, 1), $engine, 'Revert all changes';
is_deeply $engine->seen, [
[lock_destination => []],
[deployed_changes => undef],
[check_revert_dependencies => [reverse @dbchanges[0..3]] ],
[run_file => $dbchanges[3]->revert_file ],
[log_revert_change => $dbchanges[3] ],
[run_file => $dbchanges[2]->revert_file ],
[log_revert_change => $dbchanges[2] ],
[run_file => $dbchanges[1]->revert_file ],
[log_revert_change => $dbchanges[1] ],
[run_file => $dbchanges[0]->revert_file ],
[log_revert_change => $dbchanges[0] ],
], 'Should have reverted the changes in reverse order';
is_deeply +MockOutput->get_ask_yes_no, [
[__x(
'Revert all changes from {destination}?',
destination => $engine->destination,
), 1],
], 'Should have prompted to revert all changes';
is_deeply +MockOutput->get_info_literal, [
[' - lolz ..', '.........', ' '],
[' - widgets @beta ..', '', ' '],
[' - users @alpha ..', '.', ' '],
[' - roles ..', '........', ' '],
], 'It should have said it was reverting all changes and listed them';
is_deeply +MockOutput->get_debug, [
[__ 'Would revert the following changes:'],
['roles'],
['users @alpha'],
['widgets @beta'],
['lolz'],
], 'Output should show what would be reverted';
is_deeply +MockOutput->get_info, [
[__ 'ok'],
[__ 'ok'],
[__ 'ok'],
[__ 'ok'],
], 'And the revert successes should be emitted';
# Try with log-only.
ok $engine->log_only(1), 'Enable log_only';
ok $engine->revert(undef, 1, 1), 'Revert all changes log-only';
is_deeply $engine->seen, [
[lock_destination => []],
[deployed_changes => undef],
[check_revert_dependencies => [reverse @dbchanges[0..3]] ],
[log_revert_change => $dbchanges[3] ],
[log_revert_change => $dbchanges[2] ],
[log_revert_change => $dbchanges[1] ],
[log_revert_change => $dbchanges[0] ],
], 'Log-only Should have reverted the changes in reverse order';
is_deeply +MockOutput->get_ask_yes_no, [
[__x(
'Revert all changes from {destination}?',
destination => $engine->destination,
), 1],
], 'Log-only should have prompted to revert all changes';
is_deeply +MockOutput->get_info_literal, [
[' - lolz ..', '.........', ' '],
[' - widgets @beta ..', '', ' '],
[' - users @alpha ..', '.', ' '],
[' - roles ..', '........', ' '],
], 'It should have said it was reverting all changes and listed them';
is_deeply +MockOutput->get_debug, [
[__ 'Would revert the following changes:'],
['roles'],
['users @alpha'],
['widgets @beta'],
['lolz'],
], 'Output should show what would be reverted';
is_deeply +MockOutput->get_info, [
[__ 'ok'],
[__ 'ok'],
[__ 'ok'],
[__ 'ok'],
], 'And the revert successes should be emitted';
# Should exit if the revert is declined.
MockOutput->ask_yes_no_returns(0);
throws_ok { $engine->revert(undef, 1, 1) } 'App::Sqitch::X', 'Should abort declined revert';
is $@->ident, 'revert', 'Declined revert ident should be "revert"';
is $@->exitval, 1, 'Should have exited with value 1';
is $@->message, __ 'Nothing reverted', 'Should have exited with proper message';
is_deeply $engine->seen, [
[lock_destination => []],
[deployed_changes => undef],
], 'Should have called deployed_changes only';
is_deeply +MockOutput->get_ask_yes_no, [
[__x(
'Revert all changes from {destination}?',
destination => $engine->destination,
), 1],
], 'Should have prompt to revert all changes';
is_deeply +MockOutput->get_debug, [
[__ 'Would revert the following changes:'],
['roles'],
['users @alpha'],
['widgets @beta'],
['lolz'],
], 'Output should show what would be reverted';
# Revert all changes with no prompt.
MockOutput->ask_yes_no_returns(1);
$engine->log_only(0);
ok $engine->revert(undef, 0, 1), 'Revert all changes with no prompt';
is_deeply $engine->seen, [
[lock_destination => []],
[deployed_changes => undef],
[check_revert_dependencies => [reverse @dbchanges[0..3]] ],
[run_file => $dbchanges[3]->revert_file ],
[log_revert_change => $dbchanges[3] ],
[run_file => $dbchanges[2]->revert_file ],
[log_revert_change => $dbchanges[2] ],
[run_file => $dbchanges[1]->revert_file ],
[log_revert_change => $dbchanges[1] ],
[run_file => $dbchanges[0]->revert_file ],
[log_revert_change => $dbchanges[0] ],
], 'Should have reverted the changes in reverse order';
is_deeply +MockOutput->get_ask_yes_no, [], 'Should have no prompt';
is_deeply +MockOutput->get_info_literal, [
[' - lolz ..', '.........', ' '],
[' - widgets @beta ..', '', ' '],
[' - users @alpha ..', '.', ' '],
[' - roles ..', '........', ' '],
], 'It should have said it was reverting all changes and listed them';
is_deeply +MockOutput->get_info, [
[__x(
'Reverting all changes from {destination}',
destination => $engine->destination,
)],
[__ 'ok'],
[__ 'ok'],
[__ 'ok'],
[__ 'ok'],
], 'And the revert successes should be emitted';
is_deeply +MockOutput->get_debug, [
[__ 'Will revert the following changes:'],
['roles'],
['users @alpha'],
['widgets @beta'],
['lolz'],
], 'Output should show what will be reverted';
# Now just revert to an earlier change.
$offset_change = $dbchanges[1];
push @resolved => $offset_change->id;
@deployed_changes = @deployed_changes[2..3];
ok $engine->revert('@alpha', 1, 1), 'Revert to @alpha';
delete $dbchanges[1]->{_rework_tags}; # These need to be invisible.
is_deeply $engine->seen, [
[lock_destination => []],
[change_id_for => { change_id => undef, change => '', tag => 'alpha', project => 'sql' }],
[ change_offset_from_id => [$dbchanges[1]->id, 0] ],
[deployed_changes_since => $dbchanges[1]],
[check_revert_dependencies => [reverse @dbchanges[2..3]] ],
[run_file => $dbchanges[3]->revert_file ],
[log_revert_change => $dbchanges[3] ],
[run_file => $dbchanges[2]->revert_file ],
[log_revert_change => $dbchanges[2] ],
], 'Should have reverted only changes after @alpha';
is_deeply +MockOutput->get_ask_yes_no, [
[__x(
'Revert changes to {change} from {destination}?',
destination => $engine->destination,
change => $dbchanges[1]->format_name_with_tags,
), 1],
], 'Should have prompt to revert to change';
is_deeply +MockOutput->get_info_literal, [
[' - lolz ..', '.........', ' '],
[' - widgets @beta ..', '', ' '],
], 'Output should show what it reverts to';
is_deeply +MockOutput->get_debug, [
[__ 'Would revert the following changes:'],
['widgets @beta'],
['lolz'],
], 'Output should show what would be reverted';
is_deeply +MockOutput->get_info, [
[__ 'ok'],
[__ 'ok'],
], 'And the revert successes should be emitted';
MockOutput->ask_yes_no_returns(0);
$offset_change = $dbchanges[1];
push @resolved => $offset_change->id;
throws_ok { $engine->revert('@alpha', 1, 1) } 'App::Sqitch::X',
'Should abort declined revert to @alpha';
is $@->ident, 'revert:confirm', 'Declined revert ident should be "revert:confirm"';
is $@->exitval, 1, 'Should have exited with value 1';
is $@->message, __ 'Nothing reverted', 'Should have exited with proper message';
is_deeply $engine->seen, [
[lock_destination => []],
[change_id_for => { change_id => undef, change => '', tag => 'alpha', project => 'sql' }],
[change_offset_from_id => [$dbchanges[1]->id, 0] ],
[deployed_changes_since => $dbchanges[1]],
], 'Should have called revert methods';
is_deeply +MockOutput->get_ask_yes_no, [
[__x(
'Revert changes to {change} from {destination}?',
change => $dbchanges[1]->format_name_with_tags,
destination => $engine->destination,
), 1],
], 'Should have prompt to revert to @alpha';
is_deeply +MockOutput->get_debug, [
[__ 'Would revert the following changes:'],
['widgets @beta'],
['lolz'],
], 'Should emit a detailed prompt.';
# Try to revert just the last change with no prompt
MockOutput->ask_yes_no_returns(1);
my $rev_file = $dbchanges[-1]->revert_file; # Grab before deleting _rework_tags.
my $rtags = delete $dbchanges[-1]->{_rework_tags}; # These need to be invisible.
$offset_change = $dbchanges[-1];
push @resolved => $offset_change->id;
@deployed_changes = $deployed_changes[-1];
ok $engine->revert('@HEAD^', 0, 1), 'Revert to @HEAD^';
is_deeply $engine->seen, [
[lock_destination => []],
[change_id_for => { change_id => undef, change => '', tag => 'HEAD', project => 'sql' }],
[change_offset_from_id => [$dbchanges[-1]->id, -1] ],
[deployed_changes_since => $dbchanges[-1]],
[check_revert_dependencies => [{ %{ $dbchanges[-1] }, _rework_tags => $rtags }] ],
[run_file => $rev_file ],
[log_revert_change => { %{ $dbchanges[-1] }, _rework_tags => $rtags } ],
], 'Should have reverted one changes for @HEAD^';
is_deeply +MockOutput->get_ask_yes_no, [], 'Should have no prompt';
is_deeply +MockOutput->get_info_literal, [
[' - lolz ..', '', ' '],
], 'Output should show what it reverts to';
is_deeply +MockOutput->get_info, [
[__x(
'Reverting changes to {change} from {destination}',
destination => $engine->destination,
change => $dbchanges[-1]->format_name_with_tags,
)],
[__ 'ok'],
], 'And the header and "ok" should be emitted';
is_deeply +MockOutput->get_debug, [
[__ 'Will revert the following changes:'],
['lolz'],
], 'Output should show what will be reverted';
##############################################################################
# Test change_id_for_depend().
can_ok $CLASS, 'change_id_for_depend';
$offset_change = $dbchanges[1];
my ($dep) = $make_deps->( 1, 'foo' );
throws_ok { $engine->change_id_for_depend( $dep ) } 'App::Sqitch::X',
'Should get error from change_id_for_depend when change not in plan';
is $@->ident, 'plan', 'Should get ident "plan" from change_id_for_depend';
is $@->message, __x(
'Unable to find change "{change}" in plan {file}',
change => $dep->key_name,
file => $target->plan_file,
), 'Should have proper message from change_id_for_depend error';
PLANOK: {
my $mock_depend = Test::MockModule->new('App::Sqitch::Plan::Depend');
$mock_depend->mock(id => sub { undef });
$mock_depend->mock(change => sub { undef });
throws_ok { $engine->change_id_for_depend( $dep ) } 'App::Sqitch::X',
'Should get error from change_id_for_depend when no ID';
is $@->ident, 'engine', 'Should get ident "engine" when no ID';
is $@->message, __x(
'Invalid dependency: {dependency}',
dependency => $dep->as_string,
), 'Should have proper messag from change_id_for_depend error';
# Let it have the change.
$mock_depend->unmock('change');
push @resolved => $changes[1]->id;
is $engine->change_id_for_depend( $dep ), $changes[1]->id,
'Get a change id';
is_deeply $engine->seen, [
[change_id_for => {
change_id => $dep->id,
change => $dep->change,
tag => $dep->tag,
project => $dep->project,
first => 1,
}],
], 'Should have passed dependency params to change_id_for()';
}
##############################################################################
# Test find_change().
can_ok $CLASS, 'find_change';
push @resolved => $dbchanges[1]->id;
is $engine->find_change(
change_id => $resolved[0],
change => 'hi',
tag => 'yo',
), $dbchanges[1], 'find_change() should work';
is_deeply $engine->seen, [
[change_id_for => {
change_id => $dbchanges[1]->id,
change => 'hi',
tag => 'yo',
project => 'sql',
}],
[change_offset_from_id => [ $dbchanges[1]->id, undef ]],
], 'Its parameters should have been passed to change_id_for and change_offset_from_id';
# Pass a project and an ofset.
push @resolved => $dbchanges[1]->id;
is $engine->find_change(
change => 'hi',
offset => 1,
project => 'fred',
), $dbchanges[1], 'find_change() should work';
is_deeply $engine->seen, [
[change_id_for => {
change_id => undef,
change => 'hi',
tag => undef,
project => 'fred',
}],
[change_offset_from_id => [ $dbchanges[1]->id, 1 ]],
], 'Project and offset should have been passed off';
##############################################################################
# Test find_change_id().
can_ok $CLASS, 'find_change_id';
push @resolved => $dbchanges[1]->id;
is $engine->find_change_id(
change_id => $resolved[0],
change => 'hi',
tag => 'yo',
), $dbchanges[1]->id, 'find_change_id() should work';
is_deeply $engine->seen, [
[change_id_for => {
change_id => $dbchanges[1]->id,
change => 'hi',
tag => 'yo',
project => 'sql',
}],
[change_id_offset_from_id => [ $dbchanges[1]->id, undef ]],
], 'Its parameters should have been passed to change_id_for and change_offset_from_id';
# Pass a project and an ofset.
push @resolved => $dbchanges[1]->id;
is $engine->find_change_id(
change => 'hi',
offset => 1,
project => 'fred',
), $dbchanges[1]->id, 'find_change_id() should work';
is_deeply $engine->seen, [
[change_id_for => {
change_id => undef,
change => 'hi',
tag => undef,
project => 'fred',
}],
[change_id_offset_from_id => [ $dbchanges[1]->id, 1 ]],
], 'Project and offset should have been passed off';
##############################################################################
# Test verify_change().
can_ok $CLASS, 'verify_change';
$change = App::Sqitch::Plan::Change->new( name => 'users', plan => $target->plan );
ok $engine->verify_change($change), 'Verify a change';
is_deeply $engine->seen, [
[run_file => $change->verify_file ],
], 'The change file should have been run';
is_deeply +MockOutput->get_info, [], 'Should have no info output';
# Should raise an error when the verfiy fails script fails.
$mock_engine->mock(run_verify => sub { die 'OHNO' });
throws_ok { $engine->verify_change($change) } 'App::Sqitch::X',
'Should throw error on verify failure';
$mock_engine->unmock('run_verify');
is $@->ident, 'verify', 'Verify error ident should be "verify"';
like $@->previous_exception, qr/OHNO/, 'Previous exception should be captured';
is $@->message, __x(
'Verify script "{script}" failed.',
script => $change->verify_file
), 'Verify error message should be correct';
is_deeply $engine->seen, [], 'Should have seen not method calls';
is_deeply +MockOutput->get_info, [], 'Should have no info output';
# Try a change with no verify script.
$change = App::Sqitch::Plan::Change->new( name => 'roles', plan => $target->plan );
ok $engine->verify_change($change), 'Verify a change with no verify script.';
is_deeply $engine->seen, [], 'No abstract methods should be called';
is_deeply +MockOutput->get_info, [], 'Should have no info output';
is_deeply +MockOutput->get_vent, [
[__x 'Verify script {file} does not exist', file => $change->verify_file],
], 'A warning about no verify file should have been emitted';
##############################################################################
# Test check_deploy_dependenices().
$mock_engine->unmock('check_deploy_dependencies');
can_ok $engine, 'check_deploy_dependencies';
CHECK_DEPLOY_DEPEND: {
# Make sure dependencies check out for all the existing changes.
$plan->reset;
ok $engine->check_deploy_dependencies($plan),
'All planned changes should be okay';
is_deeply $engine->seen, [
[ are_deployed_changes => [map { $plan->change_at($_) } 0..$plan->count - 1] ],
], 'Should have called are_deployed_changes';
# Fail when some changes are already deployed.
my @deployed = map { $plan->change_at($_) } 0, 2;
@deployed_change_ids = map { $_->id } @deployed;
throws_ok { $engine->check_deploy_dependencies($plan) } 'App::Sqitch::X',
'Should die when some changes deployed';
is $@->ident, 'deploy', 'Already deployed error ident should be "deploy"';
is $@->message, __nx(
'Change "{changes}" has already been deployed',
'Changes have already been deployed: {changes}',
scalar @deployed_change_ids,
changes => join(', ', map { $_->format_name_with_tags . " (" . $_->id . ")" } @deployed),
);
is_deeply $engine->seen, [
[ are_deployed_changes => [map { $plan->change_at($_) } 0..$plan->count - 1] ],
], 'Should have called are_deployed_changes';
@deployed_change_ids = ();
# Make sure it works when depending on a previous change.
my $change = $plan->change_at(3);
push @{ $change->_requires } => $make_deps->( 0, 'users' );
ok $engine->check_deploy_dependencies($plan),
'Dependencies should check out even when within those to be deployed';
is_deeply [ map { $_->resolved_id } map { $_->requires } $plan->changes ],
[ $plan->change_at(1)->id ],
'Resolved ID should be populated';
# Make sure it fails if there is a conflict within those to be deployed.
push @{ $change->_conflicts } => $make_deps->( 1, 'widgets' );
throws_ok { $engine->check_deploy_dependencies($plan) } 'App::Sqitch::X',
'Conflict should throw exception';
is $@->ident, 'deploy', 'Should be a "deploy" error';
is $@->message, __nx(
'Conflicts with previously deployed change: {changes}',
'Conflicts with previously deployed changes: {changes}',
scalar 1,
changes => 'widgets',
), 'Should have localized message about the local conflict';
shift @{ $change->_conflicts };
# Now test looking stuff up in the database.
my $mock_depend = Test::MockModule->new('App::Sqitch::Plan::Depend');
my @depend_ids;
$mock_depend->mock(id => sub { shift @depend_ids });
my @conflicts = $make_deps->( 1, qw(foo bar) );
$change = App::Sqitch::Plan::Change->new(
name => 'foo',
plan => $target->plan,
conflicts => \@conflicts,
);
$plan->_changes->append($change);
my $start_from = $plan->count - 1;
$plan->position( $start_from - 1);
push @resolved, '2342', '253245';
throws_ok { $engine->check_deploy_dependencies($plan, $start_from) } 'App::Sqitch::X',
'Conflict should throw exception';
is $@->ident, 'deploy', 'Should be a "deploy" error';
is $@->message, __nx(
'Conflicts with previously deployed change: {changes}',
'Conflicts with previously deployed changes: {changes}',
scalar 2,
changes => 'foo bar',
), 'Should have localized message about conflicts';
is_deeply $engine->seen, [
[ are_deployed_changes => [map { $plan->change_at($_) } 0..$start_from-1] ],
[ change_id_for => {
change_id => undef,
change => 'foo',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'bar',
tag => undef,
project => 'sql',
first => 1,
} ],
], 'Should have called change_id_for() twice';
is_deeply [ map { $_->resolved_id } @conflicts ], [undef, undef],
'Conflicting dependencies should have no resolved IDs';
# Fail with multiple conflicts.
push @{ $plan->change_at(3)->_conflicts } => $make_deps->( 1, 'widgets' );
$plan->reset;
push @depend_ids => $plan->change_at(2)->id;
push @resolved, '2342', '253245', '2323434';
throws_ok { $engine->check_deploy_dependencies($plan) } 'App::Sqitch::X',
'Conflict should throw another exception';
is $@->ident, 'deploy', 'Should be a "deploy" error';
is $@->message, __nx(
'Conflicts with previously deployed change: {changes}',
'Conflicts with previously deployed changes: {changes}',
scalar 3,
changes => 'widgets foo bar',
), 'Should have localized message about all three conflicts';
is_deeply $engine->seen, [
[ change_id_for => {
change_id => undef,
change => 'users',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'foo',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'bar',
tag => undef,
project => 'sql',
first => 1,
} ],
], 'Should have called change_id_for() twice';
is_deeply [ map { $_->resolved_id } @conflicts ], [undef, undef],
'Conflicting dependencies should have no resolved IDs';
##########################################################################
# Die on missing dependencies.
my @requires = $make_deps->( 0, qw(foo bar foo) );
$change = App::Sqitch::Plan::Change->new(
name => 'blah',
plan => $target->plan,
requires => \@requires,
);
$plan->_changes->append($change);
$start_from = $plan->count - 1;
$plan->position( $start_from - 1);
push @resolved, undef, undef;
throws_ok { $engine->check_deploy_dependencies($plan, $start_from) } 'App::Sqitch::X',
'Missing dependencies should throw exception';
is $@->ident, 'deploy', 'Should be another "deploy" error';
is $@->message, __nx(
'Missing required change: {changes}',
'Missing required changes: {changes}',
scalar 2,
changes => 'foo bar',
), 'Should have localized message missing dependencies without dupes';
is_deeply $engine->seen, [
[ change_id_for => {
change_id => undef,
change => 'foo',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'bar',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'foo',
tag => undef,
project => 'sql',
first => 1,
} ],
], 'Should have called check_requires';
is_deeply [ map { $_->resolved_id } @requires ], [undef, undef, undef],
'Missing requirements should not have resolved';
# Make sure we see both conflict and prereq failures.
push @resolved, '2342', '253245', '2323434', undef, undef;
$plan->reset;
throws_ok { $engine->check_deploy_dependencies($plan, $start_from) } 'App::Sqitch::X',
'Missing dependencies should throw exception';
is $@->ident, 'deploy', 'Should be another "deploy" error';
is $@->message, join(
"\n",
__nx(
'Conflicts with previously deployed change: {changes}',
'Conflicts with previously deployed changes: {changes}',
scalar 3,
changes => 'widgets foo',
),
__nx(
'Missing required change: {changes}',
'Missing required changes: {changes}',
scalar 2,
changes => 'foo bar',
),
), 'Should have localized conflicts and required error messages';
is_deeply $engine->seen, [
[ change_id_for => {
change_id => undef,
change => 'widgets',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'users',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'foo',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'bar',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'foo',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'bar',
tag => undef,
project => 'sql',
first => 1,
} ],
[ change_id_for => {
change_id => undef,
change => 'foo',
tag => undef,
project => 'sql',
first => 1,
} ],
], 'Should have called check_requires';
is_deeply [ map { $_->resolved_id } @requires ], [undef, undef, undef],
'Missing requirements should not have resolved';
}
# Test revert dependency-checking.
$mock_engine->unmock('check_revert_dependencies');
can_ok $engine, 'check_revert_dependencies';
CHECK_REVERT_DEPEND: {
my $change = App::Sqitch::Plan::Change->new(
name => 'urfa',
id => '24234234234e',
plan => $plan,
);
# First test with no dependencies.
@requiring = [];
ok $engine->check_revert_dependencies($change),
'Should get no error with no dependencies';
is_deeply $engine->seen, [
[changes_requiring_change => $change ],
], 'It should have check for requiring changes';
# Have revert change fail with requiring changes.
my $req = {
change_id => '23234234',
change => 'blah',
asof_tag => undef,
project => $plan->project,
};
@requiring = [$req];
throws_ok { $engine->check_revert_dependencies($change) } 'App::Sqitch::X',
'Should get error reverting change another depend on';
is $@->ident, 'revert', 'Dependent error ident should be "revert"';
is $@->message, __nx(
'Change "{change}" required by currently deployed change: {changes}',
'Change "{change}" required by currently deployed changes: {changes}',
1,
change => 'urfa',
changes => 'blah'
), 'Dependent error message should be correct';
is_deeply $engine->seen, [
[changes_requiring_change => $change ],
], 'It should have check for requiring changes';
# Add a second requiring change.
my $req2 = {
change_id => '99999',
change => 'harhar',
asof_tag => '@foo',
project => 'elsewhere',
};
@requiring = [$req, $req2];
throws_ok { $engine->check_revert_dependencies($change) } 'App::Sqitch::X',
'Should get error reverting change others depend on';
is $@->ident, 'revert', 'Dependent error ident should be "revert"';
is $@->message, __nx(
'Change "{change}" required by currently deployed change: {changes}',
'Change "{change}" required by currently deployed changes: {changes}',
2 ,
change => 'urfa',
changes => 'blah elsewhere:harhar@foo'
), 'Dependent error message should be correct';
is_deeply $engine->seen, [
[changes_requiring_change => $change ],
], 'It should have check for requiring changes';
# Try it with two changes.
my $req3 = {
change_id => '94949494',
change => 'frobisher',
project => 'whu',
};
@requiring = ([$req, $req2], [$req3]);
my $change2 = App::Sqitch::Plan::Change->new(
name => 'kazane',
id => '8686868686',
plan => $plan,
);
throws_ok { $engine->check_revert_dependencies($change, $change2) } 'App::Sqitch::X',
'Should get error reverting change others depend on';
is $@->ident, 'revert', 'Dependent error ident should be "revert"';
is $@->message, join(
"\n",
__nx(
'Change "{change}" required by currently deployed change: {changes}',
'Change "{change}" required by currently deployed changes: {changes}',
2 ,
change => 'urfa',
changes => 'blah elsewhere:harhar@foo'
),
__nx(
'Change "{change}" required by currently deployed change: {changes}',
'Change "{change}" required by currently deployed changes: {changes}',
1,
change => 'kazane',
changes => 'whu:frobisher'
),
), 'Dependent error message should be correct';
is_deeply $engine->seen, [
[changes_requiring_change => $change ],
[changes_requiring_change => $change2 ],
], 'It should have checked twice for requiring changes';
}
##############################################################################
# Test _trim_to().
can_ok $engine, '_trim_to';
# Should get an error when a change is not in the plan.
throws_ok { $engine->_trim_to( 'foo', 'nonexistent', [] ) } 'App::Sqitch::X',
'_trim_to should complain about a nonexistent change key';
is $@->ident, 'foo', '_trim_to nonexistent key error ident should be "foo"';
is $@->message, __x(
'Cannot find "{change}" in the database or the plan',
change => 'nonexistent',
), '_trim_to nonexistent key error message should be correct';
is_deeply $engine->seen, [
[ change_id_for => {
change => 'nonexistent',
change_id => undef,
project => 'sql',
tag => undef,
} ]
], 'It should have passed the change name and ROOT tag to change_id_for';
# Should get an error when it's in the plan but not the database.
throws_ok { $engine->_trim_to( 'yep', 'blah', [] ) } 'App::Sqitch::X',
'_trim_to should complain about an undeployed change key';
is $@->ident, 'yep', '_trim_to undeployed change error ident should be "yep"';
is $@->message, __x(
'Change "{change}" has not been deployed',
change => 'blah',
), '_trim_to undeployed change error message should be correct';
is_deeply $engine->seen, [
[ change_id_for => {
change => 'blah',
change_id => undef,
project => 'sql',
tag => undef,
} ]
], 'It should have passed change "blah" change_id_for';
# Should get an error when it's deployed but not in the plan.
@resolved = ('whatever');
throws_ok { $engine->_trim_to( 'oop', 'whatever', [] ) } 'App::Sqitch::X',
'_trim_to should complain about an unplanned change key';
is $@->ident, 'oop', '_trim_to unplanned change error ident should be "oop"';
is $@->message, __x(
'Change "{change}" is deployed, but not planned',
change => 'whatever',
), '_trim_to unplanned change error message should be correct';
is_deeply $engine->seen, [
[ change_id_for => {
change => 'whatever',
change_id => undef,
project => 'sql',
tag => undef,
} ],
[ change_id_offset_from_id => ['whatever', 0]],
], 'It should have passed "whatever" to change_id_offset_from_id';
# Let's mess with changes. Start by shifting nothing.
my $to_trim = [@changes];
@resolved = ($changes[0]->id);
my $key = $changes[0]->name;
is $engine->_trim_to('foo', $key, $to_trim), 0,
qq{_trim_to should find "$key" at index 0};
is_deeply [ map { $_->id } @{ $to_trim } ], [ map { $_->id } @changes ],
'Changes should be untrimmed';
is_deeply $engine->seen, [
[ change_id_for => {
change => $key,
change_id => undef,
project => 'sql',
tag => undef,
} ],
[ change_id_offset_from_id => [$changes[0]->id, 0]],
], 'It should have passed change 0 ID to change_id_offset_from_id';
# Try shifting to the third change.
$to_trim = [@changes];
@resolved = ($changes[2]->id);
$key = $changes[2]->name;
is $engine->_trim_to('foo', $key, $to_trim), 2,
qq{_trim_to should find "$key" at index 2};
is_deeply [ map { $_->id } @{ $to_trim } ], [ map { $_->id } @changes[2..$#changes] ],
'First two changes should be shifted off';
is_deeply $engine->seen, [
[ change_id_for => {
change => $key,
change_id => undef,
project => 'sql',
tag => undef,
} ],
[ change_id_offset_from_id => [$changes[2]->id, 0]],
], 'It should have passed change 2 ID to change_id_offset_from_id';
# Try popping nothing.
$to_trim = [@changes];
@resolved = ($changes[-1]->id);
$key = $changes[-1]->name;
is $engine->_trim_to('foo', $key, $to_trim, 1), $#changes,
qq{_trim_to should find "$key" at last index};
is_deeply [ map { $_->id } @{ $to_trim } ], [ map { $_->id } @changes ],
'Changes should be untrimmed';
is_deeply $engine->seen, [
[ change_id_for => {
change => $key,
change_id => undef,
project => 'sql',
tag => undef,
} ],
[ change_id_offset_from_id => [$changes[-1]->id, 0]],
], 'It should have passed change -1 ID to change_id_offset_from_id';
# Try shifting to the third-to-last change.
$to_trim = [@changes];
@resolved = ($changes[-3]->id);
$key = $changes[-3]->name;
is $engine->_trim_to('foo', $key, $to_trim, 1), 4,
qq{_trim_to should find "$key" at index 4};
is_deeply [ map { $_->id } @{ $to_trim } ], [ map { $_->id } @changes[0..$#changes-2] ],
'Last two changes should be popped off';
is_deeply $engine->seen, [
[ change_id_for => {
change => $key,
change_id => undef,
project => 'sql',
tag => undef,
} ],
[ change_id_offset_from_id => [$changes[-3]->id, 0]],
], 'It should have passed change -3 ID to change_id_offset_from_id';
# ^ should be handled relative to deployed changes.
$to_trim = [@changes];
@resolved = ($changes[-3]->id);
$key = $changes[-4]->name;
is $engine->_trim_to('foo', "$key^", $to_trim, 1), 4,
qq{_trim_to should find "$key^" at index 4};
is_deeply $engine->seen, [
[ change_id_for => {
change => $key,
change_id => undef,
project => 'sql',
tag => undef,
} ],
[ change_id_offset_from_id => [$changes[-3]->id, -1]],
], 'Should pass change -3 ID and offset -1 to change_id_offset_from_id';
# ~ should be handled relative to deployed changes.
$to_trim = [@changes];
@resolved = ($changes[-3]->id);
$key = $changes[-2]->name;
is $engine->_trim_to('foo', "$key~", $to_trim, 1), 4,
qq{_trim_to should find "$key~" at index 4};
is_deeply $engine->seen, [
[ change_id_for => {
change => $key,
change_id => undef,
project => 'sql',
tag => undef,
} ],
[ change_id_offset_from_id => [$changes[-3]->id, 1]],
], 'Should pass change -3 ID and offset 1 to change_id_offset_from_id';
# @HEAD and HEAD should be handled relative to deployed changes, not the plan.
$to_trim = [@changes];
@resolved = ($changes[2]->id);
$key = '@HEAD';
is $engine->_trim_to('foo', $key, $to_trim), 2,
qq{_trim_to should find "$key" at index 2};
is_deeply [ map { $_->id } @{ $to_trim } ], [ map { $_->id } @changes[2..$#changes] ],
'First two changes should be shifted off';
is_deeply $engine->seen, [
[ change_id_for => {
change => '',
change_id => undef,
project => 'sql',
tag => 'HEAD',
} ],
[ change_id_offset_from_id => [$changes[2]->id, 0]],
], 'Should pass tag HEAD to change_id_for';
$to_trim = [@changes];
@resolved = ($changes[2]->id);
$key = 'HEAD';
is $engine->_trim_to('foo', $key, $to_trim), 2,
qq{_trim_to should find "$key" at index 2};
is_deeply [ map { $_->id } @{ $to_trim } ], [ map { $_->id } @changes[2..$#changes] ],
'First two changes should be shifted off';
is_deeply $engine->seen, [
[ change_id_for => {
change => undef,
change_id => undef,
project => 'sql',
tag => 'HEAD',
} ],
[ change_id_offset_from_id => [$changes[2]->id, 0]],
], 'Should pass tag @HEAD to change_id_for';
# @ROOT and ROOT should be handled relative to deployed changes, not the plan.
$to_trim = [@changes];
@resolved = ($changes[2]->id);
$key = '@ROOT';
is $engine->_trim_to('foo', $key, $to_trim, 1), 2,
qq{_trim_to should find "$key" at index 2};
is_deeply [ map { $_->id } @{ $to_trim } ], [ map { $_->id } @changes[0,1,2] ],
'All but First three changes should be popped off';
is_deeply $engine->seen, [
[ change_id_for => {
change => '',
change_id => undef,
project => 'sql',
tag => 'ROOT',
} ],
[ change_id_offset_from_id => [$changes[2]->id, 0]],
], 'Should pass tag ROOT to change_id_for';
$to_trim = [@changes];
@resolved = ($changes[2]->id);
$key = 'ROOT';
is $engine->_trim_to('foo', $key, $to_trim, 1), 2,
qq{_trim_to should find "$key" at index 2};
is_deeply [ map { $_->id } @{ $to_trim } ], [ map { $_->id } @changes[0,1,2] ],
'All but First three changes should be popped off';
is_deeply $engine->seen, [
[ change_id_for => {
change => undef,
change_id => undef,
project => 'sql',
tag => 'ROOT',
} ],
[ change_id_offset_from_id => [$changes[2]->id, 0]],
], 'Should pass tag @ROOT to change_id_for';
##############################################################################
# Test _verify_changes().
can_ok $engine, '_verify_changes';
$engine->seen;
# Start with a single change with a valid verify script.
is $engine->_verify_changes(1, 1, 0, $changes[1]), 0,
'Verify of a single change should return errcount 0';
is_deeply +MockOutput->get_emit_literal, [[
' * users @alpha ..', '', ' ',
]], 'Declared output should list the change';
is_deeply +MockOutput->get_emit, [[__ 'ok']],
'Emitted Output should reflect the verification of the change';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply $engine->seen, [
[run_file => $changes[1]->verify_file ],
], 'The verify script should have been run';
# Try a single change with no verify script.
is $engine->_verify_changes(0, 0, 0, $changes[0]), 0,
'Verify of another single change should return errcount 0';
is_deeply +MockOutput->get_emit_literal, [[
' * roles ..', '', ' ',
]], 'Declared output should list the change';
is_deeply +MockOutput->get_emit, [[__ 'ok']],
'Emitted Output should reflect the verification of the change';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply +MockOutput->get_vent, [
[__x 'Verify script {file} does not exist', file => $changes[0]->verify_file],
], 'A warning about no verify file should have been emitted';
is_deeply $engine->seen, [
], 'The verify script should not have been run';
# Try multiple changes.
is $engine->_verify_changes(0, 1, 0, @changes[0,1]), 0,
'Verify of two changes should return errcount 0';
is_deeply +MockOutput->get_emit_literal, [
[' * roles ..', '.......', ' '],
[' * users @alpha ..', '', ' '],
], 'Declared output should list both changes';
is_deeply +MockOutput->get_emit, [[__ 'ok'], [__ 'ok']],
'Emitted Output should reflect the verification of the changes';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply +MockOutput->get_vent, [
[__x 'Verify script {file} does not exist', file => $changes[0]->verify_file],
], 'A warning about no verify file should have been emitted';
is_deeply $engine->seen, [
[run_file => $changes[1]->verify_file ],
], 'Only one verify script should have been run';
# Try multiple changes and show undeployed changes.
my @plan_changes = $plan->changes;
is $engine->_verify_changes(0, 1, 1, @changes[0,1]), 0,
'Verify of two changes and show pending';
is_deeply +MockOutput->get_emit_literal, [
[' * roles ..', '.......', ' '],
[' * users @alpha ..', '', ' '],
], 'Delcared output should list deployed changes';
is_deeply +MockOutput->get_emit, [
[__ 'ok'], [__ 'ok'],
[__n 'Undeployed change:', 'Undeployed changes:', 2],
map { [ ' * ', $_->format_name_with_tags] } @plan_changes[2..$#plan_changes]
], 'Emitted output should include list of pending changes';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply +MockOutput->get_vent, [
[__x 'Verify script {file} does not exist', file => $changes[0]->verify_file],
], 'A warning about no verify file should have been emitted';
is_deeply $engine->seen, [
[run_file => $changes[1]->verify_file ],
], 'Only one verify script should have been run';
# Try a change that is not in the plan.
$change = App::Sqitch::Plan::Change->new( name => 'nonexistent', plan => $plan );
is $engine->_verify_changes(1, 0, 0, $change), 1,
'Verify of a change not in the plan should return errcount 1';
is_deeply +MockOutput->get_emit_literal, [[
' * nonexistent ..', '', ' '
]], 'Declared Output should reflect the verification of the change';
is_deeply +MockOutput->get_emit, [[__ 'not ok']],
'Emitted Output should reflect the failure of the verify';
is_deeply +MockOutput->get_comment, [[__ 'Not present in the plan' ]],
'Should have a comment about the change missing from the plan';
is_deeply $engine->seen, [], 'No verify script should have been run';
# Try a change in the wrong place in the plan.
$mock_plan->mock(index_of => 5);
is $engine->_verify_changes(1, 0, 0, $changes[1]), 1,
'Verify of an out-of-order change should return errcount 1';
is_deeply +MockOutput->get_emit_literal, [
[' * users @alpha ..', '', ' '],
], 'Declared output should reflect the verification of the change';
is_deeply +MockOutput->get_emit, [[__ 'not ok']],
'Emitted Output should reflect the failure of the verify';
is_deeply +MockOutput->get_comment, [[__ 'Out of order' ]],
'Should have a comment about the out-of-order change';
is_deeply $engine->seen, [
[run_file => $changes[1]->verify_file ],
], 'The verify script should have been run';
# Make sure that multiple issues add up.
$mock_engine->mock( verify_change => sub { hurl 'WTF!' });
is $engine->_verify_changes(1, 0, 0, $changes[1]), 2,
'Verify of a change with 2 issues should return 2';
is_deeply +MockOutput->get_emit_literal, [
[' * users @alpha ..', '', ' '],
], 'Declared output should reflect the verification of the change';
is_deeply +MockOutput->get_emit, [[__ 'not ok']],
'Emitted Output should reflect the failure of the verify';
is_deeply +MockOutput->get_comment, [
[__ 'Out of order' ],
['WTF!'],
], 'Should have comment about the out-of-order change and script failure';
is_deeply $engine->seen, [], 'No abstract methods should have been called';
# Make sure that multiple changes with multiple issues add up.
$mock_engine->mock( verify_change => sub { hurl 'WTF!' });
is $engine->_verify_changes(0, -1, 0, @changes[0,1]), 4,
'Verify of 2 changes with 2 issues each should return 4';
is_deeply +MockOutput->get_emit_literal, [
[' * roles ..', '.......', ' '],
[' * users @alpha ..', '', ' '],
], 'Declraed output should reflect the verification of both changes';
is_deeply +MockOutput->get_emit, [[__ 'not ok'], [__ 'not ok']],
'Emitted Output should reflect the failure of both verifies';
is_deeply +MockOutput->get_comment, [
[__ 'Out of order' ],
['WTF!'],
[__ 'Out of order' ],
['WTF!'],
], 'Should have comment about the out-of-order changes and script failures';
is_deeply $engine->seen, [], 'No abstract methods should have been called';
# Unmock before moving on.
$mock_plan->unmock('index_of');
$mock_engine->unmock('verify_change');
# Now deal with changes in the plan but not in the list.
is $engine->_verify_changes($#changes, $plan->count - 1, 0, $changes[-1]), 2,
'_verify_changes with two undeployed changes should returne 2';
is_deeply +MockOutput->get_emit_literal, [
[' * dr_evil ..', '', ' '],
[' * foo ..', '....', ' ' , __ 'not ok', ' '],
[' * blah ..', '...', ' ' , __ 'not ok', ' '],
], 'Listed changes should be both deployed and undeployed';
is_deeply +MockOutput->get_emit, [[__ 'ok']],
'Emitted Output should reflect 1 pass';
is_deeply +MockOutput->get_comment, [
[__ 'Not deployed' ],
[__ 'Not deployed' ],
], 'Should have comments for undeployed changes';
is_deeply $engine->seen, [], 'No abstract methods should have been called';
##############################################################################
# Test verify().
can_ok $engine, 'verify';
my @verify_changes;
$mock_engine->mock( _load_changes => sub { @verify_changes });
# First, test with no changes.
ok $engine->verify,
'Should return success for no deployed changes';
is_deeply +MockOutput->get_info, [
[__x 'Verifying {destination}', destination => $engine->destination],
[__ 'No changes deployed'],
], 'Notification of the verify should be emitted';
is_deeply $engine->seen, [["deployed_changes", undef]],
'Should have called deployed_changes';
# Try no changes *and* nothing in the plan.
my $count = 0;
$mock_plan->mock(count => sub { $count });
ok $engine->verify,
'Should return success for no changes';
is_deeply +MockOutput->get_info, [
[__x 'Verifying {destination}', destination => $engine->destination],
[__ 'Nothing to verify (no planned or deployed changes)'],
], 'Notification of the verify should be emitted';
is_deeply $engine->seen, [["deployed_changes", undef]],
'Should have called deployed_changes';
# Now return some changes but have nothing in the plan.
@verify_changes = @changes;
throws_ok { $engine->verify } 'App::Sqitch::X',
'Should get error for no planned changes';
is $@->ident, 'verify', 'No planned changes ident should be "verify"';
is $@->exitval, 2, 'No planned changes exitval should be 2';
is $@->message, __ 'There are deployed changes, but none planned!',
'No planned changes message should be correct';
is_deeply +MockOutput->get_info, [
[__x 'Verifying {destination}', destination => $engine->destination],
], 'Notification of the verify should be emitted';
is_deeply $engine->seen, [["deployed_changes", undef]],
'Should have called deployed_changes';
# Let's do one change and have it pass.
$mock_plan->mock(index_of => 0);
$count = 1;
@verify_changes = ($changes[1]);
undef $@;
ok $engine->verify, 'Verify one change';
is_deeply +MockOutput->get_info, [
[__x 'Verifying {destination}', destination => $engine->destination],
], 'Notification of the verify should be emitted';
is_deeply +MockOutput->get_emit_literal, [
[' * ' . $changes[1]->format_name_with_tags . ' ..', '', ' ' ],
], 'The one change name should be declared';
is_deeply +MockOutput->get_emit, [
[__ 'ok'],
[__ 'Verify successful'],
], 'Success should be emitted';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply $engine->seen, [
["deployed_changes", undef],
["latest_change_id", undef],
[run_file => $changes[1]->verify_file ],
], 'Should have run the verify file';
# Verify two changes.
MockOutput->get_vent;
$mock_plan->unmock('index_of');
@verify_changes = @changes[0,1];
ok $engine->verify, 'Verify two changes';
is_deeply +MockOutput->get_info, [
[__x 'Verifying {destination}', destination => $engine->destination],
], 'Notification of the verify should be emitted';
is_deeply +MockOutput->get_emit_literal, [
[' * roles ..', '.......', ' ' ],
[' * users @alpha ..', '', ' ' ],
], 'The two change names should be declared';
is_deeply +MockOutput->get_emit, [
[__ 'ok'], [__ 'ok'],
[__ 'Verify successful'],
], 'Both successes should be emitted';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply +MockOutput->get_vent, [
[__x(
'Verify script {file} does not exist',
file => $changes[0]->verify_file,
)]
], 'Should have warning about missing verify script';
is_deeply $engine->seen, [
["deployed_changes", undef],
["latest_change_id", undef],
[run_file => $changes[1]->verify_file ],
], 'Should have run the verify file again';
# Make sure a reworked change (that is, one with a suffix) is ignored.
my $mock_change = Test::MockModule->new(ref $change);
$mock_change->mock(is_reworked => 1);
@verify_changes = @changes[0,1];
ok $engine->verify, 'Verify with a reworked change changes';
is_deeply +MockOutput->get_info, [
[__x 'Verifying {destination}', destination => $engine->destination],
], 'Notification of the verify should be emitted';
is_deeply +MockOutput->get_emit_literal, [
[' * roles ..', '.......', ' ' ],
[' * users @alpha ..', '', ' ' ],
], 'The two change names should be emitted';
is_deeply +MockOutput->get_emit, [
[__ 'ok'], [__ 'ok'],
[__ 'Verify successful'],
], 'Both successes should be emitted';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply +MockOutput->get_vent, [], 'Should have no warnings';
is_deeply $engine->seen, [
["deployed_changes", undef],
["latest_change_id", undef],
], 'Should not have run the verify file';
$mock_change->unmock('is_reworked');
# Make sure we can trim.
@verify_changes = @changes;
@resolved = map { $_->id } @changes[1,2];
ok $engine->verify('users', 'widgets'), 'Verify two specific changes';
is_deeply +MockOutput->get_info, [
[__x 'Verifying {destination}', destination => $engine->destination],
], 'Notification of the verify should be emitted';
is_deeply +MockOutput->get_emit_literal, [
[' * users @alpha ..', '.', ' ' ],
[' * widgets @beta ..', '', ' ' ],
], 'The two change names should be emitted';
is_deeply +MockOutput->get_emit, [
[__ 'ok'], [__ 'ok'],
[__ 'Verify successful'],
], 'Both successes should be emitted';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply +MockOutput->get_vent, [
[__x(
'Verify script {file} does not exist',
file => $changes[2]->verify_file,
)]
], 'Should have warning about missing verify script';
is_deeply $engine->seen, [
["deployed_changes", undef],
["change_id_for", {
change_id => undef,
change => 'users',
tag => undef,
project => 'sql',
}],
["change_id_offset_from_id", ['25cfff05d28c898f5c37263e2559fe75e239003c', 0]],
["change_id_for", {
change_id => undef,
change => 'widgets',
tag => undef,
project => 'sql',
}],
["change_id_offset_from_id", ['2f77ad8585862a3926df4b0447d2bafd199de791', 0]],
[run_file => $changes[1]->verify_file ],
], 'Should have searched offsets and run the verify file';
# Now fail!
$mock_engine->mock( verify_change => sub { hurl 'WTF!' });
@verify_changes = @changes;
@resolved = map { $_->id } @changes[1,2];
throws_ok { $engine->verify('users', 'widgets') } 'App::Sqitch::X',
'Should get failure for failing verify scripts';
is $@->ident, 'verify', 'Failed verify ident should be "verify"';
is $@->exitval, 2, 'Failed verify exitval should be 2';
is $@->message, __ 'Verify failed', 'Faield verify message should be correct';
is_deeply +MockOutput->get_info, [
[__x 'Verifying {destination}', destination => $engine->destination],
], 'Notification of the verify should be emitted';
my $msg = __ 'Verify Summary Report';
is_deeply +MockOutput->get_emit_literal, [
[' * users @alpha ..', '.', ' ' ],
[' * widgets @beta ..', '', ' ' ],
], 'Both change names should be declared';
is_deeply +MockOutput->get_emit, [
[__ 'not ok'], [__ 'not ok'],
[ "\n", $msg ],
[ '-' x length $msg ],
[__x 'Changes: {number}', number => 2 ],
[__x 'Errors: {number}', number => 2 ],
], 'Output should include the failure report';
is_deeply +MockOutput->get_comment, [
['WTF!'],
['WTF!'],
], 'Should have the errors in comments';
is_deeply +MockOutput->get_vent, [], 'Nothing should have been vented';
is_deeply $engine->seen, [
["deployed_changes", undef],
["change_id_for", {
change_id => undef,
change => 'users',
tag => undef,
project => 'sql',
}],
["change_id_offset_from_id", ['25cfff05d28c898f5c37263e2559fe75e239003c', 0]],
["change_id_for", {
change_id => undef,
change => 'widgets',
tag => undef,
project => 'sql',
}],
["change_id_offset_from_id", ['2f77ad8585862a3926df4b0447d2bafd199de791', 0]],
], 'Should have searched offsets but not run the verify file';
##############################################################################
# Test check().
can_ok $engine, 'check';
my @check_changes;
$mock_engine->mock( _load_changes => sub { @check_changes });
# First, test with no changes.
ok $engine->check,
'Should return success for no deployed changes';
is_deeply +MockOutput->get_info, [
[__x 'Checking {destination}', destination => $engine->destination],
[__ 'No changes deployed'],
], 'Notification of the check should be emitted';
is_deeply $engine->seen, [["deployed_changes", undef]],
'Should have called deployed_changes';
# Try no changes *and* nothing in the plan.
$count = 0;
$mock_plan->mock(count => sub { $count });
ok $engine->check,
'Should return success for no changes';
is_deeply +MockOutput->get_info, [
[__x 'Checking {destination}', destination => $engine->destination],
[__ 'Nothing to check (no planned or deployed changes)'],
], 'Notification of the verify should be emitted';
is_deeply $engine->seen, [["deployed_changes", undef]],
'Should have called deployed_changes';
# Now return some changes but have nothing in the plan.
@check_changes = @changes;
throws_ok { $engine->check } 'App::Sqitch::X',
'Should get error for no planned changes';
is $@->ident, 'check', 'Failed check ident should be "check"';
is $@->exitval, 1, 'No planned changes exitval should be 1';
is $@->message, __ 'Failed one check',
'Failed check message should be correct';
is_deeply +MockOutput->get_info, [
[__x 'Checking {destination}', destination => $engine->destination],
], 'Notification of the check should be emitted';
is_deeply +MockOutput->get_emit, [
[__x 'Script signatures diverge at change {change}',
change => $check_changes[0]->format_name_with_tags],
], 'Divergent change info should be emitted';
is_deeply $engine->seen, [
["deployed_changes", undef],
["latest_change_id", undef]
], 'Should have called deployed_changes and latest_change_id';
# Let's do one change and have it pass.
$mock_plan->mock(index_of => 0);
$count = 1;
@check_changes = ($changes[0]);
ok $engine->check, 'Check one change';
is_deeply +MockOutput->get_info, [
[__x 'Checking {destination}', destination => $engine->destination],
], 'Notification of the check should be emitted';
is_deeply +MockOutput->get_emit, [
[__ 'Check successful'],
], 'Success should be emitted';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply $engine->seen, [
["deployed_changes", undef],
["latest_change_id", undef]
], 'Should have called deployed_changes and latest_change_id';
# Let's change a script hash and have it fail.
@check_changes = (clone($changes[0]));
$mock_change = Test::MockObject::Extends->new($plan->change_at(0));
$mock_change->mock('script_hash', sub { '42' });
$count = 1;
throws_ok { $engine->check } 'App::Sqitch::X',
'Should get error for one divergent script hash';
is $@->ident, 'check', 'Failed check ident should be "check"';
is $@->exitval, 1, 'No planned changes exitval should be 1';
is $@->message, __ 'Failed one check',
'Failed check message should be correct';
is_deeply +MockOutput->get_info, [
[__x 'Checking {destination}', destination => $engine->destination],
], 'Notification of the check should be emitted';
is_deeply +MockOutput->get_emit, [
[__x 'Script signatures diverge at change {change}',
change => $check_changes[0]->format_name_with_tags],
], 'Divergent change info should be emitted';
is_deeply $engine->seen, [
["deployed_changes", undef],
["latest_change_id", undef]
], 'Should have called deployed_changes and latest_change_id';
$mock_plan->unmock('index_of');
$mock_change->unmock('script_hash');
# Let's change the second script hash and have it fail there.
@check_changes = ($changes[0], clone($changes[1]));
$mock_change = Test::MockObject::Extends->new($check_changes[1]);
$mock_change->mock('script_hash', sub { '42' });
$count = 1;
throws_ok { $engine->check } 'App::Sqitch::X',
'Should get error for one divergent script hash';
is $@->ident, 'check', 'Failed check ident should be "check"';
is $@->exitval, 1, 'No planned changes exitval should be 1';
is $@->message, __ 'Failed one check',
'Failed check message should be correct';
is_deeply +MockOutput->get_info, [
[__x 'Checking {destination}', destination => $engine->destination],
], 'Notification of the check should be emitted';
is_deeply +MockOutput->get_emit, [
[__x 'Script signatures diverge at change {change}',
change => $check_changes[1]->format_name_with_tags],
], 'Divergent change info should be emitted';
is_deeply $engine->seen, [
["deployed_changes", undef],
["latest_change_id", undef]
], 'Should have called deployed_changes and latest_change_id';
# The check should be fine if we stop at the first change
# (check should honor the `to` argument)
push @resolved => $changes[0]->id;
ok $engine->check(
undef,
$changes[0]->format_name_with_tags,
),
'Check one change with to arg';
is_deeply +MockOutput->get_info, [
[__x 'Checking {destination}', destination => $engine->destination],
], 'Notification of the check should be emitted';
is_deeply +MockOutput->get_emit, [
[__ 'Check successful'],
], 'Success should be emitted';
is_deeply +MockOutput->get_comment, [], 'Should have no comments';
is_deeply $engine->seen, [
["deployed_changes", undef],
["change_id_for", {
change_id => undef,
change => 'roles',
tag => undef,
project => 'sql',
}],
["change_id_offset_from_id", ['0539182819c1f0cb50dc4558f4f80b1a538a01b2', 0]],
], 'Should have searched offsets';
# The check should be fine if we start at the second change
# (check should honor the `from` argument)
push @resolved => $changes[1]->id;
throws_ok {
$engine->check(
$changes[1]->format_name_with_tags,
undef,
)
} 'App::Sqitch::X', 'Should get error for one divergent script hash with from arg';
is $@->ident, 'check', 'Failed check ident should be "check"';
is $@->exitval, 1, 'No planned changes exitval should be 1';
is $@->message, __ 'Failed one check',
'Failed check message should be correct';
is_deeply +MockOutput->get_info, [
[__x 'Checking {destination}', destination => $engine->destination],
], 'Notification of the check should be emitted';
is_deeply +MockOutput->get_emit, [
[__x 'Script signatures diverge at change {change}',
change => $check_changes[1]->format_name_with_tags],
], 'Divergent change info should be emitted';
is_deeply $engine->seen, [
["deployed_changes", undef],
["change_id_for", {
change_id => undef,
change => 'users ',
tag => 'alpha',
project => 'sql',
}],
["change_id_offset_from_id", ['25cfff05d28c898f5c37263e2559fe75e239003c', 0]],
["latest_change_id", undef],
], 'Should have searched offsets and the latest change ID';
##############################################################################
# Test lock_destination().
# Test check().
$mock_engine->unmock('lock_destination');
can_ok $engine, 'lock_destination';
is $engine->lock_timeout, 60, 'Lock timeout should be 60 seconds';
# First let the try lock succeed.
$try_lock_ret = 1;
$engine->_locked(0);
ok $engine->lock_destination, 'Lock destination';
is $engine->_locked, 1, 'Should be locked';
is_deeply $engine->seen, [], 'wait_lock should not have been called';
is_deeply +MockOutput->get_info, [], 'Should have emitted no info';
# Now let the lock fail and fall back on waiting for the lock.
$try_lock_ret = 0;
$wait_lock_ret = 1;
$engine->_locked(0);
ok $engine->lock_destination, 'Lock destination';
is $engine->_locked, 1, 'Should be locked again';
is_deeply $engine->seen, ['wait_lock'], 'wait_lock should have been called';
is_deeply +MockOutput->get_info, [[__x(
'Blocked by another instance of Sqitch working on {dest}; waiting {secs} seconds...',
dest => $engine->destination,
secs => $engine->lock_timeout,
)]], 'Should have notified user of waiting for lock';
# Another attempt to lock should be a no-op.
ok $engine->lock_destination, 'Lock destination again';
is_deeply $engine->seen, [], 'wait_lock should not have been called';
is_deeply +MockOutput->get_info, [], 'Should again have emitted no info';
# Now have it time out.
$try_lock_ret = 0;
$wait_lock_ret = 0;
$engine->_locked(0);
$engine->lock_timeout(0.1);
throws_ok { $engine->lock_destination } 'App::Sqitch::X',
'Should get error for lock timeout';
is $@->ident, 'engine', 'Lock timeout error ident should be "engine"';
is $@->exitval, 2, 'Lock timeout error exitval should be 2';
is $@->message, __x(
'Timed out waiting {secs} seconds for another instance of Sqitch to finish work on {dest}',
dest => $engine->destination,
secs => $engine->lock_timeout,
), 'Lock timeout error message should be correct';
is_deeply +MockOutput->get_info, [[__x(
'Blocked by another instance of Sqitch working on {dest}; waiting {secs} seconds...',
dest => $engine->destination,
secs => $engine->lock_timeout,
)]], 'Should have notified user of waiting for lock';
is_deeply $engine->seen, ['wait_lock'], 'wait_lock should have been called';
##############################################################################
# Test _to_idx()
$mock_whu->mock(latest_change_id => 2);
is $engine->_to_idx, $plan->count-1,
'Should get last index when there is a latest change ID';
$mock_whu->unmock('latest_change_id');
##############################################################################
# Test _handle_lookup_index() with change names not in the plan.
throws_ok { $engine->_handle_lookup_index('foo', [qw(x y)]) } 'App::Sqitch::X',
'Should die on too many IDs';
is $@->ident, 'engine', 'Too many IDs ident should be "engine"';
is $@->message, __('Change Lookup Failed'),
'Too many IDs message should be correct';
is_deeply +MockOutput->get_vent, [
[__x(
'Change "{change}" is ambiguous. Please specify a tag-qualified change:',
change => 'foo',
)],
[ ' * ', 'bugaboo' ],
[ ' * ', 'bugaboo' ],
], 'Too many IDs error should have been vented';
##############################################################################
# Test planned_deployed_common_ancestor_id.
is $engine->planned_deployed_common_ancestor_id,
'0539182819c1f0cb50dc4558f4f80b1a538a01b2',
'Test planned_deployed_common_ancestor_id';
##############################################################################
# Test default implementations.
is $engine->key, 'whu', 'Should have key';
is $engine->driver, $engine->key, 'Driver should be the same as engine';
ok $CLASS->try_lock, 'Default try_lock should return true by default';
is $CLASS->begin_work, $CLASS, 'Default begin_work should return self';
is $CLASS->finish_work, $CLASS, 'Default finish_work should return self';
__END__
diag $_->format_name_with_tags for @changes;
diag '======';
diag $_->format_name_with_tags for $plan->changes;
|