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
|
// --------------------------------------------------------------------------
//
// File
// Name: testbbackupd.cpp
// Purpose: test backup daemon (and associated client bits)
// Created: 2003/10/07
//
// --------------------------------------------------------------------------
#include "Box.h"
// do not include MinGW's dirent.h on Win32,
// as we override some of it in lib/win32.
#include <limits.h>
#include <stdio.h>
#include <string.h>
#ifndef WIN32
#include <dirent.h>
#endif
#ifdef WIN32
#include <process.h>
#endif
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
#ifdef HAVE_SIGNAL_H
#include <signal.h>
#endif
#include <sys/stat.h>
#include <sys/types.h>
#ifdef HAVE_SYSCALL
#include <sys/syscall.h>
#endif
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#ifdef HAVE_SYS_XATTR_H
#include <cerrno>
#include <sys/xattr.h>
#endif
#include <map>
#include "BackupClientCryptoKeys.h"
#include "BackupClientContext.h"
#include "BackupClientFileAttributes.h"
#include "BackupClientInodeToIDMap.h"
#include "BackupClientRestore.h"
#include "BackupDaemon.h"
#include "BackupDaemonConfigVerify.h"
#include "BackupProtocol.h"
#include "BackupQueries.h"
#include "BackupStoreAccounts.h"
#include "BackupStoreConstants.h"
#include "BackupStoreContext.h"
#include "BackupStoreDaemon.h"
#include "BackupStoreDirectory.h"
#include "BackupStoreException.h"
#include "BackupStoreConfigVerify.h"
#include "BackupStoreFileEncodeStream.h"
#include "BoxPortsAndFiles.h"
#include "BoxTime.h"
#include "BoxTimeToUnix.h"
#include "CollectInBufferStream.h"
#include "CommonException.h"
#include "Configuration.h"
#include "FileModificationTime.h"
#include "FileStream.h"
#include "intercept.h"
#include "IOStreamGetLine.h"
#include "LocalProcessStream.h"
#include "MemBlockStream.h"
#include "RaidFileController.h"
#include "SSLLib.h"
#include "ServerControl.h"
#include "Socket.h"
#include "SocketStreamTLS.h"
#include "StoreTestUtils.h"
#include "TLSContext.h"
#include "Test.h"
#include "Timer.h"
#include "Utils.h"
#include "MemLeakFindOn.h"
// ENOATTR may be defined in a separate header file which we may not have
#ifndef ENOATTR
#define ENOATTR ENODATA
#endif
// two cycles and a bit
#define TIME_TO_WAIT_FOR_BACKUP_OPERATION 12
#define SHORT_TIMEOUT 5000
#define BACKUP_ERROR_DELAY_SHORTENED 10
void wait_for_backup_operation(const char* message)
{
wait_for_operation(TIME_TO_WAIT_FOR_BACKUP_OPERATION, message);
}
#ifdef HAVE_SYS_XATTR_H
bool readxattr_into_map(const char *filename, std::map<std::string,std::string> &rOutput)
{
rOutput.clear();
ssize_t xattrNamesBufferSize = llistxattr(filename, NULL, 0);
if(xattrNamesBufferSize < 0)
{
#if HAVE_DECL_ENOTSUP
if(errno == ENOTSUP)
{
// Pretend that it worked, leaving an empty map, so
// that the rest of the attribute comparison will
// proceed as normal.
return true;
}
#endif // HAVE_DECL_ENOTSUP
return false;
}
else if(xattrNamesBufferSize > 0)
{
// There is some data there to look at
char *xattrNamesBuffer = (char*)malloc(xattrNamesBufferSize + 4);
if(xattrNamesBuffer == NULL) return false;
char *xattrDataBuffer = 0;
int xattrDataBufferSize = 0;
// note: will leak these buffers if a read error occurs. (test code, so doesn't matter)
ssize_t ns = llistxattr(filename, xattrNamesBuffer, xattrNamesBufferSize);
if(ns < 0)
{
return false;
}
else if(ns > 0)
{
// Read all the attribute values
const char *xattrName = xattrNamesBuffer;
while(xattrName < (xattrNamesBuffer + ns))
{
// Store size of name
int xattrNameSize = strlen(xattrName);
bool ok = true;
ssize_t dataSize = lgetxattr(filename, xattrName, NULL, 0);
if(dataSize < 0)
{
if(errno == ENOATTR)
{
// Deleted from under us
ok = false;
}
else
{
return false;
}
}
else if(dataSize == 0)
{
// something must have removed all the data from under us
ok = false;
}
else
{
// Make sure there's enough space in the buffer to get the attribute
if(xattrDataBuffer == 0)
{
xattrDataBuffer = (char*)malloc(dataSize + 4);
xattrDataBufferSize = dataSize + 4;
}
else if(xattrDataBufferSize < (dataSize + 4))
{
char *resized = (char*)realloc(xattrDataBuffer, dataSize + 4);
if(resized == NULL) return false;
xattrDataBuffer = resized;
xattrDataBufferSize = dataSize + 4;
}
}
// Read the data!
dataSize = 0;
if(ok)
{
dataSize = lgetxattr(filename, xattrName, xattrDataBuffer,
xattrDataBufferSize - 1 /*for terminator*/);
if(dataSize < 0)
{
if(errno == ENOATTR)
{
// Deleted from under us
ok = false;
}
else
{
return false;
}
}
else if(dataSize == 0)
{
// something must have deleted this from under us
ok = false;
}
else
{
// Terminate the data
xattrDataBuffer[dataSize] = '\0';
}
// Got the data in the buffer
}
// Store in map
if(ok)
{
rOutput[std::string(xattrName)] = std::string(xattrDataBuffer, dataSize);
}
// Next attribute
xattrName += xattrNameSize + 1;
}
}
if(xattrNamesBuffer != 0) ::free(xattrNamesBuffer);
if(xattrDataBuffer != 0) ::free(xattrDataBuffer);
}
return true;
}
static FILE *xattrTestDataHandle = 0;
bool write_xattr_test(const char *filename, const char *attrName, unsigned int length, bool *pNotSupported = 0)
{
if(xattrTestDataHandle == 0)
{
xattrTestDataHandle = ::fopen("testfiles/test3.tgz", "rb"); // largest test file
}
if(xattrTestDataHandle == 0)
{
return false;
}
else
{
char data[1024];
if(length > sizeof(data)) length = sizeof(data);
if(::fread(data, length, 1, xattrTestDataHandle) != 1)
{
return false;
}
if(::lsetxattr(filename, attrName, data, length, 0) != 0)
{
if(pNotSupported != 0)
{
*pNotSupported = (errno == ENOTSUP);
}
return false;
}
}
return true;
}
void finish_with_write_xattr_test()
{
if(xattrTestDataHandle != 0)
{
::fclose(xattrTestDataHandle);
}
}
#endif // HAVE_SYS_XATTR_H
bool attrmatch(const char *f1, const char *f2)
{
EMU_STRUCT_STAT s1, s2;
TEST_THAT(EMU_LSTAT(f1, &s1) == 0);
TEST_THAT(EMU_LSTAT(f2, &s2) == 0);
#ifdef HAVE_SYS_XATTR_H
{
std::map<std::string,std::string> xattr1, xattr2;
if(!readxattr_into_map(f1, xattr1)
|| !readxattr_into_map(f2, xattr2))
{
return false;
}
if(!(xattr1 == xattr2))
{
return false;
}
}
#endif // HAVE_SYS_XATTR_H
// if link, just make sure other file is a link too, and that the link to names match
if((s1.st_mode & S_IFMT) == S_IFLNK)
{
#ifdef WIN32
TEST_FAIL_WITH_MESSAGE("No symlinks on win32!")
#else
if((s2.st_mode & S_IFMT) != S_IFLNK) return false;
char p1[PATH_MAX], p2[PATH_MAX];
int p1l = ::readlink(f1, p1, PATH_MAX);
int p2l = ::readlink(f2, p2, PATH_MAX);
TEST_THAT(p1l != -1 && p2l != -1);
// terminate strings properly
p1[p1l] = '\0';
p2[p2l] = '\0';
return strcmp(p1, p2) == 0;
#endif
}
// modification times
if(FileModificationTime(s1) != FileModificationTime(s2))
{
return false;
}
// compare the rest
return (s1.st_mode == s2.st_mode && s1.st_uid == s2.st_uid && s1.st_gid == s2.st_gid);
}
bool unpack_files(const std::string& archive_file,
const std::string& destination_dir = "testfiles",
const std::string& tar_options = "")
{
BOX_INFO("Unpacking test fixture archive into " << destination_dir
<< ": " << archive_file);
#ifdef _MSC_VER // No tar, use 7zip.
// 7za only extracts the tgz file to a tar file, which we have to extract in a
// separate step.
std::string cmd = std::string("7za x testfiles/") + archive_file + ".tgz -aos "
"-otestfiles >nul:";
TEST_LINE_OR(::system(cmd.c_str()) == 0, cmd, return false);
cmd = std::string("7za x testfiles/") + archive_file + ".tar -aos "
"-o" + destination_dir + " -x!.\\TestDir1\\symlink? -x!.\\test2 >nul:";
#elif defined WIN32 // Cygwin + MinGW, we can use real tar.
std::string cmd("tar xz");
cmd += tar_options + " -f testfiles/" + archive_file + ".tgz " +
"-C " + destination_dir;
#else // Unixish, but Solaris tar doesn't like decompressing gzip files.
std::string cmd("gzip -d < testfiles/");
cmd += archive_file + ".tgz | ( cd " + destination_dir + " && tar xf" +
tar_options + " -)";
#endif
TEST_LINE_OR(::system(cmd.c_str()) == 0, cmd, return false);
return true;
}
Daemon* spDaemon = NULL;
bool configure_bbackupd(BackupDaemon& bbackupd, const std::string& config_file)
{
// Stop bbackupd initialisation from changing the console logging level
// and the program name tag.
Logger& console(Logging::GetConsole());
Logger::LevelGuard undo_log_level_change(console, console.GetLevel());
Logging::Tagger undo_program_name_change;
std::vector<std::string> args;
size_t last_arg_start = 0;
for (size_t pos = 0; pos <= bbackupd_args.size(); pos++)
{
char c;
if (pos == bbackupd_args.size())
{
c = ' '; // finish last argument
}
else
{
c = bbackupd_args[pos];
}
if (c == ' ')
{
if (last_arg_start < pos)
{
std::string last_arg =
bbackupd_args.substr(last_arg_start,
pos - last_arg_start);
args.push_back(last_arg);
}
last_arg_start = pos + 1;
}
}
MemoryBlockGuard<const char **> argv_buffer(sizeof(const char*) * (args.size() + 1));
const char **argv = argv_buffer;
argv_buffer[0] = "bbackupd";
for (size_t i = 0; i < args.size(); i++)
{
argv_buffer[i + 1] = args[i].c_str();
}
TEST_EQUAL_LINE(0, bbackupd.ProcessOptions(args.size() + 1, argv),
"processing command-line options");
bbackupd.Configure(config_file);
bbackupd.InitCrypto();
return true;
}
bool prepare_test_with_client_daemon(BackupDaemon& bbackupd, bool do_unpack_files = true,
bool do_start_bbstored = true,
const std::string& bbackupd_conf_file = "testfiles/bbackupd.conf")
{
Timers::Cleanup(false); // don't throw exception if not initialised
Timers::Init();
if (do_start_bbstored)
{
TEST_THAT_OR(StartServer(), FAIL);
}
if (do_unpack_files)
{
TEST_THAT_OR(unpack_files("test_base"), FAIL);
// Older versions of GNU tar fail to set the timestamps on
// symlinks, which makes them appear too recent to be backed
// up immediately, causing test_bbackupd_uploads_files() for
// example to fail. So restore the timestamps manually.
// http://lists.gnu.org/archive/html/bug-tar/2009-08/msg00007.html
// http://git.savannah.gnu.org/cgit/tar.git/plain/NEWS?id=release_1_24
#ifdef HAVE_UTIMENSAT
const struct timespec times[2] = {
{1065707200, 0},
{1065707200, 0},
};
const char * filenames[] = {
"testfiles/TestDir1/symlink1",
"testfiles/TestDir1/symlink2",
"testfiles/TestDir1/symlink3",
NULL,
};
for (int i = 0; filenames[i] != NULL; i++)
{
TEST_THAT_OR(utimensat(AT_FDCWD, filenames[i],
times, AT_SYMLINK_NOFOLLOW) == 0,
BOX_LOG_SYS_ERROR("Failed to change "
"timestamp on symlink: " <<
filenames[i]));
}
#endif
}
TEST_THAT_OR(configure_bbackupd(bbackupd, bbackupd_conf_file), FAIL);
spDaemon = &bbackupd;
return true;
}
//! Simplifies calling setUp() with the current function name in each test.
#define SETUP_TEST_BBACKUPD() \
SETUP(); \
TEST_THAT(bbackupd_pid == 0 || StopClient()); \
TEST_THAT(bbstored_pid == 0 || StopServer()); \
TEST_THAT(kill_running_daemons()); \
TEST_THAT(create_account(10000, 20000));
#define SETUP_WITHOUT_FILES() \
SETUP_TEST_BBACKUPD(); \
BackupDaemon bbackupd; \
TEST_THAT_OR(prepare_test_with_client_daemon(bbackupd, false), FAIL); \
TEST_THAT_OR(::mkdir("testfiles/TestDir1", 0755) == 0, FAIL);
#define SETUP_WITH_BBSTORED() \
SETUP_TEST_BBACKUPD(); \
BackupDaemon bbackupd; \
TEST_THAT_OR(prepare_test_with_client_daemon(bbackupd), FAIL);
#define TEARDOWN_TEST_BBACKUPD() \
TEST_THAT(bbackupd_pid == 0 || StopClient()); \
TEST_THAT(bbstored_pid == 0 || StopServer()); \
TEST_THAT(kill_running_daemons()); \
TEARDOWN();
bool test_basics()
{
SETUP_TEST_BBACKUPD();
TEST_THAT_OR(unpack_files("test_base"), FAIL);
// Read attributes from files
BackupClientFileAttributes t1;
t1.ReadAttributes("testfiles/test1");
TEST_THAT(!t1.IsSymLink());
#ifndef WIN32
BackupClientFileAttributes t2;
t2.ReadAttributes("testfiles/test2");
TEST_THAT(t2.IsSymLink());
// Check that it's actually been encrypted (search for symlink name encoded in it)
void *te = ::memchr(t2.GetBuffer(), 't', t2.GetSize() - 3);
TEST_THAT(te == 0 || ::memcmp(te, "test", 4) != 0);
#endif
BackupClientFileAttributes t3;
{
Logger::LevelGuard(Logging::GetConsole(), Log::ERROR);
TEST_CHECK_THROWS(t3.ReadAttributes("doesn't exist"),
CommonException, OSFileError);
}
// Create some more files
FILE *f = fopen("testfiles/test1_n", "w");
fclose(f);
f = fopen("testfiles/test2_n", "w");
fclose(f);
// Apply attributes to these new files
t1.WriteAttributes("testfiles/test1_n");
#ifdef WIN32
// We can't apply symlink attributes on Win32, so use a normal file's
// attributes instead.
t1.WriteAttributes("testfiles/test2_n");
#else
t2.WriteAttributes("testfiles/test2_n");
#endif
#ifndef WIN32
{
Logger::LevelGuard(Logging::GetConsole(), Log::ERROR);
TEST_CHECK_THROWS(t1.WriteAttributes("testfiles/test1_nXX"),
CommonException, OSFileError);
TEST_CHECK_THROWS(t3.WriteAttributes("doesn't exist"),
BackupStoreException, AttributesNotLoaded);
}
// Test that attributes are vaguely similar
TEST_THAT(attrmatch("testfiles/test1", "testfiles/test1_n"));
TEST_THAT(attrmatch("testfiles/test2", "testfiles/test2_n"));
#endif
// Check encryption, and recovery from encryption
// First, check that two attributes taken from the same thing have different encrypted values (think IV)
BackupClientFileAttributes t1b;
t1b.ReadAttributes("testfiles/test1");
TEST_THAT(::memcmp(t1.GetBuffer(), t1b.GetBuffer(), t1.GetSize()) != 0);
// But that comparing them works OK.
TEST_THAT(t1 == t1b);
// Then store them both to a stream
CollectInBufferStream stream;
t1.WriteToStream(stream);
t1b.WriteToStream(stream);
// Read them back again
stream.SetForReading();
BackupClientFileAttributes t1_r, t1b_r;
t1_r.ReadFromStream(stream, 1000);
t1b_r.ReadFromStream(stream, 1000);
TEST_THAT(::memcmp(t1_r.GetBuffer(), t1b_r.GetBuffer(), t1_r.GetSize()) != 0);
TEST_THAT(t1_r == t1b_r);
TEST_THAT(t1 == t1_r);
TEST_THAT(t1b == t1b_r);
TEST_THAT(t1_r == t1b);
TEST_THAT(t1b_r == t1);
#ifdef HAVE_SYS_XATTR_H
// Write some attributes to the file, checking for ENOTSUP
bool xattrNotSupported = false;
if(!write_xattr_test("testfiles/test1", "user.attr_1", 1000, &xattrNotSupported) && xattrNotSupported)
{
::printf("***********\nYour platform supports xattr, but your filesystem does not.\nSkipping tests.\n***********\n");
}
else
{
BackupClientFileAttributes x1, x2, x3, x4;
// Write more attributes
TEST_THAT(write_xattr_test("testfiles/test1", "user.attr_2", 947));
TEST_THAT(write_xattr_test("testfiles/test1", "user.sadfohij39998.3hj", 123));
// Read file attributes
x1.ReadAttributes("testfiles/test1");
// Write file attributes
FILE *f = fopen("testfiles/test1_nx", "w");
fclose(f);
x1.WriteAttributes("testfiles/test1_nx");
// Compare to see if xattr copied
TEST_THAT(attrmatch("testfiles/test1", "testfiles/test1_nx"));
// Add more attributes to a file
x2.ReadAttributes("testfiles/test1");
TEST_THAT(write_xattr_test("testfiles/test1", "user.328989sj..sdf", 23));
// Read them again, and check that the Compare() function detects that they're different
x3.ReadAttributes("testfiles/test1");
TEST_THAT(x1.Compare(x2, true, true));
TEST_THAT(!x1.Compare(x3, true, true));
// Change the value of one of them, leaving the size the same.
TEST_THAT(write_xattr_test("testfiles/test1", "user.328989sj..sdf", 23));
x4.ReadAttributes("testfiles/test1");
TEST_THAT(!x1.Compare(x4, true, true));
}
finish_with_write_xattr_test();
#endif // HAVE_SYS_XATTR_H
TEARDOWN_TEST_BBACKUPD();
}
int64_t GetDirID(BackupProtocolCallable &protocol, const char *name, int64_t InDirectory)
{
protocol.QueryListDirectory(
InDirectory,
BackupProtocolListDirectory::Flags_Dir,
BackupProtocolListDirectory::Flags_EXCLUDE_NOTHING,
true /* want attributes */);
// Retrieve the directory from the stream following
BackupStoreDirectory dir;
std::auto_ptr<IOStream> dirstream(protocol.ReceiveStream());
dir.ReadFromStream(*dirstream, protocol.GetTimeout());
BackupStoreDirectory::Iterator i(dir);
BackupStoreDirectory::Entry *en = 0;
int64_t dirid = 0;
BackupStoreFilenameClear dirname(name);
while((en = i.Next()) != 0)
{
if(en->GetName() == dirname)
{
dirid = en->GetObjectID();
}
}
return dirid;
}
void terminate_on_alarm(int sigraised)
{
abort();
}
#ifndef WIN32
void do_interrupted_restore(const TLSContext &context, int64_t restoredirid)
{
int pid = 0;
switch((pid = fork()))
{
case 0:
// child process
{
// connect and log in
SocketStreamTLS* pConn = new SocketStreamTLS;
std::auto_ptr<SocketStream> apConn(pConn);
pConn->Open(context, Socket::TypeINET, "localhost", 22011);
BackupProtocolClient protocol(apConn);
protocol.QueryVersion(BACKUP_STORE_SERVER_VERSION);
std::auto_ptr<BackupProtocolLoginConfirmed>
loginConf(protocol.QueryLogin(0x01234567,
BackupProtocolLogin::Flags_ReadOnly));
// Test the restoration
TEST_THAT(BackupClientRestore(protocol, restoredirid,
"testfiles/restore-interrupt", /* remote */
"testfiles/restore-interrupt", /* local */
true /* print progress dots */,
false /* restore deleted */,
false /* undelete after */,
false /* resume */,
false /* keep going */) == Restore_Complete);
// Log out
protocol.QueryFinished();
}
exit(0);
break;
case -1:
{
printf("Fork failed\n");
exit(1);
}
default:
{
// Wait until a resume file is written, then terminate the child
while(true)
{
// Test for existence of the result file
int64_t resumesize = 0;
if(FileExists("testfiles/restore-interrupt.boxbackupresume", &resumesize) && resumesize > 16)
{
// It's done something. Terminate it.
::kill(pid, SIGTERM);
break;
}
// Process finished?
int status = 0;
if(waitpid(pid, &status, WNOHANG) != 0)
{
// child has finished anyway.
return;
}
// Give up timeslot so as not to hog the processor
::sleep(0);
}
// Just wait until the child has completed
int status = 0;
waitpid(pid, &status, 0);
}
}
}
#endif // !WIN32
#ifdef WIN32
bool set_file_time(const char* filename, FILETIME creationTime,
FILETIME lastModTime, FILETIME lastAccessTime)
{
HANDLE handle = openfile(filename, O_RDWR, 0);
TEST_THAT(handle != INVALID_HANDLE_VALUE);
if (handle == INVALID_HANDLE_VALUE) return false;
BOOL success = SetFileTime(handle, &creationTime, &lastAccessTime,
&lastModTime);
TEST_THAT(success);
TEST_THAT(CloseHandle(handle));
return success;
}
#endif
void intercept_setup_delay(const char *filename, unsigned int delay_after,
int delay_ms, int syscall_to_delay);
bool intercept_triggered();
int64_t SearchDir(BackupStoreDirectory& rDir,
const std::string& rChildName)
{
BackupStoreDirectory::Iterator i(rDir);
BackupStoreFilenameClear child(rChildName);
BackupStoreDirectory::Entry *en = i.FindMatchingClearName(child);
if (en == 0) return 0;
int64_t id = en->GetObjectID();
TEST_THAT(id > 0);
TEST_THAT(id != BackupProtocolListDirectory::RootDirectory);
return id;
}
std::auto_ptr<BackupStoreDirectory> ReadDirectory
(
BackupProtocolCallable& rClient,
int64_t id = BackupProtocolListDirectory::RootDirectory
)
{
std::auto_ptr<BackupProtocolSuccess> dirreply(
rClient.QueryListDirectory(id, false, 0, false));
std::auto_ptr<BackupStoreDirectory> apDir(
new BackupStoreDirectory(rClient.ReceiveStream(), SHORT_TIMEOUT));
return apDir;
}
int start_internal_daemon()
{
// ensure that no child processes end up running tests!
int own_pid = getpid();
BOX_TRACE("Test PID is " << own_pid);
// this is a quick hack to allow passing some options to the daemon
const char* argv[] = {
"dummy",
bbackupd_args.c_str(),
};
BackupDaemon daemon;
spDaemon = &daemon; // to propagate into child
int result;
if (bbackupd_args.size() > 0)
{
result = daemon.Main("testfiles/bbackupd.conf", 2, argv);
}
else
{
result = daemon.Main("testfiles/bbackupd.conf", 1, argv);
}
spDaemon = NULL; // to ensure not used by parent
TEST_EQUAL_LINE(0, result, "Daemon exit code");
// ensure that no child processes end up running tests!
if (getpid() != own_pid)
{
// abort!
BOX_INFO("Daemon child finished, exiting now.");
_exit(0);
}
TEST_THAT(TestFileExists("testfiles/bbackupd.pid"));
printf("Waiting for backup daemon to start: ");
int pid = -1;
for (int i = 0; i < 30; i++)
{
printf(".");
fflush(stdout);
safe_sleep(1);
if (TestFileExists("testfiles/bbackupd.pid"))
{
pid = ReadPidFile("testfiles/bbackupd.pid");
}
if (pid > 0)
{
break;
}
}
printf(" done.\n");
fflush(stdout);
TEST_THAT(pid > 0);
spDaemon = &daemon;
return pid;
}
bool stop_internal_daemon(int pid)
{
bool killed_server = KillServer(pid, false);
TEST_THAT(killed_server);
return killed_server;
}
static struct dirent readdir_test_dirent;
static int readdir_test_counter = 0;
static int readdir_stop_time = 0;
static char stat_hook_filename[512];
// First test hook, during the directory scanning stage, returns empty.
// (Where is this stage? I can't find it, so I switched from using
// readdir_test_hook_1 to readdir_test_hook_2 in intercept tests.)
// This will not match the directory on the store, so a sync will start.
// We set up the next intercept for the same directory by passing NULL.
extern "C" struct dirent *readdir_test_hook_2(DIR *dir);
#ifdef LINUX_WEIRD_LSTAT
extern "C" int lstat_test_hook(int ver, const char *file_name, struct stat *buf);
#else
extern "C" int lstat_test_hook(const char *file_name, struct stat *buf);
#endif
extern "C" struct dirent *readdir_test_hook_1(DIR *dir)
{
#ifndef PLATFORM_CLIB_FNS_INTERCEPTION_IMPOSSIBLE
intercept_setup_readdir_hook(NULL, readdir_test_hook_2);
#endif
return NULL;
}
// Second test hook, called by BackupClientDirectoryRecord::SyncDirectory,
// keeps returning new filenames until the timer expires, then disables the
// intercept.
extern "C" struct dirent *readdir_test_hook_2(DIR *dir)
{
if (spDaemon->IsTerminateWanted())
{
// force daemon to crash, right now
return NULL;
}
time_t time_now = time(NULL);
if (time_now >= readdir_stop_time)
{
#ifndef PLATFORM_CLIB_FNS_INTERCEPTION_IMPOSSIBLE
BOX_NOTICE("Cancelling readdir hook at " << time_now);
intercept_setup_readdir_hook(NULL, NULL);
intercept_setup_lstat_hook (NULL, NULL);
// we will not be called again.
#else
BOX_NOTICE("Failed to cancel readdir hook at " << time_now);
#endif
}
else
{
BOX_TRACE("readdir hook still active at " << time_now << ", "
"waiting for " << readdir_stop_time);
}
// fill in the struct dirent appropriately
memset(&readdir_test_dirent, 0, sizeof(readdir_test_dirent));
#ifdef HAVE_STRUCT_DIRENT_D_INO
readdir_test_dirent.d_ino = ++readdir_test_counter;
#endif
snprintf(readdir_test_dirent.d_name,
sizeof(readdir_test_dirent.d_name),
"test.%d", readdir_test_counter);
BOX_TRACE("readdir hook returning " << readdir_test_dirent.d_name);
// ensure that when bbackupd stats the file, it gets the
// right answer
snprintf(stat_hook_filename, sizeof(stat_hook_filename),
"testfiles/TestDir1/spacetest/d1/test.%d",
readdir_test_counter);
#ifndef PLATFORM_CLIB_FNS_INTERCEPTION_IMPOSSIBLE
intercept_setup_lstat_hook(stat_hook_filename, lstat_test_hook);
#endif
// sleep a bit to reduce the number of dirents returned
if (time_now < readdir_stop_time)
{
::safe_sleep(1);
}
return &readdir_test_dirent;
}
#ifdef LINUX_WEIRD_LSTAT
extern "C" int lstat_test_hook(int ver, const char *file_name, struct stat *buf)
#else
extern "C" int lstat_test_hook(const char *file_name, struct stat *buf)
#endif
{
// TRACE1("lstat hook triggered for %s", file_name);
memset(buf, 0, sizeof(*buf));
buf->st_mode = S_IFREG;
return 0;
}
// Simulate a symlink that is on a different device than the file
// that it points to.
int lstat_test_post_hook(int old_ret, const char *file_name, struct stat *buf)
{
BOX_TRACE("lstat post hook triggered for " << file_name);
if (old_ret == 0 &&
strcmp(file_name, "testfiles/symlink-to-TestDir1") == 0)
{
buf->st_dev ^= 0xFFFF;
}
return old_ret;
}
bool test_entry_deleted(BackupStoreDirectory& rDir,
const std::string& rName)
{
BackupStoreDirectory::Iterator i(rDir);
BackupStoreDirectory::Entry *en = i.FindMatchingClearName(
BackupStoreFilenameClear(rName));
TEST_THAT_OR(en != 0, return false);
int16_t flags = en->GetFlags();
TEST_LINE(flags && BackupStoreDirectory::Entry::Flags_Deleted,
rName + " should have been deleted");
return flags && BackupStoreDirectory::Entry::Flags_Deleted;
}
bool compare_external(BackupQueries::ReturnCode::Type expected_status,
const std::string& bbackupquery_options = "",
const std::string& compare_options = "-acQ",
const std::string& bbackupd_conf_file = "testfiles/bbackupd.conf")
{
std::string cmd = BBACKUPQUERY;
cmd += " ";
cmd += (expected_status == BackupQueries::ReturnCode::Compare_Same)
? "-Wwarning" : "-Werror";
cmd += " -c " + bbackupd_conf_file;
cmd += " " + bbackupquery_options;
cmd += " \"compare " + compare_options + "\" quit";
int returnValue = ::system(cmd.c_str());
int expected_system_result = (int) expected_status;
#ifndef WIN32
expected_system_result <<= 8;
#endif
TEST_EQUAL_LINE(expected_system_result, returnValue, "compare return value");
TestRemoteProcessMemLeaks("bbackupquery.memleaks");
return (returnValue == expected_system_result);
}
bool compare_in_process(BackupQueries::ReturnCode::Type expected_status,
BackupProtocolCallable& client,
const std::string& compare_options = "acQ")
{
std::auto_ptr<Configuration> config =
load_config_file(DEFAULT_BBACKUPD_CONFIG_FILE, BackupDaemonConfigVerify);
TEST_THAT_OR(config.get(), return false);
BackupQueries bbackupquery(client, *config, false);
std::vector<std::string> args;
bool opts[256] = {};
for (std::string::const_iterator i = compare_options.begin();
i != compare_options.end(); i++)
{
opts[(unsigned char)*i] = true;
}
bbackupquery.CommandCompare(args, opts);
TEST_EQUAL_OR(expected_status, bbackupquery.GetReturnCode(),
return false);
return true;
}
bool bbackupquery(const std::string& arguments,
const std::string& memleaks_file = "bbackupquery.memleaks")
{
std::string cmd = BBACKUPQUERY;
cmd += " -c testfiles/bbackupd.conf " + arguments + " quit";
int returnValue = ::system(cmd.c_str());
#ifndef WIN32
returnValue >>= 8;
#endif
TestRemoteProcessMemLeaks(memleaks_file.c_str());
TEST_EQUAL(returnValue, BackupQueries::ReturnCode::Command_OK);
return (returnValue == BackupQueries::ReturnCode::Command_OK);
}
bool restore(const std::string& location, const std::string& dest_dir)
{
std::string cmd = "\"restore " + location + " " + dest_dir + "\"";
TEST_THAT_OR(bbackupquery(cmd), FAIL);
return true;
}
bool touch_and_wait(const std::string& filename)
{
int fd = open(filename.c_str(), O_CREAT | O_WRONLY, 0755);
TEST_THAT(fd > 0);
if (fd <= 0) return false;
// write again, to update the file's timestamp
int write_result = write(fd, "z", 1);
TEST_EQUAL_LINE(1, write_result, "Buffer write");
if (write_result != 1) return false;
TEST_THAT(close(fd) == 0);
// wait long enough to put file into sync window
wait_for_operation(5, "locally modified file to "
"mature for sync");
return true;
}
TLSContext sTlsContext;
#define TEST_COMPARE(expected_status) \
BOX_INFO("Running external compare, expecting " #expected_status); \
TEST_THAT(compare_external(BackupQueries::ReturnCode::expected_status));
#define TEST_COMPARE_EXTRA(expected_status, ...) \
BOX_INFO("Running external compare, expecting " #expected_status); \
TEST_THAT(compare_external(BackupQueries::ReturnCode::expected_status, __VA_ARGS__));
#define TEST_COMPARE_LOCAL(expected_status, client) \
BOX_INFO("Running compare in-process, expecting " #expected_status); \
TEST_THAT(compare_in_process(BackupQueries::ReturnCode::expected_status, client));
#define TEST_COMPARE_LOCAL_EXTRA(expected_status, client, compare_options) \
BOX_INFO("Running compare in-process, expecting " #expected_status); \
TEST_THAT(compare_in_process(BackupQueries::ReturnCode::expected_status, client, \
compare_options));
bool search_for_file(const std::string& filename)
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext, BackupProtocolLogin::Flags_ReadOnly);
std::auto_ptr<BackupStoreDirectory> dir = ReadDirectory(*client);
int64_t testDirId = SearchDir(*dir, filename);
client->QueryFinished();
return (testDirId != 0);
}
class MockClientContext : public BackupClientContext
{
public:
BackupProtocolCallable& mrClient;
int mNumKeepAlivesPolled;
int mKeepAliveTime;
MockClientContext
(
LocationResolver &rResolver,
TLSContext &rTLSContext,
const std::string &rHostname,
int32_t Port,
uint32_t AccountNumber,
bool ExtendedLogging,
bool ExtendedLogToFile,
std::string ExtendedLogFile,
ProgressNotifier &rProgressNotifier,
bool TcpNiceMode,
BackupProtocolCallable& rClient
)
: BackupClientContext(rResolver, rTLSContext,
rHostname, Port, AccountNumber, ExtendedLogging,
ExtendedLogToFile, ExtendedLogFile,
rProgressNotifier, TcpNiceMode),
mrClient(rClient),
mNumKeepAlivesPolled(0),
mKeepAliveTime(-1)
{ }
BackupProtocolCallable &GetConnection()
{
return mrClient;
}
virtual BackupProtocolCallable* GetOpenConnection() const
{
return &mrClient;
}
void SetKeepAliveTime(int iSeconds)
{
mKeepAliveTime = iSeconds;
BackupClientContext::SetKeepAliveTime(iSeconds);
}
virtual void DoKeepAlive()
{
mNumKeepAlivesPolled++;
BackupClientContext::DoKeepAlive();
}
};
class MockBackupDaemon : public BackupDaemon
{
BackupProtocolCallable& mrClient;
public:
MockBackupDaemon(BackupProtocolCallable &rClient)
: mrClient(rClient)
{ }
std::auto_ptr<BackupClientContext> GetNewContext
(
LocationResolver &rResolver,
TLSContext &rTLSContext,
const std::string &rHostname,
int32_t Port,
uint32_t AccountNumber,
bool ExtendedLogging,
bool ExtendedLogToFile,
std::string ExtendedLogFile,
ProgressNotifier &rProgressNotifier,
bool TcpNiceMode
)
{
std::auto_ptr<BackupClientContext> context(
new MockClientContext(rResolver,
rTLSContext, rHostname, Port,
AccountNumber, ExtendedLogging,
ExtendedLogToFile, ExtendedLogFile,
rProgressNotifier, TcpNiceMode, mrClient));
return context;
}
};
bool test_readdirectory_on_nonexistent_dir()
{
SETUP_WITH_BBSTORED();
{
std::auto_ptr<BackupProtocolCallable> client = connect_and_login(
sTlsContext, 0 /* read-write */);
{
Logger::LevelGuard(Logging::GetConsole(), Log::ERROR);
TEST_CHECK_THROWS(ReadDirectory(*client, 0x12345678),
ConnectionException,
Protocol_UnexpectedReply);
TEST_PROTOCOL_ERROR_OR(*client, Err_DoesNotExist,);
}
client->QueryFinished();
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_bbackupquery_parser_escape_slashes()
{
SETUP_WITH_BBSTORED();
BackupProtocolLocal2 connection(0x01234567, "test",
"backup/01234567/", 0, false);
BackupClientFileAttributes attr;
attr.ReadAttributes("testfiles/TestDir1",
false /* put mod times in the attributes, please */);
std::auto_ptr<IOStream> attrStream(new MemBlockStream(attr));
BackupStoreFilenameClear dirname("foo");
int64_t foo_id = connection.QueryCreateDirectory(
BACKUPSTORE_ROOT_DIRECTORY_ID, // containing directory
0, // attrModTime,
dirname, // dirname,
attrStream)->GetObjectID();
attrStream.reset(new MemBlockStream(attr));
dirname = BackupStoreFilenameClear("/bar");
int64_t bar_id = connection.QueryCreateDirectory(
BACKUPSTORE_ROOT_DIRECTORY_ID, // containing directory
0, // attrModTime,
dirname, // dirname,
attrStream)->GetObjectID();
std::auto_ptr<Configuration> config =
load_config_file(DEFAULT_BBACKUPD_CONFIG_FILE, BackupDaemonConfigVerify);
TEST_THAT_OR(config.get(), return false);
BackupQueries query(connection, *config, false); // read-only
TEST_EQUAL(foo_id, query.FindDirectoryObjectID("foo"));
TEST_EQUAL(foo_id, query.FindDirectoryObjectID("/foo"));
TEST_EQUAL(0, query.FindDirectoryObjectID("\\/foo"));
TEST_EQUAL(0, query.FindDirectoryObjectID("/bar"));
TEST_EQUAL(bar_id, query.FindDirectoryObjectID("\\/bar"));
connection.QueryFinished();
TEARDOWN_TEST_BBACKUPD();
}
bool test_getobject_on_nonexistent_file()
{
SETUP_WITH_BBSTORED();
{
std::auto_ptr<Configuration> config =
load_config_file(DEFAULT_BBACKUPD_CONFIG_FILE, BackupDaemonConfigVerify);
TEST_THAT_OR(config.get(), return false);
std::auto_ptr<BackupProtocolCallable> connection =
connect_and_login(sTlsContext, 0 /* read-write */);
BackupQueries query(*connection, *config, false); // read-only
std::vector<std::string> args;
args.push_back("2"); // object ID
args.push_back("testfiles/2.obj"); // output file
bool opts[256];
Capture capture;
Logging::TempLoggerGuard guard(&capture);
query.CommandGetObject(args, opts);
std::vector<Capture::Message> messages = capture.GetMessages();
TEST_THAT(!messages.empty());
if (!messages.empty())
{
std::string last_message = messages.back().message;
TEST_EQUAL("Object ID 0x2 does not exist on store.",
last_message);
}
}
TEARDOWN_TEST_BBACKUPD();
}
void run_bbackupd_sync_with_logging(BackupDaemon& bbackupd)
{
Logging::Tagger bbackupd_tagger("bbackupd", true); // replace
Logging::ShowTagOnConsole temp_enable_tags;
bbackupd.RunSyncNow();
}
// ASSERT((mpBlockIndex == 0) || (NumBlocksInIndex != 0)) in
// BackupStoreFileEncodeStream::Recipe::Recipe once failed, apparently because
// a zero byte file had a block index but no entries in it. But this test
// doesn't reproduce the error, so it's not enabled for now.
bool test_replace_zero_byte_file_with_nonzero_byte_file()
{
SETUP_TEST_BBACKUPD();
TEST_THAT_OR(mkdir("testfiles/TestDir1", 0755) == 0, FAIL);
FileStream emptyFile("testfiles/TestDir1/f2",
O_WRONLY | O_CREAT | O_EXCL, 0755);
wait_for_operation(5, "f2 to be old enough");
BackupProtocolLocal2 client(0x01234567, "test",
"backup/01234567/", 0, false);
MockBackupDaemon bbackupd(client);
TEST_THAT(configure_bbackupd(bbackupd, "testfiles/bbackupd.conf"));
bbackupd.RunSyncNow();
TEST_COMPARE_LOCAL(Compare_Same, client);
MemBlockStream stream("Hello world");
stream.CopyStreamTo(emptyFile);
emptyFile.Close();
wait_for_operation(5, "f2 to be old enough");
bbackupd.RunSyncNow();
TEST_COMPARE_LOCAL(Compare_Same, client);
TEARDOWN_TEST_BBACKUPD();
}
// This caused the issue reported by Brendon Baumgartner and described in my
// email to the Box Backup list on Mon, 21 Apr 2014 at 18:44:38. If the
// directory disappears then we used to try to send an empty attributes block
// to the server, which is illegal.
bool test_backup_disappearing_directory()
{
SETUP_WITH_BBSTORED();
class BackupClientDirectoryRecordHooked : public BackupClientDirectoryRecord
{
public:
BackupClientDirectoryRecordHooked(int64_t ObjectID,
const std::string &rSubDirName)
: BackupClientDirectoryRecord(ObjectID, rSubDirName),
mDeletedOnce(false)
{ }
bool mDeletedOnce;
bool UpdateItems(SyncParams &rParams, const std::string &rLocalPath,
const std::string &rRemotePath,
const Location& rBackupLocation,
BackupStoreDirectory *pDirOnStore,
std::vector<BackupStoreDirectory::Entry *> &rEntriesLeftOver,
std::vector<std::string> &rFiles,
const std::vector<std::string> &rDirs)
{
if(!mDeletedOnce)
{
TEST_THAT(::rmdir("testfiles/TestDir1/dir23") == 0);
mDeletedOnce = true;
}
return BackupClientDirectoryRecord::UpdateItems(rParams,
rLocalPath, rRemotePath, rBackupLocation,
pDirOnStore, rEntriesLeftOver, rFiles, rDirs);
}
};
BackupClientContext clientContext
(
bbackupd, // rLocationResolver
sTlsContext,
"localhost",
BOX_PORT_BBSTORED_TEST,
0x01234567,
false, // ExtendedLogging
false, // ExtendedLogFile
"", // extendedLogFile
bbackupd, // rProgressNotifier
false // TcpNice
);
BackupClientInodeToIDMap oldMap, newMap;
oldMap.OpenEmpty();
newMap.Open("testfiles/test_map.db", false, true);
clientContext.SetIDMaps(&oldMap, &newMap);
BackupClientDirectoryRecord::SyncParams params(
bbackupd, // rRunStatusProvider,
bbackupd, // rSysadminNotifier,
bbackupd, // rProgressNotifier,
clientContext,
&bbackupd);
params.mSyncPeriodEnd = GetCurrentBoxTime();
BackupClientFileAttributes attr;
attr.ReadAttributes("testfiles/TestDir1",
false /* put mod times in the attributes, please */);
std::auto_ptr<IOStream> attrStream(new MemBlockStream(attr));
BackupStoreFilenameClear dirname("Test1");
std::auto_ptr<BackupProtocolSuccess>
dirCreate(clientContext.GetConnection().QueryCreateDirectory(
BACKUPSTORE_ROOT_DIRECTORY_ID, // containing directory
0, // attrModTime,
dirname, // dirname,
attrStream));
clientContext.CloseAnyOpenConnection();
// Object ID for later creation
int64_t oid = dirCreate->GetObjectID();
BackupClientDirectoryRecordHooked record(oid, "Test1");
TEST_COMPARE(Compare_Different);
Location fakeLocation;
record.SyncDirectory(params,
BACKUPSTORE_ROOT_DIRECTORY_ID,
"testfiles/TestDir1", // locationPath,
"/whee", // remotePath
fakeLocation);
clientContext.CloseAnyOpenConnection();
TEST_COMPARE(Compare_Same);
// Run another backup, check that we haven't got an inconsistent
// state that causes a crash.
record.SyncDirectory(params,
BACKUPSTORE_ROOT_DIRECTORY_ID,
"testfiles/TestDir1", // locationPath,
"/whee", // remotePath
fakeLocation);
clientContext.CloseAnyOpenConnection();
TEST_COMPARE(Compare_Same);
// Now recreate it and run another backup, check that we haven't got
// an inconsistent state that causes a crash or prevents us from
// creating the directory if it appears later.
TEST_THAT(::mkdir("testfiles/TestDir1/dir23", 0755) == 0);
TEST_COMPARE(Compare_Different);
record.SyncDirectory(params,
BACKUPSTORE_ROOT_DIRECTORY_ID,
"testfiles/TestDir1", // locationPath,
"/whee", // remotePath
fakeLocation);
clientContext.CloseAnyOpenConnection();
TEST_COMPARE(Compare_Same);
TEARDOWN_TEST_BBACKUPD();
}
class KeepAliveBackupProtocolLocal : public BackupProtocolLocal2
{
public:
int mNumKeepAlivesSent;
int mNumKeepAlivesReceived;
public:
KeepAliveBackupProtocolLocal(int32_t AccountNumber,
const std::string& ConnectionDetails,
const std::string& AccountRootDir, int DiscSetNumber,
bool ReadOnly)
: BackupProtocolLocal2(AccountNumber, ConnectionDetails, AccountRootDir,
DiscSetNumber, ReadOnly),
mNumKeepAlivesSent(0),
mNumKeepAlivesReceived(0)
{ }
std::auto_ptr<BackupProtocolIsAlive> Query(const BackupProtocolGetIsAlive &rQuery)
{
mNumKeepAlivesSent++;
std::auto_ptr<BackupProtocolIsAlive> response =
BackupProtocolLocal::Query(rQuery);
mNumKeepAlivesReceived++;
return response;
}
};
bool test_ssl_keepalives()
{
SETUP_TEST_BBACKUPD();
KeepAliveBackupProtocolLocal connection(0x01234567, "test", "backup/01234567/",
0, false);
MockBackupDaemon bbackupd(connection);
TEST_THAT_OR(prepare_test_with_client_daemon(bbackupd), FAIL);
// Test that sending a keepalive actually works, when the timeout has expired,
// but doesn't send anything at the beginning:
{
MockClientContext context(
bbackupd, // rResolver
sTlsContext, // rTLSContext
"localhost", // rHostname
BOX_PORT_BBSTORED_TEST,
0x01234567, // AccountNumber
false, // ExtendedLogging
false, // ExtendedLogToFile
"", // ExtendedLogFile
bbackupd, // rProgressNotifier
false, // TcpNiceMode
connection); // rClient
// Set the timeout to 1 second
context.SetKeepAliveTime(1);
// Check that DoKeepAlive() does nothing right now
context.DoKeepAlive();
TEST_EQUAL(0, connection.mNumKeepAlivesSent);
// Sleep until just before the timer expires, check that DoKeepAlive()
// still does nothing.
ShortSleep(MilliSecondsToBoxTime(900), true);
context.DoKeepAlive();
TEST_EQUAL(0, connection.mNumKeepAlivesSent);
// Sleep until just after the timer expires, check that DoKeepAlive()
// sends a GetIsAlive message now.
ShortSleep(MilliSecondsToBoxTime(200), true);
context.DoKeepAlive();
TEST_EQUAL(1, connection.mNumKeepAlivesSent);
TEST_EQUAL(1, connection.mNumKeepAlivesReceived);
TEST_EQUAL(3, context.mNumKeepAlivesPolled);
}
// Do the initial backup. There are no existing files to diff, so the only
// keepalives polled should be the ones for each directory entry while reading
// directories, and the one in UpdateItems(), which is also once per item (file
// or directory). test_base.tgz has 16 directory entries, so we expect 2 * 16 = 32
// keepalives in total. Except on Windows where there are no symlinks, and when
// compiled with MSVC we exclude them from the tar extract operation as 7za
// complains about them, so there should be 3 files less, and thus only 26
// keepalives.
#ifdef _MSC_VER
#define NUM_KEEPALIVES_BASE 26
#else
#define NUM_KEEPALIVES_BASE 32
#endif
std::auto_ptr<BackupClientContext> apContext = bbackupd.RunSyncNow();
MockClientContext* pContext = (MockClientContext *)(apContext.get());
TEST_EQUAL(NUM_KEEPALIVES_BASE, pContext->mNumKeepAlivesPolled);
TEST_EQUAL(1, pContext->mKeepAliveTime);
// Calculate the number of blocks that will be in ./TestDir1/x1/dsfdsfs98.fd,
// which is 4269 bytes long.
int64_t NumBlocks;
int32_t BlockSize, LastBlockSize;
BackupStoreFileEncodeStream::CalculateBlockSizes(4269, NumBlocks, BlockSize, LastBlockSize);
TEST_EQUAL(4096, BlockSize);
TEST_EQUAL(173, LastBlockSize);
TEST_EQUAL(2, NumBlocks);
// Now modify the file and run another backup. It's the only file that should be
// diffed, and DoKeepAlive() should be called for each block size in the original
// file, times the number of times that block size fits into the new file,
// i.e. 1 + (4269 / 256) = 18 times (plus the same 32 while scanning, as above).
{
int fd = open("testfiles/TestDir1/x1/dsfdsfs98.fd", O_WRONLY);
TEST_THAT_OR(fd > 0, FAIL);
char buffer[4000];
memset(buffer, 0, sizeof(buffer));
TEST_EQUAL_LINE(sizeof(buffer),
write(fd, buffer, sizeof(buffer)),
"Buffer write");
TEST_THAT(close(fd) == 0);
wait_for_operation(5, "modified file to be old enough");
}
apContext = bbackupd.RunSyncNow();
pContext = (MockClientContext *)(apContext.get());
TEST_EQUAL(NUM_KEEPALIVES_BASE + (4269/4096) + (4269/173),
pContext->mNumKeepAlivesPolled);
TEARDOWN_TEST_BBACKUPD();
}
bool test_backup_hardlinked_files()
{
SETUP_WITH_BBSTORED();
run_bbackupd_sync_with_logging(bbackupd);
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// Create some hard links. First in the same directory:
TEST_THAT(EMU_LINK("testfiles/TestDir1/x1/dsfdsfs98.fd",
"testfiles/TestDir1/x1/hardlink1") == 0);
run_bbackupd_sync_with_logging(bbackupd);
TEST_COMPARE(Compare_Same);
BOX_NOTICE("Creating a hard-linked file in a different directory (x2/hardlink2)");
TEST_THAT(mkdir("testfiles/TestDir1/x2", 0755) == 0);
TEST_THAT(EMU_LINK("testfiles/TestDir1/x1/dsfdsfs98.fd",
"testfiles/TestDir1/x2/hardlink2") == 0);
run_bbackupd_sync_with_logging(bbackupd);
TEST_COMPARE(Compare_Same);
// Now delete one of them
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/x1/dsfdsfs98.fd") == 0);
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// And another.
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/x1/hardlink1") == 0);
run_bbackupd_sync_with_logging(bbackupd);
TEST_COMPARE(Compare_Same);
TEARDOWN_TEST_BBACKUPD();
}
bool test_backup_pauses_when_store_is_full()
{
SETUP_WITHOUT_FILES();
unpack_files("spacetest1", "testfiles/TestDir1");
TEST_THAT_OR(StartClient(), FAIL);
// TODO FIXME dedent
{
// wait for files to be uploaded
BOX_TRACE("Waiting for all outstanding files to be uploaded...")
wait_for_sync_end();
BOX_TRACE("Done. Comparing to check that it worked...")
TEST_COMPARE(Compare_Same);
// BLOCK
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext, 0 /* read-write */);
TEST_THAT(check_num_files(5, 0, 0, 9));
TEST_THAT(check_num_blocks(*client, 10, 0, 0, 18, 28));
client->QueryFinished();
}
// Set limit to something very small.
// 28 blocks are used at this point.
// set soft limit to 0 to ensure that all deleted files
// are deleted immediately by housekeeping
TEST_THAT(change_account_limits("0B", "20B"));
// Unpack some more files
unpack_files("spacetest2", "testfiles/TestDir1");
// Delete a file and a directory
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/spacetest/f1") == 0);
#ifdef WIN32
TEST_THAT(::system("rd /s/q testfiles\\TestDir1\\spacetest\\d7") == 0);
#else
TEST_THAT(::system("rm -rf testfiles/TestDir1/spacetest/d7") == 0);
#endif
// The following files should be in the backup directory:
// 00000001 -d---- 00002 (root)
// 00000002 -d---- 00002 Test1
// 00000003 -d---- 00002 Test1/spacetest
// 00000004 f-X--- 00002 Test1/spacetest/f1
// 00000005 f----- 00002 Test1/spacetest/f2
// 00000006 -d---- 00002 Test1/spacetest/d1
// 00000007 f----- 00002 Test1/spacetest/d1/f3
// 00000008 f----- 00002 Test1/spacetest/d1/f4
// 00000009 -d---- 00002 Test1/spacetest/d2
// 00000009 -d---- 00002 Test1/spacetest/d6
// 0000000a -d---- 00002 Test1/spacetest/d3
// 0000000b -d---- 00002 Test1/spacetest/d3/d4
// 0000000c f----- 00002 Test1/spacetest/d3/d4/f5
// 0000000d -d---- 00002 Test1/spacetest/d6
// 0000000d -d---- 00002 Test1/spacetest/d6/d8
// 0000000d -d---- 00002 Test1/spacetest/d6/d8/f7
// 0000000e -dX--- 00002 Test1/spacetest/d7
//
// root + location + spacetest1 + spacetest2 = 17 files
// = 34 blocks with raidfile. Of which 2 in deleted files
// and 18 in directories. Note that f1 and d7 may or may
// not be deleted yet.
//
// The files and dirs from spacetest1 are already on the server
// (28 blocks). If we set the limit to 20 then the client will
// notice as soon as it tries to create the new files and dirs
// from spacetest2. It should still delete f1 and d7, but that
// won't bring it back under the hard limit, so no files from
// spacetest2 should be uploaded.
BOX_TRACE("Waiting for sync for bbackupd to notice that the "
"store is full");
wait_for_sync_end();
BOX_TRACE("Sync finished.");
BOX_TRACE("Compare to check that there are differences");
TEST_COMPARE(Compare_Different);
// Check that the notify script was run
TEST_THAT(TestFileExists("testfiles/notifyran.store-full.1"));
// But only once!
TEST_THAT(!TestFileExists("testfiles/notifyran.store-full.2"));
// We can't guarantee to get in before housekeeping runs, so it's safer
// (more reliable) to wait for it to finish. But we also need to stop the
// client first, otherwise it might be connected when housekeeping tries
// to run, and that would prevent it from running, causing test to fail.
TEST_THAT_OR(StopClient(), FAIL);
wait_for_operation(5, "housekeeping to run");
// BLOCK
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext,
BackupProtocolLogin::Flags_ReadOnly);
std::auto_ptr<BackupStoreDirectory> root_dir =
ReadDirectory(*client, BACKUPSTORE_ROOT_DIRECTORY_ID);
int64_t test_dir_id = SearchDir(*root_dir, "Test1");
TEST_THAT_OR(test_dir_id, FAIL);
std::auto_ptr<BackupStoreDirectory> test_dir =
ReadDirectory(*client, test_dir_id);
int64_t spacetest_dir_id = SearchDir(*test_dir, "spacetest");
TEST_THAT_OR(spacetest_dir_id, FAIL);
std::auto_ptr<BackupStoreDirectory> spacetest_dir =
ReadDirectory(*client, spacetest_dir_id);
int64_t d2_id = SearchDir(*spacetest_dir, "d2");
int64_t d6_id = SearchDir(*spacetest_dir, "d6");
TEST_THAT_OR(d2_id != 0, FAIL);
TEST_THAT_OR(d6_id != 0, FAIL);
std::auto_ptr<BackupStoreDirectory> d2_dir =
ReadDirectory(*client, d2_id);
std::auto_ptr<BackupStoreDirectory> d6_dir =
ReadDirectory(*client, d6_id);
// None of the new files should have been uploaded
TEST_EQUAL(SearchDir(*d2_dir, "f6"), 0);
TEST_EQUAL(SearchDir(*d6_dir, "d8"), 0);
// But f1 and d7 should have been deleted.
TEST_EQUAL(SearchDir(*spacetest_dir, "f1"), 0);
TEST_EQUAL(SearchDir(*spacetest_dir, "d7"), 0);
TEST_THAT(check_num_files(4, 0, 0, 8));
TEST_THAT(check_num_blocks(*client, 8, 0, 0, 16, 24));
client->QueryFinished();
}
}
// Increase the limit again, check that all files are backed up on the
// next run.
TEST_THAT(change_account_limits("0B", "34B"));
TEST_THAT_OR(StartClient(), FAIL);
wait_for_sync_end();
TEST_COMPARE(Compare_Same);
TEARDOWN_TEST_BBACKUPD();
}
bool test_bbackupd_exclusions()
{
SETUP_WITHOUT_FILES();
TEST_THAT(unpack_files("spacetest1", "testfiles/TestDir1"));
// Delete a file and a directory
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/spacetest/f1") == 0);
#ifdef WIN32
TEST_THAT(::system("rd /s/q testfiles\\TestDir1\\spacetest\\d7") == 0);
#else
TEST_THAT(::system("rm -rf testfiles/TestDir1/spacetest/d7") == 0);
#endif
// We need to be OVER the limit, i.e. >24 blocks, or
// BackupClientContext will mark us over limit immediately on
// connection.
TEST_THAT(change_account_limits("0B", "25B"));
// Initial run to get the files backed up
{
bbackupd.RunSyncNow();
TEST_THAT(!bbackupd.StorageLimitExceeded());
// BLOCK
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext, 0 /* read-write */);
TEST_THAT(check_num_files(4, 0, 0, 8));
TEST_THAT(check_num_blocks(*client, 8, 0, 0, 16, 24));
client->QueryFinished();
}
}
// Create a directory and then try to run a backup. This should try
// to create the directory on the server, fail, and catch the error.
// The directory that we create, spacetest/d6/d8, is included in
// spacetest2.tgz, so we can ignore this for counting files after we
// unpack spacetest2.tgz.
TEST_THAT(::mkdir("testfiles/TestDir1/spacetest/d6/d8", 0755) == 0);
bbackupd.RunSyncNow();
TEST_THAT(bbackupd.StorageLimitExceeded());
// BLOCK
{
TEST_THAT(unpack_files("spacetest2", "testfiles/TestDir1"));
bbackupd.RunSyncNow();
TEST_THAT(bbackupd.StorageLimitExceeded());
// BLOCK
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext, 0 /* read-write */);
TEST_THAT(check_num_files(4, 0, 0, 8));
TEST_THAT(check_num_blocks(*client, 8, 0, 0, 16, 24));
client->QueryFinished();
}
}
// TODO FIXME dedent
{
// Start again with a new config that excludes d3 and f2,
// and hence also d3/d4 and d3/d4/f5. bbackupd should mark
// them as deleted and housekeeping should later clean up,
// making space to upload the new files.
// total required: (13-2-4+3)*2 = 20 blocks
TEST_THAT(configure_bbackupd(bbackupd, "testfiles/bbackupd-exclude.conf"));
// Should be marked as deleted by this run. Hold onto the
// BackupClientContext to stop housekeeping from running.
std::auto_ptr<BackupClientContext> apClientContext =
bbackupd.RunSyncNow();
// Housekeeping has not yet deleted the files, so there's not
// enough space to upload the new ones.
TEST_THAT(bbackupd.StorageLimitExceeded());
// Check that the notify script was run
// TEST_THAT(TestFileExists("testfiles/notifyran.store-full.2"));
// But only twice!
// TEST_THAT(!TestFileExists("testfiles/notifyran.store-full.3"));
// All these should be marked as deleted but not removed by
// housekeeping yet:
// f2 excluded
// d3 excluded
// d3/d4 excluded
// d3/d4/f5 excluded
// Careful with timing here, these files will be removed by
// housekeeping the next time it runs. We hold onto the client
// context (and hence an open connection) to stop it from
// running for now.
// But we can't do that on Windows, because bbstored only
// support one simultaneous connection. So we have to hope that
// housekeeping has run recently enough that it doesn't need to
// run again when we disconnect.
BOX_INFO("Finding out whether bbackupd marked files as deleted");
// TODO FIXME dedent
{
#ifdef WIN32
apClientContext.reset();
#endif
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext,
BackupProtocolLogin::Flags_ReadOnly);
std::auto_ptr<BackupStoreDirectory> rootDir =
ReadDirectory(*client);
int64_t testDirId = SearchDir(*rootDir, "Test1");
TEST_THAT(testDirId != 0);
std::auto_ptr<BackupStoreDirectory> Test1_dir =
ReadDirectory(*client, testDirId);
int64_t spacetestDirId = SearchDir(*Test1_dir,
"spacetest");
TEST_THAT(spacetestDirId != 0);
std::auto_ptr<BackupStoreDirectory> spacetest_dir =
ReadDirectory(*client, spacetestDirId);
// these files were deleted before, they should be
// long gone by now
TEST_THAT(SearchDir(*spacetest_dir, "f1") == 0);
TEST_THAT(SearchDir(*spacetest_dir, "d7") == 0);
// these files have just been deleted, because
// they are excluded by the new configuration.
// but housekeeping should not have run yet
TEST_THAT(test_entry_deleted(*spacetest_dir, "f2"));
TEST_THAT(test_entry_deleted(*spacetest_dir, "d3"));
int64_t d3_id = SearchDir(*spacetest_dir, "d3");
TEST_THAT_OR(d3_id != 0, FAIL);
std::auto_ptr<BackupStoreDirectory> d3_dir =
ReadDirectory(*client, d3_id);
TEST_THAT(test_entry_deleted(*d3_dir, "d4"));
int64_t d4_id = SearchDir(*d3_dir, "d4");
TEST_THAT_OR(d4_id != 0, FAIL);
std::auto_ptr<BackupStoreDirectory> d4_dir =
ReadDirectory(*client, d4_id);
TEST_THAT(test_entry_deleted(*d4_dir, "f5"));
// d1/f3 and d1/f4 are the only two files on the
// server which are not deleted, they use 2 blocks
// each, the rest is directories and 2 deleted files
// (f2 and d3/d4/f5)
TEST_THAT(check_num_files(2, 0, 2, 8));
TEST_THAT(check_num_blocks(*client, 4, 0, 4, 16, 24));
// Log out.
client->QueryFinished();
}
// Release our BackupClientContext and open connection, and
// force housekeeping to run now.
apClientContext.reset();
TEST_THAT(run_housekeeping_and_check_account());
BOX_INFO("Checking that the files were removed");
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext, 0 /* read-write */);
std::auto_ptr<BackupStoreDirectory> rootDir =
ReadDirectory(*client);
int64_t testDirId = SearchDir(*rootDir, "Test1");
TEST_THAT(testDirId != 0);
std::auto_ptr<BackupStoreDirectory> Test1_dir =
ReadDirectory(*client, testDirId);
int64_t spacetestDirId = SearchDir(*Test1_dir,
"spacetest");
TEST_THAT(spacetestDirId != 0);
std::auto_ptr<BackupStoreDirectory> spacetest_dir =
ReadDirectory(*client, spacetestDirId);
TEST_THAT(SearchDir(*spacetest_dir, "f1") == 0);
TEST_THAT(SearchDir(*spacetest_dir, "f2") == 0);
TEST_THAT(SearchDir(*spacetest_dir, "d3") == 0);
TEST_THAT(SearchDir(*spacetest_dir, "d7") == 0);
// f2, d3, d3/d4 and d3/d4/f5 have been removed.
// The files were counted as deleted files before, the
// deleted directories just as directories.
TEST_THAT(check_num_files(2, 0, 0, 6));
TEST_THAT(check_num_blocks(*client, 4, 0, 0, 12, 16));
// Log out.
client->QueryFinished();
}
// Need 22 blocks free to upload everything
TEST_THAT_ABORTONFAIL(::system(BBSTOREACCOUNTS " -c "
"testfiles/bbstored.conf setlimit 01234567 0B 22B")
== 0);
TestRemoteProcessMemLeaks("bbstoreaccounts.memleaks");
// Run another backup, now there should be enough space
// for everything we want to upload.
bbackupd.RunSyncNow();
TEST_THAT(!bbackupd.StorageLimitExceeded());
// Check that the contents of the store are the same
// as the contents of the disc
TEST_COMPARE_EXTRA(Compare_Same, "-c testfiles/bbackupd-exclude.conf");
BOX_TRACE("done.");
// BLOCK
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext, 0 /* read-write */);
TEST_THAT(check_num_files(4, 0, 0, 7));
TEST_THAT(check_num_blocks(*client, 8, 0, 0, 14, 22));
// d2/f6, d6/d8 and d6/d8/f7 are new
// i.e. 2 new files, 1 new directory
client->QueryFinished();
}
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_bbackupd_uploads_files()
{
SETUP_WITH_BBSTORED();
// TODO FIXME dedent
{
// The files were all unpacked with timestamps in the past,
// so no delay should be needed to make them eligible to be
// backed up.
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
}
// Check that no read error has been reported yet
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.1"));
TEARDOWN_TEST_BBACKUPD();
}
bool test_bbackupd_responds_to_connection_failure()
{
SETUP_TEST_BBACKUPD();
TEST_THAT_OR(unpack_files("test_base"), FAIL);
#ifdef WIN32
BOX_NOTICE("skipping test on this platform"); // requires fork
#else // !WIN32
// TODO FIXME dedent
{
// create a new file to force an upload
const char* new_file = "testfiles/TestDir1/force-upload-2";
int fd = open(new_file, O_CREAT | O_EXCL | O_WRONLY, 0700);
TEST_THAT_OR(fd >= 0,
BOX_LOG_SYS_ERROR(BOX_FILE_MESSAGE(new_file,
"failed to create new file"));
FAIL);
const char* control_string = "whee!\n";
TEST_THAT(write(fd, control_string,
strlen(control_string)) ==
(int)strlen(control_string));
close(fd);
wait_for_operation(5, "new file to be old enough");
// Start a bbstored with a test hook that makes it terminate
// on the first StoreFile command, breaking the connection to
// bbackupd.
class MyHook : public BackupStoreContext::TestHook
{
public:
int trigger_count;
MyHook() : trigger_count(0) { }
virtual std::auto_ptr<BackupProtocolMessage> StartCommand(
const BackupProtocolMessage& rCommand)
{
if (rCommand.GetType() ==
BackupProtocolStoreFile::TypeID)
{
// terminate badly
trigger_count++;
THROW_EXCEPTION(ConnectionException,
TLSReadFailed);
}
return std::auto_ptr<BackupProtocolMessage>();
}
};
class MockBackupProtocolLocal : public BackupProtocolLocal2
{
public:
MyHook hook;
MockBackupProtocolLocal(int32_t AccountNumber,
const std::string& ConnectionDetails,
const std::string& AccountRootDir, int DiscSetNumber,
bool ReadOnly)
: BackupProtocolLocal2(AccountNumber, ConnectionDetails,
AccountRootDir, DiscSetNumber, ReadOnly)
{
GetContext().SetTestHook(hook);
}
virtual ~MockBackupProtocolLocal() { }
};
MockBackupProtocolLocal client(0x01234567, "test",
"backup/01234567/", 0, false);
MockBackupDaemon bbackupd(client);
TEST_THAT_OR(prepare_test_with_client_daemon(bbackupd, false, false), FAIL);
TEST_THAT(::system("rm -f testfiles/notifyran.store-full.*") == 0);
std::auto_ptr<BackupClientContext> apClientContext;
{
Console& console(Logging::GetConsole());
Logger::LevelGuard guard(console);
if (console.GetLevel() < Log::TRACE)
{
console.Filter(Log::NOTHING);
}
apClientContext = bbackupd.RunSyncNowWithExceptionHandling();
}
// Should only have been triggered once
TEST_EQUAL(1, client.hook.trigger_count);
TEST_THAT(TestFileExists("testfiles/notifyran.backup-error.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-error.2"));
TEST_THAT(!TestFileExists("testfiles/notifyran.store-full.1"));
}
#endif // !WIN32
TEARDOWN_TEST_BBACKUPD();
}
bool test_absolute_symlinks_not_followed_during_restore()
{
SETUP_WITH_BBSTORED();
#ifdef WIN32
BOX_NOTICE("skipping test on this platform"); // requires symlinks
#else
// TODO FIXME dedent
{
#define SYM_DIR "testfiles" DIRECTORY_SEPARATOR "TestDir1" \
DIRECTORY_SEPARATOR "symlink_test"
TEST_THAT(::mkdir(SYM_DIR, 0777) == 0);
TEST_THAT(::mkdir(SYM_DIR DIRECTORY_SEPARATOR "a", 0777) == 0);
TEST_THAT(::mkdir(SYM_DIR DIRECTORY_SEPARATOR "a"
DIRECTORY_SEPARATOR "subdir", 0777) == 0);
TEST_THAT(::mkdir(SYM_DIR DIRECTORY_SEPARATOR "b", 0777) == 0);
FILE* fp = fopen(SYM_DIR DIRECTORY_SEPARATOR "a"
DIRECTORY_SEPARATOR "subdir"
DIRECTORY_SEPARATOR "content", "w");
TEST_THAT(fp != NULL);
fputs("before\n", fp);
fclose(fp);
char buf[PATH_MAX];
TEST_THAT(getcwd(buf, sizeof(buf)) == buf);
std::string path = buf;
// testfiles/TestDir1/symlink_test/a/subdir ->
// testfiles/TestDir1/symlink_test/b/link
path += DIRECTORY_SEPARATOR SYM_DIR
DIRECTORY_SEPARATOR "a"
DIRECTORY_SEPARATOR "subdir";
TEST_THAT(symlink(path.c_str(), SYM_DIR
DIRECTORY_SEPARATOR "b"
DIRECTORY_SEPARATOR "link") == 0);
// also test symlink-to-self loop does not break restore
TEST_THAT(symlink("self", SYM_DIR "/self") == 0);
wait_for_operation(5, "symlinks to be old enough");
bbackupd.RunSyncNow();
// Check that the backup was successful, i.e. no differences
TEST_COMPARE(Compare_Same);
fp = fopen(SYM_DIR DIRECTORY_SEPARATOR "a"
DIRECTORY_SEPARATOR "subdir"
DIRECTORY_SEPARATOR "content", "w");
TEST_THAT(fp != NULL);
fputs("after\n", fp);
fclose(fp);
TEST_THAT(chmod(SYM_DIR, 0) == 0);
// check that we can restore it
{
int returnValue = ::system(BBACKUPQUERY " "
"-c testfiles/bbackupd.conf "
"-Wwarning \"restore Test1 testfiles/restore-symlink\" "
"quit");
TEST_RETURN(returnValue,
BackupQueries::ReturnCode::Command_OK);
}
// make it accessible again
TEST_THAT(chmod(SYM_DIR, 0755) == 0);
// check that the original file was not overwritten
FileStream fs(SYM_DIR "/a/subdir/content");
IOStreamGetLine gl(fs);
std::string line;
TEST_THAT(gl.GetLine(line));
TEST_THAT(line != "before");
TEST_EQUAL("after", line);
#undef SYM_DIR
}
#endif
TEARDOWN_TEST_BBACKUPD();
}
// Testing that nonexistent locations are backed up if they are created later
bool test_initially_missing_locations_are_not_forgotten()
{
SETUP_WITH_BBSTORED();
// ensure that the directory does not exist at the start
TEST_THAT(!FileExists("testfiles/TestDir2"));
TEST_THAT(configure_bbackupd(bbackupd, "testfiles/bbackupd-temploc.conf"));
// BLOCK
{
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-start.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-start.2"));
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.2"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-ok.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-finish.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-finish.2"));
bbackupd.RunSyncNowWithExceptionHandling();
TEST_COMPARE(Compare_Same);
TEST_THAT( TestFileExists("testfiles/notifyran.backup-start.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-start.2"));
TEST_THAT( TestFileExists("testfiles/notifyran.read-error.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.2"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-ok.1"));
TEST_THAT( TestFileExists("testfiles/notifyran.backup-finish.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-finish.2"));
// Did it actually get created? Should not have been!
TEST_THAT_OR(!search_for_file("Test2"), FAIL);
}
// create the location directory and unpack some files into it
TEST_THAT(::mkdir("testfiles/TestDir2", 0777) == 0);
TEST_THAT(unpack_files("spacetest1", "testfiles/TestDir2"));
// check that the files are backed up now
bbackupd.RunSyncNowWithExceptionHandling();
TEST_COMPARE(Compare_Same);
TEST_THAT( TestFileExists("testfiles/notifyran.backup-start.2"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-start.3"));
TEST_THAT( TestFileExists("testfiles/notifyran.read-error.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.2"));
TEST_THAT( TestFileExists("testfiles/notifyran.backup-ok.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-ok.2"));
TEST_THAT( TestFileExists("testfiles/notifyran.backup-finish.2"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-finish.3"));
// BLOCK
TEST_THAT_OR(search_for_file("Test2"), FAIL);
TEARDOWN_TEST_BBACKUPD();
}
bool test_redundant_locations_deleted_on_time()
{
SETUP_WITH_BBSTORED();
// create the location directory and unpack some files into it
TEST_THAT(::mkdir("testfiles/TestDir2", 0777) == 0);
TEST_THAT(unpack_files("spacetest1", "testfiles/TestDir2"));
// Use a daemon with the TestDir2 location configured to back it up
// to the server.
{
TEST_THAT(configure_bbackupd(bbackupd, "testfiles/bbackupd-temploc.conf"));
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
}
// Now use a daemon with no temporary location, which should delete
// it after 10 seconds
{
TEST_THAT(configure_bbackupd(bbackupd, "testfiles/bbackupd.conf"));
// Initial run to start the countdown to destruction
bbackupd.RunSyncNow();
// Not deleted yet!
TEST_THAT(search_for_file("Test2"));
wait_for_operation(9, "just before Test2 should be deleted");
bbackupd.RunSyncNow();
TEST_THAT(search_for_file("Test2"));
// Now wait until after it should be deleted
wait_for_operation(2, "just after Test2 should be deleted");
bbackupd.RunSyncNow();
TEST_THAT(search_for_file("Test2"));
std::auto_ptr<BackupProtocolCallable> client = connect_and_login(
sTlsContext, 0 /* read-write */);
std::auto_ptr<BackupStoreDirectory> root_dir =
ReadDirectory(*client, BACKUPSTORE_ROOT_DIRECTORY_ID);
TEST_THAT(test_entry_deleted(*root_dir, "Test2"));
}
TEARDOWN_TEST_BBACKUPD();
}
// Check that read-only directories and their contents can be restored.
bool test_read_only_dirs_can_be_restored()
{
SETUP_WITH_BBSTORED();
// TODO FIXME dedent
{
{
#ifdef WIN32
TEST_THAT(::system("attrib +r testfiles\\TestDir1\\x1")
== 0);
#else
TEST_THAT(chmod("testfiles/TestDir1/x1",
0555) == 0);
#endif
bbackupd.RunSyncNow();
TEST_COMPARE_EXTRA(Compare_Same, "", "-cEQ Test1 testfiles/TestDir1");
// check that we can restore it
TEST_THAT(restore("Test1", "testfiles/restore1"));
TEST_COMPARE_EXTRA(Compare_Same, "", "-cEQ Test1 testfiles/restore1");
// Try a restore with just the remote directory name,
// check that it uses the same name in the local
// directory.
TEST_THAT(::mkdir("testfiles/restore-test", 0700) == 0);
TEST_THAT(bbackupquery("\"lcd testfiles/restore-test\" "
"\"restore Test1\""));
TEST_COMPARE_EXTRA(Compare_Same, "", "-cEQ Test1 "
"testfiles/restore-test/Test1");
// put the permissions back to sensible values
#ifdef WIN32
TEST_THAT(::system("attrib -r testfiles\\TestDir1\\x1")
== 0);
TEST_THAT(::system("attrib -r testfiles\\restore1\\x1")
== 0);
TEST_THAT(::system("attrib -r testfiles\\restore-test\\"
"Test1\\x1") == 0);
#else
TEST_THAT(chmod("testfiles/TestDir1/x1",
0755) == 0);
TEST_THAT(chmod("testfiles/restore1/x1",
0755) == 0);
TEST_THAT(chmod("testfiles/restore-test/Test1/x1",
0755) == 0);
#endif
}
}
TEARDOWN_TEST_BBACKUPD();
}
// Check that filenames in UTF-8 can be backed up
bool test_unicode_filenames_can_be_backed_up()
{
SETUP_WITH_BBSTORED();
#ifndef WIN32
BOX_NOTICE("skipping test on this platform");
// requires ConvertConsoleToUtf8()
#else
// TODO FIXME dedent
{
// We have no guarantee that a random Unicode string can be
// represented in the user's character set, so we go the
// other way, taking three random characters from the
// character set and converting them to Unicode. Unless the
// console codepage is CP_UTF8, in which case our random
// characters are not valid, so we use the UTF8 version
// of them instead.
//
// We hope that these characters are valid in most
// character sets, but they probably are not in multibyte
// character sets such as Shift-JIS, GB2312, etc. This test
// will probably fail if your system locale is set to
// Chinese, Japanese, etc. where one of these character
// sets is used by default. You can check the character
// set for your system in Control Panel -> Regional
// Options -> General -> Language Settings -> Set Default
// (System Locale). Because bbackupquery converts from
// system locale to UTF-8 via the console code page
// (which you can check from the Command Prompt with "chcp")
// they must also be valid in your code page (850 for
// Western Europe).
//
// In ISO-8859-1 (Danish locale) they are three Danish
// accented characters, which are supported in code page
// 850. Depending on your locale, YYMV (your yak may vomit).
std::string foreignCharsNative = (GetConsoleCP() == CP_UTF8)
? "\xc3\xa6\xc3\xb8\xc3\xa5" : "\x91\x9b\x86";
std::string foreignCharsUnicode;
TEST_THAT(ConvertConsoleToUtf8(foreignCharsNative.c_str(),
foreignCharsUnicode));
std::string basedir("testfiles/TestDir1");
std::string dirname("test" + foreignCharsUnicode + "testdir");
std::string dirpath(basedir + "/" + dirname);
TEST_THAT(mkdir(dirpath.c_str(), 0) == 0);
std::string filename("test" + foreignCharsUnicode + "testfile");
std::string filepath(dirpath + "/" + filename);
char cwdbuf[1024];
TEST_THAT(getcwd(cwdbuf, sizeof(cwdbuf)) == cwdbuf);
std::string cwd = cwdbuf;
// Test that our emulated chdir() works properly
// with relative and absolute paths
TEST_THAT(::chdir(dirpath.c_str()) == 0);
TEST_THAT(::chdir("../../..") == 0);
TEST_THAT(::chdir(cwd.c_str()) == 0);
// Check that it can be converted to the system encoding
// (which is what is needed on the command line)
std::string systemDirName;
TEST_THAT(ConvertEncoding(dirname.c_str(), CP_UTF8,
systemDirName, CP_ACP));
std::string systemFileName;
TEST_THAT(ConvertEncoding(filename.c_str(), CP_UTF8,
systemFileName, CP_ACP));
// Check that it can be converted to the console encoding
// (which is what we will see in the output)
std::string consoleDirName;
TEST_THAT(ConvertUtf8ToConsole(dirname.c_str(),
consoleDirName));
std::string consoleFileName;
TEST_THAT(ConvertUtf8ToConsole(filename.c_str(),
consoleFileName));
// test that bbackupd will let us lcd into the local
// directory using a relative path, and back out
TEST_THAT(bbackupquery("\"lcd testfiles/TestDir1/" +
systemDirName + "\" \"lcd ..\""));
// and using an absolute path
TEST_THAT(bbackupquery("\"lcd " + cwd + "/testfiles/" +
"TestDir1/" + systemDirName + "\" \"lcd ..\""));
{
FileStream fs(filepath.c_str(), O_CREAT | O_RDWR);
std::string data("hello world\n");
fs.Write(data.c_str(), data.size());
TEST_EQUAL_LINE(12, fs.GetPosition(),
"FileStream position");
fs.Close();
// Set modtime back in time to allow immediate backup
struct timeval times[2] = {};
times[1].tv_sec = 1000000000;
TEST_THAT(emu_utimes(filepath.c_str(), times) == 0);
}
bbackupd.RunSyncNow();
// Compare to check that the file was uploaded
TEST_COMPARE(Compare_Same);
// Check that we can find it in directory listing
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext, 0);
std::auto_ptr<BackupStoreDirectory> dir = ReadDirectory(
*client);
int64_t baseDirId = SearchDir(*dir, "Test1");
TEST_THAT(baseDirId != 0);
dir = ReadDirectory(*client, baseDirId);
int64_t testDirId = SearchDir(*dir, dirname.c_str());
TEST_THAT(testDirId != 0);
dir = ReadDirectory(*client, testDirId);
TEST_THAT(SearchDir(*dir, filename.c_str()) != 0);
// Log out
client->QueryFinished();
}
// Check that bbackupquery shows the dir in console encoding
std::string command = BBACKUPQUERY " -Wwarning "
"-c testfiles/bbackupd.conf "
"-q \"list Test1\" quit";
pid_t bbackupquery_pid;
std::auto_ptr<IOStream> queryout;
queryout = LocalProcessStream(command.c_str(),
bbackupquery_pid);
TEST_THAT(queryout.get() != NULL);
TEST_THAT(bbackupquery_pid != -1);
IOStreamGetLine reader(*queryout);
std::string line;
bool found = false;
while (!reader.IsEOF())
{
TEST_THAT(reader.GetLine(line));
if (line.find(consoleDirName) != std::string::npos)
{
found = true;
}
}
TEST_THAT(!(queryout->StreamDataLeft()));
TEST_THAT(reader.IsEOF());
TEST_THAT(found);
queryout->Close();
// Check that bbackupquery can list the dir when given
// on the command line in system encoding, and shows
// the file in console encoding
command = BBACKUPQUERY " -c testfiles/bbackupd.conf "
"-Wwarning \"list Test1/" + systemDirName + "\" quit";
queryout = LocalProcessStream(command.c_str(),
bbackupquery_pid);
TEST_THAT(queryout.get() != NULL);
TEST_THAT(bbackupquery_pid != -1);
IOStreamGetLine reader2(*queryout);
found = false;
while (!reader2.IsEOF())
{
TEST_THAT(reader2.GetLine(line));
if (line.find(consoleFileName) != std::string::npos)
{
found = true;
}
}
TEST_THAT(!(queryout->StreamDataLeft()));
TEST_THAT(reader2.IsEOF());
TEST_THAT(found);
queryout->Close();
// Check that bbackupquery can compare the dir when given
// on the command line in system encoding.
TEST_COMPARE_EXTRA(Compare_Same, "", "-cEQ Test1/" + systemDirName +
" testfiles/TestDir1/" + systemDirName);
// Check that bbackupquery can restore the dir when given
// on the command line in system encoding.
TEST_THAT(restore("Test1/" + systemDirName,
"testfiles/restore-" + systemDirName));
// Compare to make sure it was restored properly.
TEST_COMPARE_EXTRA(Compare_Same, "", "-cEQ Test1/" + systemDirName +
" testfiles/restore-" + systemDirName);
std::string fileToUnlink = "testfiles/restore-" +
dirname + "/" + filename;
TEST_THAT(EMU_UNLINK(fileToUnlink.c_str()) == 0);
// Check that bbackupquery can get the file when given
// on the command line in system encoding.
TEST_THAT(bbackupquery("\"get Test1/" + systemDirName + "/" +
systemFileName + " " + "testfiles/restore-" +
systemDirName + "/" + systemFileName + "\""));
// And after changing directory to a relative path
TEST_THAT(bbackupquery(
"\"lcd testfiles\" "
"\"cd Test1/" + systemDirName + "\" " +
"\"get " + systemFileName + "\""));
// cannot overwrite a file that exists, so delete it
std::string tmp = "testfiles/" + filename;
TEST_THAT(EMU_UNLINK(tmp.c_str()) == 0);
// And after changing directory to an absolute path
TEST_THAT(bbackupquery(
"\"lcd " + cwd + "/testfiles\" "
"\"cd Test1/" + systemDirName + "\" " +
"\"get " + systemFileName + "\""));
// Compare to make sure it was restored properly. The Get
// command does restore attributes, so we don't need to
// specify the -A option for this to succeed.
TEST_COMPARE_EXTRA(Compare_Same, "", "-cEQ Test1/" + systemDirName +
" testfiles/restore-" + systemDirName);
// Check that no read error has been reported yet
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.1"));
}
#endif // WIN32
TEARDOWN_TEST_BBACKUPD();
}
bool test_sync_allow_script_can_pause_backup()
{
SETUP_WITH_BBSTORED();
TEST_THAT(StartClient());
// TODO FIXME dedent
{
{
wait_for_sync_end();
// we now have 3 seconds before bbackupd
// runs the SyncAllowScript again.
const char* sync_control_file = "testfiles"
DIRECTORY_SEPARATOR "syncallowscript.control";
int fd = open(sync_control_file,
O_CREAT | O_EXCL | O_WRONLY, 0700);
if (fd <= 0)
{
perror(sync_control_file);
}
TEST_THAT(fd > 0);
const char* control_string = "10\n";
TEST_THAT(write(fd, control_string,
strlen(control_string)) ==
(int)strlen(control_string));
close(fd);
// this will pause backups, bbackupd will check
// every 10 seconds to see if they are allowed again.
const char* new_test_file = "testfiles"
DIRECTORY_SEPARATOR "TestDir1"
DIRECTORY_SEPARATOR "Added_During_Pause";
fd = open(new_test_file,
O_CREAT | O_EXCL | O_WRONLY, 0700);
if (fd <= 0)
{
perror(new_test_file);
}
TEST_THAT(fd > 0);
close(fd);
struct stat st;
// next poll should happen within the next
// 5 seconds (normally about 3 seconds)
wait_for_operation(1, "2 seconds before next run");
TEST_THAT(stat("testfiles" DIRECTORY_SEPARATOR
"syncallowscript.notifyran.1", &st) != 0);
wait_for_operation(4, "2 seconds after run");
TEST_THAT(stat("testfiles" DIRECTORY_SEPARATOR
"syncallowscript.notifyran.1", &st) == 0);
TEST_THAT(stat("testfiles" DIRECTORY_SEPARATOR
"syncallowscript.notifyran.2", &st) != 0);
// next poll should happen within the next
// 10 seconds (normally about 8 seconds)
wait_for_operation(6, "2 seconds before next run");
TEST_THAT(stat("testfiles" DIRECTORY_SEPARATOR
"syncallowscript.notifyran.2", &st) != 0);
wait_for_operation(4, "2 seconds after run");
TEST_THAT(stat("testfiles" DIRECTORY_SEPARATOR
"syncallowscript.notifyran.2", &st) == 0);
// bbackupquery compare might take a while
// on slow machines, so start the timer now
long start_time = time(NULL);
// check that no backup has run (compare fails)
TEST_COMPARE(Compare_Different);
TEST_THAT(EMU_UNLINK(sync_control_file) == 0);
wait_for_sync_start();
long end_time = time(NULL);
long wait_time = end_time - start_time + 2;
// should be about 10 seconds
if (wait_time < 8 || wait_time > 12)
{
printf("Waited for %ld seconds, should have "
"been %s", wait_time, control_string);
}
TEST_THAT(wait_time >= 8);
TEST_THAT(wait_time <= 12);
wait_for_sync_end();
// check that backup has run (compare succeeds)
TEST_COMPARE(Compare_Same);
}
// Check that no read error has been reported yet
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.1"));
}
TEARDOWN_TEST_BBACKUPD();
}
// Delete file and update another, create symlink.
bool test_delete_update_and_symlink_files()
{
SETUP_WITH_BBSTORED();
bbackupd.RunSyncNow();
// TODO FIXME dedent
{
// Delete a file
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/x1/dsfdsfs98.fd") == 0);
#ifndef WIN32
// New symlink
TEST_THAT(::symlink("does-not-exist",
"testfiles/TestDir1/symlink-to-dir") == 0);
#endif
// Update a file (will be uploaded as a diff)
{
// Check that the file is over the diffing
// threshold in the bbackupd.conf file
TEST_THAT(TestGetFileSize("testfiles/TestDir1/f45.df")
> 1024);
// Add a bit to the end
FILE *f = ::fopen("testfiles/TestDir1/f45.df", "a");
TEST_THAT(f != 0);
::fprintf(f, "EXTRA STUFF");
::fclose(f);
TEST_THAT(TestGetFileSize("testfiles/TestDir1/f45.df")
> 1024);
}
// wait long enough for new files to be old enough to backup
wait_for_operation(5, "new files to be old enough");
bbackupd.RunSyncNow();
// compare to make sure that it worked
TEST_COMPARE(Compare_Same);
// Try a quick compare, just for fun
TEST_COMPARE_EXTRA(Compare_Same, "", "-acqQ");
}
TEARDOWN_TEST_BBACKUPD();
}
// Check that store errors are reported neatly. This test uses an independent
// daemon to check the daemon's backup loop delay, so it's easier to debug
// with the command: ./t -VTttest -e test_store_error_reporting
// --bbackupd-args=-kTtbbackupd
bool test_store_error_reporting()
{
SETUP_WITH_BBSTORED();
TEST_THAT(StartClient());
wait_for_sync_end();
// TODO FIXME dedent
{
// Break the store. We need a write lock on the account
// while we do this, otherwise housekeeping might be running
// and might rewrite the info files when it finishes,
// undoing our breakage.
std::string errs;
std::auto_ptr<Configuration> config(
Configuration::LoadAndVerify
("testfiles/bbstored.conf", &BackupConfigFileVerify, errs));
TEST_EQUAL_LINE(0, errs.size(), "Loading configuration file "
"reported errors: " << errs);
TEST_THAT_OR(config.get(), return false);
std::auto_ptr<BackupStoreAccountDatabase> db(
BackupStoreAccountDatabase::Read(
config->GetKeyValue("AccountDatabase")));
BackupStoreAccounts acc(*db);
// Lock scope
{
NamedLock writeLock;
acc.LockAccount(0x01234567, writeLock);
TEST_THAT(::rename("testfiles/0_0/backup/01234567/info.rf",
"testfiles/0_0/backup/01234567/info.rf.bak") == 0);
TEST_THAT(::rename("testfiles/0_1/backup/01234567/info.rf",
"testfiles/0_1/backup/01234567/info.rf.bak") == 0);
TEST_THAT(::rename("testfiles/0_2/backup/01234567/info.rf",
"testfiles/0_2/backup/01234567/info.rf.bak") == 0);
}
// Create a file to trigger an upload
{
int fd1 = open("testfiles/TestDir1/force-upload",
O_CREAT | O_EXCL | O_WRONLY, 0700);
TEST_THAT(fd1 > 0);
TEST_THAT(write(fd1, "just do it", 10) == 10);
TEST_THAT(close(fd1) == 0);
}
wait_for_operation(4, "bbackupd to try to access the store");
// Check that an error was reported just once
TEST_THAT(TestFileExists("testfiles/notifyran.backup-error.1"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-error.2"));
// Now kill bbackupd and start one that's running in
// snapshot mode, check that it automatically syncs after
// an error, without waiting for another sync command.
TEST_THAT(StopClient());
TEST_THAT(StartClient("testfiles/bbackupd-snapshot.conf"));
sync_and_wait();
// Check that the error was reported once more
TEST_THAT(TestFileExists("testfiles/notifyran.backup-error.2"));
TEST_THAT(!TestFileExists("testfiles/notifyran.backup-error.3"));
// Fix the store (so that bbackupquery compare works)
TEST_THAT(::rename("testfiles/0_0/backup/01234567/info.rf.bak",
"testfiles/0_0/backup/01234567/info.rf") == 0);
TEST_THAT(::rename("testfiles/0_1/backup/01234567/info.rf.bak",
"testfiles/0_1/backup/01234567/info.rf") == 0);
TEST_THAT(::rename("testfiles/0_2/backup/01234567/info.rf.bak",
"testfiles/0_2/backup/01234567/info.rf") == 0);
int store_fixed_time = time(NULL);
// Check that we DO get errors on compare (cannot do this
// until after we fix the store, which creates a race)
TEST_COMPARE(Compare_Different);
// Test initial state
TEST_THAT(!TestFileExists("testfiles/"
"notifyran.backup-start.wait-snapshot.1"));
// Set a tag for the notify script to distinguish from
// previous runs.
{
int fd1 = open("testfiles/notifyscript.tag",
O_CREAT | O_EXCL | O_WRONLY, 0700);
TEST_THAT(fd1 > 0);
TEST_THAT(write(fd1, "wait-snapshot", 13) == 13);
TEST_THAT(close(fd1) == 0);
}
// bbackupd should pause for BACKUP_ERROR_RETRY_SECONDS (plus
// a random delay of up to mUpdateStoreInterval/64 or 0.05
// extra seconds) from store_fixed_time, so check that it
// hasn't run just before this time
wait_for_operation(BACKUP_ERROR_DELAY_SHORTENED +
(store_fixed_time - time(NULL)) - 1,
"just before bbackupd recovers");
TEST_THAT(!TestFileExists("testfiles/"
"notifyran.backup-start.wait-snapshot.1"));
// Should not have backed up, should still get errors
TEST_COMPARE(Compare_Different);
// wait another 2 seconds, bbackup should have run
wait_for_operation(2, "bbackupd to recover");
TEST_THAT(TestFileExists("testfiles/"
"notifyran.backup-start.wait-snapshot.1"));
// Check that it did get uploaded, and we have no more errors
TEST_COMPARE(Compare_Same);
TEST_THAT(EMU_UNLINK("testfiles/notifyscript.tag") == 0);
// Stop the snapshot bbackupd
TEST_THAT(StopClient());
// Break the store again
TEST_THAT(::rename("testfiles/0_0/backup/01234567/info.rf",
"testfiles/0_0/backup/01234567/info.rf.bak") == 0);
TEST_THAT(::rename("testfiles/0_1/backup/01234567/info.rf",
"testfiles/0_1/backup/01234567/info.rf.bak") == 0);
TEST_THAT(::rename("testfiles/0_2/backup/01234567/info.rf",
"testfiles/0_2/backup/01234567/info.rf.bak") == 0);
// Modify a file to trigger an upload
{
int fd1 = open("testfiles/TestDir1/force-upload",
O_WRONLY, 0700);
TEST_THAT(fd1 > 0);
TEST_THAT(write(fd1, "and again", 9) == 9);
TEST_THAT(close(fd1) == 0);
}
// Restart bbackupd in automatic mode
TEST_THAT_OR(StartClient(), FAIL);
sync_and_wait();
// Fix the store again
TEST_THAT(::rename("testfiles/0_0/backup/01234567/info.rf.bak",
"testfiles/0_0/backup/01234567/info.rf") == 0);
TEST_THAT(::rename("testfiles/0_1/backup/01234567/info.rf.bak",
"testfiles/0_1/backup/01234567/info.rf") == 0);
TEST_THAT(::rename("testfiles/0_2/backup/01234567/info.rf.bak",
"testfiles/0_2/backup/01234567/info.rf") == 0);
store_fixed_time = time(NULL);
// Check that we DO get errors on compare (cannot do this
// until after we fix the store, which creates a race)
TEST_COMPARE(Compare_Different);
// Test initial state
TEST_THAT(!TestFileExists("testfiles/"
"notifyran.backup-start.wait-automatic.1"));
// Set a tag for the notify script to distinguish from
// previous runs.
{
int fd1 = open("testfiles/notifyscript.tag",
O_CREAT | O_EXCL | O_WRONLY, 0700);
TEST_THAT(fd1 > 0);
TEST_THAT(write(fd1, "wait-automatic", 14) == 14);
TEST_THAT(close(fd1) == 0);
}
// bbackupd should pause for BACKUP_ERROR_RETRY_SECONDS (plus
// a random delay of up to mUpdateStoreInterval/64 or 0.05
// extra seconds) from store_fixed_time, so check that it
// hasn't run just before this time
wait_for_operation(BACKUP_ERROR_DELAY_SHORTENED +
(store_fixed_time - time(NULL)) - 1,
"just before bbackupd recovers");
TEST_THAT(!TestFileExists("testfiles/"
"notifyran.backup-start.wait-automatic.1"));
// Should not have backed up, should still get errors
TEST_COMPARE(Compare_Different);
// wait another 2 seconds, bbackup should have run
wait_for_operation(2, "bbackupd to recover");
TEST_THAT(TestFileExists("testfiles/"
"notifyran.backup-start.wait-automatic.1"));
// Check that it did get uploaded, and we have no more errors
TEST_COMPARE(Compare_Same);
TEST_THAT(EMU_UNLINK("testfiles/notifyscript.tag") == 0);
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_change_file_to_symlink_and_back()
{
SETUP_WITH_BBSTORED();
#ifndef WIN32
// New symlink
TEST_THAT(::symlink("does-not-exist",
"testfiles/TestDir1/symlink-to-dir") == 0);
#endif
bbackupd.RunSyncNow();
// TODO FIXME dedent
{
// Bad case: delete a file/symlink, replace it with a directory.
// Replace symlink with directory, add new directory.
#ifndef WIN32
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/symlink-to-dir")
== 0);
#endif
TEST_THAT(::mkdir("testfiles/TestDir1/symlink-to-dir", 0755)
== 0);
TEST_THAT(::mkdir("testfiles/TestDir1/x1/dir-to-file", 0755)
== 0);
// NOTE: create a file within the directory to
// avoid deletion by the housekeeping process later
#ifndef WIN32
TEST_THAT(::symlink("does-not-exist",
"testfiles/TestDir1/x1/dir-to-file/contents")
== 0);
#endif
wait_for_operation(5, "files to be old enough");
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// And the inverse, replace a directory with a file/symlink
#ifndef WIN32
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/x1/dir-to-file"
"/contents") == 0);
#endif
TEST_THAT(::rmdir("testfiles/TestDir1/x1/dir-to-file") == 0);
#ifndef WIN32
TEST_THAT(::symlink("does-not-exist",
"testfiles/TestDir1/x1/dir-to-file") == 0);
#endif
wait_for_operation(5, "files to be old enough");
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// And then, put it back to how it was before.
BOX_INFO("Replace symlink with directory (which was a symlink)");
#ifndef WIN32
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/x1"
"/dir-to-file") == 0);
#endif
TEST_THAT(::mkdir("testfiles/TestDir1/x1/dir-to-file",
0755) == 0);
#ifndef WIN32
TEST_THAT(::symlink("does-not-exist",
"testfiles/TestDir1/x1/dir-to-file/contents2")
== 0);
#endif
wait_for_operation(5, "files to be old enough");
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// And finally, put it back to how it was before
// it was put back to how it was before
// This gets lots of nasty things in the store with
// directories over other old directories.
#ifndef WIN32
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/x1/dir-to-file"
"/contents2") == 0);
#endif
TEST_THAT(::rmdir("testfiles/TestDir1/x1/dir-to-file") == 0);
#ifndef WIN32
TEST_THAT(::symlink("does-not-exist",
"testfiles/TestDir1/x1/dir-to-file") == 0);
#endif
wait_for_operation(5, "files to be old enough");
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_file_rename_tracking()
{
SETUP_WITH_BBSTORED();
bbackupd.RunSyncNow();
// TODO FIXME dedent
{
// rename an untracked file over an existing untracked file
BOX_INFO("Rename over existing untracked file");
int fd1 = open("testfiles/TestDir1/untracked-1",
O_CREAT | O_EXCL | O_WRONLY, 0700);
int fd2 = open("testfiles/TestDir1/untracked-2",
O_CREAT | O_EXCL | O_WRONLY, 0700);
TEST_THAT(fd1 > 0);
TEST_THAT(fd2 > 0);
TEST_THAT(write(fd1, "hello", 5) == 5);
TEST_THAT(close(fd1) == 0);
safe_sleep(1);
TEST_THAT(write(fd2, "world", 5) == 5);
TEST_THAT(close(fd2) == 0);
TEST_THAT(TestFileExists("testfiles/TestDir1/untracked-1"));
TEST_THAT(TestFileExists("testfiles/TestDir1/untracked-2"));
// back up both files
wait_for_operation(5, "untracked files to be old enough");
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
#ifdef WIN32
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/untracked-2")
== 0);
#endif
TEST_THAT(::rename("testfiles/TestDir1/untracked-1",
"testfiles/TestDir1/untracked-2") == 0);
TEST_THAT(!TestFileExists("testfiles/TestDir1/untracked-1"));
TEST_THAT( TestFileExists("testfiles/TestDir1/untracked-2"));
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// case which went wrong: rename a tracked file over an
// existing tracked file
BOX_INFO("Rename over existing tracked file");
fd1 = open("testfiles/TestDir1/tracked-1",
O_CREAT | O_EXCL | O_WRONLY, 0700);
fd2 = open("testfiles/TestDir1/tracked-2",
O_CREAT | O_EXCL | O_WRONLY, 0700);
TEST_THAT(fd1 > 0);
TEST_THAT(fd2 > 0);
char buffer[1024];
TEST_THAT(write(fd1, "hello", 5) == 5);
TEST_THAT(write(fd1, buffer, sizeof(buffer)) == sizeof(buffer));
TEST_THAT(close(fd1) == 0);
safe_sleep(1);
TEST_THAT(write(fd2, "world", 5) == 5);
TEST_THAT(write(fd2, buffer, sizeof(buffer)) == sizeof(buffer));
TEST_THAT(close(fd2) == 0);
TEST_THAT(TestFileExists("testfiles/TestDir1/tracked-1"));
TEST_THAT(TestFileExists("testfiles/TestDir1/tracked-2"));
// wait for them to be old enough to back up
wait_for_operation(5, "tracked files to be old enough");
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
#ifdef WIN32
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/tracked-2")
== 0);
#endif
TEST_THAT(::rename("testfiles/TestDir1/tracked-1",
"testfiles/TestDir1/tracked-2") == 0);
TEST_THAT(!TestFileExists("testfiles/TestDir1/tracked-1"));
TEST_THAT( TestFileExists("testfiles/TestDir1/tracked-2"));
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// case which went wrong: rename a tracked file
// over a deleted file
BOX_INFO("Rename an existing file over a deleted file");
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/x1/dsfdsfs98.fd") == 0);
TEST_THAT(::rename("testfiles/TestDir1/df9834.dsf",
"testfiles/TestDir1/x1/dsfdsfs98.fd") == 0);
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// Check that no read error has been reported yet
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.1"));
}
TEARDOWN_TEST_BBACKUPD();
}
// Files that suddenly appear, with timestamps before the last sync window,
// and files whose size or timestamp change, should still be uploaded, even
// though they look old.
bool test_upload_very_old_files()
{
SETUP_WITH_BBSTORED();
bbackupd.RunSyncNow();
// TODO FIXME dedent
{
// Add some more files
// Because the 'm' option is not used, these files will
// look very old to the daemon.
// Lucky it'll upload them then!
TEST_THAT(unpack_files("test2"));
#ifndef WIN32
::chmod("testfiles/TestDir1/sub23/dhsfdss/blf.h", 0415);
#endif
// Wait and test
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// Check that no read error has been reported yet
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.1"));
// Check that modifying files with old timestamps
// still get added
BOX_INFO("Modify existing file, but change timestamp to rather old");
// Then modify an existing file
{
// in the archive, it's read only
#ifdef WIN32
TEST_THAT(::system("attrib -r "
"testfiles\\TestDir\\sub23\\rand.h") == 0);
#else
TEST_THAT(chmod("testfiles/TestDir1/sub23/rand.h",
0777) == 0);
#endif
FILE *f = fopen("testfiles/TestDir1/sub23/rand.h",
"w+");
if (f == 0)
{
perror("Failed to open");
}
TEST_THAT(f != 0);
if (f != 0)
{
fprintf(f, "MODIFIED!\n");
fclose(f);
}
// and then move the time backwards!
struct timeval times[2];
BoxTimeToTimeval(SecondsToBoxTime(
(time_t)(365*24*60*60)), times[1]);
times[0] = times[1];
TEST_THAT(::utimes("testfiles/TestDir1/sub23/rand.h",
times) == 0);
}
// Wait and test
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same); // files too new?
// Check that no read error has been reported yet
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.1"));
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_excluded_files_are_not_backed_up()
{
// SETUP_WITH_BBSTORED();
SETUP_TEST_BBACKUPD();
BackupProtocolLocal2 client(0x01234567, "test", "backup/01234567/",
0, false);
MockBackupDaemon bbackupd(client);
TEST_THAT_OR(prepare_test_with_client_daemon(bbackupd,
true, // do_unpack_files
false // do_start_bbstored
), FAIL);
// TODO FIXME dedent
{
// Add some files and directories which are marked as excluded
TEST_THAT(unpack_files("testexclude"));
bbackupd.RunSyncNow();
// compare with exclusions, should not find differences
// TEST_COMPARE(Compare_Same);
TEST_COMPARE_LOCAL(Compare_Same, client);
// compare without exclusions, should find differences
// TEST_COMPARE_EXTRA(Compare_Different, "", "-acEQ");
TEST_COMPARE_LOCAL_EXTRA(Compare_Different, client, "acEQ");
// check that the excluded files did not make it
// into the store, and the included files did
{
/*
std::auto_ptr<BackupProtocolCallable> pClient =
connect_and_login(context,
BackupProtocolLogin::Flags_ReadOnly);
*/
BackupProtocolCallable* pClient = &client;
std::auto_ptr<BackupStoreDirectory> dir =
ReadDirectory(*pClient);
int64_t testDirId = SearchDir(*dir, "Test1");
TEST_THAT(testDirId != 0);
dir = ReadDirectory(*pClient, testDirId);
TEST_THAT(!SearchDir(*dir, "excluded_1"));
TEST_THAT(!SearchDir(*dir, "excluded_2"));
TEST_THAT(!SearchDir(*dir, "exclude_dir"));
TEST_THAT(!SearchDir(*dir, "exclude_dir_2"));
// xx_not_this_dir_22 should not be excluded by
// ExcludeDirsRegex, because it's a file
TEST_THAT(SearchDir (*dir, "xx_not_this_dir_22"));
TEST_THAT(!SearchDir(*dir, "zEXCLUDEu"));
TEST_THAT(SearchDir (*dir, "dont.excludethis"));
TEST_THAT(SearchDir (*dir, "xx_not_this_dir_ALWAYSINCLUDE"));
int64_t sub23id = SearchDir(*dir, "sub23");
TEST_THAT(sub23id != 0);
dir = ReadDirectory(*pClient, sub23id);
TEST_THAT(!SearchDir(*dir, "xx_not_this_dir_22"));
TEST_THAT(!SearchDir(*dir, "somefile.excludethis"));
// client->QueryFinished();
}
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_read_error_reporting()
{
SETUP_WITH_BBSTORED();
#ifdef WIN32
BOX_NOTICE("skipping test on this platform");
#else
if(::getuid() == 0)
{
BOX_NOTICE("skipping test because we're running as root");
// These tests only work as non-root users.
}
else
{
// TODO FIXME detent
{
// Check that the error has not been reported yet
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.1"));
// Check that read errors are reported neatly
BOX_INFO("Add unreadable files");
{
// Dir and file which can't be read
TEST_THAT(::mkdir("testfiles/TestDir1/sub23",
0755) == 0);
TEST_THAT(::mkdir("testfiles/TestDir1/sub23"
"/read-fail-test-dir", 0000) == 0);
int fd = ::open("testfiles/TestDir1"
"/read-fail-test-file",
O_CREAT | O_WRONLY, 0000);
TEST_THAT(fd != -1);
::close(fd);
}
// Wait and test... with sysadmin notification
bbackupd.RunSyncNowWithExceptionHandling();
// should fail with an error due to unreadable file
TEST_COMPARE(Compare_Error);
// Check that it was reported correctly
TEST_THAT(TestFileExists("testfiles/notifyran.read-error.1"));
// Check that the error was only reported once
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.2"));
// Set permissions on file and dir to stop
// errors in the future
TEST_THAT(::chmod("testfiles/TestDir1/sub23"
"/read-fail-test-dir", 0770) == 0);
TEST_THAT(::chmod("testfiles/TestDir1"
"/read-fail-test-file", 0770) == 0);
}
}
#endif
TEARDOWN_TEST_BBACKUPD();
}
bool test_continuously_updated_file()
{
SETUP_WITH_BBSTORED();
TEST_THAT(StartClient());
// TODO FIXME dedent
{
// Make sure everything happens at the same point in the
// sync cycle: wait until exactly the start of a sync
wait_for_sync_start();
// Then wait a second, to make sure the scan is complete
::safe_sleep(1);
{
BOX_INFO("Open a file, then save something to it "
"every second for 12 seconds");
for(int l = 0; l < 12; ++l)
{
FILE *f = ::fopen("testfiles/TestDir1/continousupdate", "w+");
TEST_THAT(f != 0);
fprintf(f, "Loop iteration %d\n", l);
fflush(f);
fclose(f);
safe_sleep(1);
}
// Check there's a difference
int compareReturnValue = ::system("perl testfiles/"
"extcheck1.pl");
TEST_RETURN(compareReturnValue, 1);
TestRemoteProcessMemLeaks("bbackupquery.memleaks");
BOX_INFO("Keep on continuously updating file for "
"28 seconds, check it is uploaded eventually");
for(int l = 0; l < 28; ++l)
{
FILE *f = ::fopen("testfiles/TestDir1/"
"continousupdate", "w+");
TEST_THAT(f != 0);
fprintf(f, "Loop 2 iteration %d\n", l);
fflush(f);
fclose(f);
safe_sleep(1);
}
compareReturnValue = ::system("perl testfiles/"
"extcheck2.pl");
TEST_RETURN(compareReturnValue, 1);
TestRemoteProcessMemLeaks("bbackupquery.memleaks");
}
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_delete_dir_change_attribute()
{
SETUP_WITH_BBSTORED();
bbackupd.RunSyncNow();
// TODO FIXME dedent
{
// Delete a directory
#ifdef WIN32
TEST_THAT(::system("rd /s/q testfiles\\TestDir1\\x1") == 0);
#else
TEST_THAT(::system("rm -r testfiles/TestDir1/x1") == 0);
#endif
// Change attributes on an existing file.
#ifdef WIN32
TEST_EQUAL(0, system("attrib +r testfiles\\TestDir1\\df9834.dsf"));
#else
TEST_THAT(::chmod("testfiles/TestDir1/df9834.dsf", 0423) == 0);
#endif
TEST_COMPARE(Compare_Different);
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_restore_files_and_directories()
{
SETUP_WITH_BBSTORED();
bbackupd.RunSyncNow();
// TODO FIXME dedent
{
int64_t deldirid = 0;
int64_t restoredirid = 0;
{
// connect and log in
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext,
BackupProtocolLogin::Flags_ReadOnly);
// Find the ID of the Test1 directory
restoredirid = GetDirID(*client, "Test1",
BackupProtocolListDirectory::RootDirectory);
TEST_THAT_OR(restoredirid != 0, FAIL);
// Test the restoration
TEST_THAT(BackupClientRestore(*client, restoredirid,
"Test1" /* remote */,
"testfiles/restore-Test1" /* local */,
true /* print progress dots */,
false /* restore deleted */,
false /* undelete after */,
false /* resume */,
false /* keep going */)
== Restore_Complete);
// On Win32 we can't open another connection
// to the server, so we'll compare later.
// Make sure you can't restore a restored directory
TEST_THAT(BackupClientRestore(*client, restoredirid,
"Test1", "testfiles/restore-Test1",
true /* print progress dots */,
false /* restore deleted */,
false /* undelete after */,
false /* resume */,
false /* keep going */)
== Restore_TargetExists);
// Find ID of the deleted directory
deldirid = GetDirID(*client, "x1", restoredirid);
TEST_THAT(deldirid != 0);
// Just check it doesn't bomb out -- will check this
// properly later (when bbackupd is stopped)
TEST_THAT(BackupClientRestore(*client, deldirid,
"Test1", "testfiles/restore-Test1-x1",
true /* print progress dots */,
true /* restore deleted */,
false /* undelete after */,
false /* resume */,
false /* keep going */)
== Restore_Complete);
// Make sure you can't restore to a nonexistant path
printf("\n==== Try to restore to a path "
"that doesn't exist\n");
fflush(stdout);
{
Logger::LevelGuard(Logging::GetConsole(),
Log::FATAL);
TEST_THAT(BackupClientRestore(*client,
restoredirid, "Test1",
"testfiles/no-such-path/subdir",
true /* print progress dots */,
true /* restore deleted */,
false /* undelete after */,
false /* resume */,
false /* keep going */)
== Restore_TargetPathNotFound);
}
// Log out
client->QueryFinished();
}
// Compare the restored files
TEST_COMPARE(Compare_Same);
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_compare_detects_attribute_changes()
{
SETUP_WITH_BBSTORED();
#ifndef WIN32
BOX_NOTICE("skipping test on this platform");
// requires openfile(), GetFileTime() and attrib.exe
#else
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// TODO FIXME dedent
{
// make one of the files read-only, expect a compare failure
int exit_status = ::system("attrib +r "
"testfiles\\TestDir1\\f1.dat");
TEST_RETURN(exit_status, 0);
TEST_COMPARE(Compare_Different);
// set it back, expect no failures
exit_status = ::system("attrib -r "
"testfiles\\TestDir1\\f1.dat");
TEST_RETURN(exit_status, 0);
TEST_COMPARE(Compare_Same);
// change the timestamp on a file, expect a compare failure
const char* testfile = "testfiles\\TestDir1\\f1.dat";
HANDLE handle = openfile(testfile, O_RDWR, 0);
TEST_THAT(handle != INVALID_HANDLE_VALUE);
FILETIME creationTime, lastModTime, lastAccessTime;
TEST_THAT(GetFileTime(handle, &creationTime, &lastAccessTime,
&lastModTime) != 0);
TEST_THAT(CloseHandle(handle));
FILETIME dummyTime = lastModTime;
dummyTime.dwHighDateTime -= 100;
// creation time is backed up, so changing it should cause
// a compare failure
TEST_THAT(set_file_time(testfile, dummyTime, lastModTime,
lastAccessTime));
TEST_COMPARE(Compare_Different);
// last access time is not backed up, so it cannot be compared
TEST_THAT(set_file_time(testfile, creationTime, lastModTime,
dummyTime));
TEST_COMPARE(Compare_Same);
// last write time is backed up, so changing it should cause
// a compare failure
TEST_THAT(set_file_time(testfile, creationTime, dummyTime,
lastAccessTime));
TEST_COMPARE(Compare_Different);
// set back to original values, check that compare succeeds
TEST_THAT(set_file_time(testfile, creationTime, lastModTime,
lastAccessTime));
TEST_COMPARE(Compare_Same);
}
#endif // WIN32
TEARDOWN_TEST_BBACKUPD();
}
bool test_sync_new_files()
{
SETUP_WITH_BBSTORED();
bbackupd.RunSyncNow();
// TODO FIXME dedent
{
// Add some more files and modify others. Use the m flag this
// time so they have a recent modification time.
TEST_THAT(unpack_files("test3", "testfiles", "m"));
// OpenBSD's tar interprets the "-m" option quite differently:
// it sets the time to epoch zero (1 Jan 1970) instead of the
// current time, which doesn't help us. So reset the timestamp
// on a file by touching it, so it won't be backed up.
{
#ifndef WIN32
TEST_THAT(chmod("testfiles/TestDir1/chsh", 0755) == 0);
#endif
FileStream fs("testfiles/TestDir1/chsh", O_WRONLY);
fs.Write("a", 1);
}
// At least one file is too new to be backed up on the first run.
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Different);
wait_for_operation(5, "newly added files to be old enough");
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_rename_operations()
{
SETUP_WITH_BBSTORED();
TEST_THAT(unpack_files("test2"));
TEST_THAT(unpack_files("test3"));
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// TODO FIXME dedent
{
BOX_INFO("Rename directory");
TEST_THAT(rename("testfiles/TestDir1/sub23/dhsfdss",
"testfiles/TestDir1/renamed-dir") == 0);
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
// and again, but with quick flag
TEST_COMPARE_EXTRA(Compare_Same, "", "-acqQ");
// Rename some files -- one under the threshold, others above
TEST_THAT(rename("testfiles/TestDir1/df324",
"testfiles/TestDir1/df324-ren") == 0);
TEST_THAT(rename("testfiles/TestDir1/sub23/find2perl",
"testfiles/TestDir1/find2perl-ren") == 0);
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
}
TEARDOWN_TEST_BBACKUPD();
}
// Check that modifying files with madly in the future timestamps still get added
bool test_sync_files_with_timestamps_in_future()
{
SETUP_WITH_BBSTORED();
bbackupd.RunSyncNow();
// TODO FIXME dedent
{
{
TEST_THAT(::mkdir("testfiles/TestDir1/sub23",
0755) == 0);
FILE *f = fopen("testfiles/TestDir1/sub23/"
"in-the-future", "w");
TEST_THAT_OR(f != 0, FAIL);
fprintf(f, "Back to the future!\n");
fclose(f);
// and then move the time forwards!
struct timeval times[2];
BoxTimeToTimeval(GetCurrentBoxTime() +
SecondsToBoxTime((time_t)(365*24*60*60)),
times[1]);
times[0] = times[1];
TEST_THAT(::utimes("testfiles/TestDir1/sub23/"
"in-the-future", times) == 0);
}
// Wait and test
bbackupd.RunSyncNow();
wait_for_backup_operation("bbackup to sync future file");
TEST_COMPARE(Compare_Same);
}
TEARDOWN_TEST_BBACKUPD();
}
// Check change of store marker pauses daemon
bool test_changing_client_store_marker_pauses_daemon()
{
SETUP_WITH_BBSTORED();
TEST_THAT(StartClient());
// Wait for the client to upload all current files. We also time
// approximately how long a sync takes.
box_time_t sync_start_time = GetCurrentBoxTime();
sync_and_wait();
box_time_t sync_time = GetCurrentBoxTime() - sync_start_time;
BOX_INFO("Sync takes " << BOX_FORMAT_MICROSECONDS(sync_time));
// Time how long a compare takes. On NetBSD it's 3 seconds, and that
// interferes with test timing unless we account for it.
box_time_t compare_start_time = GetCurrentBoxTime();
// There should be no differences right now (yet).
TEST_COMPARE(Compare_Same);
box_time_t compare_time = GetCurrentBoxTime() - compare_start_time;
BOX_INFO("Compare takes " << BOX_FORMAT_MICROSECONDS(compare_time));
// Wait for the end of another sync, to give us ~3 seconds to change
// the client store marker.
wait_for_sync_end();
// TODO FIXME dedent
{
// Then... connect to the server, and change the
// client store marker. See what that does!
{
bool done = false;
int tries = 4;
while(!done && tries > 0)
{
try
{
std::auto_ptr<BackupProtocolCallable>
protocol = connect_to_bbstored(sTlsContext);
// Make sure the marker isn't zero,
// because that's the default, and
// it should have changed
std::auto_ptr<BackupProtocolLoginConfirmed> loginConf(protocol->QueryLogin(0x01234567, 0));
TEST_THAT(loginConf->GetClientStoreMarker() != 0);
// Change it to something else
BOX_INFO("Changing client store marker "
"from " << loginConf->GetClientStoreMarker() <<
" to 12");
protocol->QuerySetClientStoreMarker(12);
// Success!
done = true;
// Log out
protocol->QueryFinished();
}
catch(BoxException &e)
{
BOX_INFO("Failed to connect to bbstored, "
<< tries << " retries remaining: "
<< e.what());
tries--;
}
catch(...)
{
tries--;
}
}
TEST_THAT(done);
}
// Make a change to a file, to detect whether or not
// it's hanging around waiting to retry.
{
FILE *f = ::fopen("testfiles/TestDir1/fileaftermarker", "w");
TEST_THAT(f != 0);
::fprintf(f, "Lovely file you got there.");
::fclose(f);
}
// Wait for bbackupd to detect the problem.
wait_for_sync_end();
// Test that there *are* differences still, i.e. that bbackupd
// didn't successfully run a backup during that time.
BOX_INFO("Compare starting, expecting differences");
TEST_COMPARE(Compare_Different);
BOX_TRACE("Compare finished, expected differences");
// Wait out the expected delay in bbackupd. This is quite
// time-sensitive, so we use sub-second precision.
box_time_t wait =
SecondsToBoxTime(BACKUP_ERROR_DELAY_SHORTENED - 1) -
compare_time * 2;
BOX_INFO("Waiting for " << BOX_FORMAT_MICROSECONDS(wait) << " "
"until just before bbackupd recovers");
ShortSleep(wait, true);
// bbackupd should not have recovered yet, so there should
// still be differences.
BOX_INFO("Compare starting, expecting differences");
TEST_COMPARE(Compare_Different);
BOX_TRACE("Compare finished, expected differences");
// Now wait for it to recover and finish a sync, and check that
// the differences are gone (successful backup). Wait until ~2
// seconds after we expect the sync to have finished, to reduce
// the risk of random failure on AppVeyor when heavily loaded.
wait = sync_time + SecondsToBoxTime(6);
BOX_INFO("Waiting for " << BOX_FORMAT_MICROSECONDS(wait) <<
" until just after bbackupd recovers and finishes a sync");
ShortSleep(wait, true);
BOX_INFO("Compare starting, expecting no differences");
TEST_COMPARE(Compare_Same);
BOX_TRACE("Compare finished, expected no differences");
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_interrupted_restore_can_be_recovered()
{
SETUP_WITH_BBSTORED();
#ifdef WIN32
BOX_NOTICE("skipping test on this platform");
#else
bbackupd.RunSyncNow();
// TODO FIXME dedent
{
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext,
BackupProtocolLogin::Flags_ReadOnly);
// Find the ID of the Test1 directory
int64_t restoredirid = GetDirID(*client, "Test1",
BackupProtocolListDirectory::RootDirectory);
TEST_THAT_OR(restoredirid != 0, FAIL);
do_interrupted_restore(sTlsContext, restoredirid);
int64_t resumesize = 0;
TEST_THAT(FileExists("testfiles/"
"restore-interrupt.boxbackupresume",
&resumesize));
// make sure it has recorded something to resume
TEST_THAT(resumesize > 16);
// Check that the restore fn returns resume possible,
// rather than doing anything
TEST_THAT(BackupClientRestore(*client, restoredirid,
"Test1", "testfiles/restore-interrupt",
true /* print progress dots */,
false /* restore deleted */,
false /* undelete after */,
false /* resume */,
false /* keep going */)
== Restore_ResumePossible);
// Then resume it
TEST_THAT(BackupClientRestore(*client, restoredirid,
"Test1", "testfiles/restore-interrupt",
true /* print progress dots */,
false /* restore deleted */,
false /* undelete after */,
true /* resume */,
false /* keep going */)
== Restore_Complete);
client->QueryFinished();
client.reset();
// Then check it has restored the correct stuff
TEST_COMPARE(Compare_Same);
}
}
#endif // !WIN32
TEARDOWN_TEST_BBACKUPD();
}
bool assert_x1_deleted_or_not(bool expected_deleted)
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext, 0 /* read-write */);
std::auto_ptr<BackupStoreDirectory> dir = ReadDirectory(*client);
int64_t testDirId = SearchDir(*dir, "Test1");
TEST_THAT_OR(testDirId != 0, return false);
dir = ReadDirectory(*client, testDirId);
BackupStoreDirectory::Iterator i(*dir);
BackupStoreFilenameClear child("x1");
BackupStoreDirectory::Entry *en = i.FindMatchingClearName(child);
TEST_THAT_OR(en != 0, return false);
TEST_EQUAL_OR(expected_deleted, en->IsDeleted(), return false);
return true;
}
bool test_restore_deleted_files()
{
SETUP_WITH_BBSTORED();
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
TEST_THAT(EMU_UNLINK("testfiles/TestDir1/f1.dat") == 0);
#ifdef WIN32
TEST_THAT(::system("rd /s/q testfiles\\TestDir1\\x1") == 0);
#else
TEST_THAT(::system("rm -r testfiles/TestDir1/x1") == 0);
#endif
TEST_COMPARE(Compare_Different);
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
TEST_THAT(assert_x1_deleted_or_not(true));
// TODO FIXME dedent
{
{
std::auto_ptr<BackupProtocolCallable> client =
connect_and_login(sTlsContext, 0 /* read-write */);
// Find the ID of the Test1 directory
int64_t restoredirid = GetDirID(*client, "Test1",
BackupProtocolListDirectory::RootDirectory);
TEST_THAT_OR(restoredirid != 0, FAIL);
// Find ID of the deleted directory
int64_t deldirid = GetDirID(*client, "x1", restoredirid);
TEST_THAT_OR(deldirid != 0, FAIL);
// Do restore and undelete
TEST_THAT(BackupClientRestore(*client, deldirid,
"Test1", "testfiles/restore-Test1-x1-2",
true /* print progress dots */,
true /* deleted files */,
true /* undelete after */,
false /* resume */,
false /* keep going */)
== Restore_Complete);
client->QueryFinished();
client.reset();
// Do a compare with the now undeleted files
TEST_COMPARE_EXTRA(Compare_Same, "", "-cEQ Test1/x1 "
"testfiles/restore-Test1-x1-2");
}
// Final check on notifications
TEST_THAT(!TestFileExists("testfiles/notifyran.store-full.2"));
TEST_THAT(!TestFileExists("testfiles/notifyran.read-error.2"));
}
// should have been undeleted by restore
TEST_THAT(assert_x1_deleted_or_not(false));
TEARDOWN_TEST_BBACKUPD();
}
bool test_locked_file_behaviour()
{
SETUP_WITH_BBSTORED();
#ifndef WIN32
// There are no tests for mandatory locks on non-Windows platforms yet.
BOX_NOTICE("skipping test on this platform");
#else
// TODO FIXME dedent
{
// Test that locked files cannot be backed up,
// and the appropriate error is reported.
HANDLE handle = openfile("testfiles/TestDir1/f1.dat",
BOX_OPEN_LOCK, 0);
TEST_THAT_OR(handle != INVALID_HANDLE_VALUE, FAIL);
{
// this sync should try to back up the file,
// and fail, because it's locked
bbackupd.RunSyncNowWithExceptionHandling();
TEST_THAT(TestFileExists("testfiles/"
"notifyran.read-error.1"));
TEST_THAT(!TestFileExists("testfiles/"
"notifyran.read-error.2"));
}
{
// now close the file and check that it is
// backed up on the next run.
CloseHandle(handle);
bbackupd.RunSyncNow();
// still no read errors?
TEST_THAT(!TestFileExists("testfiles/"
"notifyran.read-error.2"));
TEST_COMPARE(Compare_Same);
}
{
// open the file again, compare and check that compare
// reports the correct error message (and finishes)
handle = openfile("testfiles/TestDir1/f1.dat",
BOX_OPEN_LOCK, 0);
TEST_THAT_OR(handle != INVALID_HANDLE_VALUE, FAIL);
TEST_COMPARE(Compare_Error);
// close the file again, check that compare
// works again
CloseHandle(handle);
TEST_COMPARE(Compare_Same);
}
}
#endif // WIN32
TEARDOWN_TEST_BBACKUPD();
}
bool test_backup_many_files()
{
SETUP_WITH_BBSTORED();
unpack_files("test2");
unpack_files("test3");
unpack_files("testexclude");
unpack_files("spacetest1", "testfiles/TestDir1");
unpack_files("spacetest2", "testfiles/TestDir1");
bbackupd.RunSyncNow();
TEST_COMPARE(Compare_Same);
TEARDOWN_TEST_BBACKUPD();
}
bool test_parse_incomplete_command()
{
SETUP_TEST_BBACKUPD();
{
// This is not a complete command, it should not parse!
BackupQueries::ParsedCommand cmd("-od", true);
TEST_THAT(cmd.mFailed);
TEST_EQUAL((void *)NULL, cmd.pSpec);
TEST_EQUAL(0, cmd.mCompleteArgCount);
}
TEARDOWN_TEST_BBACKUPD();
}
bool test_parse_syncallowscript_output()
{
SETUP_TEST_BBACKUPD();
{
BackupDaemon daemon;
TEST_EQUAL(1234, daemon.ParseSyncAllowScriptOutput("test", "1234"));
TEST_EQUAL(0, daemon.GetMaxBandwidthFromSyncAllowScript());
TEST_EQUAL(1234, daemon.ParseSyncAllowScriptOutput("test", "1234 5"));
TEST_EQUAL(5, daemon.GetMaxBandwidthFromSyncAllowScript());
TEST_EQUAL(-1, daemon.ParseSyncAllowScriptOutput("test", "now"));
TEST_EQUAL(0, daemon.GetMaxBandwidthFromSyncAllowScript());
}
TEARDOWN_TEST_BBACKUPD();
}
bool check_output_log_file_for_ssl_security_level_warnings(const std::string& log_file_name,
const std::string& sentinel_value)
{
int old_num_failures = num_failures;
FileStream fs(log_file_name, O_RDONLY);
IOStreamGetLine getline(fs);
std::string line;
bool found_not_set = false, found_not_supported = false, found_sentinel = false;
while(fs.StreamDataLeft())
{
TEST_THAT(getline.GetLine(line, true, 30000)); // 30 seconds should be enough
TEST_THAT(line.size() >= 30);
if(line.size() < 30)
{
continue;
}
if(StartsWith("SSLSecurityLevel not set. Your connection may not "
"be secure.", line.substr(30)))
{
found_not_set = true;
}
else if(StartsWith("SSLSecurityLevel is set, but this Box Backup "
"is not compiled with OpenSSL 1.1 or higher", line.substr(30)))
{
found_not_supported = true;
}
else if(StartsWith(sentinel_value, line.substr(30)))
{
found_sentinel = true;
break;
}
}
#ifdef HAVE_SSL_CTX_SET_SECURITY_LEVEL
TEST_THAT(!found_not_set); // We should set it in bbackupd-config
TEST_THAT(!found_not_supported); // And this message should never be logged
#else
TEST_THAT(!found_not_supported); // We should not set it in bbackupd-config
TEST_THAT(!found_not_set); // And this message should never be logged
#endif
TEST_THAT(found_sentinel); // Otherwise we're looking for the wrong thing!
return (num_failures == old_num_failures); // no new failures -> good
}
bool test_bbackupd_config_script()
{
SETUP_TEST_BBACKUPD();
#ifdef WIN32
BOX_NOTICE("skipping test on this platform"); // TODO: write a PowerShell version
#else
char buf[PATH_MAX];
if (getcwd(buf, sizeof(buf)) == NULL)
{
BOX_LOG_SYS_ERROR("getcwd");
}
std::string current_dir = buf;
TEST_THAT(mkdir("testfiles/tmp", 0777) == 0);
TEST_THAT(mkdir("testfiles/TestDir1", 0777) == 0);
// Generate a new configuration for our test bbackupd, from scratch:
std::string cmd = "../../../bin/bbackupd/bbackupd-config " +
current_dir + "/testfiles/tmp " // config-dir
"lazy " // backup-mode
"12345 " // account-num
"localhost " + // server-hostname
current_dir + "/testfiles " + // working-dir
current_dir + "/testfiles/TestDir1"; // backup directories
TEST_RETURN(system(cmd.c_str()), 0)
// Open the generated config file and add a StorePort line:
{
FileStream conf_file("testfiles/tmp/bbackupd.conf", O_WRONLY | O_APPEND);
conf_file.Write("StorePort = 22011\n");
conf_file.Close();
}
// Generate a new configuration for our test bbstored, from scratch:
struct passwd *result = getpwuid(getuid());
TEST_THAT_OR(result != NULL, FAIL); // failed to get username for current user
std::string username = result->pw_name;
cmd = "../../../bin/bbstored/bbstored-config testfiles/tmp localhost " + username + " "
"testfiles/raidfile.conf";
TEST_RETURN_COMMAND(system(cmd.c_str()), 0, cmd)
cmd = "sed -i.orig -e 's/\\(ListenAddresses = inet:localhost\\)/\\1:22011/' "
"-e 's@PidFile = .*/run/bbstored.pid@PidFile = testfiles/bbstored.pid@' "
"testfiles/tmp/bbstored.conf";
TEST_RETURN_COMMAND(system(cmd.c_str()), 0, cmd)
// Create a server certificate authority, and sign the client and server certificates:
cmd = "../../../bin/bbstored/bbstored-certs testfiles/tmp/ca init";
TEST_RETURN_COMMAND(system(cmd.c_str()), 0, cmd)
cmd = "echo yes | ../../../bin/bbstored/bbstored-certs testfiles/tmp/ca sign "
"testfiles/tmp/bbackupd/12345-csr.pem";
TEST_RETURN_COMMAND(system(cmd.c_str()), 0, cmd)
cmd = "echo yes | ../../../bin/bbstored/bbstored-certs testfiles/tmp/ca sign-server "
"testfiles/tmp/bbstored/localhost-csr.pem";
TEST_RETURN_COMMAND(system(cmd.c_str()), 0, cmd)
// Copy the certificate files into the right places
cmd = "cp testfiles/tmp/ca/clients/12345-cert.pem testfiles/tmp/bbackupd";
TEST_RETURN_COMMAND(system(cmd.c_str()), 0, cmd)
cmd = "cp testfiles/tmp/ca/roots/serverCA.pem testfiles/tmp/bbackupd";
TEST_RETURN_COMMAND(system(cmd.c_str()), 0, cmd)
cmd = "cp testfiles/tmp/ca/servers/localhost-cert.pem testfiles/tmp/bbstored";
TEST_RETURN_COMMAND(system(cmd.c_str()), 0, cmd)
cmd = "cp testfiles/tmp/ca/roots/clientCA.pem testfiles/tmp/bbstored";
TEST_RETURN(system(cmd.c_str()), 0)
cmd = BBSTOREACCOUNTS " -c testfiles/tmp/bbstored.conf create 12345 0 1M 2M";
TEST_RETURN_COMMAND(system(cmd.c_str()), 0, cmd)
bbstored_pid = StartDaemon(bbstored_pid, BBSTORED " " + bbstored_args +
" -o testfiles/tmp/bbstored.log testfiles/tmp/bbstored.conf", "testfiles/bbstored.pid",
22011);
{
Capture capture;
Logging::TempLoggerGuard guard(&capture);
BackupDaemon bbackupd;
TEST_THAT(
prepare_test_with_client_daemon(
bbackupd,
true, // do_unpack_files
false, // !do_start_bbstored
"testfiles/tmp/bbackupd.conf")
);
bbackupd.RunSyncNow();
std::vector<Capture::Message> messages = capture.GetMessages();
TEST_THAT(!messages.empty());
if (!messages.empty())
{
bool found_not_set = false, found_not_supported = false;
for(std::vector<Capture::Message>::iterator i = messages.begin();
i != messages.end(); i++)
{
if(StartsWith("SSLSecurityLevel not set. Your connection may not "
"be secure.", i->message))
{
found_not_set = true;
}
else if(StartsWith("SSLSecurityLevel is set, but this Box Backup "
"is not compiled with OpenSSL 1.1 or higher", i->message))
{
found_not_supported = true;
}
}
#ifdef HAVE_SSL_CTX_SET_SECURITY_LEVEL
TEST_THAT(!found_not_set); // We should set it in bbackupd-config
TEST_THAT(!found_not_supported); // And this message should never be logged
#else
TEST_THAT(!found_not_supported); // We should not set it in bbackupd-config
TEST_THAT(!found_not_set); // And this message should never be logged
#endif
}
}
TEST_THAT(compare_external(BackupQueries::ReturnCode::Compare_Same,
"-otestfiles/tmp/bbackupquery.log", "-acQ", "testfiles/tmp/bbackupd.conf"));
TEST_THAT(check_output_log_file_for_ssl_security_level_warnings("testfiles/tmp/bbackupquery.log",
"Connecting to store"));
TEST_THAT(check_output_log_file_for_ssl_security_level_warnings("testfiles/tmp/bbstored.log",
"Forked child process"));
TEST_THAT(StopServer());
#endif // !WIN32
TEARDOWN_TEST_BBACKUPD();
}
int test(int argc, const char *argv[])
{
// SSL library
SSLLib::Initialise();
// Keys for subsystems
BackupClientCryptoKeys_Setup("testfiles/bbackupd.keys");
{
std::string errs;
std::auto_ptr<Configuration> config(
Configuration::LoadAndVerify
("testfiles/bbstored.conf", &BackupConfigFileVerify, errs));
TEST_EQUAL_LINE(0, errs.size(), "Loading configuration file "
"reported errors: " << errs);
TEST_THAT_OR(config.get(), return 1);
// Initialise the raid file controller
RaidFileController &rcontroller(RaidFileController::GetController());
rcontroller.Initialise(config->GetKeyValue("RaidFileConf").c_str());
}
sTlsContext.Initialise(false /* client */,
"testfiles/clientCerts.pem",
"testfiles/clientPrivKey.pem",
"testfiles/clientTrustedCAs.pem");
TEST_THAT(test_basics());
TEST_THAT(test_readdirectory_on_nonexistent_dir());
TEST_THAT(test_bbackupquery_parser_escape_slashes());
TEST_THAT(test_getobject_on_nonexistent_file());
// TEST_THAT(test_replace_zero_byte_file_with_nonzero_byte_file());
TEST_THAT(test_backup_disappearing_directory());
TEST_THAT(test_ssl_keepalives());
TEST_THAT(test_backup_hardlinked_files());
TEST_THAT(test_backup_pauses_when_store_is_full());
TEST_THAT(test_bbackupd_exclusions());
TEST_THAT(test_bbackupd_uploads_files());
TEST_THAT(test_bbackupd_responds_to_connection_failure());
TEST_THAT(test_absolute_symlinks_not_followed_during_restore());
TEST_THAT(test_initially_missing_locations_are_not_forgotten());
TEST_THAT(test_redundant_locations_deleted_on_time());
TEST_THAT(test_read_only_dirs_can_be_restored());
TEST_THAT(test_unicode_filenames_can_be_backed_up());
TEST_THAT(test_sync_allow_script_can_pause_backup());
TEST_THAT(test_delete_update_and_symlink_files());
TEST_THAT(test_store_error_reporting());
TEST_THAT(test_change_file_to_symlink_and_back());
TEST_THAT(test_file_rename_tracking());
TEST_THAT(test_upload_very_old_files());
TEST_THAT(test_excluded_files_are_not_backed_up());
TEST_THAT(test_read_error_reporting());
TEST_THAT(test_continuously_updated_file());
TEST_THAT(test_delete_dir_change_attribute());
TEST_THAT(test_restore_files_and_directories());
TEST_THAT(test_compare_detects_attribute_changes());
TEST_THAT(test_sync_new_files());
TEST_THAT(test_rename_operations());
TEST_THAT(test_sync_files_with_timestamps_in_future());
TEST_THAT(test_changing_client_store_marker_pauses_daemon());
TEST_THAT(test_interrupted_restore_can_be_recovered());
TEST_THAT(test_restore_deleted_files());
TEST_THAT(test_locked_file_behaviour());
TEST_THAT(test_backup_many_files());
TEST_THAT(test_parse_incomplete_command());
TEST_THAT(test_parse_syncallowscript_output());
TEST_THAT(test_bbackupd_config_script());
TEST_THAT(kill_running_daemons());
#ifndef WIN32
if(::getuid() == 0)
{
BOX_WARNING("This test was run as root. Some tests have been omitted.");
}
#endif
return finish_test_suite();
}
|