1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856
|
/*
Copyright (c) 2017, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _WIN32
#include <sys/stat.h>
#endif
#include <ctime>
#include <fstream>
#include <string>
#include <gmock/gmock-matchers.h>
#include <gtest/gtest.h>
#ifdef RAPIDJSON_NO_SIZETYPEDEFINE
#include "my_rapidjson_size_t.h"
#endif
#include <rapidjson/document.h>
#include <rapidjson/writer.h>
#include "dim.h"
#include "harness_assert.h"
#include "keyring/keyring_manager.h"
#include "mock_server_rest_client.h"
#include "mock_server_testutils.h"
#include "mysql/harness/net_ts/impl/resolver.h"
#include "mysql/harness/net_ts/internet.h"
#include "mysql/harness/stdx/expected.h"
#include "mysql/harness/string_utils.h" // split_string
#include "mysqld_error.h"
#include "random_generator.h"
#include "rest_api_testutils.h"
#include "router_component_test.h"
#include "router_test_helpers.h" // get_file_output
#include "script_generator.h"
#include "socket_operations.h"
/**
* @file
* @brief Component Tests for the bootstrap operation
*/
using namespace std::chrono_literals;
using namespace std::string_literals;
using mysqlrouter::ClusterType;
/**
* wrap all elements of a container in a matcher.
*
* To match lines against a substrings which are provided by an
* array-of-strings:
*
* @code
* EXPECT_THAT(lines, IsSupersetOf(make_matchers(
* {"foo", "bar"}, [](const auto &s){ return HasSubstr(s); }
* )));
* @endcode
*
* is the same as:
*
* @code
* EXPECT_THAT(lines, IsSupersetOf(
* HasSubstr("foo"),
* HasSubstr("bar")
* ));
* @endcode
*/
template <class Container, class UnaryOperation>
auto make_matchers(const Container &container, UnaryOperation unary_op) {
std::vector<::testing::Matcher<typename Container::value_type>> out;
for (const auto &el : container) {
out.emplace_back(unary_op(el));
}
return out;
}
////////////////////////////////////////////////////////////////////////////////
//
// class AccountReuseTestBase
//
////////////////////////////////////////////////////////////////////////////////
class AccountReuseTestBase : public RouterComponentBootstrapTest {
public:
template <typename Container, typename Func>
static std::string make_list(const Container &items, Func generator) {
if (items.empty()) return "";
std::string res;
bool is_first{true};
for (const auto &i : items) {
if (is_first) {
is_first = false;
} else {
res += ",";
}
res += generator(i);
}
return res;
}
protected:
////////////////////////////////////////////////////////////////////////////////
// SQL for .JS backend functions
////////////////////////////////////////////////////////////////////////////////
static std::string res_ok() { return R"("ok": {})"; }
static std::string res_error(
unsigned code = 1234, const std::string &msg = "je pense, donc je suis") {
return
R"("error": {
"code": )" +
std::to_string(code) +
R"(,
"sql_state": "HY001",
"message": ")" +
msg +
R"("
})";
}
static std::string sql_create_user(const std::string &account_auth_list,
bool if_not_exists = true) {
return "CREATE USER "s + (if_not_exists ? "IF NOT EXISTS " : "") +
account_auth_list;
}
static std::string res_create_user(unsigned warning_count) {
return R"("ok": { "warning_count" : )" + std::to_string(warning_count) +
"}";
}
static std::string res_cu_error(const std::string &username,
const std::set<std::string> &account_hosts) {
const std::string al = make_account_list(username, account_hosts);
return res_error(
ER_CANNOT_USER /*1396*/,
"ERROR 1396 (HY000): Operation CREATE USER failed for " + al);
}
static std::string sql_show_warnings() { return "SHOW WARNINGS"; }
static std::string res_show_warnings(
const std::string &username, const std::set<std::string> &account_hosts) {
// SHOW WARNINGS example output
// +-------+------+---------------------------------------------+
// | Level | Code | Message |
// +-------+------+---------------------------------------------+
// | Note | 3163 | Authorization ID 'bla'@'h1' already exists. |
// | Note | 3163 | Authorization ID 'bla'@'h3' already exists. |
// +-------+------+---------------------------------------------+
std::string res =
R"("result": {
"columns": [
{
"type": "STRING",
"name": "Level"
},
{
"type": "LONG",
"name": "Code"
},
{
"type": "STRING",
"name": "Message"
}
],
"rows": [)";
bool is_first{true};
for (const std::string &h : account_hosts) {
if (is_first) {
is_first = false;
} else {
res += ",";
}
res += R"([ "Note", )" + kUserExistsCode + R"(, "Authorization ID ')" +
username + "'@'" + h + R"(' already exists." ])";
}
res += R"( ]
})";
return res;
}
static std::string sql_grant_1(const std::string &account_list) {
return "GRANT SELECT, EXECUTE ON mysql_innodb_cluster_metadata.* TO " +
account_list;
}
static std::string sql_grant_2(const std::string &account_list) {
return "GRANT SELECT ON performance_schema.replication_group_members TO " +
account_list;
}
static std::string sql_grant_3(const std::string &account_list) {
return "GRANT SELECT ON performance_schema.replication_group_member_stats "
"TO " +
account_list;
}
static std::string sql_grant_4(const std::string &account_list) {
return "GRANT SELECT ON performance_schema.global_variables TO " +
account_list;
}
static std::string sql_grant_5(const std::string &account_list) {
return "GRANT INSERT, UPDATE, DELETE ON "
"mysql_innodb_cluster_metadata.routers TO " +
account_list;
}
static std::string sql_grant_6(const std::string &account_list) {
return "GRANT INSERT, UPDATE, DELETE ON "
"mysql_innodb_cluster_metadata.v2_routers TO " +
account_list;
}
static std::string sql_drop_user_if_exists(const std::string &account_list) {
return "DROP USER IF EXISTS " + account_list;
}
static std::string sql_rollback() { return "ROLLBACK"; }
static std::string sql_fetch_hosts() {
return "SELECT member_host, member_port FROM "
"performance_schema.replication_group_members /*!80002 ORDER BY "
"member_role */";
}
static std::string res_fetch_hosts(const std::vector<uint16_t> server_ports) {
harness_assert(server_ports.size() == 3);
return R"("result": {
"columns": [
{
"name": "member_host",
"type": "STRING"
},
{
"name": "member_port",
"type": "LONG"
}
],
"rows": [
[
"127.0.0.1",
)" + std::to_string(server_ports[0]) +
R"(
],
[
"127.0.0.1",
)" + std::to_string(server_ports[1]) +
R"(
],
[
"127.0.0.1",
)" + std::to_string(server_ports[2]) +
R"(
]
]
})";
}
static std::string sql_insert_router(const std::string hostname,
const std::string router_name = "") {
return "INSERT INTO mysql_innodb_cluster_metadata.v2_routers "
"(address, product_name, router_name)"
" VALUES ('" +
hostname + "', 'MySQL Router', '" + router_name + "')";
}
static std::string res_insert_host_id_and_router_name_duplicate_key_error() {
return res_error(ER_DUP_ENTRY);
}
static std::string sql_fetch_router_id(std::string router_name = "") {
return "SELECT router_id FROM mysql_innodb_cluster_metadata.v2_routers "
"WHERE router_name = '" +
router_name + "'";
}
static std::string res_fetch_router_id(unsigned router_id) {
return
R"("result": {
"columns": [
{
"type": "STRING",
"name": "router_id"
}
],
"rows": [[ ")" +
std::to_string(router_id) + R"(" ]]
})";
}
// ---- account validation queries ----
static std::string sql_val1() {
return "select C.cluster_id, C.cluster_name, I.mysql_server_uuid, "
"I.endpoint, I.xendpoint, I.attributes "
"from mysql_innodb_cluster_metadata.v2_instances I join "
"mysql_innodb_cluster_metadata.v2_gr_clusters C on I.cluster_id = "
"C.cluster_id where C.cluster_name = 'some_cluster_name'";
}
static std::string sql_val2() {
return "show status like 'group_replication_primary_member'";
}
static std::string sql_val3() {
return "SELECT member_id, member_host, member_port, member_state, "
"@@group_replication_single_primary_mode FROM "
"performance_schema.replication_group_members WHERE channel_name = "
"'group_replication_applier'";
}
static std::string sql_val4() {
return "select @@group_replication_group_name";
}
static std::string stmt_resp(const std::string &stmt,
const std::string &response = "\"ok\": {}") {
return "\"" + stmt + "\": {" + response + "}";
}
struct CustomResponses {
// list of SQL statements that were expected to execute - scan SQL log
// for all items on this list to ensure that all of them executed
std::vector<std::string> exp_sql;
// list of JS objects (stmts and their responses) that we feed to the
// MockServer
std::string stmts;
// both class members should be 1:1. This convenience method makes this
// easier
void add(const std::string &stmt,
const std::string &response = "\"ok\": {}") {
if (stmts.empty())
stmts = stmt_resp(stmt, response);
else
stmts += ",\n" + stmt_resp(stmt, response);
exp_sql.emplace_back(stmt);
}
void add(const CustomResponses &other) {
if (stmts.empty())
stmts = other.stmts;
else
stmts += ",\n" + other.stmts;
exp_sql.insert(exp_sql.end(), other.exp_sql.begin(), other.exp_sql.end());
}
};
// generates SQL statements that emulate creation of account(s) for a
// scenario where CREATE USER [IF NOT EXISTS] succeeds
CustomResponses gen_sql_for_creating_accounts(
const std::string &username,
const std::set<std::string> &hostnames_requested,
const std::set<std::string> &hostnames_existing =
{}, // must be empty if if_not_exists == false
bool if_not_exists = true,
const std::string &password = kAccountUserPassword) {
CustomResponses cr;
// CREATE USER [IF NOT EXISTS]
const std::string account_auth_list =
make_account_auth_list(username, hostnames_requested, password);
std::set<std::string> hostnames_new;
if (hostnames_existing.empty()) {
cr.add(sql_create_user(account_auth_list, if_not_exists));
hostnames_new = hostnames_requested;
} else {
harness_assert(if_not_exists);
cr.add(sql_create_user(account_auth_list, if_not_exists),
res_create_user(hostnames_existing.size()));
cr.add(sql_show_warnings(),
res_show_warnings(username, hostnames_existing));
std::set_difference(hostnames_requested.begin(),
hostnames_requested.end(), hostnames_existing.begin(),
hostnames_existing.end(),
std::inserter(hostnames_new, hostnames_new.begin()));
}
// GRANTs
if (!hostnames_new.empty()) {
const std::string al = make_account_list(username, hostnames_new);
cr.add(sql_grant_1(al));
cr.add(sql_grant_2(al));
cr.add(sql_grant_3(al));
cr.add(sql_grant_4(al));
cr.add(sql_grant_5(al));
cr.add(sql_grant_6(al));
}
return cr;
}
// generates SQL statements that emulate an already-registered Router
// (queries + responses that will occur during a subsequent bootstrap)
CustomResponses gen_sql_for_registered_router(
const unsigned router_id = 123) {
CustomResponses cr;
cr.add(sql_insert_router("dont.query.dns"),
res_insert_host_id_and_router_name_duplicate_key_error());
cr.add(sql_fetch_router_id(), res_fetch_router_id(router_id));
return cr;
}
void set_mock_server_sql_statements(
uint16_t server_http_port,
const std::string
&custom_responses, // custom SQL statements + responses, same form as
// common_statements.js
const std::string &validated_username =
"<not set>" // used during account validation
) {
try {
MockServerRestClient(server_http_port)
.set_globals(
"{"
"\"custom_responses\": {" +
custom_responses +
"},"
"\"custom_auth\": { \"username\": \"" +
validated_username +
"\" }"
"}");
} catch (const std::exception &e) {
FAIL() << e.what() << "\n"
<< "custom_responses payload = '" << custom_responses << "'"
<< std::endl;
};
}
////////////////////////////////////////////////////////////////////////////////
// other functions
////////////////////////////////////////////////////////////////////////////////
ProcessWrapper &launch_mock_server(
uint16_t server_port, uint16_t server_http_port,
const std::string &js = "bootstrap_account_tests.js") {
const std::string json_stmts = get_data_dir().join(js).str();
constexpr bool debug = true;
auto &server_mock = launch_mysql_server_mock(
json_stmts, server_port, EXIT_SUCCESS, debug, server_http_port);
return server_mock;
}
ProcessWrapper &launch_bootstrap(int exp_exit_code, uint16_t server_port,
const std::string &bootstrap_directory,
const std::vector<std::string> &extra_args,
const std::string &account_password,
const std::string &username = kAccountUser,
bool root_password_on_cmdline = false) {
std::vector<std::string> args = {
"--bootstrap",
"root"s + (root_password_on_cmdline ? ":root_password" : "") +
"@127.0.0.1:" + std::to_string(server_port),
"-d", bootstrap_directory};
for (const std::string &a : extra_args) args.push_back(a);
ProcessWrapper::OutputResponder output_responder{
[=](const std::string &line) -> std::string {
if (line == "Please enter MySQL password for " + username + ": ")
return account_password + "\n";
if (!root_password_on_cmdline &&
line == "Please enter MySQL password for root: ")
return "fake-root-pass\n";
return "";
}};
return launch_router_for_bootstrap(args, exp_exit_code, true, true, true,
output_responder);
}
static std::string get_local_hostname() {
return mysql_harness::SocketOperations::instance()->get_local_hostname();
}
static stdx::expected<std::string, std::error_code> get_local_ipv4(
const std::string &local_hostname) {
addrinfo hints{};
hints.ai_socktype = SOCK_STREAM;
auto ai_res = net::impl::resolver::getaddrinfo(local_hostname.c_str(),
"3306", &hints);
if (!ai_res) {
return stdx::make_unexpected(ai_res.error());
}
auto localhost_ip_res = net::ip::make_address("127.0.0.1");
if (!localhost_ip_res) {
return stdx::make_unexpected(localhost_ip_res.error());
}
const auto localhost_ip = localhost_ip_res.value();
for (auto ai = ai_res.value().get(); ai != nullptr; ai = ai->ai_next) {
if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6) continue;
net::ip::tcp::endpoint ep;
if (ai->ai_addrlen > ep.capacity()) {
return stdx::make_unexpected(
make_error_code(std::errc::no_space_on_device));
}
std::memcpy(ep.data(), ai->ai_addr, ai->ai_addrlen);
ep.resize(ai->ai_addrlen);
// get an IPv4 address that is not referring to 127.0.0.1.
//
// it may refer to another address on the loopback interface though like
// 127.0.1.1
if (ep.address().is_v4() && ep.address() != localhost_ip) {
return ep.address().to_string();
}
}
return stdx::make_unexpected(
make_error_code(std::errc::no_such_file_or_directory));
}
void check_bootstrap_success(
ProcessWrapper &router, const std::vector<std::string> exp_output,
const std::vector<std::string> unexp_output = {}) {
ASSERT_NO_THROW(router.wait_for_exit());
auto output = mysql_harness::split_string(router.get_full_output(), '\n');
EXPECT_THAT(output,
::testing::IsSupersetOf(make_matchers(exp_output, [](auto &s) {
return ::testing::HasSubstr(s);
})));
EXPECT_THAT(output, ::testing::IsSupersetOf(
make_matchers(unexp_output, [](auto &s) {
return ::testing::Not(::testing::HasSubstr(s));
})));
}
void check_bootstrap_success(ProcessWrapper &router,
const std::string &exp_output) {
check_bootstrap_success(router, {exp_output}, {});
}
void check_keyring(const std::string &bootstrap_directory, bool expect_exists,
const std::string &expect_user = "",
const std::string &expect_password = "") {
// expect that keyring exists and contains expected account name and
// password
if (expect_exists) {
mysql_harness::reset_keyring();
ASSERT_NO_THROW(mysql_harness::init_keyring(
Path(bootstrap_directory)
.join("data")
.join("keyring")
.real_path()
.str(),
Path(bootstrap_directory).join("mysqlrouter.key").str(), false));
const std::string kKeyringAttributePassword = "password";
std::string password;
EXPECT_NO_THROW(password = mysql_harness::get_keyring()->fetch(
expect_user, kKeyringAttributePassword));
EXPECT_EQ(expect_password, password);
}
// expect that keyring does not exist
else {
EXPECT_FALSE(Path(bootstrap_directory).join("data").exists());
EXPECT_FALSE(Path(bootstrap_directory).join("mysqlrouter.key").exists());
}
}
void check_questions_asked_by_bootstrap(
int exp_exit_code, ProcessWrapper &router,
bool account_opt /* whether --account was given on cmdline */,
bool root_password_on_cmdline = false) {
// calling check_bootstrap_success() is a prerequisite
const size_t root_pass_prompt = ([&]() {
if (root_password_on_cmdline)
// to keep logic simple, we cheat by pretending prompt was asked right
// at the beginning
return size_t{0};
else
return router.get_full_output().find(
"Please enter MySQL password for root:");
})();
const size_t account_pass_prompt = router.get_full_output().find(
"Please enter MySQL password for some_user:");
// <account_user> prompt cannot appear if --account was not given on
// command-line
if (!account_opt) {
EXPECT_EQ(std::string::npos, account_pass_prompt);
}
if (exp_exit_code == EXIT_SUCCESS) {
// on success:
// - expect root password prompt
// - if --account was given on command-line, <account_user> password
// prompt should follow
EXPECT_NE(std::string::npos, root_pass_prompt);
if (account_opt) {
EXPECT_NE(std::string::npos, account_pass_prompt);
EXPECT_GT(account_pass_prompt,
root_pass_prompt); // <account_user> after root
}
} else {
// on error, prompts still have same presentation order, but the process
// is allowed to exit before showing any/all prompts. This translates to
// a requirement: 2nd question (<account_user> prompt) cannot be asked
// unless 1st question (root prompt) got asked first.
if (account_pass_prompt != std::string::npos) {
EXPECT_NE(std::string::npos, root_pass_prompt);
EXPECT_GT(account_pass_prompt,
root_pass_prompt); // <account_user> after root
}
}
}
void check_config(const std::string &bootstrap_directory, bool expect_exists,
const std::string &username = "") {
// calling check_bootstrap_success() is a prerequisite
Path config_file(bootstrap_directory);
config_file.append("mysqlrouter.conf");
// on bootstrap success, verify that configuration file got created with
// expected account name
if (expect_exists) {
ASSERT_TRUE(config_file.exists());
auto file_content = get_file_output(config_file.str());
auto lines = mysql_harness::split_string(file_content, '\n');
EXPECT_THAT(
lines, ::testing::Contains(::testing::HasSubstr("user=" + username)));
} else {
EXPECT_FALSE(config_file.exists());
}
}
// this works for a simple case, when there's no SHOW WARNINGS at play and no
// errors
void check_user_creating_SQL_calls(
const std::string &username,
const std::set<std::string> &exp_created_account_hosts,
bool if_not_exists, uint16_t server_http_port) {
const auto &h = exp_created_account_hosts; // shorter name alias
if (h.size()) {
const std::string account_auth_list = make_account_auth_list(username, h);
const std::string al = make_account_list(username, h);
std::vector<std::string> create_user_queries = {
sql_create_user(account_auth_list, if_not_exists),
sql_grant_1(al),
sql_grant_2(al),
sql_grant_3(al),
};
check_SQL_calls(server_http_port, create_user_queries);
}
}
void check_SQL_calls(uint16_t server_http_port,
const std::vector<std::string> exp_stmts,
const std::vector<std::string> unexp_stmts = {}) {
// calling check_bootstrap_success() is a prerequisite
std::string server_globals =
MockServerRestClient(server_http_port).get_globals_as_json_string();
rapidjson::Document json_doc;
json_doc.Parse(server_globals.c_str());
ASSERT_TRUE(json_doc.HasMember("sql_log"));
const auto &sql_log = json_doc["sql_log"];
const std::string id =
"[HTTP PORT " + std::to_string(server_http_port) + "] ";
auto expect_stmt = [&](const std::string &query, bool expected) {
// we search for substring matches - this is more useful than searching
// for an exact string when trying to prove a particular (class of)
// statements did or did not execute. You can always make the substring
// as specific as you'd like (the whole query string) to get the exact
// match behaviour.
ASSERT_TRUE(sql_log.IsObject());
if (expected) {
bool found{false};
for (auto const &member : sql_log.GetObject()) {
ASSERT_TRUE(member.name.IsString());
if (std::string(member.name.GetString(),
member.name.GetStringLength())
.find(query) != std::string::npos) {
found = true;
break;
}
}
ASSERT_TRUE(found) << query;
} else {
for (auto const &member : sql_log.GetObject()) {
ASSERT_TRUE(member.name.IsString());
ASSERT_EQ(std::string(member.name.GetString(),
member.name.GetStringLength())
.find(query),
std::string::npos)
<< "Unexpected query (substring) " + id + ": " << query << "\n";
}
}
};
for (const std::string &s : exp_stmts) expect_stmt(s, true);
for (const std::string &s : unexp_stmts) expect_stmt(s, false);
}
void create_config(const std::string &bootstrap_directory,
const std::string &username, unsigned router_id = 34,
const std::string &cluster_name = "test") {
create_config_file(bootstrap_directory, "[metadata_cache:" + cluster_name +
"]\n"
"router_id=" +
std::to_string(router_id) +
"\n"
"user=" +
username +
"\n"
"metadata_cluster=" +
cluster_name + "\n");
}
static void create_keyring(const std::string &bootstrap_directory,
const std::string &username,
const std::string &password) {
const std::string kKeyringAttributePassword = "password";
EXPECT_EQ(0,
mysql_harness::mkdir(Path(bootstrap_directory).join("data").str(),
mysql_harness::kStrictDirectoryPerm));
mysql_harness::reset_keyring();
EXPECT_NO_THROW(mysql_harness::init_keyring(
Path(bootstrap_directory)
.real_path()
.join("data")
.join("keyring")
.str(),
Path(bootstrap_directory).join("mysqlrouter.key").str(), true));
EXPECT_NO_THROW(mysql_harness::get_keyring()->store(
username, kKeyringAttributePassword, password));
EXPECT_NO_THROW(mysql_harness::flush_keyring());
}
static std::string make_account_list(const std::string &username,
const std::set<std::string> &hostnames) {
return make_list(hostnames, [&](const std::string &h) {
return "'" + username + "'@'" + h + "'";
});
}
static std::string make_account_auth_list(
const std::string &username, const std::set<std::string> &hostnames,
const std::string &password = kAccountUserPassword) {
return make_list(hostnames,
[&](const std::string &h) {
return "'" + username + "'@'" + h + "' IDENTIFIED BY '" +
password + "'";
}
);
}
static bool is_using_account(const std::vector<std::string> &cmdline_args) {
return is_given_on_cmdline(cmdline_args, "--account");
}
static bool is_if_not_exists(const std::vector<std::string> &cmdline_args) {
// default is if-not-exists
if (!is_given_on_cmdline(cmdline_args, "--account-create")) return true;
harness_assert(
is_given_on_cmdline(cmdline_args, "never") // -> false
|| is_given_on_cmdline(cmdline_args, "if-not-exists") // -> true
|| is_given_on_cmdline(cmdline_args, "always")); // -> false
return is_given_on_cmdline(cmdline_args, "if-not-exists");
}
static std::string missing_host_err_msg(
const std::string &host_not_in_db = std::string()) {
const std::string kSuffix =
"'does not exist. If this is expected, please rerun with "
"--account-create (always|if-not-exists)";
if (host_not_in_db.empty())
return /*could be either host here*/ kSuffix;
else
return "Error: Account '" + kAccountUser + "@" + host_not_in_db + kSuffix;
}
static std::string existing_host_err_msg(
const std::string &username, const std::set<std::string> &account_hosts) {
return "Error: Account(s) " + make_account_list(username, account_hosts) +
" already exist(s). If this is expected, please rerun without "
"`--account-create always`.";
}
static std::vector<std::string> undo_create_user_msg(
const std::string &new_account_list, const unsigned du_err_code = 0,
const std::string &du_err_msg = "") {
if (du_err_code) {
return {
// clang-format off
"- Creating account(s) (only those that are needed, if any)",
"FATAL ERROR ENCOUNTERED, attempting to undo new accounts that were created",
"ERROR: As part of cleanup after bootstrap failure, we tried to erase account(s)",
"that we created. Unfortunately the cleanup failed with error:",
" Error executing MySQL query \"DROP USER IF EXISTS " + new_account_list + "\": " + du_err_msg + " (" + std::to_string(du_err_code) + ")",
"You may want to clean up the accounts yourself, here is the full list of",
"accounts that were created:",
" " + new_account_list,
// clang-format on
};
} else {
return {
// clang-format off
"- Creating account(s) (only those that are needed, if any)",
"FATAL ERROR ENCOUNTERED, attempting to undo new accounts that were created",
"- New accounts cleaned up successfully",
// clang-format on
};
}
}
static std::vector<std::string> show_warnings_failed_err_msg(
const std::string &account_list) {
return {
// clang-format off
"- Creating account(s) (only those that are needed, if any)",
"ERROR: We created account(s), of which at least one already existed.",
"A fatal error occurred while we tried to determine which account(s) were new,",
"therefore to be safe, we did not erase any accounts while cleaning-up before",
"exiting.",
"You may want to clean those up yourself, if you deem it appropriate.",
"Here's a full list of accounts that bootstrap tried to create (some of which",
"might have already existed before bootstrapping):",
" " + account_list,
// clang-format on
};
}
static std::string acct_val_msg() {
return "- Verifying account (using it to run SQL queries that would be run "
"by Router)";
}
static std::vector<std::string> acct_val_failed_warning_msg() {
return {
"***** WARNING *****",
"Account verification failed with error:",
// <error appears in this line>
"This means that we were unable to log in using the accounts that were "
"created",
"and run SQL queries that Router needs to run during its operation.",
"It means this Router instance may be inoperable and user intervention "
"is",
"required to correct the issue and/or bootstrap again.",
};
}
static std::vector<std::string> acct_val_failed_error_msg() {
return {
// clang-format off
"Error: Account verification failed with error:",
// <error appears in this line>
"This means that we were unable to log in using the accounts that were created",
"and run SQL queries that Router needs to run during its operation.",
// clang-format on
};
}
static const std::string kBootstrapSuccessMsg;
static const std::string kUndoCreateUserSuccessMsg;
static const std::string kAccountUser; // passed by --account
static const std::string kAccountUserPassword;
static const std::string kAutoGenUser; // autogenerated without --account
static const std::string kAutoGenUserPassword;
static const std::string kHostC_inDB;
static const std::string kHostD_inDB;
static const std::string kHostA_notInDB;
static const std::string kHostB_notInDB;
static const std::vector<std::string> kAllHostsUsedInTests;
static const std::string kUserExistsCode; // "3163"
private:
static bool is_given_on_cmdline(const std::vector<std::string> &cmdline_args,
const std::string &arg) {
return std::find(cmdline_args.begin(), cmdline_args.end(), arg) !=
cmdline_args.end();
}
};
/*static*/ const std::string AccountReuseTestBase::kBootstrapSuccessMsg =
"MySQL Router configured for the InnoDB Cluster 'test'";
/*static*/ const std::string AccountReuseTestBase::kUndoCreateUserSuccessMsg =
"- New accounts cleaned up successfully";
/*static*/ const std::string AccountReuseTestBase::kAccountUser = "some_user";
/*static*/ const std::string AccountReuseTestBase::kAutoGenUser =
"mysql_router1_abcdefghijkl";
/*static*/ const std::string AccountReuseTestBase::kHostC_inDB = "host9";
/*static*/ const std::string AccountReuseTestBase::kHostD_inDB =
"%"; // wildcards are not special to CREATE USER, and so they're not
// special to us. '%' can co-exist with other hostnames, perfectly
// fine, see WL#13177 for details
/*static*/ const std::string AccountReuseTestBase::kHostA_notInDB = "host1";
/*static*/ const std::string AccountReuseTestBase::kHostB_notInDB = "host2%";
/*static*/ const std::vector<std::string>
AccountReuseTestBase::kAllHostsUsedInTests = {
kHostC_inDB, kHostD_inDB, kHostA_notInDB, kHostB_notInDB};
/*static*/ const std::string AccountReuseTestBase::kAccountUserPassword =
"fake-account-pass";
/*static*/ const std::string AccountReuseTestBase::kAutoGenUserPassword =
"fake-autogen-pass";
/*static*/ const std::string AccountReuseTestBase::kUserExistsCode =
std::to_string(ER_USER_ALREADY_EXISTS); // "3163"
////////////////////////////////////////////////////////////////////////////////
// //
// COMMAND-LINE VERIFICATION TESTS //
// //
////////////////////////////////////////////////////////////////////////////////
class AccountReuseBadCmdlineTest : public AccountReuseTestBase {};
/**
* @test
* verify that --account without --bootstrap switch produces an error and exits
*
* WL13177:TS_FR06_01
*/
TEST_F(AccountReuseBadCmdlineTest, account_without_bootstrap_switch) {
// launch the router in bootstrap mode
auto &router =
launch_router_for_bootstrap({"--account", "account1"}, EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(
router.get_full_output(),
::testing::HasSubstr(
"Option --account can only be used together with -B/--bootstrap"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --account without required argument produces an error and exits
*
* WL13177:TS_FR07_01
*/
TEST_F(AccountReuseBadCmdlineTest, account_argument_missing) {
// launch the router in bootstrap mode
auto &router =
launch_router_for_bootstrap({"-B=0", "--account"}, EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(
router.get_full_output(),
::testing::HasSubstr("option '--account' expects a value, got nothing"));
}
/**
* @test
* verify that --account with empty argument produces an error and exits
*
* WL13177:TS_FR07_02
*/
TEST_F(AccountReuseBadCmdlineTest, account_argument_empty) {
// launch the router in bootstrap mode
auto &router =
launch_router_for_bootstrap({"-B=0", "--account", ""}, EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr(
"Error: Value for --account option cannot be empty"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --account given twice produces an error and exits
*/
TEST_F(AccountReuseBadCmdlineTest, account_given_twice) {
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{"-B=0", "--account", "user1", "--account", "user2"}, EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr(" Option --account can only be given once"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --account-create without --account switch produces an error and
* exits
*
* WL13177:TS_FR09_01
*/
TEST_F(AccountReuseBadCmdlineTest, account_create_without_account_switch) {
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{"-B=0", "--account-create", "never"}, EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(
router.get_full_output(),
::testing::HasSubstr(
"Option --account-create can only be used together with --account"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --account-create without required argument produces an error and
* exits
*
* WL13177:TS_FR08_01
*/
TEST_F(AccountReuseBadCmdlineTest, account_create_argument_missing) {
// launch the router in bootstrap mode
auto &router =
launch_router_for_bootstrap({"-B=0", "--account-create"}, EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr(
"option '--account-create' expects a value, got nothing"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --account-create given with illegal argument produces an error
* and exits
*
* WL13177:TS_FR08_02
*/
TEST_F(AccountReuseBadCmdlineTest, account_create_illegal_value) {
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{"-B=0", "--account", "user1", "--account-create", "bla"}, EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(
router.get_full_output(),
::testing::HasSubstr("Invalid value for --account-create option. Valid "
"values: always, if-not-exists, never"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --account-create given twice produces an error and exits
*/
TEST_F(AccountReuseBadCmdlineTest, account_create_given_twice) {
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{"-B=0", "--account", "user1", "--account-create", "never",
"--account-create", "never"},
EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(
router.get_full_output(),
::testing::HasSubstr("Option --account-create can only be given once"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that `--account-create never` and `--account-host <host>` produce an
* error and exit
*
* WL13177:TS_FR10_01
*/
TEST_F(AccountReuseBadCmdlineTest, account_create_never_and_account_host) {
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{
"-B=0", "--account", "user1", "--account-create", "never",
"--account-host", "foo", // even '%' would not be allowed
},
EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(
router.get_full_output(),
::testing::HasSubstr("Option '--account-create never' cannot be used "
"together with '--account-host <host>'"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --strict without --bootstrap switch produces an error and exits
*
* WL13177:TS_FR16_01
*/
TEST_F(AccountReuseBadCmdlineTest, strict_without_bootstrap_switch) {
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap({"--strict"}, EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(
router.get_full_output(),
::testing::HasSubstr(
"Option --strict can only be used together with -B/--bootstrap"));
check_exit_code(router, EXIT_FAILURE);
}
////////////////////////////////////////////////////////////////////////////////
// //
// SIMPLE POSITIVE TESTS //
// //
////////////////////////////////////////////////////////////////////////////////
class AccountReuseTest : public AccountReuseTestBase {};
/**
* @test
* simple bootstrap without any options
* verify that bootstrap will:
* - create a new account with autogenerated name
* - verify config is written and contains autogenerated username
* - verify expected password prompts are presented
*
* WL13177:TS_FR11_01
*/
TEST_F(AccountReuseTest, simple) {
// no config exists yet
TempDirectory bootstrap_directory;
// test params
const std::vector<std::string> args;
const std::set<std::string>
existing_hosts; // kAutoGenUser@% doesn't exist yet
// expectations
int exp_exit_code = EXIT_SUCCESS;
const std::string exp_output = kBootstrapSuccessMsg;
const std::string exp_username = "mysql_router1_" /* random suffix follows*/;
const std::string exp_password = kAutoGenUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
std::vector<std::string> exp_sql = {"CREATE USER IF NOT EXISTS",
"GRANT SELECT ON "};
std::vector<std::string> unexp_sql = {"DROP USER"};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// run bootstrap
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
/**
* @test
* verify that --account-host:
* - works in general
* - works for simple case, implicit --account-host
*/
TEST_F(AccountReuseTest, no_host_patterns) {
for (bool root_password_on_cmdline : {true, false}) {
TempDirectory bootstrap_directory;
// extract test params
const std::vector<std::string> args = {
"--account",
kAccountUser,
};
const std::string exp_output = kBootstrapSuccessMsg;
int exp_exit_code = EXIT_SUCCESS;
const std::set<std::string> exp_created_account_hosts = {"%"};
//
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const bool if_not_exists = true; // default
CustomResponses cr =
gen_sql_for_creating_accounts(exp_username, exp_created_account_hosts);
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts);
// run bootstrap
ProcessWrapper &router = launch_bootstrap(
exp_exit_code, server_port, bootstrap_directory.name(), args,
exp_password, exp_username, root_password_on_cmdline);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args),
root_password_on_cmdline);
check_keyring(bootstrap_directory.name(), true, exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_user_creating_SQL_calls(exp_username, exp_created_account_hosts,
if_not_exists, server_http_port);
}
}
/**
* @test
* verify that --account-host:
* - works in general
* - can be applied multiple times in one go
* - can take '%' as a parameter
* - redundant hosts are ignored
*/
TEST_F(AccountReuseTest, multiple_host_patterns) {
for (bool root_password_on_cmdline : {true, false}) {
TempDirectory bootstrap_directory;
// extract test params
const std::vector<std::string> args = {
"--account", kAccountUser,
"--account-host", kHostA_notInDB, // 2nd CREATE USER
"--account-host", "%", // 1st CREATE USER
"--account-host", kHostA_notInDB, // \_ redundant, ignored
"--account-host", kHostA_notInDB, // /
"--account-host", kHostB_notInDB, // 3rd CREATE USER
};
const std::string exp_output = kBootstrapSuccessMsg;
int exp_exit_code = EXIT_SUCCESS;
const std::set<std::string> exp_created_account_hosts = {
kHostA_notInDB, kHostB_notInDB, "%"};
//
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const bool if_not_exists = true; // default
CustomResponses cr =
gen_sql_for_creating_accounts(exp_username, exp_created_account_hosts);
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts);
// run bootstrap
ProcessWrapper &router = launch_bootstrap(
exp_exit_code, server_port, bootstrap_directory.name(), args,
exp_password, exp_username, root_password_on_cmdline);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args),
root_password_on_cmdline);
check_keyring(bootstrap_directory.name(), true, exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_user_creating_SQL_calls(exp_username, exp_created_account_hosts,
if_not_exists, server_http_port);
}
}
////////////////////////////////////////////////////////////////////////////////
// //
// This parametrised test runs various combinations of --account-create and //
// and --account-host switches vs various accounts (hostnames) already //
// existing //
// //
////////////////////////////////////////////////////////////////////////////////
// This struct defines (user creation oriented) SQL statements and their
// responses, which will be emulated by the MockServer.
struct MockServerResponses {
std::set<std::string> exp_cu_hosts = {}; // CREATE USER won't run if empty
std::string mock_res_cu = ""; // should be "" if exp_cu_hosts.empty()
std::string mock_res_sw = ""; // SHOW WARNINGS will not run if empty
std::set<std::string> exp_gr_hosts = {}; // GRANTs will not run if empty
bool rollback = false; // CREATE USER will fail and trigger ROLLBACK
};
struct RouterAccountCreateComboTestParams {
const std::string test_name;
const std::string username;
const std::vector<std::string> extra_args;
const std::set<std::string> account_host_args;
MockServerResponses database_ops;
const std::string exp_output;
int exp_exit_code;
};
class AccountReuseCreateComboTestP
: public AccountReuseTestBase,
public ::testing::WithParamInterface<RouterAccountCreateComboTestParams> {
public:
static std::vector<RouterAccountCreateComboTestParams> gen_testcases() {
const std::string A = kHostA_notInDB;
const std::string B = kHostB_notInDB;
const std::string C = kHostC_inDB;
const std::string D = kHostD_inDB;
const std::string HOST = get_local_hostname();
const auto local_ipv4_res = get_local_ipv4(HOST);
const std::string IP = local_ipv4_res.value_or("");
const std::string kColonUser = kAccountUser + ":" + kAccountUserPassword;
return {
// C = 'host9', D = '%'
// create implicitly % (doesn't exist)
/* TS_FR02_01 */
{"create_implicit_P_dne___n",
kAccountUser,
{"--account-create", "never"},
{/* % */},
{{}, "", "", {}},
kBootstrapSuccessMsg,
EXIT_SUCCESS}, // would fail with --strict
/* TS_FR01_04 */
{"create_implicit_P_dne___d",
kAccountUser,
{/* defaults to if-not-exists */},
{/* % */},
{{"%"}, res_create_user(0), "", {"%"}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR04_02 */
{"create_implicit_P_dne___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{/* % */},
{{"%"}, res_create_user(0), "", {"%"}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR03_02 */
{"create_implicit_P_dne___a",
kAccountUser,
{"--account-create", "always"},
{/* % */},
{{"%"}, res_create_user(0), "", {"%"}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
// create implicitly % (exists)
/* TS_FR02_02 */
{"create_implicit_P_exists___n",
kAccountUser,
{"--account-create", "never"},
{/* % */},
{{}, "", "", {}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR05_01 */
{"create_implicit_P_exists___d",
kAccountUser,
{/* defaults to if-not-exists */},
{/* % */},
{{"%"},
res_create_user(1),
res_show_warnings(kAccountUser, {"%"}),
{}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR04_01 */
{"create_implicit_P_exists___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{/* % */},
{{"%"},
res_create_user(1),
res_show_warnings(kAccountUser, {"%"}),
{}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR03_01 */
{"create_implicit_P_exists___a",
kAccountUser,
{"--account-create", "always"},
{/* % */},
{{"%"}, res_cu_error(kAccountUser, {"%"}), "", {}, true},
existing_host_err_msg(kAccountUser, {"%"}),
EXIT_FAILURE},
// create A (doesn't exist)
/* TS_FRxxxxx */
{"create_A_dne___d",
kAccountUser,
{/* defaults to if-not-exists */},
{A},
{{A}, res_create_user(0), "", {A}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_A_dne___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{A},
{{A}, res_create_user(0), "", {A}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_A_dne___a",
kAccountUser,
{"--account-create", "always"},
{A},
{{A}, res_create_user(0), "", {A}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
// create A (doesn't exist), B (doesn't exist)
/* TS_FRxxxxx */
{"create_A_exists___d",
kAccountUser,
{/* defaults to if-not-exists */},
{A, B},
{{A, B}, res_create_user(0), "", {A, B}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_A_exists___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{A, B},
{{A, B}, res_create_user(0), "", {A, B}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_A_exists___a",
kAccountUser,
{"--account-create", "always"},
{A, B},
{{A, B}, res_create_user(0), "", {A, B}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
// create A (doesn't exist), C (exists)
/* TS_FRxxxxx */
{"create_A_dne_C_exists___d",
kAccountUser,
{/* defaults to if-not-exists */},
{A, C},
{{A, C},
res_create_user(1),
res_show_warnings(kAccountUser, {C}),
{A}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_A_dne_C_exists___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{A, C},
{{A, C},
res_create_user(1),
res_show_warnings(kAccountUser, {C}),
{A}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_A_dne_C_exists___a",
kAccountUser,
{"--account-create", "always"},
{A, C},
{{A, C}, res_cu_error(kAccountUser, {C}), "", {}, true},
existing_host_err_msg(kAccountUser, {C}),
EXIT_FAILURE},
// create C (exists), D (exists)
/* TS_FRxxxxx */
{"create_C_exists_D_exists___d",
kAccountUser,
{/* defaults to if-not-exists */},
{C, D},
{{C, D},
res_create_user(2),
res_show_warnings(kAccountUser, {C, D}),
{}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_C_exists_D_exists___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{C, D},
{{C, D},
res_create_user(2),
res_show_warnings(kAccountUser, {C, D}),
{}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_C_exists_D_exists___a",
kAccountUser,
{"--account-create", "always"},
{C, D},
{{C, D}, res_cu_error(kAccountUser, {C, D}), "", {}, true},
existing_host_err_msg(kAccountUser, {C, D}),
EXIT_FAILURE},
// create A (doesn't exist), C (exists), D (exists)
/* TS_FRxxxxx */
{"create_A_dne_C_exists_D_exists___d",
kAccountUser,
{/* defaults to if-not-exists */},
{C, A, D},
{{A, C, D},
res_create_user(2),
res_show_warnings(kAccountUser, {C, D}),
{A}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_A_dne_C_exists_D_exists___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{C, A, D},
{{A, C, D},
res_create_user(2),
res_show_warnings(kAccountUser, {C, D}),
{A}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_A_dne_C_exists_D_exists___a",
kAccountUser,
{"--account-create", "always"},
{C, A, D},
{{A, C, D}, res_cu_error(kAccountUser, {A}), "", {}, true},
existing_host_err_msg(kAccountUser, {A}),
EXIT_FAILURE},
// create local_ip (doesn't exist), local_hostname (doesn't exist), %
// (doesn't exist)
/* TS_FRxxxxx */
{"create_IP_dne_HOST_dne_P_dne___d",
kAccountUser,
{/* defaults to if-not-exists */},
{IP, HOST, "%"},
{{IP, HOST, "%"}, res_create_user(0), "", {IP, HOST, "%"}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR04_06 */
{"create_IP_dne_HOST_dne_P_dne___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{IP, HOST, "%"},
{{IP, HOST, "%"}, res_create_user(0), "", {IP, HOST, "%"}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR03_04 */
{"create_IP_dne_HOST_dne_P_dne___a",
kAccountUser,
{"--account-create", "always"},
{IP, HOST, "%"},
{{IP, HOST, "%"}, res_create_user(0), "", {IP, HOST, "%"}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
// create local_ip (doesn't exist)
/* TS_FRxxxxx */
{"create_IP_dne___d",
kAccountUser,
{/* defaults to if-not-exists */},
{IP},
{{IP}, res_create_user(0), "", {IP}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_IP_dne___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{IP},
{{IP}, res_create_user(0), "", {IP}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR03_06 */
{"create_IP_dne___a",
kAccountUser,
{"--account-create", "always"},
{IP},
{{IP}, res_create_user(0), "", {IP}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
// create % (exists)
/* TS_FRxxxxx */
{"create_P_exists___d",
kAccountUser,
{/* defaults to if-not-exists */},
{"%"},
{{"%"},
res_create_user(1),
res_show_warnings(kAccountUser, {"%"}),
{}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_P_exists___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{"%"},
{{"%"},
res_create_user(1),
res_show_warnings(kAccountUser, {"%"}),
{}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR03_07 */
{"create_P_exists___a",
kAccountUser,
{"--account-create", "always"},
{"%"},
{{"%"}, res_cu_error(kAccountUser, {"%"}), "", {}, true},
existing_host_err_msg(kAccountUser, {"%"}),
EXIT_FAILURE},
// create local_hostname (doesn't exist)
/* TS_FRxxxxx */
{"create_HOST_dne___d",
kAccountUser,
{/* defaults to if-not-exists */},
{HOST},
{{HOST}, res_create_user(0), "", {HOST}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FR04_04 */
{"create_HOST_dne___i",
kAccountUser,
{"--account-create", "if-not-exists"},
{HOST},
{{HOST}, res_create_user(0), "", {HOST}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_HOST_dne___a",
kAccountUser,
{"--account-create", "always"},
{HOST},
{{HOST}, res_create_user(0), "", {HOST}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
// create implicitly % (exists), account contains ':'
/* TS_FRxxxxx */
{"create_implicit_P_exists___userwithcolon___n",
kColonUser,
{"--account-create", "never"},
{/* % */},
{{}, "", "", {}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_NFR1_01 */
{"create_implicit_P_exists___userwithcolon___d",
kColonUser,
{/* defaults to if-not-exists */},
{/* % */},
{{"%"}, res_create_user(1), res_show_warnings(kColonUser, {"%"}), {}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_implicit_P_exists___userwithcolon___i",
kColonUser,
{"--account-create", "if-not-exists"},
{/* % */},
{{"%"}, res_create_user(1), res_show_warnings(kColonUser, {"%"}), {}},
kBootstrapSuccessMsg,
EXIT_SUCCESS},
/* TS_FRxxxxx */
{"create_implicit_P_exists___userwithcolon___a",
kColonUser,
{"--account-create", "always"},
{/* % */},
{{"%"}, res_cu_error(kColonUser, {"%"}), "", {}, true},
existing_host_err_msg(kColonUser, {"%"}),
EXIT_FAILURE},
};
}
};
INSTANTIATE_TEST_SUITE_P(
foo, AccountReuseCreateComboTestP,
::testing::ValuesIn(AccountReuseCreateComboTestP::gen_testcases()),
[](auto p) -> std::string { return p.param.test_name; });
TEST_P(AccountReuseCreateComboTestP, config_does_not_exist_yet) {
// extract test params
std::vector<std::string> extra_args = GetParam().extra_args;
std::set<std::string> account_host_args = GetParam().account_host_args;
const std::string exp_output = GetParam().exp_output;
int exp_exit_code = GetParam().exp_exit_code;
const MockServerResponses &ops = GetParam().database_ops;
const std::set<std::string> cu_hosts = ops.exp_cu_hosts;
const std::set<std::string> gr_hosts = ops.exp_gr_hosts;
const std::string username = GetParam().username;
// input: const
const std::string password = kAccountUserPassword;
// expectations: expected CREATE USER behaviour
const bool if_not_exists = is_if_not_exists(extra_args);
// input: SQL
std::vector<std::string> unexp_sql = {"DROP USER"};
CustomResponses cr;
{
// CREATE USER [IF NOT EXISTS]
if (cu_hosts.size()) {
harness_assert(ops.mock_res_cu.size());
const std::string account_auth_list =
make_account_auth_list(username, cu_hosts);
cr.add(sql_create_user(account_auth_list, if_not_exists),
ops.mock_res_cu);
} else {
unexp_sql.emplace_back("CREATE USER");
}
// SHOW WARNINGS
if (ops.mock_res_sw.size()) {
harness_assert(ops.exp_cu_hosts.size() && ops.mock_res_cu.size());
cr.add(sql_show_warnings(), ops.mock_res_sw);
} else {
unexp_sql.emplace_back(sql_show_warnings());
}
// GRANTs
if (ops.exp_gr_hosts.size()) {
harness_assert(ops.exp_cu_hosts.size());
const std::string al = make_account_list(username, gr_hosts);
cr.add(sql_grant_1(al));
cr.add(sql_grant_2(al));
cr.add(sql_grant_3(al));
cr.add(sql_grant_4(al));
cr.add(sql_grant_5(al));
cr.add(sql_grant_6(al));
} else {
unexp_sql.emplace_back("GRANT");
}
// ROLLBACK
if (ops.rollback) {
cr.add(sql_rollback());
} else {
unexp_sql.emplace_back(sql_rollback());
}
}
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, cr.stmts);
// populate extra cmdline args
for (const std::string &h : account_host_args) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
extra_args.emplace_back("--account");
extra_args.emplace_back(username);
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password, username);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
check_SQL_calls(server_http_port, cr.exp_sql, unexp_sql);
}
////////////////////////////////////////////////////////////////////////////////
// //
// RECONFIGURE TESTS //
// //
////////////////////////////////////////////////////////////////////////////////
class AccountReuseReconfigurationTest : public AccountReuseTestBase {};
/**
* @test
* bootstrap --account against existing user in database, no config, Router not
* registered verify that bootstrap will:
* - use --account username provided on cmdline (rather than autogenerate it)
* in CREATE USER
* - will NOT create a new account (since it already exists, will not run GRANT)
* - save new password to keyfile
* - verify config is written and contains --account username provided on
* cmdline
* - verify expected password prompts are presented
*
* WL13177:TS_FR01_01 (root password given on commandline)
* WL13177:TS_FR01_03 (root password should be asked via prompt)
*/
TEST_F(AccountReuseReconfigurationTest, user_exists_then_account) {
for (bool root_password_on_cmdline : {true, false}) {
// no config exists yet
TempDirectory bootstrap_directory;
// test params
const std::vector<std::string> args = {"--account", kAccountUser};
const std::set<std::string> existing_hosts = {
"%"}; // kAccountUser@% exists already
// expectations
int exp_exit_code = EXIT_SUCCESS;
const std::string exp_output = kBootstrapSuccessMsg;
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {
"GRANT"}; // account should not be created
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts);
// run bootstrap
ProcessWrapper &router = launch_bootstrap(
exp_exit_code, server_port, bootstrap_directory.name(), args,
exp_password, exp_username, root_password_on_cmdline);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args),
root_password_on_cmdline);
check_keyring(bootstrap_directory.name(), true, exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* bootstrap --account against existing user in database, no config, Router is
* registered already verify that bootstrap will:
* - use --account username provided on cmdline (rather than autogenerate it)
* in CREATE USER
* - will NOT create a new account (since it already exists, will not run GRANT)
* - save new password to keyfile
* - verify config is written and contains --account username provided on
* cmdline
* - verify expected password prompts are presented
*
* WL13177:TS_FR01_02
*/
TEST_F(AccountReuseReconfigurationTest,
user_exists_router_is_registered_then_account) {
// this test is similar to TS_FR01_01 and TS_FR01_03, but here:
// - we have previous bootstrap artifacts (Router registration) in database
for (bool root_password_on_cmdline : {true, false}) {
// no config exists yet
TempDirectory bootstrap_directory;
// test params
const std::vector<std::string> args = {"--account", kAccountUser,
"--force"};
const std::set<std::string> existing_hosts = {
"%"}; // kAccountUser@% exists already
// expectations
int exp_exit_code = EXIT_SUCCESS;
const std::string exp_output = kBootstrapSuccessMsg;
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr1 = gen_sql_for_registered_router();
CustomResponses cr2 = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
std::vector<std::string> exp_sql = cr1.exp_sql;
exp_sql.insert(exp_sql.end(), cr2.exp_sql.begin(), cr2.exp_sql.end());
std::vector<std::string> unexp_sql = {
"GRANT"}; // account should not be created
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port,
cr1.stmts + "," + cr2.stmts);
// run bootstrap
ProcessWrapper &router = launch_bootstrap(
exp_exit_code, server_port, bootstrap_directory.name(), args,
exp_password, exp_username, root_password_on_cmdline);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args),
root_password_on_cmdline);
check_keyring(bootstrap_directory.name(), true, exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* bootstrap --account against existing user in database, no config, Router not
* registered verify that bootstrap will:
* - providing empty password for existing user will work
* - use --account username provided on cmdline (rather than autogenerate it)
* in CREATE USER
* - will NOT create a new account (since it already exists, will not run GRANT)
* - save new password to keyfile
* - verify config is written and contains --account username provided on
* cmdline
* - verify expected password prompts are presented
*
* WL13177:TS_FR01_05
*/
TEST_F(AccountReuseReconfigurationTest,
user_exists_then_account_with_empty_password) {
// this test is similar to TS_FR01_01 and TS_FR01_03, but here:
// - we supply an empty password for the new account
// - user already exists
for (bool root_password_on_cmdline : {true, false}) {
// no config exists yet
TempDirectory bootstrap_directory;
// test params
const std::vector<std::string> args = {"--account", kAccountUser};
const std::set<std::string> existing_hosts = {
"%"}; // kAccountUser@% exists already
// expectations
int exp_exit_code = EXIT_SUCCESS;
const std::string exp_output = kBootstrapSuccessMsg;
const std::string exp_username = kAccountUser;
const std::string exp_password = "";
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr =
gen_sql_for_creating_accounts(exp_username, exp_attempt_create_hosts,
existing_hosts, true, exp_password);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {
"GRANT"}; // account should not be created
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts);
// run bootstrap
ProcessWrapper &router = launch_bootstrap(
exp_exit_code, server_port, bootstrap_directory.name(), args,
exp_password, exp_username, root_password_on_cmdline);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args),
root_password_on_cmdline);
check_keyring(bootstrap_directory.name(), true, exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* bootstrap --account against no config, Router not registered
* verify that bootstrap will:
* - providing empty password for new user will work
* - use --account username provided on cmdline (rather than autogenerate it)
* in CREATE USER and GRANT statements
* - save new password to keyfile
* - verify config is written and contains --account username provided on
* cmdline
* - verify expected password prompts are presented
*/
TEST_F(AccountReuseReconfigurationTest,
nothing_then_account_with_empty_password) {
// this test is like TS_FR01_05, but here:
// - user doesn't exist yet
for (bool root_password_on_cmdline : {true, false}) {
// no config exists yet
TempDirectory bootstrap_directory;
// test params
const std::vector<std::string> args = {"--account", kAccountUser};
const std::set<std::string> existing_hosts =
{}; // kAccountUser@% doesn't exist yet
// expectations
int exp_exit_code = EXIT_SUCCESS;
const std::string exp_output = kBootstrapSuccessMsg;
const std::string exp_username = kAccountUser;
const std::string exp_password = "";
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr =
gen_sql_for_creating_accounts(exp_username, exp_attempt_create_hosts,
existing_hosts, true, exp_password);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts);
// run bootstrap
ProcessWrapper &router = launch_bootstrap(
exp_exit_code, server_port, bootstrap_directory.name(), args,
exp_password, exp_username, root_password_on_cmdline);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args),
root_password_on_cmdline);
check_keyring(bootstrap_directory.name(), true, exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* bootstrap --account against existing config
* verify that:
* - bootstrap will use --account username (and ignore username from config)
* in CREATE USER and GRANT statements
* - append new password to keyfile
* ...
*
* SIMILAR TO WL13177:TS_FR01_02
* SIMILAR TO WL13177:TS_FR01_03
*/
TEST_F(AccountReuseReconfigurationTest, noaccount_then_account) {
for (bool root_password_on_cmdline : {true, false}) {
// emulate past bootstrap without --account
TempDirectory bootstrap_directory;
create_config(bootstrap_directory.name(), kAutoGenUser);
create_keyring(bootstrap_directory.name(), kAutoGenUser,
kAutoGenUserPassword);
check_keyring(bootstrap_directory.name(), true, kAutoGenUser,
kAutoGenUserPassword);
// test params
const std::vector<std::string> args = {"--account", kAccountUser};
// expectations
int exp_exit_code = EXIT_SUCCESS;
const std::string exp_output = kBootstrapSuccessMsg;
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr =
gen_sql_for_creating_accounts(exp_username, exp_attempt_create_hosts);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts);
// run bootstrap
ProcessWrapper &router = launch_bootstrap(
exp_exit_code, server_port, bootstrap_directory.name(), args,
exp_password, exp_username, root_password_on_cmdline);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args),
root_password_on_cmdline);
check_keyring(bootstrap_directory.name(), true, exp_username, exp_password);
check_keyring(bootstrap_directory.name(), true, kAutoGenUser,
kAutoGenUserPassword); // old
check_keyring(bootstrap_directory.name(), true, exp_username,
exp_password); // new (appended)
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* bootstrap against existing config previously bootstrapped with --account
* verify that:
* - bootstrap will re-use the account in the config
* - password in the keyring will be preserved
* ...
*/
TEST_F(AccountReuseReconfigurationTest, account_then_noaccount) {
for (bool root_password_on_cmdline : {true, false}) {
// emulate past bootstrap with --account
TempDirectory bootstrap_directory;
create_config(bootstrap_directory.name(), kAccountUser);
create_keyring(bootstrap_directory.name(), kAccountUser,
kAccountUserPassword);
check_keyring(bootstrap_directory.name(), true, kAccountUser,
kAccountUserPassword);
// test params
const std::vector<std::string> args;
const std::set<std::string> existing_hosts = {
"%"}; // kAccountUser@% exists already
// expectations
int exp_exit_code = EXIT_SUCCESS;
const std::string exp_output = kBootstrapSuccessMsg;
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {"DROP USER", "GRANT"};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts);
// run bootstrap
ProcessWrapper &router = launch_bootstrap(
exp_exit_code, server_port, bootstrap_directory.name(), args,
exp_password, exp_username, root_password_on_cmdline);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args),
root_password_on_cmdline);
check_keyring(bootstrap_directory.name(), true, exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* bootstrap against existing config previously bootstrapped without --account
* (user exists, Router is registered) verify that:
* - bootstrap will re-use the account in the config (will NOT DROP and
* re-CREATE it)
* - password in the keyring will be preserved
* - verify config is written again and contains the same username as before
* - verify expected password prompts are presented
*
* WL13177:TS_FR11_02
*/
TEST_F(AccountReuseReconfigurationTest, noaccount_then_noaccount) {
for (bool root_password_on_cmdline : {true, false}) {
// emulate past bootstrap without --account
TempDirectory bootstrap_directory;
create_config(bootstrap_directory.name(), kAutoGenUser);
create_keyring(bootstrap_directory.name(), kAutoGenUser,
kAutoGenUserPassword);
check_keyring(bootstrap_directory.name(), true, kAutoGenUser,
kAutoGenUserPassword);
// test params
const std::vector<std::string> args;
const std::set<std::string> existing_hosts = {
"%"}; // kAutoGenUser@% exists already
// expectations
int exp_exit_code = EXIT_SUCCESS;
const std::string exp_output = kBootstrapSuccessMsg;
const std::string exp_username = kAutoGenUser;
const std::string exp_password = kAutoGenUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr =
gen_sql_for_creating_accounts(exp_username, exp_attempt_create_hosts,
existing_hosts, true, exp_password);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {"DROP USER", "GRANT"};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts);
// run bootstrap
ProcessWrapper &router = launch_bootstrap(
exp_exit_code, server_port, bootstrap_directory.name(), args,
exp_password, exp_username, root_password_on_cmdline);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args),
root_password_on_cmdline);
check_keyring(bootstrap_directory.name(), true, exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* bootstrap against existing config previously bootstrapped with --account,
* keyring is missing
* verify that:
* - bootstrap will re-use the account in the config
* - try to read password from keyring and fail with appropriate message
*/
TEST_F(AccountReuseReconfigurationTest, account_then_noaccount___no_keyring) {
// emulate past bootstrap with --account and deleted keyring
TempDirectory bootstrap_directory;
create_config(bootstrap_directory.name(), kAccountUser);
// test params
const std::vector<std::string> args;
// expectations
int exp_exit_code = EXIT_FAILURE;
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {};
const bool if_not_exists = true; // default
CustomResponses cr =
gen_sql_for_creating_accounts(exp_username, exp_attempt_create_hosts);
std::vector<std::string> exp_sql = cr.exp_sql;
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts);
// run bootstrap
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password);
// check outcome
ASSERT_NO_THROW(check_exit_code(router, exp_exit_code));
auto output = mysql_harness::split_string(router.get_full_output(), '\n');
EXPECT_THAT(output,
::testing::Contains(::testing::AllOf(
::testing::StartsWith(
"Error: Failed retrieving password for user '" +
kAccountUser + "' from keyring: Can't open file '"),
::testing::EndsWith(
"mysqlrouter.key': " +
std::error_condition(std::errc::no_such_file_or_directory)
.message()))));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), false);
check_config(bootstrap_directory.name(), true,
kAccountUser); // old config file still lives on
check_user_creating_SQL_calls(kAccountUser, exp_attempt_create_hosts,
if_not_exists, server_http_port);
}
/**
* @test
* bootstrap against existing config previously bootstrapped with --account,
* keyring exists but doesn't contain the password for the user of interest
* verify that:
* - bootstrap will re-use the account in the config
* - try to read password from keyring and fail with appropriate message
*/
TEST_F(AccountReuseReconfigurationTest,
account_then_noaccount___keyring_without_needed_password) {
const std::string kBogusUser = "bogus_user"; // different user than needed
// emulate past bootstrap with --account and keyring without user->password
TempDirectory bootstrap_directory;
create_config(bootstrap_directory.name(), kAccountUser);
create_keyring(bootstrap_directory.name(), kBogusUser, kAccountUserPassword);
check_keyring(bootstrap_directory.name(), true, kBogusUser,
kAccountUserPassword);
// test params
const std::vector<std::string> args;
const bool if_not_exists = true; // default
// expectations
int exp_exit_code = EXIT_FAILURE;
const Path bs_dir_abs_path = Path(bootstrap_directory.name()).real_path();
const std::vector<std::string> exp_output = {
// clang-format off
"- Fetching password for current account (some_user) from keyring",
"Error: Failed retrieving password for user 'some_user' from keyring:",
" Keyring was opened successfully, but it doesn't contain the password for",
" user 'some_user'",
// clang-format on
};
const std::string exp_username = kBogusUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// run bootstrap
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), true, exp_username,
exp_password); // untouched
check_config(bootstrap_directory.name(), true,
kAccountUser); // old config file still lives on
check_user_creating_SQL_calls(exp_username, exp_attempt_create_hosts,
if_not_exists, server_http_port);
}
/**
* @test
* bootstrap against existing config bootstrapped previously with --account
* (user exists, Router is registered), but keyring contains INCORRECT password
* verify that:
* - bootstrap will re-use the account in the config
* - it will proceed with account setup
* - will fail account validation (due to auth failure) when trying to log in
* using bad password
* - exit with success (since we ran without --strict)
*
* This test defines what is expected in such cornercase (or rather, what is
* NOT EXPECTED), which would be: Bootstrap to figure out that the password in
* keyring is invalid.
* It would not be that easy, because Bootstrap can never know if auth failed
* due to incorrect password, or incorrect account name (which could be wrong
* due to wrong hostname part, and we have no control over nor a way to figure
* out what hosname was actually used))
*/
TEST_F(AccountReuseReconfigurationTest,
account_then_noaccount___keyring_with_incorrect_password) {
const std::string kIncorrectPassword = "incorrect password";
// emulate past bootstrap with --account and keyring containing bad password
TempDirectory bootstrap_directory;
create_config(bootstrap_directory.name(), kAccountUser);
create_keyring(bootstrap_directory.name(), kAccountUser, kIncorrectPassword);
check_keyring(bootstrap_directory.name(), true, kAccountUser,
kIncorrectPassword);
// test params
const std::vector<std::string> args;
const std::set<std::string> existing_hosts = {
"%"}; // kAutoGenUser@% exists already
// expectations
int exp_exit_code = EXIT_SUCCESS;
auto exp_matchers = make_matchers(acct_val_failed_warning_msg(), [](auto &s) {
return ::testing::HasSubstr(s);
});
exp_matchers.emplace_back(::testing::AllOf(
::testing::StartsWith(" Error connecting to MySQL server at 127.0.0.1:"),
::testing::EndsWith(": Access Denied for user '"s + kAccountUser +
"'@'localhost' (1045)")));
const std::string exp_username = kAccountUser;
const std::string exp_password = kIncorrectPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr =
gen_sql_for_creating_accounts(exp_username, exp_attempt_create_hosts,
existing_hosts, true, exp_password);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {
"DROP USER",
"GRANT", // no new accounts were created
sql_val1(), sql_val2(),
sql_val3() // shouldn't get that far due to conn failure
};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(
server_http_port,
cr.stmts); // we don't set Router account username here,
// which will trigger auth failure we're after. Testcase requires that the
// username is correct and the password is incorrect, but by providing an
// incorrect username instead we achieve the exact same effect at the server
// mock level, only with simpler code
// run bootstrap
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, "account password will not be asked");
// check outcome
ASSERT_NO_FATAL_FAILURE(check_exit_code(router, exp_exit_code));
auto output = mysql_harness::split_string(router.get_full_output(), '\n');
EXPECT_THAT(output, ::testing::IsSupersetOf(exp_matchers));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), true, exp_username,
exp_password); // untouched
check_config(bootstrap_directory.name(), true,
exp_username); // old config file still lives on
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
////////////////////////////////////////////////////////////////////////////////
// //
// SHOW WARNINGS TESTS //
// //
////////////////////////////////////////////////////////////////////////////////
class ShowWarningsProcessorTest : public AccountReuseTestBase {};
/**
* @test
* bootstrap with 3 --account-host, sunny day scenario
* verify that:
* - SHOW WARNINGS is not called
* - bootstrap succeeds
* - all 3 accounts are given GRANTs
*/
TEST_F(ShowWarningsProcessorTest, no_accounts_exist) {
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, account_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists)) + "," +
stmt_resp(sql_grant_1(al)) + "," + stmt_resp(sql_grant_2(al)) + "," +
stmt_resp(sql_grant_3(al)) + "," + stmt_resp(sql_grant_4(al)) + "," +
stmt_resp(sql_grant_5(al)) + "," + stmt_resp(sql_grant_6(al));
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_grant_1(al),
sql_grant_2(al),
sql_grant_3(al),
sql_grant_4(al),
sql_grant_5(al),
sql_grant_6(al),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
const std::string exp_output = kBootstrapSuccessMsg;
int exp_exit_code = EXIT_SUCCESS;
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
/**
* @test
* create 3 accounts with IF NOT EXISTS, 1 already exists
* verify that:
* - SHOW WARNINGS mechanism works
* - bootstrap succeeds
* - only non-existing accounts are given GRANTs
*/
TEST_F(ShowWarningsProcessorTest, one_account_exists) {
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {"h1"};
std::set<std::string> new_hosts = {"h2", "h3"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," +
stmt_resp(sql_show_warnings(),
res_show_warnings(username, existing_hosts)) +
"," + stmt_resp(sql_grant_1(al)) + "," + stmt_resp(sql_grant_2(al)) +
"," + stmt_resp(sql_grant_3(al)) + "," + stmt_resp(sql_grant_4(al)) +
"," + stmt_resp(sql_grant_5(al)) + "," + stmt_resp(sql_grant_6(al));
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
sql_grant_1(al),
sql_grant_2(al),
sql_grant_3(al),
sql_grant_4(al),
sql_grant_5(al),
sql_grant_6(al),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
const std::string exp_output = kBootstrapSuccessMsg;
int exp_exit_code = EXIT_SUCCESS;
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
/**
* @test
* create 3 accounts with IF NOT EXISTS, 2 already exist
* verify that:
* - SHOW WARNINGS mechanism works
* - bootstrap succeeds
* - only non-existing accounts are given GRANTs
*/
TEST_F(ShowWarningsProcessorTest, two_accounts_exist) {
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {"h1", "h3"};
std::set<std::string> new_hosts = {"h2"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," +
stmt_resp(sql_show_warnings(),
res_show_warnings(username, existing_hosts)) +
"," + stmt_resp(sql_grant_1(al)) + "," + stmt_resp(sql_grant_2(al)) +
"," + stmt_resp(sql_grant_3(al)) + "," + stmt_resp(sql_grant_4(al)) +
"," + stmt_resp(sql_grant_5(al)) + "," + stmt_resp(sql_grant_6(al));
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
sql_grant_1(al),
sql_grant_2(al),
sql_grant_3(al),
sql_grant_4(al),
sql_grant_5(al),
sql_grant_6(al),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
const std::string exp_output = kBootstrapSuccessMsg;
int exp_exit_code = EXIT_SUCCESS;
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
/**
* @test
* create 3 accounts with IF NOT EXISTS, all 3 already exist
* verify that:
* - SHOW WARNINGS mechanism works
* - bootstrap succeeds
* - only non-existing accounts are given GRANTs (that's none, in this case)
*/
TEST_F(ShowWarningsProcessorTest, all_accounts_exist) {
// input: other
const std::set<std::string> account_hosts = {
"h1", "s0me.c0mpl3x-VAL1D_h0s7name.%", "a%b"};
const std::set<std::string> existing_hosts = {
"h1", "s0me.c0mpl3x-VAL1D_h0s7name.%", "a%b"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," +
stmt_resp(sql_show_warnings(),
res_show_warnings(username, existing_hosts));
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
const std::string exp_output = kBootstrapSuccessMsg;
int exp_exit_code = EXIT_SUCCESS;
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
/**
* @test
* create 3 accounts with IF NOT EXISTS, 2 already exist, but SHOW WARNINGS
* returns an unrecognised warning code for one of them verify that:
* - SHOW WARNINGS mechanism will ignore warnings for the user with unrecognised
* warning code (3163) (the idea is for SHOW WARNINGS to ignore any warnings it
* doesn't understand, changing warning code should be enough to trigger that)
* - bootstrap succeeds
* - only non-existing accounts are given GRANTs
*/
TEST_F(ShowWarningsProcessorTest,
show_warnings_returns_unrecognised_warning_code) {
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {
"h1", "h2"}; // 'h1' should be ignored due to wrong warning code
std::set<std::string> new_hosts = {"h1", "h3"}; // and be treated as new
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// here we tweak SHOW WARNINGS results:
// - we change error code in row for host 'h1' (s/3163/42/)
// - we leave row for host 'h2' intact
// SHOW WARNINGS processing logic should ignore rows with unrecognised error
// codes, therefore it should ignore 'h1' and act as usual on 'h2'
const std::string needle = R"([ "Note", )"s + kUserExistsCode +
R"(, "Authorization ID ')"s + username +
R"('@'h1' already exists." ])"s;
const std::string noodle = R"([ "Note", 42, "Authorization ID ')"s +
username + R"('@'h1' already exists." ])"s;
std::string show_warnings_res = res_show_warnings(username, existing_hosts);
show_warnings_res.replace(show_warnings_res.find(needle), needle.size(),
noodle);
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," + stmt_resp(sql_show_warnings(), show_warnings_res) + "," +
stmt_resp(sql_grant_1(al)) + "," + stmt_resp(sql_grant_2(al)) + "," +
stmt_resp(sql_grant_3(al)) + "," + stmt_resp(sql_grant_4(al)) + "," +
stmt_resp(sql_grant_5(al)) + "," + stmt_resp(sql_grant_6(al));
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
sql_grant_1(al),
sql_grant_2(al),
sql_grant_3(al),
sql_grant_4(al),
sql_grant_5(al),
sql_grant_6(al),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
const std::string exp_output = kBootstrapSuccessMsg;
int exp_exit_code = EXIT_SUCCESS;
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
/**
* @test
* create 3 accounts with IF NOT EXISTS, 2 already exist, but SHOW WARNINGS
* returns an unrecognised hostname in the warning message verify that:
* - SHOW WARNINGS mechanism will fail validation and produce fatal error with
* appropriate message
* - bootstrap fails
*/
TEST_F(ShowWarningsProcessorTest, show_warnings_returns_unrecognised_hostname) {
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {"h1", "h2"};
std::set<std::string> new_hosts = {"h3"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// here we tweak SHOW WARNINGS results:
// - we change error code in row for host 'h1' (s/3163/42/)
// - we leave row for host 'h2' intact
// SHOW WARNINGS processing logic should ignore rows with unrecognised error
// codes, therefore it should ignore 'h1' and act as usual on 'h2'
const std::string needle = R"([ "Note", )"s + kUserExistsCode +
R"(, "Authorization ID ')" + username +
R"('@'h1' already exists." ])";
const std::string noodle = R"([ "Note", )"s + kUserExistsCode +
R"(, "Authorization ID ')" + username +
R"('@'hX' already exists." ])";
std::string show_warnings_res = res_show_warnings(username, existing_hosts);
show_warnings_res.replace(show_warnings_res.find(needle), needle.size(),
noodle);
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," + stmt_resp(sql_show_warnings(), show_warnings_res);
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output =
show_warnings_failed_err_msg(make_account_list(username, account_hosts));
exp_output.emplace_back(
"Error: SHOW WARNINGS: Unexpected account name 'some_user'@'hX' in "
"message \"Authorization ID 'some_user'@'hX' already exists.\"");
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
/**
* @test
* create 3 accounts with IF NOT EXISTS, 2 already exist, but SHOW WARNINGS
* returns an unrecognised username@hostname pattern (regex matching fails) in
* the warning message verify that:
* - SHOW WARNINGS mechanism will fail validation and produce fatal error with
* appropriate message
* - bootstrap fails
*/
TEST_F(ShowWarningsProcessorTest,
show_warnings_returns_message_with_unrecognised_account_pattern) {
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {"h1", "h2"};
std::set<std::string> new_hosts = {"h3"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// here we tweak SHOW WARNINGS results:
// - we change username in row for host 'h1' (s/<kAccountUser>/foobar/)
// - we leave row for host 'h2' intact
// We're testing the behaviour when SHOW WARNINGS processor can't find
// <username@hostname> pattern in the warning message (which it needs to
// extract to learn which accounts already exist). We could just change
// '<kAccountUser>@h1' to anything, but we change just the <kAccountUser>
// (and leave the '@h1' intact) to also test what will happen when it
// receives a valid <username@hostname> expression, but for a username it did
// not try to create (and therefore expect). Such scenario should also lead
// to the same failure, and so we use this scenario here to test both cases
// simultaneously, as this is a stricter case.
const std::string needle = R"([ "Note", )"s + kUserExistsCode +
R"(, "Authorization ID ')" + username +
R"('@'h1' already exists." ])";
const std::string noodle = R"([ "Note", )"s + kUserExistsCode +
R"(, "Authorization ID ')" + "foobar" +
R"('@'h1' already exists." ])";
std::string show_warnings_res = res_show_warnings(username, existing_hosts);
show_warnings_res.replace(show_warnings_res.find(needle), needle.size(),
noodle);
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," + stmt_resp(sql_show_warnings(), show_warnings_res);
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output =
show_warnings_failed_err_msg(make_account_list(username, account_hosts));
exp_output.emplace_back(
"Error: SHOW WARNINGS: Failed to extract account name "
"('some_user'@'<anything>') from message \"Authorization ID "
"'foobar'@'h1' already exists.\"");
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
/**
* @test
* create 3 accounts with IF NOT EXISTS, 2 already exist, but SHOW WARNINGS
* returns a column with unexpected name verify that:
* - SHOW WARNINGS mechanism will fail validation and produce fatal error with
* appropriate message
* - bootstrap fails
*/
TEST_F(ShowWarningsProcessorTest, show_warnings_returns_invalid_column_names) {
const std::vector<std::string> kColumnNames = {"Level", "Code", "Message"};
for (size_t i = 0; i < kColumnNames.size(); i++) {
const std::string column_name = kColumnNames[i];
const std::string column_nr = std::to_string(i + 1);
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {"h1", "h2"};
std::set<std::string> new_hosts = {"h3"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// here we tweak SHOW WARNINGS results:
// - we change the name of 1 column
// We expect that the SHOW WARNINGS processor's validator will notice this
// and trigger failure
const std::string needle = R"("name": ")" + column_name + R"(")";
const std::string noodle = R"("name": "bogus_name")";
std::string show_warnings_res = res_show_warnings(username, existing_hosts);
show_warnings_res.replace(show_warnings_res.find(needle), needle.size(),
noodle);
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," + stmt_resp(sql_show_warnings(), show_warnings_res);
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output = show_warnings_failed_err_msg(
make_account_list(username, account_hosts));
exp_output.emplace_back("Error: SHOW WARNINGS: Unexpected column " +
column_nr + " name 'bogus_name', expected '" +
column_name + "'");
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
}
/**
* @test
* create 3 accounts with IF NOT EXISTS, 2 already exist, but SHOW WARNINGS
* returns wrong number of columns verify that:
* - SHOW WARNINGS mechanism will fail validation and produce fatal error with
* appropriate message
* - bootstrap fails
*/
TEST_F(ShowWarningsProcessorTest,
show_warnings_returns_invalid_number_of_columns) {
const std::vector<std::string> kColumnNames = {"Level", "Code", "Message"};
size_t i = 0;
const std::string column_name = kColumnNames[i];
const std::string column_nr = std::to_string(i + 1);
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {"h1", "h2"};
std::set<std::string> new_hosts = {"h3"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// here we tweak SHOW WARNINGS results:
// - we add one more column
// We expect that the SHOW WARNINGS processor's validator will notice this
// and trigger fatal failure
std::string show_warnings_res;
{
// to simplify our life, we force SHOW WARNINGS to return 0 rows here
// (this way we won't have to add an extra column to them too)
// Validator MUST trigger failure regardless of resultset content anyway,
// but we can't just return a resultset with 1 column less than in the
// header, because that will trigger a failure at the libmysqlclient level,
// before our validator even gets a chance to run.
show_warnings_res = res_show_warnings(username, {});
// add 1 column to the header
const std::string needle =
R"({
"type": "STRING",
"name": "Message"
})";
const std::string noodle =
R"({
"type": "STRING",
"name": "Message"
},
{
"type": "STRING",
"name": "bogus_column"
})";
ASSERT_THAT(show_warnings_res, ::testing::HasSubstr(needle));
show_warnings_res.replace(show_warnings_res.find(needle), needle.size(),
noodle);
}
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," + stmt_resp(sql_show_warnings(), show_warnings_res);
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output =
show_warnings_failed_err_msg(make_account_list(username, account_hosts));
exp_output.emplace_back(
"Error: SHOW WARNINGS: Unexpected number of fields in the resultset. "
"Expected = 3, got = 4");
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
/**
* @test
* create 3 accounts with IF NOT EXISTS, 2 already exist, but SHOW WARNINGS
* fails to execute verify that:
* - SHOW WARNINGS mechanism will produce fatal error with appropriate message
* - bootstrap fails
*/
TEST_F(ShowWarningsProcessorTest, show_warnings_fails_to_execute) {
const unsigned err_code = 1234;
const std::string err_msg = "je pense, donc je suis";
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {"h1", "h2"};
std::set<std::string> new_hosts = {"h3"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," + stmt_resp(sql_show_warnings(), res_error(err_code, err_msg)) + "," +
stmt_resp(sql_rollback());
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
sql_rollback(),
};
const std::vector<std::string> unexp_sql = {};
// expectations: other
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output =
show_warnings_failed_err_msg(make_account_list(username, account_hosts));
exp_output.emplace_back(
"Error: Error creating MySQL account for router (SHOW WARNINGS stage): "
"Error executing MySQL query \"" +
sql_show_warnings() + "\": " + err_msg + " (" + std::to_string(err_code) +
")");
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
////////////////////////////////////////////////////////////////////////////////
// //
// UNDO CREATE USER TESTS //
// //
////////////////////////////////////////////////////////////////////////////////
struct UndoCreateUserTestParams {
unsigned failing_grant;
std::set<std::string> account_hosts;
std::set<std::string> existing_hosts;
};
class UndoCreateUserTestP
: public AccountReuseTestBase,
public ::testing::WithParamInterface<UndoCreateUserTestParams> {};
INSTANTIATE_TEST_SUITE_P(
foo, UndoCreateUserTestP,
::testing::Values(
// we don't test cases of account_hosts == existing_hosts, because no
// GRANTs are executed in such case
UndoCreateUserTestParams{1, {"h1", "h2", "h3"}, {"h1", "h2"}},
UndoCreateUserTestParams{1, {"h1", "h2", "h3"}, {"h2", "h3"}},
UndoCreateUserTestParams{1, {"h1", "h2", "h3"}, {"h1", "h3"}},
UndoCreateUserTestParams{1, {"h1", "h2", "h3"}, {"h1"}},
UndoCreateUserTestParams{1, {"h1", "h2", "h3"}, {"h2"}},
UndoCreateUserTestParams{1, {"h1", "h2", "h3"}, {"h3"}},
UndoCreateUserTestParams{1, {"h1", "h2", "h3"}, {}},
UndoCreateUserTestParams{1, {"h1", "h2"}, {"h1"}},
UndoCreateUserTestParams{1, {"h1", "h2"}, {"h2"}},
UndoCreateUserTestParams{1, {"h1", "h2"}, {}},
UndoCreateUserTestParams{1, {"h1"}, {}},
// In bootstrap code, GRANT #1, #2 and #3 are just iterations of the
// same loop, therefore testing all above combinations for GRANTs #2 and
// #3 shouldn't be necessary as the code path is the same. Therefore
// to save on test time, we only test a subset of combinations:
UndoCreateUserTestParams{2, {"h1", "h2", "h3"}, {"h1", "h3"}},
UndoCreateUserTestParams{3, {"h1", "h2", "h3"}, {"h2"}},
UndoCreateUserTestParams{2, {"h1", "h2", "h3"}, {}},
UndoCreateUserTestParams{3, {"h1", "h2"}, {"h1"}},
UndoCreateUserTestParams{2, {"h1", "h2"}, {}},
UndoCreateUserTestParams{3, {"h1"}, {}}
),
// using 'auto' as type of p triggers
//
// >> Assertion: (../lnk/block.cc, line 1212)
// while processing ...router/tests/component/test_bootstrap.cc
// at line 4148.
//
// when using devstudio 12.6.
//
// The reported line points is about 60 lines away from the problematic
// parameter below.
//
// In other param-info places, auto works find with dev-studio 12.6 too
[](const ::testing::TestParamInfo<UndoCreateUserTestParams> &p)
-> std::string {
std::string test_name =
"failing_grant_nr_" + std::to_string(p.param.failing_grant);
test_name += "________account_hosts_";
for (const std::string &h : p.param.account_hosts) test_name += h + "_";
test_name += "________existing_hosts_";
for (const std::string &h : p.param.existing_hosts) test_name += h + "_";
return test_name;
});
/**
* @test
* create accounts with IF NOT EXISTS, GRANT fails
* verify that:
* - GRANT triggers fatal failure with appropriate message
* - non-existing accounts are DROPped before exiting
*
* WL13177:TS_FR17_03
*/
TEST_P(UndoCreateUserTestP, grant_fails) {
// input: other
unsigned failing_grant = GetParam().failing_grant;
const std::set<std::string> &account_hosts = GetParam().account_hosts;
const std::set<std::string> &existing_hosts = GetParam().existing_hosts;
std::set<std::string> new_hosts;
std::set_difference(account_hosts.begin(), account_hosts.end(),
existing_hosts.begin(), existing_hosts.end(),
std::inserter(new_hosts, new_hosts.begin()));
const unsigned gr_err_code = 1234;
const std::string gr_err_msg = "je pense, donc je suis";
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses;
{
// CREATE USER steps
custom_responses +=
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size()));
if (existing_hosts.size())
custom_responses +=
"," + stmt_resp(sql_show_warnings(),
res_show_warnings(username, existing_hosts));
// GRANTs
switch (failing_grant) {
case 1:
custom_responses += "," + stmt_resp(sql_grant_1(al),
res_error(gr_err_code, gr_err_msg));
break;
case 2:
custom_responses +=
"," + stmt_resp(sql_grant_1(al)) + "," +
stmt_resp(sql_grant_2(al), res_error(gr_err_code, gr_err_msg));
break;
case 3:
custom_responses +=
"," + stmt_resp(sql_grant_1(al)) + "," +
stmt_resp(sql_grant_2(al)) + "," +
stmt_resp(sql_grant_3(al), res_error(gr_err_code, gr_err_msg));
break;
default:
harness_assert_this_should_not_execute();
break;
}
// ROLLBACK
custom_responses += "," + stmt_resp(sql_rollback());
// DROP USER (cleanup)
custom_responses += "," + stmt_resp(sql_drop_user_if_exists(al));
}
// expectations: SQL
std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
};
if (existing_hosts.size()) exp_sql.push_back(sql_show_warnings());
if (failing_grant >= 1) exp_sql.push_back(sql_grant_1(al));
if (failing_grant >= 2) exp_sql.push_back(sql_grant_2(al));
if (failing_grant >= 3) exp_sql.push_back(sql_grant_3(al));
exp_sql.push_back(sql_rollback());
exp_sql.push_back(sql_drop_user_if_exists(al));
const std::vector<std::string> unexp_sql = {};
// expectations: other
auto gr_err_sql = [&]() {
switch (failing_grant) {
case 1:
return (sql_grant_1(al));
case 2:
return (sql_grant_2(al));
case 3:
return (sql_grant_3(al));
default:
throw std::logic_error("Invalid case (test has a bug)");
}
};
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output =
undo_create_user_msg(make_account_list(username, account_hosts));
exp_output.emplace_back(
"Error: Error creating MySQL account for router (GRANTs stage): Error "
"executing MySQL query \"" +
gr_err_sql() + "\": " + gr_err_msg + " (" + std::to_string(gr_err_code) +
")");
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
/**
* @test
* create accounts with IF NOT EXISTS, GRANT fails, DROP USER also fails
* verify that:
* - GRANT triggers fatal failure with appropriate message
* - user gets a message that says that we tried to clean up, failed, and is
* presented a list of accounts to clean up by hand
*
* WL13177:TS_FR17_01
*/
TEST_P(UndoCreateUserTestP, grant_fails_and_drop_user_also_fails) {
// input: other
unsigned failing_grant = GetParam().failing_grant;
const std::set<std::string> &account_hosts = GetParam().account_hosts;
const std::set<std::string> &existing_hosts = GetParam().existing_hosts;
std::set<std::string> new_hosts;
std::set_difference(account_hosts.begin(), account_hosts.end(),
existing_hosts.begin(), existing_hosts.end(),
std::inserter(new_hosts, new_hosts.begin()));
const unsigned gr_err_code = 1234;
const std::string gr_err_msg = "je pense, donc je suis";
const unsigned du_err_code = 2345;
const std::string du_err_msg = "lorem ipsum dolor sit amet";
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses;
{
// CREATE USER steps
custom_responses +=
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size()));
if (existing_hosts.size())
custom_responses +=
"," + stmt_resp(sql_show_warnings(),
res_show_warnings(username, existing_hosts));
// GRANTs
switch (failing_grant) {
case 1:
custom_responses += "," + stmt_resp(sql_grant_1(al),
res_error(gr_err_code, gr_err_msg));
break;
case 2:
custom_responses +=
"," + stmt_resp(sql_grant_1(al)) + "," +
stmt_resp(sql_grant_2(al), res_error(gr_err_code, gr_err_msg));
break;
case 3:
custom_responses +=
"," + stmt_resp(sql_grant_1(al)) + "," +
stmt_resp(sql_grant_2(al)) + "," +
stmt_resp(sql_grant_3(al), res_error(gr_err_code, gr_err_msg));
break;
default:
harness_assert_this_should_not_execute();
break;
}
// ROLLBACK
custom_responses += "," + stmt_resp(sql_rollback());
// DROP USER (cleanup)
custom_responses += "," + stmt_resp(sql_drop_user_if_exists(al),
res_error(du_err_code, du_err_msg));
}
// expectations: SQL
std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
};
if (existing_hosts.size()) exp_sql.push_back(sql_show_warnings());
if (failing_grant >= 1) exp_sql.push_back(sql_grant_1(al));
if (failing_grant >= 2) exp_sql.push_back(sql_grant_2(al));
if (failing_grant >= 3) exp_sql.push_back(sql_grant_3(al));
exp_sql.push_back(sql_rollback());
exp_sql.push_back(sql_drop_user_if_exists(al));
const std::vector<std::string> unexp_sql = {};
// expectations: other
auto gr_err_sql = [&]() {
switch (failing_grant) {
case 1:
return (sql_grant_1(al));
case 2:
return (sql_grant_2(al));
case 3:
return (sql_grant_3(al));
default:
throw std::logic_error("Invalid case (test has a bug)");
}
};
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output = undo_create_user_msg(
make_account_list(username, new_hosts), du_err_code, du_err_msg);
exp_output.emplace_back(
"Undoing creating new users failed: Error executing MySQL query \"" +
sql_drop_user_if_exists(al) + "\": " + du_err_msg + " (" +
std::to_string(du_err_code) + ")");
exp_output.emplace_back(
"Error: Error creating MySQL account for router (GRANTs stage): Error "
"executing MySQL query \"" +
gr_err_sql() + "\": " + gr_err_msg + " (" + std::to_string(gr_err_code) +
")");
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username, password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
username);
}
#ifndef _WIN32
class UndoCreateUserTest : public AccountReuseTestBase {};
/**
* @test
* bootstrap with 3 --account-host, 2 already exist, then trigger failure after
* account creation stage (in this case, that's the config-writing stage).
* purpose: verify that "undo CREATE USER" logic will also get triggered by
* failures that occur after account creation stage verify that:
* - the failure we're trying to induce really happens
* - the "undo CREATE USER" logic will kick in and remove the newly-created
* account
*
* WL13177:TS_FR17_04
*/
TEST_F(UndoCreateUserTest, failure_after_account_creation) {
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {"h1", "h3"};
std::set<std::string> new_hosts = {"h2"};
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," +
stmt_resp(sql_show_warnings(),
res_show_warnings(username, existing_hosts)) +
"," + stmt_resp(sql_grant_1(al)) + "," + stmt_resp(sql_grant_2(al)) +
"," + stmt_resp(sql_grant_3(al)) + "," + stmt_resp(sql_grant_4(al)) +
"," + stmt_resp(sql_grant_5(al)) + "," + stmt_resp(sql_grant_6(al)) +
"," + stmt_resp(sql_drop_user_if_exists(al));
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
sql_grant_1(al),
sql_grant_2(al),
sql_grant_3(al),
sql_grant_4(al),
sql_grant_5(al),
sql_grant_6(al),
sql_drop_user_if_exists(al),
};
const std::vector<std::string> unexp_sql = {};
TempDirectory bootstrap_directory;
// expectations: other
int exp_exit_code = EXIT_FAILURE;
const std::vector<std::string> exp_output = {
"Error: Could not create file '" +
Path(bootstrap_directory.name())
.real_path()
.join("mysqlrouter.conf.bak")
.str() +
"': Permission denied",
kUndoCreateUserSuccessMsg};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// induce failure at config-write step (should result in error analogous to:
// "Could not create file '.../router-sBHJGw/mysqlrouter.conf.bak': Permission
// denied"
for (const char *file : {"mysqlrouter.conf", "mysqlrouter.conf.bak"}) {
std::string path = bootstrap_directory.name() + "/" + file;
std::ofstream f(path.c_str());
f << "[DEFAULT]\n";
chmod(path.c_str(), 0400);
}
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
}
/**
* @test
* bootstrap with 3 --account-host, 2 already exist, then trigger failure after
* account creation stage (in this case, that's the config-writing stage). when
* the "undo CREATE USER" logic kicks in, DROP USER also fails purpose: verify
* that "undo CREATE USER" logic will also get triggered by failures that occur
* after account creation stage verify that:
* - the failure we're trying to induce really happens
* - the "undo CREATE USER" logic will kick in and report the accounts to erase
* manually after failing
*
* WL13177:TS_FR17_02
*/
TEST_F(UndoCreateUserTest,
failure_after_account_creation_and_drop_user_also_fails) {
// input: other
const std::set<std::string> account_hosts = {"h1", "h2", "h3"};
const std::set<std::string> existing_hosts = {"h1", "h3"};
std::set<std::string> new_hosts = {"h2"};
const unsigned du_err_code = 2345;
const std::string du_err_msg = "lorem ipsum dolor sit amet";
std::vector<std::string> extra_args = {"--account", kAccountUser};
const bool if_not_exists = true; // default
const std::string username = kAccountUser;
const std::string password = kAccountUserPassword;
// input: SQL
const std::string account_auth_list =
make_account_auth_list(username, account_hosts);
const std::string al = make_account_list(username, new_hosts);
std::string custom_responses =
stmt_resp(sql_create_user(account_auth_list, if_not_exists),
res_create_user(existing_hosts.size())) +
"," +
stmt_resp(sql_show_warnings(),
res_show_warnings(username, existing_hosts)) +
"," + stmt_resp(sql_grant_1(al)) + "," + stmt_resp(sql_grant_2(al)) +
"," + stmt_resp(sql_grant_3(al)) + "," + stmt_resp(sql_grant_4(al)) +
"," + stmt_resp(sql_grant_5(al)) + "," + stmt_resp(sql_grant_6(al)) +
"," +
stmt_resp(sql_drop_user_if_exists(al),
res_error(du_err_code, du_err_msg));
// expectations: SQL
const std::vector<std::string> exp_sql = {
sql_create_user(account_auth_list, if_not_exists),
sql_show_warnings(),
sql_grant_1(al),
sql_grant_2(al),
sql_grant_3(al),
sql_drop_user_if_exists(al),
};
const std::vector<std::string> unexp_sql = {};
TempDirectory bootstrap_directory;
// expectations: other
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output = undo_create_user_msg(
make_account_list(username, new_hosts), du_err_code, du_err_msg);
exp_output.emplace_back(
"Undoing creating new users failed: Error executing MySQL query \"" +
sql_drop_user_if_exists(al) + "\": " + du_err_msg + " (" +
std::to_string(du_err_code) + ")");
exp_output.emplace_back("Error: Could not create file '" +
Path(bootstrap_directory.name())
.real_path()
.join("mysqlrouter.conf.bak")
.str() +
"': Permission denied");
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
// add expected creation SQL statements to JS
set_mock_server_sql_statements(server_http_port, custom_responses);
// induce failure at config-write step (should result in error analogous to:
// "Could not create file '.../router-sBHJGw/mysqlrouter.conf.bak': Permission
// denied"
for (const char *file : {"mysqlrouter.conf", "mysqlrouter.conf.bak"}) {
std::string path = bootstrap_directory.name() + "/" + file;
std::ofstream f(path.c_str());
f << "[DEFAULT]\n";
chmod(path.c_str(), 0400);
}
// run bootstrap
for (const std::string &h : account_hosts) {
extra_args.emplace_back("--account-host");
extra_args.push_back(h);
}
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
extra_args, password);
// check outcome
ASSERT_NO_FATAL_FAILURE(check_bootstrap_success(router, exp_output));
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
// consistency checks
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(extra_args));
}
#endif
////////////////////////////////////////////////////////////////////////////////
// //
// ACCOUNT VALIDATION TESTS //
// //
////////////////////////////////////////////////////////////////////////////////
class AccountValidationTest : public AccountReuseTestBase {};
/**
* @test
* Bootstrap: simple sunny day scenario. Verify that:
* - account validation is performed (validation message is printed)
* - account validation does not fail
*
* WL13177:TS_FR13_xx (doesn't exist in Test Plan yet)
* *** this is like FR13_01, but there we have an invalid password, here it is
* valid ***
*/
TEST_F(AccountValidationTest, sunny_day_scenario) {
// test params
const std::vector<std::string> args = {"--account", kAccountUser};
const std::set<std::string> existing_hosts =
{}; // kAccountUser@% doesn't exist yet
// key expectations
int exp_exit_code = EXIT_SUCCESS;
std::vector<std::string> exp_output = {kBootstrapSuccessMsg, acct_val_msg()};
std::vector<std::string> unexp_output = acct_val_failed_warning_msg();
// other expectations
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {"DROP USER"};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts, kAccountUser);
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(
check_bootstrap_success(router, exp_output, unexp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
/**
* @test
* Bootstrap: no --strict, bootstrap against existing account but enter wrong
* password. Verify that:
* - account validation fails (appropriate failure message is printed)
* - failed validation does not cause a fatal error
* - bootstrap succeeds
* - CREATE USER is NOT reverted (account existed before bootstrapping)
*
* WL13177:TS_FR13_01
*/
TEST_F(AccountValidationTest, account_exists_wrong_password) {
// test params
const std::vector<std::string> args = {"--account", kAccountUser};
const std::set<std::string> existing_hosts = {
"%"}; // kAccountUser@% exists already
// key expectations
int exp_exit_code = EXIT_SUCCESS;
std::vector<std::string> exp_output = acct_val_failed_warning_msg();
exp_output.push_back(kBootstrapSuccessMsg);
std::vector<std::string> unexp_output = {};
// other expectations
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {
"DROP USER", // no CREATE USER revert
sql_val1(), sql_val2(),
sql_val3() // shouldn't get that far due to conn failure
};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(
server_http_port,
cr.stmts); // we omit setting kAccountUser for 2nd conn
// ^^^ WL13177:TS_FR13_01 originally specifies that the username is correct
// and the password is incorrect, but by providing an incorrect username
// instead we achieve the exact same effect at the server mock level, only
// with simpler code
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(
check_bootstrap_success(router, exp_output, unexp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
/**
* @test
* Bootstrap: with --strict, bootstrap against existing account but enter wrong
* password. Verify that:
* - account validation fails (appropriate failure message is printed)
* - failed validation is a fatal error
* - bootstrap fails
* - CREATE USER is NOT reverted (account existed before bootstrapping)
*
* WL13177:TS_FR15_03
*/
TEST_F(AccountValidationTest, account_exists_wrong_password_strict) {
// test params
const std::vector<std::string> args = {"--strict", "--account", kAccountUser};
const std::set<std::string> existing_hosts = {
"%"}; // kAccountUser@% exists already
// key expectations
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output = acct_val_failed_error_msg();
std::vector<std::string> unexp_output = {kBootstrapSuccessMsg};
// other expectations
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {
"DROP USER", // no CREATE USER revert
sql_val1(), sql_val2(),
sql_val3() // shouldn't get that far due to conn failure
};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(
server_http_port,
cr.stmts); // we omit setting kAccountUser for 2nd conn
// ^^^ WL13177:TS_FR15_03 originally specifies that the username is correct
// and the password is incorrect, but by providing an incorrect username
// instead we achieve the exact same effect at the server mock level, only
// with simpler code
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(
check_bootstrap_success(router, exp_output, unexp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
/**
* @test
* Bootstrap: no --strict, account validation fails on connection attempt.
* Verify that:
* - account validation fails (appropriate failure message is printed)
* - failed validation does not cause a fatal error
* - bootstrap succeeds
* - CREATE USER is NOT reverted
*
* WL13177:TS_FR14_02
*/
TEST_F(AccountValidationTest, warn_on_conn_failure) {
// test params
const std::vector<std::string> args = {"--account", kAccountUser,
"--account-host", "not.local.host"};
const std::set<std::string> existing_hosts =
{}; // kAccountUser@% doesn't exist yet
// key expectations
int exp_exit_code = EXIT_SUCCESS;
std::vector<std::string> exp_output = acct_val_failed_warning_msg();
exp_output.push_back(kBootstrapSuccessMsg);
std::vector<std::string> unexp_output = {};
// other expectations
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"not.local.host"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {
"DROP USER", // no CREATE USER revert
sql_val1(), sql_val2(),
sql_val3() // shouldn't get that far due to conn failure
};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(
server_http_port,
cr.stmts); // we omit setting kAccountUser for 2nd conn
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(
check_bootstrap_success(router, exp_output, unexp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
/**
* @test
* Bootstrap: with --strict, account validation fails on connection attempt.
* Verify that:
* - account validation fails (appropriate failure message is printed)
* - failed validation is a fatal error
* - bootstrap fails
* - CREATE USER is reverted via DROP USER
*
* WL13177:TS_FR15_02
*/
TEST_F(AccountValidationTest, error_on_conn_failure) {
// test params
const std::vector<std::string> args = {"--strict", "--account", kAccountUser,
"--account-host", "not.local.host"};
const std::set<std::string> existing_hosts =
{}; // kAccountUser@% doesn't exist yet
// key expectations
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output = acct_val_failed_error_msg();
std::vector<std::string> unexp_output = {kBootstrapSuccessMsg};
// other expectations
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"not.local.host"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
std::vector<std::string> exp_sql = cr.exp_sql;
exp_sql.emplace_back("DROP USER"); // revert CREATE USER
std::vector<std::string> unexp_sql = {
sql_val1(), sql_val2(),
sql_val3() // shouldn't get that far due to conn failure
};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(
server_http_port,
cr.stmts); // we omit setting kAccountUser for 2nd conn
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(
check_bootstrap_success(router, exp_output, unexp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
/**
* @test
* Bootstrap: no --strict, account validation fails on SQL query. Verify that:
* - account validation fails (appropriate failure message is printed)
* - failed validation does not cause a fatal error
* - bootstrap succeeds
* - CREATE USER is NOT reverted
*
* WL13177:TS_FR14_02
*/
TEST_F(AccountValidationTest, warn_on_query_failure) {
// inlining initializer_list inside the for loop segfauls on Solaris
std::initializer_list<std::string> sql_val_stmts = {
// skip sql_val4() because testing with it is more complicated due to
// query
// re-use, will behave the same anyway (same code flow)
sql_val1(), sql_val2(), sql_val3()};
for (const std::string &failed_val_query : sql_val_stmts) {
// test params
const std::vector<std::string> args = {"--account", kAccountUser,
"--account-host", "not.local.host"};
const std::set<std::string> existing_hosts =
{}; // kAccountUser@% doesn't exist yet
// key expectations
int exp_exit_code = EXIT_SUCCESS;
std::vector<std::string> exp_output = acct_val_failed_warning_msg();
exp_output.push_back(kBootstrapSuccessMsg);
std::vector<std::string> unexp_output = {};
// other expectations
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"not.local.host"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
cr.add(failed_val_query, res_error());
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {"DROP USER"};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts, kAccountUser);
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(
check_bootstrap_success(router, exp_output, unexp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* Bootstrap: with --strict, account validation fails on SQL query. Verify
* that:
* - account validation fails (appropriate failure message is printed)
* - failed validation is a fatal error
* - bootstrap fails
* - CREATE USER is reverted via DROP USER
*
* WL13177:TS_FR15_02
*/
TEST_F(AccountValidationTest, error_on_query_failure) {
// inlining initializer_list inside the for loop segfauls on Solaris
std::initializer_list<std::string> sql_val_stmts = {
// skip sql_val4() because testing with it is more complicated due to
// query
// re-use, will behave the same anyway (same code flow)
sql_val1(), sql_val2(), sql_val3()};
for (const std::string &failed_val_query : sql_val_stmts) {
// test params
const std::vector<std::string> args = {"--strict", "--account",
kAccountUser, "--account-host",
"not.local.host"};
const std::set<std::string> existing_hosts =
{}; // kAccountUser@% doesn't exist yet
// key expectations
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output = acct_val_failed_error_msg();
std::vector<std::string> unexp_output = {kBootstrapSuccessMsg};
// other expectations
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"not.local.host"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
cr.add(failed_val_query, res_error());
std::vector<std::string> exp_sql = cr.exp_sql;
exp_sql.emplace_back("DROP USER");
std::vector<std::string> unexp_sql = {};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts, kAccountUser);
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(
check_bootstrap_success(router, exp_output, unexp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* Bootstrap: no --strict, user exists without proper GRANTs (account validation
* fails on SQL query). Verify that:
* - account validation fails (appropriate failure message is printed)
* - failed validation does not cause a fatal error
* - bootstrap succeeds
* - CREATE USER is NOT reverted
*
* WL13177:TS_FR14_01
*
* Additinoal expectations for WL13177::NFR2:
* - GRANTs will not be added
*/
TEST_F(AccountValidationTest, existing_user_missing_grants___no_strict) {
// inlining initializer_list inside the for loop segfauls on Solaris
std::initializer_list<std::string> sql_val_stmts = {
// skip sql_val4() because testing with it is more complicated due to
// query
// re-use, will behave the same anyway (same code flow)
sql_val1(), sql_val2(), sql_val3()};
for (const std::string &failed_val_query : sql_val_stmts) {
// test params
const std::vector<std::string> args = {"--account", kAccountUser};
const std::set<std::string> existing_hosts = {
"%"}; // kAccountUser@% exists already
// key expectations
int exp_exit_code = EXIT_SUCCESS;
std::vector<std::string> exp_output = acct_val_failed_warning_msg();
exp_output.push_back(kBootstrapSuccessMsg);
std::vector<std::string> unexp_output = {};
// other expectations
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
cr.add(failed_val_query,
res_error(ER_TABLEACCESS_DENIED_ERROR)); // 1142, lack of GRANT
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {"GRANT", "DROP USER"};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts, kAccountUser);
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(
check_bootstrap_success(router, exp_output, unexp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
/**
* @test
* Bootstrap: with --strict, user exists without proper GRANTs (account
* validation fails on SQL query). Verify that:
* - account validation fails (appropriate failure message is printed)
* - failed validation is a fatal error
* - bootstrap fails
* - CREATE USER is NOT reverted via DROP USER (it can't be, because it didn't
* exist before)
*
* WL13177:TS_FR15_01
*
* Additinoal expectations for WL13177::NFR2:
* - GRANTs will not be added
*/
TEST_F(AccountValidationTest, existing_user_missing_grants___strict) {
// inlining initializer_list inside the for loop segfauls on Solaris
std::initializer_list<std::string> sql_val_stmts = {
// skip sql_val4() because testing with it is more complicated due to
// query
// re-use, will behave the same anyway (same code flow)
sql_val1(), sql_val2(), sql_val3()};
for (const std::string &failed_val_query : sql_val_stmts) {
// test params
const std::vector<std::string> args = {"--strict", "--account",
kAccountUser};
const std::set<std::string> existing_hosts = {
"%"}; // kAccountUser@% exists already
// key expectations
int exp_exit_code = EXIT_FAILURE;
std::vector<std::string> exp_output = acct_val_failed_error_msg();
std::vector<std::string> unexp_output = {kBootstrapSuccessMsg};
// other expectations
const std::string exp_username = kAccountUser;
const std::string exp_password = kAccountUserPassword;
const std::set<std::string> exp_attempt_create_hosts = {"%"};
CustomResponses cr = gen_sql_for_creating_accounts(
exp_username, exp_attempt_create_hosts, existing_hosts);
cr.add(failed_val_query,
res_error(ER_TABLEACCESS_DENIED_ERROR)); // 1142, lack of GRANT
std::vector<std::string> exp_sql = cr.exp_sql;
std::vector<std::string> unexp_sql = {"GRANT", "DROP USER"};
// launch mock server and wait for it to start accepting connections
const uint16_t server_port = port_pool_.get_next_available();
const uint16_t server_http_port = port_pool_.get_next_available();
launch_mock_server(server_port, server_http_port);
set_mock_server_sql_statements(server_http_port, cr.stmts, kAccountUser);
// run bootstrap
TempDirectory bootstrap_directory;
ProcessWrapper &router =
launch_bootstrap(exp_exit_code, server_port, bootstrap_directory.name(),
args, exp_password, exp_username);
// check outcome
ASSERT_NO_FATAL_FAILURE(
check_bootstrap_success(router, exp_output, unexp_output));
check_questions_asked_by_bootstrap(exp_exit_code, router,
is_using_account(args));
check_keyring(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username, exp_password);
check_config(bootstrap_directory.name(), exp_exit_code == EXIT_SUCCESS,
exp_username);
check_SQL_calls(server_http_port, exp_sql, unexp_sql);
}
}
class RouterAccountHostTest : public RouterComponentBootstrapTest {};
/**
* @test
* verify that --account-host:
* - works in general
* - can be applied multiple times in one go
* - can take '%' as a parameter
*/
TEST_F(RouterAccountHostTest, multiple_host_patterns) {
// to avoid duplication of tracefiles, we run the same test twice, with the
// only difference that 1st time we run --bootstrap before the --account-host,
// and second time we run it after
const auto server_port = port_pool_.get_next_available();
auto test_it = [&](const std::vector<std::string> &cmdline) -> void {
const std::string json_stmts =
get_data_dir()
.join("bootstrap_account_host_multiple_patterns.js")
.str();
// launch mock server that is our metadata server for the bootstrap
auto &server_mock =
launch_mysql_server_mock(json_stmts, server_port, EXIT_SUCCESS, false);
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(cmdline, EXIT_SUCCESS, true);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr(
"MySQL Router configured for the InnoDB Cluster 'test'"));
check_exit_code(router, EXIT_SUCCESS);
server_mock.kill();
};
// NOTE: CREATE USER statements should run in unique(sort(hostname_list))
// fashion
// --bootstrap before --account-host
{
TempDirectory bootstrap_directory;
test_it({"--bootstrap=127.0.0.1:" + std::to_string(server_port), "-d",
bootstrap_directory.name(), //
"--account-host", "host1", // 2nd CREATE USER
"--account-host", "%", // 1st CREATE USER
"--account-host", "host1", // \_ redundant, ignored
"--account-host", "host1", // /
"--account-host", "host3%"}); // 3rd CREATE USER
}
// --bootstrap after --account-host
{
TempDirectory bootstrap_directory;
test_it({"-d", bootstrap_directory.name(), "--account-host",
"host1", // 2nd CREATE USER
"--account-host", "%", // 1st CREATE USER
"--account-host", "host1", // \_ redundant, ignored
"--account-host", "host1", // /
"--account-host", "host3%", // 3rd CREATE USER
"--bootstrap=127.0.0.1:" + std::to_string(server_port)});
}
}
/**
* @test
* verify that --account-host without required argument produces an
* error and exits
*/
TEST_F(RouterAccountHostTest, argument_missing) {
const uint16_t server_port = port_pool_.get_next_available();
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{"--bootstrap=127.0.0.1:" + std::to_string(server_port),
"--account-host"},
EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr(
"option '--account-host' expects a value, got nothing"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --account-host without --bootstrap switch produces an
* error and exits
*/
TEST_F(RouterAccountHostTest, without_bootstrap_flag) {
// launch the router in bootstrap mode
auto &router =
launch_router_for_bootstrap({"--account-host", "host1"}, EXIT_FAILURE);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr("Option --account-host can only be used "
"together with -B/--bootstrap"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --account-host with illegal hostname argument correctly
* handles the error
*/
TEST_F(RouterAccountHostTest, illegal_hostname) {
const std::string json_stmts =
get_data_dir().join("bootstrap_account_host_pattern_too_long.js").str();
TempDirectory bootstrap_directory;
const auto server_port = port_pool_.get_next_available();
// launch mock server that is our metadata server for the bootstrap
launch_mysql_server_mock(json_stmts, server_port, EXIT_SUCCESS, false);
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{"--bootstrap=127.0.0.1:" + std::to_string(server_port), "-d",
bootstrap_directory.name(), "--account-host",
"veryveryveryveryveryveryveryveryveryveryveryveryveryveryverylonghost"},
EXIT_FAILURE, true);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::ContainsRegex(
"Error executing MySQL query \".*\": String "
"'veryveryveryveryveryveryveryveryveryveryveryveryve"
"ryveryverylonghost' is too long for host name"));
check_exit_code(router, EXIT_FAILURE);
}
class RouterReportHostTest : public RouterComponentBootstrapTest {};
/**
* @test
* verify that --report-host works for the typical use case
*/
TEST_F(RouterReportHostTest, typical_usage) {
const auto server_port = port_pool_.get_next_available();
auto test_it = [&](const std::vector<std::string> &cmdline) -> void {
const std::string json_stmts =
get_data_dir().join("bootstrap_report_host.js").str();
// launch mock server that is our metadata server for the bootstrap
auto &server_mock =
launch_mysql_server_mock(json_stmts, server_port, EXIT_SUCCESS, false);
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(cmdline, EXIT_SUCCESS, true,
/*add_report_host=*/false);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr("MySQL Router configured for the "
"InnoDB Cluster 'test'"));
check_exit_code(router, EXIT_SUCCESS);
server_mock.kill();
};
{
TempDirectory bootstrap_directory;
// --bootstrap before --report-host
test_it({"--bootstrap=127.0.0.1:" + std::to_string(server_port), "-d",
bootstrap_directory.name(), "--report-host", "host.foo.bar"});
}
{
TempDirectory bootstrap_directory;
// --bootstrap after --report-host
test_it({"-d", bootstrap_directory.name(), "--report-host", "host.foo.bar",
"--bootstrap=127.0.0.1:" + std::to_string(server_port)});
}
}
/**
* @test
* verify that multiple --report-host arguments produce an error
* and exit
*/
TEST_F(RouterReportHostTest, multiple_hostnames) {
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{"--bootstrap=1.2.3.4:5678", "--report-host", "host1", "--report-host",
"host2"},
EXIT_FAILURE, true, /*add_report_host=*/false);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(
router.get_full_output(),
::testing::HasSubstr("Option --report-host can only be used once."));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --report-host without required argument produces an
error
* and exits
*/
TEST_F(RouterReportHostTest, argument_missing) {
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{"--bootstrap=1.2.3.4:5678", "--report-host"}, EXIT_FAILURE, true,
/*add_report_host=*/false);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr(
"option '--report-host' expects a value, got nothing"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --report-host without --bootstrap switch produces an error
* and exits
*/
TEST_F(RouterReportHostTest, without_bootstrap_flag) {
// launch the router in bootstrap mode
auto &router =
launch_router_for_bootstrap({"--report-host", "host1"}, EXIT_FAILURE,
true, /*add_report_host=*/false);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr("Option --report-host can only be used "
"together with -B/--bootstrap"));
check_exit_code(router, EXIT_FAILURE);
}
/**
* @test
* verify that --report-host with invalid hostname argument produces an
* error and exits
*
* @note
* There's a separate suite of unit tests which tests the validating code
* which determines if the hostname is valid or not - therefore here we
* only focus on how this invalid hostname will be handled - we don't
* concern ourselves with correctness of hostname validation itself.
*/
TEST_F(RouterReportHostTest, invalid_hostname) {
// launch the router in bootstrap mode
auto &router = launch_router_for_bootstrap(
{"--bootstrap", "1.2.3.4:5678", "--report-host", "^bad^hostname^"},
EXIT_FAILURE, true, /*add_report_host=*/false);
EXPECT_NO_THROW(router.wait_for_exit());
// check if the bootstrapping was successful
EXPECT_THAT(router.get_full_output(),
::testing::HasSubstr(
"Error: Option --report-host has an invalid value."));
check_exit_code(router, EXIT_FAILURE);
}
int main(int argc, char *argv[]) {
init_windows_sockets();
ProcessManager::set_origin(Path(argv[0]).dirname());
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
|