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
|
######################################################################
#
# File: test/unit/bucket/test_bucket.py
#
# Copyright 2019 Backblaze Inc. All Rights Reserved.
#
# License https://www.backblaze.com/using_b2_code.html
#
######################################################################
from __future__ import annotations
import contextlib
import dataclasses
import datetime
import io
import os
import pathlib
import platform
import tempfile
import time
import unittest.mock as mock
from contextlib import suppress
from io import BytesIO
import apiver_deps
import pytest
from apiver_deps_exception import (
AccessDenied,
AlreadyFailed,
B2ConnectionError,
B2Error,
B2RequestTimeoutDuringUpload,
BucketIdNotFound,
DestinationDirectoryDoesntAllowOperation,
DestinationDirectoryDoesntExist,
DestinationIsADirectory,
DestinationParentIsNotADirectory,
DisablingFileLockNotSupported,
FileSha1Mismatch,
InvalidAuthToken,
InvalidMetadataDirective,
InvalidRange,
InvalidUploadSource,
MaxRetriesExceeded,
RestrictedBucketMissing,
SourceReplicationConflict,
SSECKeyError,
UnsatisfiableRange,
)
from test.helpers import NonSeekableIO, assert_dict_equal_ignore_extra
from ..test_base import TestBase, create_key
if apiver_deps.V <= 1:
from apiver_deps import DownloadDestBytes, PreSeekedDownloadDest
from apiver_deps import FileVersionInfo as VFileVersionInfo
else:
DownloadDestBytes, PreSeekedDownloadDest = (
None,
None,
) # these classes are not present, thus not needed, in v2
from apiver_deps import FileVersion as VFileVersionInfo
from apiver_deps import (
LARGE_FILE_SHA1,
NO_RETENTION_FILE_SETTING,
SSE_B2_AES,
SSE_NONE,
AbstractDownloader,
AbstractProgressListener,
B2Api,
B2HttpApiConfig,
B2Session,
Bucket,
BucketFactory,
BucketRetentionSetting,
BucketSimulator,
CopySource,
DownloadedFile,
DownloadVersion,
DummyCache,
EncryptionAlgorithm,
EncryptionKey,
EncryptionMode,
EncryptionSetting,
FakeResponse,
FileRetentionSetting,
FileSimulator,
Filter,
InMemoryCache,
LargeFileUploadState,
LegalHold,
MetadataDirectiveMode,
ParallelDownloader,
Part,
Range,
RawSimulator,
ReplicationConfiguration,
ReplicationRule,
RetentionMode,
RetentionPeriod,
SimpleDownloader,
StubAccountInfo,
UploadMode,
UploadSourceBytes,
UploadSourceLocalFile,
WriteIntent,
hex_sha1_of_bytes,
)
pytestmark = [pytest.mark.apiver(from_ver=1)]
SSE_C_AES = EncryptionSetting(
mode=EncryptionMode.SSE_C,
algorithm=EncryptionAlgorithm.AES256,
key=EncryptionKey(secret=b'some_key', key_id='some-id'),
)
SSE_C_AES_NO_SECRET = EncryptionSetting(
mode=EncryptionMode.SSE_C,
algorithm=EncryptionAlgorithm.AES256,
key=EncryptionKey(secret=None, key_id='some-id'),
)
SSE_C_AES_2 = EncryptionSetting(
mode=EncryptionMode.SSE_C,
algorithm=EncryptionAlgorithm.AES256,
key=EncryptionKey(secret=b'some_other_key', key_id='some-id-2'),
)
SSE_C_AES_2_NO_SECRET = EncryptionSetting(
mode=EncryptionMode.SSE_C,
algorithm=EncryptionAlgorithm.AES256,
key=EncryptionKey(secret=None, key_id='some-id-2'),
)
SSE_C_AES_FROM_SERVER = EncryptionSetting(
mode=EncryptionMode.SSE_C,
algorithm=EncryptionAlgorithm.AES256,
key=EncryptionKey(key_id=None, secret=None),
)
REPLICATION = ReplicationConfiguration(
rules=[
ReplicationRule(
destination_bucket_id='c5f35d53a90a7ea284fb0719',
name='replication-us-west',
),
ReplicationRule(
destination_bucket_id='55f34d53a96a7ea284fb0719',
name='replication-us-west-2',
file_name_prefix='replica/',
is_enabled=False,
priority=255,
),
],
source_key_id='10053d55ae26b790000000006',
source_to_destination_key_mapping={
'10053d55ae26b790000000045': '10053d55ae26b790000000004',
'10053d55ae26b790000000046': '10053d55ae26b790030000004',
},
)
def write_file(path, data):
with open(path, 'wb') as f:
f.write(data)
class StubProgressListener(AbstractProgressListener):
"""
Implementation of a progress listener that remembers what calls were made,
and returns them as a short string to use in unit tests.
For a total byte count of 100, and updates at 33 and 66, the returned
string looks like: "100: 33 66"
"""
def __init__(self):
self.total = None
self.history = []
self.last_byte_count = 0
def get_history(self):
return ' '.join(self.history)
def set_total_bytes(self, total_byte_count):
assert total_byte_count is not None
assert self.total is None, 'set_total_bytes called twice'
self.total = total_byte_count
assert len(self.history) == 0, self.history
self.history.append('%d:' % (total_byte_count,))
def bytes_completed(self, byte_count):
self.last_byte_count = byte_count
self.history.append(str(byte_count))
def is_valid(self, **kwargs):
valid, _ = self.is_valid_reason(**kwargs)
return valid
def is_valid_reason(self, check_progress=True, check_monotonic_progress=False):
progress_end = -1
if self.history[progress_end] == 'closed':
progress_end = -2
# self.total != self.last_byte_count may be a consequence of non-monotonic
# progress, so we want to check this first
if check_monotonic_progress:
prev = 0
for val in map(int, self.history[1:progress_end]):
if val < prev:
return False, 'non-monotonic progress'
prev = val
if self.total != self.last_byte_count:
return False, 'total different than last_byte_count'
if check_progress and len(self.history[1:progress_end]) < 2:
return False, 'progress in history has less than 2 entries'
return True, ''
def close(self):
self.history.append('closed')
class CanRetry(B2Error):
"""
An exception that can be retryable, or not.
"""
def __init__(self, can_retry):
super().__init__(None, None, None, None, None)
self.can_retry = can_retry
def should_retry_upload(self):
return self.can_retry
def bucket_ls(bucket, *args, show_versions=False, **kwargs):
if apiver_deps.V <= 1:
ls_all_versions_kwarg = {'show_versions': show_versions}
else:
ls_all_versions_kwarg = {'latest_only': not show_versions}
return bucket.ls(*args, **ls_all_versions_kwarg, **kwargs)
@pytest.fixture
def exact_filename_match_ls_setup(bucket):
data = b'hello world'
filename1 = 'hello.txt'
hidden_file = filename1 + 'postfix'
filename3 = filename1 + 'postfix3'
files = [
bucket.upload_bytes(data, filename1),
bucket.upload_bytes(data, hidden_file),
bucket.upload_bytes(data, filename3),
]
bucket.hide_file(hidden_file)
return files
@pytest.mark.apiver(from_ver=2, to_ver=2)
def test_bucket_ls__pre_v3_does_not_match_exact_filename(bucket, exact_filename_match_ls_setup):
assert not list(bucket.ls(exact_filename_match_ls_setup[0].file_name))
@pytest.mark.apiver(from_ver=2)
def test_bucket_ls__matches_exact_filename(bucket, exact_filename_match_ls_setup, apiver_int):
assert len(list(bucket.ls())) == 2
assert len(list(bucket.ls(latest_only=False))) == 4
kwargs = {}
if apiver_int < 3:
kwargs['folder_to_list_can_be_a_file'] = True
assert [
fv.file_name for fv, _ in bucket.ls(exact_filename_match_ls_setup[0].file_name, **kwargs)
] == ['hello.txt']
# hidden file should not be returned unless latest_only is False
assert len(list(bucket.ls(exact_filename_match_ls_setup[1].file_name, **kwargs))) == 0
assert (
len(
list(bucket.ls(exact_filename_match_ls_setup[1].file_name, **kwargs, latest_only=False))
)
== 2
)
@pytest.mark.apiver(from_ver=2)
def test_bucket_ls__matches_exact_filename__wildcard(
bucket, exact_filename_match_ls_setup, apiver_int
):
kwargs = {'with_wildcard': True, 'recursive': True}
if apiver_int < 3:
kwargs['folder_to_list_can_be_a_file'] = True
assert [
fv.file_name for fv, _ in bucket.ls(exact_filename_match_ls_setup[0].file_name, **kwargs)
] == ['hello.txt']
# hidden file should not be returned unless latest_only is False
assert len(list(bucket.ls(exact_filename_match_ls_setup[1].file_name, **kwargs))) == 0
assert (
len(
list(bucket.ls(exact_filename_match_ls_setup[1].file_name, **kwargs, latest_only=False))
)
== 2
)
class TestCaseWithBucket(TestBase):
RAW_SIMULATOR_CLASS = RawSimulator
CACHE_CLASS = DummyCache
def get_api(self):
return B2Api(
self.account_info,
cache=self.CACHE_CLASS(),
api_config=B2HttpApiConfig(_raw_api_class=self.RAW_SIMULATOR_CLASS),
)
def setUp(self):
self.bucket_name = 'my-bucket'
self.account_info = StubAccountInfo()
self.api = self.get_api()
self.simulator = self.api.session.raw_api
(self.account_id, self.master_key) = self.simulator.create_account()
self.api.authorize_account(
application_key_id=self.account_id,
application_key=self.master_key,
realm='production',
)
self.api_url = self.account_info.get_api_url()
self.account_auth_token = self.account_info.get_account_auth_token()
self.bucket = self.api.create_bucket(self.bucket_name, 'allPublic')
self.bucket_id = self.bucket.id_
def bucket_ls(self, *args, show_versions=False, **kwargs):
return bucket_ls(self.bucket, *args, show_versions=show_versions, **kwargs)
def assertBucketContents(self, expected, *args, **kwargs):
"""
*args and **kwargs are passed to self.bucket_ls()
"""
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(*args, **kwargs)
]
self.assertEqual(expected, actual)
def _make_data(self, approximate_length):
"""
Generate a sequence of bytes to use in testing an upload.
Don't repeat a short pattern, so we're sure that the different
parts of a large file are actually different.
Returns bytes.
"""
fragments = []
so_far = 0
while so_far < approximate_length:
fragment = ('%d:' % so_far).encode('utf-8')
so_far += len(fragment)
fragments.append(fragment)
return b''.join(fragments)
def _check_file_contents(self, file_name, expected_contents):
contents = self._download_file(file_name)
self.assertEqual(expected_contents, contents)
def _check_large_file_sha1(self, file_name, expected_sha1):
file_info = self.bucket.get_file_info_by_name(file_name).file_info
if expected_sha1:
assert LARGE_FILE_SHA1 in file_info
assert file_info[LARGE_FILE_SHA1] == expected_sha1
else:
assert LARGE_FILE_SHA1 not in file_info
def _download_file(self, file_name):
with FileSimulator.dont_check_encryption():
if apiver_deps.V <= 1:
download = DownloadDestBytes()
self.bucket.download_file_by_name(file_name, download)
return download.get_bytes_written()
else:
with io.BytesIO() as bytes_io:
downloaded_file = self.bucket.download_file_by_name(file_name)
downloaded_file.save(bytes_io)
return bytes_io.getvalue()
class TestReauthorization(TestCaseWithBucket):
def testCreateBucket(self):
class InvalidAuthTokenWrapper:
def __init__(self, original_function):
self.__original_function = original_function
self.__name__ = original_function.__name__
self.__called = False
def __call__(self, *args, **kwargs):
if self.__called:
return self.__original_function(*args, **kwargs)
self.__called = True
raise InvalidAuthToken('message', 401)
self.simulator.create_bucket = InvalidAuthTokenWrapper(self.simulator.create_bucket)
self.bucket = self.api.create_bucket('your-bucket', 'allPublic')
class TestListParts(TestCaseWithBucket):
@pytest.mark.apiver(to_ver=1)
def testEmpty(self):
file1 = self.bucket.start_large_file('file1.txt', 'text/plain', {})
self.assertEqual([], list(self.bucket.list_parts(file1.file_id, batch_size=1)))
@pytest.mark.apiver(to_ver=1)
def testThree(self):
file1 = self.bucket.start_large_file('file1.txt', 'text/plain', {})
content = b'hello world'
content_sha1 = hex_sha1_of_bytes(content)
large_file_upload_state = mock.MagicMock()
large_file_upload_state.has_error.return_value = False
self.api.services.upload_manager.upload_part(
self.bucket_id, file1.file_id, UploadSourceBytes(content), 1, large_file_upload_state
).result()
self.api.services.upload_manager.upload_part(
self.bucket_id, file1.file_id, UploadSourceBytes(content), 2, large_file_upload_state
).result()
self.api.services.upload_manager.upload_part(
self.bucket_id, file1.file_id, UploadSourceBytes(content), 3, large_file_upload_state
).result()
expected_parts = [
Part('9999', 1, 11, content_sha1),
Part('9999', 2, 11, content_sha1),
Part('9999', 3, 11, content_sha1),
]
self.assertEqual(expected_parts, list(self.bucket.list_parts(file1.file_id, batch_size=1)))
class TestUploadPart(TestCaseWithBucket):
@pytest.mark.apiver(to_ver=1)
def test_error_in_state(self):
file1 = self.bucket.start_large_file('file1.txt', 'text/plain', {})
content = b'hello world'
file_progress_listener = mock.MagicMock()
large_file_upload_state = LargeFileUploadState(file_progress_listener)
large_file_upload_state.set_error('test error')
try:
self.api.services.upload_manager.upload_part(
self.bucket_id,
file1.file_id,
UploadSourceBytes(content),
1,
large_file_upload_state,
).result()
self.fail('should have thrown')
except AlreadyFailed:
pass
class TestListUnfinished(TestCaseWithBucket):
def test_empty(self):
self.assertEqual([], list(self.bucket.list_unfinished_large_files()))
@pytest.mark.apiver(to_ver=1)
def test_one(self):
file1 = self.bucket.start_large_file('file1.txt', 'text/plain', {})
self.assertEqual([file1], list(self.bucket.list_unfinished_large_files()))
@pytest.mark.apiver(to_ver=1)
def test_three(self):
file1 = self.bucket.start_large_file('file1.txt', 'text/plain', {})
file2 = self.bucket.start_large_file('file2.txt', 'text/plain', {})
file3 = self.bucket.start_large_file('file3.txt', 'text/plain', {})
self.assertEqual(
[file1, file2, file3], list(self.bucket.list_unfinished_large_files(batch_size=1))
)
@pytest.mark.apiver(to_ver=1)
def test_prefix(self):
self.bucket.start_large_file('fileA', 'text/plain', {})
file2 = self.bucket.start_large_file('fileAB', 'text/plain', {})
file3 = self.bucket.start_large_file('fileABC', 'text/plain', {})
self.assertEqual(
[file2, file3],
list(
self.bucket.list_unfinished_large_files(
batch_size=1,
prefix='fileAB',
),
),
)
def _make_file(self, file_id, file_name):
return self.bucket.start_large_file(file_name, 'text/plain', {})
class TestGetFileInfo(TestCaseWithBucket):
def test_version_by_name(self):
data = b'hello world'
a_id = self.bucket.upload_bytes(data, 'a').id_
info = self.bucket.get_file_info_by_name('a')
if apiver_deps.V <= 1:
self.assertIsInstance(info, VFileVersionInfo)
else:
self.assertIsInstance(info, DownloadVersion)
expected = (a_id, 'a', 11, 'b2/x-auto', 'none', NO_RETENTION_FILE_SETTING, LegalHold.UNSET)
actual = (
info.id_,
info.file_name,
info.size,
info.content_type,
info.server_side_encryption.mode.value,
info.file_retention,
info.legal_hold,
)
self.assertEqual(expected, actual)
def test_version_by_name_file_lock(self):
bucket = self.api.create_bucket(
'my-bucket-with-file-lock', 'allPublic', is_file_lock_enabled=True
)
data = b'hello world'
legal_hold = LegalHold.ON
file_retention = FileRetentionSetting(RetentionMode.COMPLIANCE, 100)
bucket.upload_bytes(data, 'a', file_retention=file_retention, legal_hold=legal_hold)
file_version = bucket.get_file_info_by_name('a')
actual = (file_version.legal_hold, file_version.file_retention)
self.assertEqual((legal_hold, file_retention), actual)
low_perm_account_info = StubAccountInfo()
low_perm_api = B2Api(low_perm_account_info)
low_perm_api.session.raw_api = self.simulator
low_perm_key = create_key(
self.api,
key_name='lowperm',
capabilities=[
'listKeys',
'listBuckets',
'listFiles',
'readFiles',
],
)
low_perm_api.authorize_account(
application_key_id=low_perm_key.id_,
application_key=low_perm_key.application_key,
realm='production',
)
low_perm_bucket = low_perm_api.get_bucket_by_name('my-bucket-with-file-lock')
file_version = low_perm_bucket.get_file_info_by_name('a')
actual = (file_version.legal_hold, file_version.file_retention)
expected = (LegalHold.UNKNOWN, FileRetentionSetting(RetentionMode.UNKNOWN))
self.assertEqual(expected, actual)
def test_version_by_id(self):
data = b'hello world'
b_id = self.bucket.upload_bytes(data, 'b').id_
info = self.bucket.get_file_info_by_id(b_id)
self.assertIsInstance(info, VFileVersionInfo)
expected = (b_id, 'b', 11, 'upload', 'b2/x-auto', 'none')
actual = (
info.id_,
info.file_name,
info.size,
info.action,
info.content_type,
info.server_side_encryption.mode.value,
)
self.assertEqual(expected, actual)
class TestLs(TestCaseWithBucket):
def test_empty(self):
self.assertEqual([], list(self.bucket_ls('foo')))
def test_one_file_at_root(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'hello.txt')
expected = [('hello.txt', 11, 'upload', None)]
self.assertBucketContents(expected, '')
def test_three_files_at_root(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'bb')
self.bucket.upload_bytes(data, 'ccc')
expected = [
('a', 11, 'upload', None),
('bb', 11, 'upload', None),
('ccc', 11, 'upload', None),
]
self.assertBucketContents(expected, '')
def test_three_files_in_dir(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'bb/1')
self.bucket.upload_bytes(data, 'bb/2/sub1')
self.bucket.upload_bytes(data, 'bb/2/sub2')
self.bucket.upload_bytes(data, 'bb/3')
self.bucket.upload_bytes(data, 'ccc')
expected = [
('bb/1', 11, 'upload', None),
('bb/2/sub1', 11, 'upload', 'bb/2/'),
('bb/3', 11, 'upload', None),
]
self.assertBucketContents(expected, 'bb', fetch_count=1)
def test_three_files_multiple_versions(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'bb/1')
self.bucket.upload_bytes(data, 'bb/2')
self.bucket.upload_bytes(data, 'bb/2')
self.bucket.upload_bytes(data, 'bb/2')
self.bucket.upload_bytes(data, 'bb/3')
self.bucket.upload_bytes(data, 'ccc')
expected = [
('9998', 'bb/1', 11, 'upload', None),
('9995', 'bb/2', 11, 'upload', None),
('9996', 'bb/2', 11, 'upload', None),
('9997', 'bb/2', 11, 'upload', None),
('9994', 'bb/3', 11, 'upload', None),
]
actual = [
(info.id_, info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('bb', show_versions=True, fetch_count=1)
]
self.assertEqual(expected, actual)
@pytest.mark.apiver(to_ver=1)
def test_started_large_file(self):
self.bucket.start_large_file('hello.txt')
expected = [('hello.txt', 0, 'start', None)]
self.assertBucketContents(expected, '', show_versions=True)
def test_hidden_file(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'hello.txt')
self.bucket.hide_file('hello.txt')
expected = [('hello.txt', 0, 'hide', None), ('hello.txt', 11, 'upload', None)]
self.assertBucketContents(expected, '', show_versions=True)
def test_unhidden_file(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'hello.txt')
self.bucket.hide_file('hello.txt')
self.bucket.unhide_file('hello.txt')
expected = [('hello.txt', 11, 'upload', None)]
self.assertBucketContents(expected, '', show_versions=True)
def test_delete_file_version(self):
data = b'hello world'
file_id = self.bucket.upload_bytes(data, 'hello.txt').id_
data = b'hello new world'
self.bucket.upload_bytes(data, 'hello.txt')
self.bucket.delete_file_version(file_id, 'hello.txt')
expected = [('hello.txt', 15, 'upload', None)]
self.assertBucketContents(expected, '', show_versions=True)
def test_delete_file_version_bypass_governance(self):
data = b'hello world'
file_id = self.bucket.upload_bytes(
data,
'hello.txt',
file_retention=FileRetentionSetting(RetentionMode.GOVERNANCE, int(time.time()) + 100),
).id_
with pytest.raises(AccessDenied):
self.bucket.delete_file_version(file_id, 'hello.txt')
self.bucket.delete_file_version(file_id, 'hello.txt', bypass_governance=True)
self.assertBucketContents([], '', show_versions=True)
def test_non_recursive_returns_folder_names(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/1/test-1.txt')
self.bucket.upload_bytes(data, 'b/2/test-2.txt')
self.bucket.upload_bytes(data, 'b/3/test-3.txt')
self.bucket.upload_bytes(data, 'b/3/test-4.txt')
# Since inside `b` there are 3 directories, we get three results,
# with a first file for each of them.
expected = [
('b/1/test-1.txt', len(data), 'upload', 'b/1/'),
('b/2/test-2.txt', len(data), 'upload', 'b/2/'),
('b/3/test-3.txt', len(data), 'upload', 'b/3/'),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('b/')
]
self.assertEqual(expected, actual)
def test_recursive_returns_no_folder_names(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/1/test-1.txt')
self.bucket.upload_bytes(data, 'b/2/test-2.txt')
self.bucket.upload_bytes(data, 'b/3/test-3.txt')
self.bucket.upload_bytes(data, 'b/3/test-4.txt')
expected = [
('b/1/test-1.txt', len(data), 'upload', None),
('b/2/test-2.txt', len(data), 'upload', None),
('b/3/test-3.txt', len(data), 'upload', None),
('b/3/test-4.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('b/', recursive=True)
]
self.assertEqual(expected, actual)
def test_wildcard_matching(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/1/test-1.txt')
self.bucket.upload_bytes(data, 'b/2/test-2.csv')
self.bucket.upload_bytes(data, 'b/2/test-3.txt')
self.bucket.upload_bytes(data, 'b/3/test-4.jpg')
self.bucket.upload_bytes(data, 'b/3/test-4.txt')
self.bucket.upload_bytes(data, 'b/3/test-5.txt')
expected = [
('b/1/test-1.txt', len(data), 'upload', None),
('b/2/test-3.txt', len(data), 'upload', None),
('b/3/test-4.txt', len(data), 'upload', None),
('b/3/test-5.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('b/*.txt', recursive=True, with_wildcard=True)
]
self.assertEqual(expected, actual)
def test_wildcard_matching_including_root(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'b/1/test.txt')
self.bucket.upload_bytes(data, 'b/2/test.txt')
self.bucket.upload_bytes(data, 'b/3/test.txt')
self.bucket.upload_bytes(data, 'test.txt')
expected = [
('b/1/test.txt', len(data), 'upload', None),
('b/2/test.txt', len(data), 'upload', None),
('b/3/test.txt', len(data), 'upload', None),
('test.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('*.txt', recursive=True, with_wildcard=True)
]
self.assertEqual(expected, actual)
def test_wildcard_matching_directory(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/2/test.txt')
self.bucket.upload_bytes(data, 'b/3/test.jpg')
self.bucket.upload_bytes(data, 'b/3/test.txt')
self.bucket.upload_bytes(data, 'c/4/test.txt')
expected = [
('b/2/test.txt', len(data), 'upload', None),
('b/3/test.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('b/*/test.txt', recursive=True, with_wildcard=True)
]
self.assertEqual(expected, actual)
def test_single_character_matching(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/2/test.csv')
self.bucket.upload_bytes(data, 'b/2/test.txt')
self.bucket.upload_bytes(data, 'b/2/test.tsv')
expected = [
('b/2/test.csv', len(data), 'upload', None),
('b/2/test.tsv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('b/2/test.?sv', recursive=True, with_wildcard=True)
]
self.assertEqual(expected, actual)
def test_sequence_matching(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/2/test.csv')
self.bucket.upload_bytes(data, 'b/2/test.ksv')
self.bucket.upload_bytes(data, 'b/2/test.tsv')
expected = [
('b/2/test.csv', len(data), 'upload', None),
('b/2/test.tsv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
'b/2/test.[tc]sv', recursive=True, with_wildcard=True
)
]
self.assertEqual(expected, actual)
def test_negative_sequence_matching(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/2/test.csv')
self.bucket.upload_bytes(data, 'b/2/test.ksv')
self.bucket.upload_bytes(data, 'b/2/test.tsv')
expected = [
('b/2/test.tsv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
'b/2/test.[!ck]sv', recursive=True, with_wildcard=True
)
]
self.assertEqual(expected, actual)
def test_matching_wildcard_named_file(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a/*.txt')
self.bucket.upload_bytes(data, 'a/1.txt')
self.bucket.upload_bytes(data, 'a/2.txt')
expected = [
('a/*.txt', len(data), 'upload', None),
('a/1.txt', len(data), 'upload', None),
('a/2.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('a/*.txt', recursive=True, with_wildcard=True)
]
self.assertEqual(expected, actual)
def test_matching_single_question_mark_named_file(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'b/?.txt')
self.bucket.upload_bytes(data, 'b/a.txt')
self.bucket.upload_bytes(data, 'b/b.txt')
expected = [
('b/?.txt', len(data), 'upload', None),
('b/a.txt', len(data), 'upload', None),
('b/b.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('b/?.txt', recursive=True, with_wildcard=True)
]
self.assertEqual(expected, actual)
def test_wildcard_requires_recursive(self):
with pytest.raises(ValueError):
# Since ls is a generator, we need to actually fetch something from it.
next(self.bucket_ls('*.txt', recursive=False, with_wildcard=True))
def test_matching_exact_filename(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'b/a.txt')
self.bucket.upload_bytes(data, 'b/b.txt')
expected = [
('b/a.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls('b/a.txt', recursive=True, with_wildcard=True)
]
self.assertEqual(expected, actual)
def test_filters_wildcard_matching(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/1/test-1.txt')
self.bucket.upload_bytes(data, 'b/2/test-2.csv')
self.bucket.upload_bytes(data, 'b/2/test-3.txt')
self.bucket.upload_bytes(data, 'b/3/test-4.jpg')
self.bucket.upload_bytes(data, 'b/3/test-4.txt')
self.bucket.upload_bytes(data, 'b/3/test-5.txt')
expected = [
('b/1/test-1.txt', len(data), 'upload', None),
('b/2/test-3.txt', len(data), 'upload', None),
('b/3/test-4.txt', len(data), 'upload', None),
('b/3/test-5.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
'b/',
recursive=True,
filters=[Filter.include('*.txt')],
)
]
self.assertEqual(expected, actual)
def test_filters_wildcard_matching_including_root(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'b/1/test.csv')
self.bucket.upload_bytes(data, 'b/1/test.txt')
self.bucket.upload_bytes(data, 'b/2/test.tsv')
self.bucket.upload_bytes(data, 'b/2/test.txt')
self.bucket.upload_bytes(data, 'b/3/test.txt')
self.bucket.upload_bytes(data, 'test.txt')
self.bucket.upload_bytes(data, 'test.csv')
expected = [
('b/1/test.txt', len(data), 'upload', None),
('b/2/test.txt', len(data), 'upload', None),
('b/3/test.txt', len(data), 'upload', None),
('test.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(recursive=True, filters=[Filter.include('*.txt')])
]
self.assertEqual(expected, actual)
expected = [
('b/1/test.csv', len(data), 'upload', None),
('b/2/test.tsv', len(data), 'upload', None),
('test.csv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(recursive=True, filters=[Filter.exclude('*.txt')])
]
self.assertEqual(expected, actual)
def test_filters_single_character_matching(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/2/test.csv')
self.bucket.upload_bytes(data, 'b/2/test.txt')
self.bucket.upload_bytes(data, 'b/2/test.tsv')
expected = [
('b/2/test.csv', len(data), 'upload', None),
('b/2/test.tsv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
recursive=True,
filters=[Filter.include('b/2/test.?sv')],
)
]
self.assertEqual(expected, actual)
expected = [
('a', len(data), 'upload', None),
('b/2/test.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
recursive=True,
filters=[Filter.exclude('b/2/test.?sv')],
)
]
self.assertEqual(expected, actual)
def test_filters_sequence_matching(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/2/test.csv')
self.bucket.upload_bytes(data, 'b/2/test.ksv')
self.bucket.upload_bytes(data, 'b/2/test.tsv')
expected = [
('b/2/test.csv', len(data), 'upload', None),
('b/2/test.tsv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
recursive=True,
filters=[Filter.include('b/2/test.[tc]sv')],
)
]
self.assertEqual(expected, actual)
expected = [
('a', len(data), 'upload', None),
('b/2/test.ksv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
recursive=True,
filters=[Filter.exclude('b/2/test.[tc]sv')],
)
]
self.assertEqual(expected, actual)
def test_filters_negative_sequence_matching(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a')
self.bucket.upload_bytes(data, 'b/2/test.csv')
self.bucket.upload_bytes(data, 'b/2/test.ksv')
self.bucket.upload_bytes(data, 'b/2/test.tsv')
expected = [
('b/2/test.tsv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
recursive=True,
filters=[Filter.include('b/2/test.[!ck]sv')],
)
]
self.assertEqual(expected, actual)
expected = [
('a', len(data), 'upload', None),
('b/2/test.csv', len(data), 'upload', None),
('b/2/test.ksv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
recursive=True,
filters=[Filter.exclude('b/2/test.[!ck]sv')],
)
]
self.assertEqual(expected, actual)
def test_filters_matching_exact_filename(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'b/a.txt')
self.bucket.upload_bytes(data, 'b/b.txt')
expected = [
('b/a.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
recursive=True,
filters=[Filter.include('b/a.txt')],
)
]
self.assertEqual(expected, actual)
expected = [
('b/b.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
recursive=True,
filters=[Filter.exclude('b/a.txt')],
)
]
self.assertEqual(expected, actual)
def test_filters_mixed_with_wildcards(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a.csv')
self.bucket.upload_bytes(data, 'a.txt')
self.bucket.upload_bytes(data, 'b/a-1.csv')
self.bucket.upload_bytes(data, 'b/a-1.txt')
self.bucket.upload_bytes(data, 'b/a-2.csv')
self.bucket.upload_bytes(data, 'b/a-2.txt')
self.bucket.upload_bytes(data, 'b/a-a.csv')
self.bucket.upload_bytes(data, 'b/a-a.txt')
self.bucket.upload_bytes(data, 'b/a.csv')
self.bucket.upload_bytes(data, 'b/a.txt')
expected = [
('a.txt', len(data), 'upload', None),
('b/a-1.txt', len(data), 'upload', None),
('b/a-a.txt', len(data), 'upload', None),
('b/a.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
'*.txt',
recursive=True,
with_wildcard=True,
filters=[Filter.exclude('*-2.txt')],
)
]
self.assertEqual(expected, actual)
expected = [
('b/a-1.csv', len(data), 'upload', None),
('b/a-1.txt', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
'b/?-[1234567890].*',
recursive=True,
with_wildcard=True,
filters=[Filter.exclude('*-2.*')],
)
]
self.assertEqual(expected, actual)
def test_filters_combination(self):
data = b'hello world'
self.bucket.upload_bytes(data, 'a.txt')
self.bucket.upload_bytes(data, 'b/a-1.csv')
self.bucket.upload_bytes(data, 'b/a-1.txt')
expected = [
('a.txt', len(data), 'upload', None),
('b/a-1.csv', len(data), 'upload', None),
]
actual = [
(info.file_name, info.size, info.action, folder)
for (info, folder) in self.bucket_ls(
recursive=True,
filters=[Filter.include('b/*'), Filter.exclude('*.txt'), Filter.include('a.txt')],
)
]
self.assertEqual(expected, actual)
class TestGetFreshState(TestCaseWithBucket):
def test_ok(self):
same_but_different = self.api.get_bucket_by_id(self.bucket.id_)
same_but_different = same_but_different.get_fresh_state()
assert isinstance(same_but_different, Bucket)
assert id(same_but_different) != id(self.bucket)
assert same_but_different.as_dict() == self.bucket.as_dict()
same_but_different = same_but_different.update(bucket_info={'completely': 'new info'})
if apiver_deps.V <= 1:
same_but_different = BucketFactory.from_api_bucket_dict(self.api, same_but_different)
assert same_but_different.as_dict() != self.bucket.as_dict()
refreshed_bucket = self.bucket.get_fresh_state()
assert same_but_different.as_dict() == refreshed_bucket.as_dict()
def test_fail(self):
self.api.delete_bucket(self.bucket)
with pytest.raises(BucketIdNotFound):
self.bucket.get_fresh_state()
class TestListVersions(TestCaseWithBucket):
def test_single_version(self):
data = b'hello world'
a_id = self.bucket.upload_bytes(data, 'a').id_
b_id = self.bucket.upload_bytes(data, 'b').id_
c_id = self.bucket.upload_bytes(data, 'c').id_
expected = [(a_id, 'a', 11, 'upload')]
actual = [
(info.id_, info.file_name, info.size, info.action)
for info in self.bucket.list_file_versions('a')
]
self.assertEqual(expected, actual)
expected = [(b_id, 'b', 11, 'upload')]
actual = [
(info.id_, info.file_name, info.size, info.action)
for info in self.bucket.list_file_versions('b')
]
self.assertEqual(expected, actual)
expected = [(c_id, 'c', 11, 'upload')]
actual = [
(info.id_, info.file_name, info.size, info.action)
for info in self.bucket.list_file_versions('c')
]
self.assertEqual(expected, actual)
def test_multiple_version(self):
a_id1 = self.bucket.upload_bytes(b'first version', 'a').id_
a_id2 = self.bucket.upload_bytes(b'second version', 'a').id_
a_id3 = self.bucket.upload_bytes(b'last version', 'a').id_
expected = [
(a_id3, 'a', 12, 'upload'),
(a_id2, 'a', 14, 'upload'),
(a_id1, 'a', 13, 'upload'),
]
actual = [
(info.id_, info.file_name, info.size, info.action)
for info in self.bucket.list_file_versions('a')
]
self.assertEqual(expected, actual)
def test_ignores_subdirectory(self):
data = b'hello world'
file_id = self.bucket.upload_bytes(data, 'a/b').id_
self.bucket.upload_bytes(data, 'a/b/c')
expected = [(file_id, 'a/b', 11, 'upload')]
actual = [
(info.id_, info.file_name, info.size, info.action)
for info in self.bucket.list_file_versions('a/b')
]
self.assertEqual(expected, actual)
def test_all_versions_in_response(self):
data = b'hello world'
file_id = self.bucket.upload_bytes(data, 'a/b').id_
self.bucket.upload_bytes(data, 'a/b/c')
expected = [(file_id, 'a/b', 11, 'upload')]
actual = [
(info.id_, info.file_name, info.size, info.action)
for info in self.bucket.list_file_versions('a/b', fetch_count=1)
]
self.assertEqual(expected, actual)
def test_bad_fetch_count(self):
try:
# Convert to a list to cause the generator to execute.
list(self.bucket.list_file_versions('a', fetch_count=0))
self.fail('should have raised ValueError')
except ValueError as e:
self.assertEqual('unsupported fetch_count value', str(e))
def test_encryption(self):
data = b'hello world'
a = self.bucket.upload_bytes(data, 'a')
a_id = a.id_
self.assertEqual(a.server_side_encryption, SSE_NONE)
b = self.bucket.upload_bytes(data, 'b', encryption=SSE_B2_AES)
self.assertEqual(b.server_side_encryption, SSE_B2_AES)
b_id = b.id_
# c_id = self.bucket.upload_bytes(data, 'c', encryption=SSE_NONE).id_ # TODO
self.bucket.copy(a_id, 'd', destination_encryption=SSE_B2_AES)
self.bucket.copy(
b_id, 'e', destination_encryption=SSE_C_AES, file_info={}, content_type='text/plain'
)
actual = [info.server_side_encryption for info in self.bucket.list_file_versions('a')][0]
self.assertEqual(SSE_NONE, actual) # bucket default
actual = self.bucket.get_file_info_by_name('a').server_side_encryption
self.assertEqual(SSE_NONE, actual) # bucket default
actual = [info.server_side_encryption for info in self.bucket.list_file_versions('b')][0]
self.assertEqual(SSE_B2_AES, actual) # explicitly requested sse-b2
actual = self.bucket.get_file_info_by_name('b').server_side_encryption
self.assertEqual(SSE_B2_AES, actual) # explicitly requested sse-b2
# actual = [info.server_side_encryption for info in self.bucket.list_file_versions('c')][0]
# self.assertEqual(SSE_NONE, actual) # explicitly requested none
actual = [info.server_side_encryption for info in self.bucket.list_file_versions('d')][0]
self.assertEqual(SSE_B2_AES, actual) # explicitly requested sse-b2
actual = self.bucket.get_file_info_by_name('d').server_side_encryption
self.assertEqual(SSE_B2_AES, actual) # explicitly requested sse-b2
actual = [info.server_side_encryption for info in self.bucket.list_file_versions('e')][0]
self.assertEqual(SSE_C_AES_NO_SECRET, actual) # explicitly requested sse-c
actual = self.bucket.get_file_info_by_name('e').server_side_encryption
self.assertEqual(SSE_C_AES_NO_SECRET, actual) # explicitly requested sse-c
class TestCopyFile(TestCaseWithBucket):
@classmethod
def _copy_function(cls, bucket):
if apiver_deps.V <= 1:
return bucket.copy_file
else:
return bucket.copy
@pytest.mark.apiver(from_ver=2)
def test_copy_big(self):
data = b'HelloWorld' * 100
for i in range(10):
data += bytes(':#' + str(i) + '$' + 'abcdefghijklmnopqrstuvwx' * 4, 'ascii')
file_info = self.bucket.upload_bytes(data, 'file1')
self.bucket.copy(
file_info.id_,
'file2',
min_part_size=200,
max_part_size=400,
)
self._check_file_contents('file2', data)
def test_copy_without_optional_params(self):
file_id = self._make_file()
if apiver_deps.V <= 1:
f = self.bucket.copy_file(file_id, 'hello_new.txt')
assert f['action'] == 'copy'
else:
f = self.bucket.copy(file_id, 'hello_new.txt')
assert f.action == 'copy'
expected = [('hello.txt', 11, 'upload', None), ('hello_new.txt', 11, 'upload', None)]
self.assertBucketContents(expected, '', show_versions=True)
def test_copy_with_range(self):
file_id = self._make_file()
# data = b'hello world'
# 3456789
if apiver_deps.V <= 1:
self.bucket.copy_file(
file_id,
'hello_new.txt',
bytes_range=(3, 9),
) # inclusive, confusingly
else:
self.bucket.copy(file_id, 'hello_new.txt', offset=3, length=7)
self._check_file_contents('hello_new.txt', b'lo worl')
self._check_large_file_sha1('hello_new.txt', None)
expected = [('hello.txt', 11, 'upload', None), ('hello_new.txt', 7, 'upload', None)]
self.assertBucketContents(expected, '', show_versions=True)
@pytest.mark.apiver(to_ver=1)
def test_copy_with_invalid_metadata(self):
file_id = self._make_file()
try:
self.bucket.copy_file(
file_id,
'hello_new.txt',
metadata_directive=MetadataDirectiveMode.COPY,
content_type='application/octet-stream',
)
self.fail('should have raised InvalidMetadataDirective')
except InvalidMetadataDirective as e:
self.assertEqual(
'content_type and file_info should be None when metadata_directive is COPY',
str(e),
)
expected = [('hello.txt', 11, 'upload', None)]
self.assertBucketContents(expected, '', show_versions=True)
@pytest.mark.apiver(to_ver=1)
def test_copy_with_invalid_metadata_replace(self):
file_id = self._make_file()
try:
self.bucket.copy_file(
file_id,
'hello_new.txt',
metadata_directive=MetadataDirectiveMode.REPLACE,
)
self.fail('should have raised InvalidMetadataDirective')
except InvalidMetadataDirective as e:
self.assertEqual(
'content_type cannot be None when metadata_directive is REPLACE',
str(e),
)
expected = [('hello.txt', 11, 'upload', None)]
self.assertBucketContents(expected, '', show_versions=True)
@pytest.mark.apiver(to_ver=1)
def test_copy_with_replace_metadata(self):
file_id = self._make_file()
self.bucket.copy_file(
file_id,
'hello_new.txt',
metadata_directive=MetadataDirectiveMode.REPLACE,
content_type='text/plain',
)
expected = [
('hello.txt', 11, 'upload', 'b2/x-auto', None),
('hello_new.txt', 11, 'upload', 'text/plain', None),
]
actual = [
(info.file_name, info.size, info.action, info.content_type, folder)
for (info, folder) in self.bucket_ls(show_versions=True)
]
self.assertEqual(expected, actual)
def test_copy_with_unsatisfied_range(self):
file_id = self._make_file()
try:
if apiver_deps.V <= 1:
self.bucket.copy_file(
file_id,
'hello_new.txt',
bytes_range=(12, 15),
)
else:
self.bucket.copy(
file_id,
'hello_new.txt',
offset=12,
length=3,
)
self.fail('should have raised UnsatisfiableRange')
except UnsatisfiableRange as e:
self.assertEqual(
'The range in the request is outside the size of the file',
str(e),
)
expected = [('hello.txt', 11, 'upload', None)]
self.assertBucketContents(expected, '', show_versions=True)
def test_copy_with_different_bucket(self):
source_bucket = self.api.create_bucket('source-bucket', 'allPublic')
file_id = self._make_file(source_bucket)
self._copy_function(self.bucket)(file_id, 'hello_new.txt')
def ls(bucket):
return [
(info.file_name, info.size, info.action, folder)
for (info, folder) in bucket_ls(bucket, show_versions=True)
]
expected = [('hello.txt', 11, 'upload', None)]
self.assertEqual(expected, ls(source_bucket))
expected = [('hello_new.txt', 11, 'upload', None)]
self.assertBucketContents(expected, '', show_versions=True)
def test_copy_retention(self):
for data in [self._make_data(self.simulator.MIN_PART_SIZE * 3), b'hello']:
for length in [None, len(data)]:
with self.subTest(real_length=len(data), length=length):
file_id = self.bucket.upload_bytes(data, 'original_file').id_
resulting_file_version = self.bucket.copy(
file_id,
'copied_file',
file_retention=FileRetentionSetting(RetentionMode.COMPLIANCE, 100),
legal_hold=LegalHold.ON,
max_part_size=400,
)
self.assertEqual(
FileRetentionSetting(RetentionMode.COMPLIANCE, 100),
resulting_file_version.file_retention,
)
self.assertEqual(LegalHold.ON, resulting_file_version.legal_hold)
def test_copy_encryption(self):
data = b'hello_world'
a = self.bucket.upload_bytes(data, 'a')
a_id = a.id_
self.assertEqual(a.server_side_encryption, SSE_NONE)
b = self.bucket.upload_bytes(data, 'b', encryption=SSE_B2_AES)
self.assertEqual(b.server_side_encryption, SSE_B2_AES)
b_id = b.id_
c = self.bucket.upload_bytes(data, 'c', encryption=SSE_C_AES)
self.assertEqual(c.server_side_encryption, SSE_C_AES_NO_SECRET)
c_id = c.id_
for length in [None, len(data)]:
for kwargs, expected_encryption in [
(dict(file_id=a_id, destination_encryption=SSE_B2_AES), SSE_B2_AES),
(
dict(
file_id=a_id,
destination_encryption=SSE_C_AES,
file_info={'new': 'value'},
content_type='text/plain',
),
SSE_C_AES_NO_SECRET,
),
(
dict(
file_id=a_id,
destination_encryption=SSE_C_AES,
source_file_info={'old': 'value'},
source_content_type='text/plain',
),
SSE_C_AES_NO_SECRET,
),
(dict(file_id=b_id), SSE_NONE),
(dict(file_id=b_id, source_encryption=SSE_B2_AES), SSE_NONE),
(
dict(
file_id=b_id,
source_encryption=SSE_B2_AES,
destination_encryption=SSE_B2_AES,
),
SSE_B2_AES,
),
(
dict(
file_id=b_id,
source_encryption=SSE_B2_AES,
destination_encryption=SSE_C_AES,
file_info={'new': 'value'},
content_type='text/plain',
),
SSE_C_AES_NO_SECRET,
),
(
dict(
file_id=b_id,
source_encryption=SSE_B2_AES,
destination_encryption=SSE_C_AES,
source_file_info={'old': 'value'},
source_content_type='text/plain',
),
SSE_C_AES_NO_SECRET,
),
(
dict(
file_id=c_id,
source_encryption=SSE_C_AES,
file_info={'new': 'value'},
content_type='text/plain',
),
SSE_NONE,
),
(
dict(
file_id=c_id,
source_encryption=SSE_C_AES,
source_file_info={'old': 'value'},
source_content_type='text/plain',
),
SSE_NONE,
),
(
dict(
file_id=c_id, source_encryption=SSE_C_AES, destination_encryption=SSE_C_AES
),
SSE_C_AES_NO_SECRET,
),
(
dict(
file_id=c_id,
source_encryption=SSE_C_AES,
destination_encryption=SSE_B2_AES,
source_file_info={'old': 'value'},
source_content_type='text/plain',
),
SSE_B2_AES,
),
(
dict(
file_id=c_id,
source_encryption=SSE_C_AES,
destination_encryption=SSE_B2_AES,
file_info={'new': 'value'},
content_type='text/plain',
),
SSE_B2_AES,
),
(
dict(
file_id=c_id,
source_encryption=SSE_C_AES,
destination_encryption=SSE_C_AES_2,
source_file_info={'old': 'value'},
source_content_type='text/plain',
),
SSE_C_AES_2_NO_SECRET,
),
(
dict(
file_id=c_id,
source_encryption=SSE_C_AES,
destination_encryption=SSE_C_AES_2,
file_info={'new': 'value'},
content_type='text/plain',
),
SSE_C_AES_2_NO_SECRET,
),
]:
with self.subTest(kwargs=kwargs, length=length, data=data):
file_info = self.bucket.copy(**kwargs, new_file_name='new_file', length=length)
self.assertTrue(isinstance(file_info, VFileVersionInfo))
self.assertEqual(file_info.server_side_encryption, expected_encryption)
def _make_file(self, bucket=None):
data = b'hello world'
actual_bucket = bucket or self.bucket
return actual_bucket.upload_bytes(data, 'hello.txt').id_
class TestUpdate(TestCaseWithBucket):
def test_update(self):
result = self.bucket.update(
bucket_type='allPrivate',
bucket_info={'info': 'o'},
cors_rules={'andrea': 'corr'},
lifecycle_rules=[{'fileNamePrefix': 'is_life'}],
default_server_side_encryption=SSE_B2_AES,
default_retention=BucketRetentionSetting(
RetentionMode.COMPLIANCE, RetentionPeriod(years=7)
),
replication=REPLICATION,
)
if apiver_deps.V <= 1:
self.maxDiff = None
with suppress(KeyError):
del result['replicationConfiguration']
self.assertEqual(
{
'accountId': 'account-0',
'bucketId': 'bucket_0',
'bucketInfo': {'info': 'o'},
'bucketName': 'my-bucket',
'bucketType': 'allPrivate',
'corsRules': {'andrea': 'corr'},
'defaultServerSideEncryption': {
'isClientAuthorizedToRead': True,
'value': {'algorithm': 'AES256', 'mode': 'SSE-B2'},
},
'fileLockConfiguration': {
'isClientAuthorizedToRead': True,
'value': {
'defaultRetention': {
'mode': 'compliance',
'period': {'unit': 'years', 'duration': 7},
},
'isFileLockEnabled': None,
},
},
'lifecycleRules': [{'fileNamePrefix': 'is_life'}],
'options': set(),
'revision': 2,
},
result,
)
else:
self.assertIsInstance(result, Bucket)
assertions_mapping = {
'id_': self.bucket.id_,
'name': self.bucket.name,
'type_': 'allPrivate',
'bucket_info': {'info': 'o'},
'cors_rules': {'andrea': 'corr'},
'lifecycle_rules': [{'fileNamePrefix': 'is_life'}],
'options_set': set(),
'default_server_side_encryption': SSE_B2_AES,
'default_retention': BucketRetentionSetting(
RetentionMode.COMPLIANCE, RetentionPeriod(years=7)
),
'replication': REPLICATION,
}
for attr_name, attr_value in assertions_mapping.items():
self.maxDiff = None
print('---', attr_name, '---')
print(attr_value)
print('?=?')
print(getattr(result, attr_name))
self.assertEqual(attr_value, getattr(result, attr_name), attr_name)
@pytest.mark.apiver(from_ver=2)
def test_empty_replication(self):
self.bucket.update(
replication=ReplicationConfiguration(
rules=[],
source_to_destination_key_mapping={},
),
)
def test_update_if_revision_is(self):
current_revision = self.bucket.revision
self.bucket.update(
lifecycle_rules=[{'fileNamePrefix': 'is_life'}],
if_revision_is=current_revision,
)
updated_bucket = self.api.get_bucket_by_name(self.bucket.name)
self.assertEqual([{'fileNamePrefix': 'is_life'}], updated_bucket.lifecycle_rules)
try:
self.bucket.update(
lifecycle_rules=[{'fileNamePrefix': 'is_life'}],
if_revision_is=current_revision, # this is now the old revision
)
except Exception:
pass
not_updated_bucket = self.api.get_bucket_by_name(self.bucket.name)
self.assertEqual([{'fileNamePrefix': 'is_life'}], not_updated_bucket.lifecycle_rules)
def test_is_file_lock_enabled(self):
assert not self.bucket.is_file_lock_enabled
# set is_file_lock_enabled to False when it's already false
self.bucket.update(is_file_lock_enabled=False)
updated_bucket = self.api.get_bucket_by_name(self.bucket.name)
assert not updated_bucket.is_file_lock_enabled
# sunny day scenario
self.bucket.update(is_file_lock_enabled=True)
updated_bucket = self.api.get_bucket_by_name(self.bucket.name)
assert updated_bucket.is_file_lock_enabled
assert self.simulator.bucket_name_to_bucket[self.bucket.name].is_file_lock_enabled
# attempt to clear is_file_lock_enabled
with pytest.raises(DisablingFileLockNotSupported):
self.bucket.update(is_file_lock_enabled=False)
updated_bucket = self.api.get_bucket_by_name(self.bucket.name)
assert updated_bucket.is_file_lock_enabled
# attempt to set is_file_lock_enabled when it's already set
self.bucket.update(is_file_lock_enabled=True)
updated_bucket = self.api.get_bucket_by_name(self.bucket.name)
assert updated_bucket.is_file_lock_enabled
@pytest.mark.apiver(from_ver=2)
def test_is_file_lock_enabled_source_replication(self):
assert not self.bucket.is_file_lock_enabled
# attempt to set is_file_lock_enabled with source replication enabled
self.bucket.update(replication=REPLICATION)
with pytest.raises(SourceReplicationConflict):
self.bucket.update(is_file_lock_enabled=True)
updated_bucket = self.bucket.update(replication=REPLICATION)
assert not updated_bucket.is_file_lock_enabled
# sunny day scenario
self.bucket.update(
replication=ReplicationConfiguration(
rules=[],
source_to_destination_key_mapping={},
)
)
self.bucket.update(is_file_lock_enabled=True)
updated_bucket = self.api.get_bucket_by_name(self.bucket.name)
assert updated_bucket.is_file_lock_enabled
assert self.simulator.bucket_name_to_bucket[self.bucket.name].is_file_lock_enabled
class TestUpload(TestCaseWithBucket):
def test_upload_bytes(self):
data = b'hello world'
file_info = self.bucket.upload_bytes(data, 'file1')
self.assertTrue(isinstance(file_info, VFileVersionInfo))
self._check_file_contents('file1', data)
self._check_large_file_sha1('file1', None)
self.assertEqual(file_info.server_side_encryption, SSE_NONE)
def test_upload_bytes_file_retention(self):
data = b'hello world'
retention = FileRetentionSetting(RetentionMode.COMPLIANCE, 150)
file_info = self.bucket.upload_bytes(
data, 'file1', file_retention=retention, legal_hold=LegalHold.ON
)
self._check_file_contents('file1', data)
self._check_large_file_sha1('file1', None)
self.assertEqual(retention, file_info.file_retention)
self.assertEqual(LegalHold.ON, file_info.legal_hold)
def test_upload_bytes_sse_b2(self):
data = b'hello world'
file_info = self.bucket.upload_bytes(data, 'file1', encryption=SSE_B2_AES)
self.assertTrue(isinstance(file_info, VFileVersionInfo))
self.assertEqual(file_info.server_side_encryption, SSE_B2_AES)
def test_upload_bytes_sse_c(self):
data = b'hello world'
file_info = self.bucket.upload_bytes(data, 'file1', encryption=SSE_C_AES)
self.assertTrue(isinstance(file_info, VFileVersionInfo))
self.assertEqual(SSE_C_AES_NO_SECRET, file_info.server_side_encryption)
def test_upload_local_file_sse_b2(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = b'hello world'
write_file(path, data)
file_info = self.bucket.upload_local_file(path, 'file1', encryption=SSE_B2_AES)
self.assertTrue(isinstance(file_info, VFileVersionInfo))
self.assertEqual(file_info.server_side_encryption, SSE_B2_AES)
self._check_file_contents('file1', data)
def test_upload_local_file_sse_c(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = b'hello world'
write_file(path, data)
file_info = self.bucket.upload_local_file(path, 'file1', encryption=SSE_C_AES)
self.assertTrue(isinstance(file_info, VFileVersionInfo))
self.assertEqual(SSE_C_AES_NO_SECRET, file_info.server_side_encryption)
self._check_file_contents('file1', data)
def test_upload_local_file_retention(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = b'hello world'
write_file(path, data)
retention = FileRetentionSetting(RetentionMode.COMPLIANCE, 150)
file_info = self.bucket.upload_local_file(
path,
'file1',
encryption=SSE_C_AES,
file_retention=retention,
legal_hold=LegalHold.ON,
)
self._check_file_contents('file1', data)
self.assertEqual(retention, file_info.file_retention)
self.assertEqual(LegalHold.ON, file_info.legal_hold)
def test_upload_local_file_cache_control(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = b'hello world'
write_file(path, data)
file_info = self.bucket.upload_local_file(
path, 'file1', encryption=SSE_C_AES, cache_control='max-age=3600'
)
self._check_file_contents('file1', data)
self.assertEqual(file_info.cache_control, 'max-age=3600')
def test_upload_bytes_cache_control(self):
data = b'hello world'
file_info = self.bucket.upload_bytes(
data, 'file1', encryption=SSE_C_AES, cache_control='max-age=3600'
)
self.assertTrue(isinstance(file_info, VFileVersionInfo))
self.assertEqual(file_info.cache_control, 'max-age=3600')
def test_upload_bytes_progress(self):
data = b'hello world'
progress_listener = StubProgressListener()
self.bucket.upload_bytes(data, 'file1', progress_listener=progress_listener)
self.assertTrue(progress_listener.is_valid())
def test_upload_local_file(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = b'hello world'
write_file(path, data)
file_info = self.bucket.upload_local_file(path, 'file1')
self._check_file_contents('file1', data)
self._check_large_file_sha1('file1', None)
self.assertTrue(isinstance(file_info, VFileVersionInfo))
self.assertEqual(file_info.server_side_encryption, SSE_NONE)
print(file_info.as_dict())
self.assertEqual(file_info.as_dict()['serverSideEncryption'], {'mode': 'none'})
@pytest.mark.apiver(from_ver=2)
def test_upload_local_file_incremental(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
small_data = b'Hello world!'
big_data = self._make_data(self.simulator.MIN_PART_SIZE * 3)
DATA = [
big_data,
big_data + small_data,
big_data + small_data + big_data,
small_data,
small_data + small_data,
small_data.upper() + small_data,
]
last_data = None
for data in DATA:
# figure out if this particular upload should be incremental
should_be_incremental = (
last_data
and data.startswith(last_data)
and len(last_data) >= self.simulator.MIN_PART_SIZE
)
# if it's incremental, then there should be two sources concatenated, otherwise one
expected_source_count = 2 if should_be_incremental else 1
# is the result file expected to be a large file
expected_large_file = (
should_be_incremental or len(data) > self.simulator.MIN_PART_SIZE
)
expected_parts_sizes = (
[len(last_data), len(data) - len(last_data)]
if should_be_incremental
else [len(data)]
)
write_file(path, data)
with mock.patch.object(
self.bucket, 'concatenate', wraps=self.bucket.concatenate
) as mocked_concatenate:
self.bucket.upload_local_file(path, 'file1', upload_mode=UploadMode.INCREMENTAL)
mocked_concatenate.assert_called_once()
call = mocked_concatenate.mock_calls[0]
# TODO: use .args[0] instead of [1][0] when we drop Python 3.7
assert len(call[1][0]) == expected_source_count
# Ensuring that the part sizes make sense.
parts_sizes = [entry.get_content_length() for entry in call[1][0]]
assert parts_sizes == expected_parts_sizes
if should_be_incremental:
# Ensuring that the first part is a copy.
# Order of indices: pick arguments, pick first argument, first element of the first argument.
self.assertIsInstance(call[1][0][0], CopySource)
self._check_file_contents('file1', data)
if expected_large_file:
self._check_large_file_sha1('file1', hex_sha1_of_bytes(data))
last_data = data
@pytest.mark.skipif(platform.system() == 'Windows', reason='no os.mkfifo() on Windows')
def test_upload_fifo(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
os.mkfifo(path)
with self.assertRaises(InvalidUploadSource):
self.bucket.upload_local_file(path, 'file1')
@pytest.mark.skipif(platform.system() == 'Windows', reason='no os.symlink() on Windows')
def test_upload_dead_symlink(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
os.symlink('non-existing', path)
with self.assertRaises(InvalidUploadSource):
self.bucket.upload_local_file(path, 'file1')
def test_upload_local_wrong_sha(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file123')
data = b'hello world'
write_file(path, data)
with self.assertRaises(FileSha1Mismatch):
self.bucket.upload_local_file(
path,
'file123',
sha1_sum='abcd' * 10,
)
def test_upload_one_retryable_error(self):
self.simulator.set_upload_errors([CanRetry(True)])
data = b'hello world'
self.bucket.upload_bytes(data, 'file1')
def test_upload_timeout(self):
self.simulator.set_upload_errors([B2RequestTimeoutDuringUpload()])
data = b'hello world'
self.bucket.upload_bytes(data, 'file1')
def test_upload_file_one_fatal_error(self):
self.simulator.set_upload_errors([CanRetry(False)])
data = b'hello world'
with self.assertRaises(CanRetry):
self.bucket.upload_bytes(data, 'file1')
def test_upload_file_too_many_retryable_errors(self):
self.simulator.set_upload_errors([CanRetry(True)] * 6)
data = b'hello world'
with self.assertRaises(MaxRetriesExceeded):
self.bucket.upload_bytes(data, 'file1')
def test_upload_large(self):
data = self._make_data(self.simulator.MIN_PART_SIZE * 3)
progress_listener = StubProgressListener()
self.bucket.upload_bytes(data, 'file1', progress_listener=progress_listener)
self._check_file_contents('file1', data)
self._check_large_file_sha1('file1', hex_sha1_of_bytes(data))
self.assertTrue(progress_listener.is_valid())
def test_upload_local_large_file(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = self._make_data(self.simulator.MIN_PART_SIZE * 3)
write_file(path, data)
self.bucket.upload_local_file(path, 'file1')
self._check_file_contents('file1', data)
self._check_large_file_sha1('file1', hex_sha1_of_bytes(data))
def test_upload_local_large_file_over_10k_parts(self):
pytest.skip('this test is really slow and impedes development') # TODO: fix it
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = self._make_data(self.simulator.MIN_PART_SIZE * 10001) # 2MB on the simulator
write_file(path, data)
self.bucket.upload_local_file(path, 'file1')
self._check_file_contents('file1', data)
self._check_large_file_sha1('file1', hex_sha1_of_bytes(data))
def test_create_file_over_10k_parts(self):
data = b'hello world' * 20000
f1_id = self.bucket.upload_bytes(data, 'f1').id_
with tempfile.TemporaryDirectory():
write_intents = [
WriteIntent(
CopySource(f1_id, length=len(data), offset=0),
destination_offset=0,
)
] * 10
created_file = self.bucket.create_file(
write_intents,
file_name='created_file',
min_part_size=10,
max_part_size=200,
)
self.assertIsInstance(created_file, VFileVersionInfo)
actual = (
created_file.id_,
created_file.file_name,
created_file.size,
created_file.server_side_encryption,
)
expected = ('9998', 'created_file', len(data), SSE_NONE)
self.assertEqual(expected, actual)
def test_upload_large_resume(self):
part_size = self.simulator.MIN_PART_SIZE
data = self._make_data(part_size * 3)
large_file_id = self._start_large_file('file1')
self._upload_part(large_file_id, 1, data[:part_size])
progress_listener = StubProgressListener()
file_info = self.bucket.upload_bytes(data, 'file1', progress_listener=progress_listener)
self.assertEqual(large_file_id, file_info.id_)
self._check_file_contents('file1', data)
self.assertTrue(progress_listener.is_valid())
def test_upload_large_resume_no_parts(self):
part_size = self.simulator.MIN_PART_SIZE
data = self._make_data(part_size * 3)
large_file_id = self._start_large_file('file1')
progress_listener = StubProgressListener()
file_info = self.bucket.upload_bytes(data, 'file1', progress_listener=progress_listener)
self.assertEqual(large_file_id, file_info.id_)
self._check_file_contents('file1', data)
self.assertTrue(progress_listener.is_valid())
def test_upload_large_resume_all_parts_there(self):
part_size = self.simulator.MIN_PART_SIZE
data = self._make_data(part_size * 3)
large_file_id = self._start_large_file('file1')
self._upload_part(large_file_id, 1, data[:part_size])
self._upload_part(large_file_id, 2, data[part_size : 2 * part_size])
self._upload_part(large_file_id, 3, data[2 * part_size :])
progress_listener = StubProgressListener()
file_info = self.bucket.upload_bytes(data, 'file1', progress_listener=progress_listener)
self.assertEqual(large_file_id, file_info.id_)
self._check_file_contents('file1', data)
self.assertTrue(progress_listener.is_valid())
def test_upload_large_resume_part_does_not_match(self):
part_size = self.simulator.MIN_PART_SIZE
data = self._make_data(part_size * 3)
large_file_id = self._start_large_file('file1')
self._upload_part(large_file_id, 3, data[:part_size]) # wrong part number for this data
progress_listener = StubProgressListener()
file_info = self.bucket.upload_bytes(data, 'file1', progress_listener=progress_listener)
self.assertNotEqual(large_file_id, file_info.id_)
self._check_file_contents('file1', data)
self.assertTrue(progress_listener.is_valid())
def test_upload_large_resume_wrong_part_size(self):
part_size = self.simulator.MIN_PART_SIZE
data = self._make_data(part_size * 3)
large_file_id = self._start_large_file('file1')
self._upload_part(large_file_id, 1, data[: part_size + 1]) # one byte to much
progress_listener = StubProgressListener()
file_info = self.bucket.upload_bytes(data, 'file1', progress_listener=progress_listener)
self.assertNotEqual(large_file_id, file_info.id_)
self._check_file_contents('file1', data)
self.assertTrue(progress_listener.is_valid())
def test_upload_large_resume_file_info(self):
part_size = self.simulator.MIN_PART_SIZE
data = self._make_data(part_size * 3)
large_file_id = self._start_large_file('file1', {'property': 'value1'})
self._upload_part(large_file_id, 1, data[:part_size])
progress_listener = StubProgressListener()
file_info = self.bucket.upload_bytes(
data, 'file1', progress_listener=progress_listener, file_info={'property': 'value1'}
)
self.assertEqual(large_file_id, file_info.id_)
self._check_file_contents('file1', data)
self.assertTrue(progress_listener.is_valid())
def test_upload_large_resume_file_info_does_not_match(self):
part_size = self.simulator.MIN_PART_SIZE
data = self._make_data(part_size * 3)
large_file_id = self._start_large_file('file1', {'property': 'value1'})
self._upload_part(large_file_id, 1, data[:part_size])
progress_listener = StubProgressListener()
file_info = self.bucket.upload_bytes(
data, 'file1', progress_listener=progress_listener, file_info={'property': 'value2'}
)
self.assertNotEqual(large_file_id, file_info.id_)
self._check_file_contents('file1', data)
self.assertTrue(progress_listener.is_valid())
def test_upload_large_file_with_restricted_api_key(self):
self.simulator.key_id_to_key[self.account_id].name_prefix_or_none = 'path/to'
part_size = self.simulator.MIN_PART_SIZE
data = self._make_data(part_size * 3)
progress_listener = StubProgressListener()
file_info = self.bucket.upload_bytes(
data, 'path/to/file1', progress_listener=progress_listener
)
self.assertEqual(len(data), file_info.size)
self._check_file_contents('path/to/file1', data)
self.assertTrue(progress_listener.is_valid())
def test_upload_stream(self):
data = self._make_data(self.simulator.MIN_PART_SIZE * 3)
self.bucket.upload_unbound_stream(io.BytesIO(data), 'file1')
self._check_file_contents('file1', data)
def test_upload_stream_from_file(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = self._make_data(self.simulator.MIN_PART_SIZE * 3)
write_file(path, data)
with open(path, 'rb') as f:
self.bucket.upload_unbound_stream(f, 'file1')
self._check_file_contents('file1', data)
def _start_large_file(self, file_name, file_info=None):
if file_info is None:
file_info = {}
large_file_info = self.simulator.start_large_file(
self.api_url, self.account_auth_token, self.bucket_id, file_name, None, file_info
)
return large_file_info['fileId']
def _upload_part(self, large_file_id, part_number, part_data):
part_stream = BytesIO(part_data)
upload_info = self.simulator.get_upload_part_url(
self.api_url, self.account_auth_token, large_file_id
)
self.simulator.upload_part(
upload_info['uploadUrl'],
upload_info['authorizationToken'],
part_number,
len(part_data),
hex_sha1_of_bytes(part_data),
part_stream,
)
class TestBucketRaisingSession(TestUpload):
def get_api(self):
class B2SessionRaising(B2Session):
def __init__(self, *args, **kwargs):
self._raise_count = 0
self._raise_until = 1
super().__init__(*args, **kwargs)
def upload_part(
self,
file_id,
part_number,
content_length,
sha1_sum,
input_stream,
server_side_encryption=None,
):
if self._raise_count < self._raise_until:
self._raise_count += 1
raise B2ConnectionError()
return super().upload_part(
file_id,
part_number,
content_length,
sha1_sum,
input_stream,
server_side_encryption,
)
class B2ApiPatched(B2Api):
SESSION_CLASS = staticmethod(B2SessionRaising)
self.api = B2ApiPatched(
self.account_info,
cache=self.CACHE_CLASS(),
api_config=B2HttpApiConfig(_raw_api_class=self.RAW_SIMULATOR_CLASS),
)
return self.api
def test_upload_chunk_retry_stream_open(self):
assert self.api.session._raise_count == 0
data = self._make_data(self.simulator.MIN_PART_SIZE * 3)
self.bucket.upload_unbound_stream(io.BytesIO(data), 'file1')
self._check_file_contents('file1', data)
assert self.api.session._raise_count == 1
def test_upload_chunk_stream_guard_closes(self):
data = self._make_data(self.simulator.MIN_PART_SIZE * 3)
large_file_upload_state = mock.MagicMock()
large_file_upload_state.has_error.return_value = False
class TrackedUploadSourceBytes(UploadSourceBytes):
def __init__(self, *args, **kwargs):
self._close_called = 0
super().__init__(*args, **kwargs)
def open(self):
class TrackedBytesIO(io.BytesIO):
def __init__(self, parent, *args, **kwargs):
self._parent = parent
super().__init__(*args, **kwargs)
def close(self):
self._parent._close_called += 1
return super().close()
return TrackedBytesIO(self, self.data_bytes)
data_source = TrackedUploadSourceBytes(data)
assert data_source._close_called == 0
file_id = self._start_large_file('file1')
self.api.services.upload_manager.upload_part(
self.bucket_id, file_id, data_source, 1, large_file_upload_state
).result()
# one retry means two potential callback calls, but we want one only
assert data_source._close_called == 1
class TestConcatenate(TestCaseWithBucket):
def _create_remote(self, sources, file_name, encryption=None):
return self.bucket.concatenate(sources, file_name=file_name, encryption=encryption)
def test_create_remote(self):
data = b'hello world'
f1_id = self.bucket.upload_bytes(data, 'f1').id_
f2_id = self.bucket.upload_bytes(data, 'f1').id_
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file')
write_file(path, data)
created_file = self._create_remote(
[
CopySource(f1_id, length=len(data), offset=0),
UploadSourceLocalFile(path),
CopySource(f2_id, length=len(data), offset=0),
],
file_name='created_file',
)
self.assertIsInstance(created_file, VFileVersionInfo)
actual = (
created_file.id_,
created_file.file_name,
created_file.size,
created_file.server_side_encryption,
)
expected = ('9997', 'created_file', 33, SSE_NONE)
self.assertEqual(expected, actual)
def test_create_remote_encryption(self):
for data in [b'hello_world', self._make_data(self.simulator.MIN_PART_SIZE * 3)]:
f1_id = self.bucket.upload_bytes(data, 'f1', encryption=SSE_C_AES).id_
f2_id = self.bucket.upload_bytes(data, 'f1', encryption=SSE_C_AES_2).id_
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file')
write_file(path, data)
created_file = self._create_remote(
[
CopySource(f1_id, length=len(data), offset=0, encryption=SSE_C_AES),
UploadSourceLocalFile(path),
CopySource(f2_id, length=len(data), offset=0, encryption=SSE_C_AES_2),
],
file_name=f'created_file_{len(data)}',
encryption=SSE_C_AES,
)
self.assertIsInstance(created_file, VFileVersionInfo)
actual = (
created_file.id_,
created_file.file_name,
created_file.size,
created_file.server_side_encryption,
)
expected = (
mock.ANY,
f'created_file_{len(data)}',
mock.ANY, # FIXME: this should be equal to len(data) * 3,
# but there is a problem in the simulator/test code somewhere
SSE_C_AES_NO_SECRET,
)
self.assertEqual(expected, actual)
class TestCreateFile(TestConcatenate):
def _create_remote(self, sources, file_name, encryption=None):
return self.bucket.create_file(
[wi for wi in WriteIntent.wrap_sources_iterator(sources)],
file_name=file_name,
encryption=encryption,
)
class TestConcatenateStream(TestConcatenate):
def _create_remote(self, sources, file_name, encryption=None):
return self.bucket.concatenate_stream(sources, file_name=file_name, encryption=encryption)
class TestCreateFileStream(TestConcatenate):
def _create_remote(self, sources, file_name, encryption=None):
return self.bucket.create_file_stream(
[wi for wi in WriteIntent.wrap_sources_iterator(sources)],
file_name=file_name,
encryption=encryption,
)
class TestCustomTimestamp(TestCaseWithBucket):
def test_custom_timestamp(self):
data = b'hello world'
# upload
self.bucket.upload_bytes(data, 'file0', custom_upload_timestamp=0)
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
write_file(path, data)
self.bucket.upload_local_file(path, 'file1', custom_upload_timestamp=1)
upload_source = UploadSourceBytes(data)
self.bucket.upload(upload_source, 'file2', custom_upload_timestamp=2)
self.bucket.upload_unbound_stream(io.BytesIO(data), 'file3', custom_upload_timestamp=3)
# concatenate
self.bucket.concatenate([upload_source], 'file4', custom_upload_timestamp=4)
self.bucket.concatenate_stream([upload_source], 'file5', custom_upload_timestamp=5)
# create_file
self.bucket.create_file(
[WriteIntent(upload_source, destination_offset=0)], 'file6', custom_upload_timestamp=6
)
self.bucket.create_file_stream(
[WriteIntent(upload_source, destination_offset=0)], 'file7', custom_upload_timestamp=7
)
def ls(bucket):
return [(info.file_name, info.upload_timestamp) for (info, folder) in bucket_ls(bucket)]
expected = [
('file0', 0),
('file1', 1),
('file2', 2),
('file3', 3),
('file4', 4),
('file5', 5),
('file6', 6),
('file7', 7),
]
self.assertEqual(ls(self.bucket), expected)
class DownloadTestsBase:
DATA = NotImplemented
def setUp(self):
super().setUp()
self.file_version = self.bucket.upload_bytes(self.DATA.encode(), 'file1')
self.encrypted_file_version = self.bucket.upload_bytes(
self.DATA.encode(), 'enc_file1', encryption=SSE_C_AES
)
self.bytes_io = io.BytesIO()
if apiver_deps.V <= 1:
self.download_dest = DownloadDestBytes()
else:
self.download_dest = None
self.progress_listener = StubProgressListener()
def _verify(self, expected_result, check_progress_listener=True):
self._assert_downloaded_data(expected_result)
if check_progress_listener:
valid, reason = self.progress_listener.is_valid_reason(
check_progress=False,
check_monotonic_progress=True,
)
assert valid, reason
def _assert_downloaded_data(self, expected_result):
if apiver_deps.V <= 1:
assert self.download_dest.get_bytes_written() == expected_result.encode()
else:
assert self.bytes_io.getvalue() == expected_result.encode()
def download_file_by_id(self, file_id, v1_download_dest=None, v2_file=None, **kwargs):
if apiver_deps.V <= 1:
self.bucket.download_file_by_id(
file_id, v1_download_dest or self.download_dest, **kwargs
)
else:
self.bucket.download_file_by_id(file_id, **kwargs).save(v2_file or self.bytes_io)
def download_file_by_name(self, file_name, download_dest=None, **kwargs):
if apiver_deps.V <= 1:
self.bucket.download_file_by_name(
file_name, download_dest or self.download_dest, **kwargs
)
else:
self.bucket.download_file_by_name(file_name, **kwargs).save(self.bytes_io)
class TestDownloadException(DownloadTestsBase, TestCaseWithBucket):
DATA = 'some data'
def test_download_file_by_name(self):
if apiver_deps.V <= 1:
exception_class = AssertionError
else:
exception_class = ValueError
with mock.patch.object(self.bucket.api.services.download_manager, 'strategies', new=[]):
with pytest.raises(exception_class) as exc_info:
self.download_file_by_name(self.file_version.file_name)
assert str(exc_info.value) == 'no strategy suitable for download was found!'
class DownloadTests(DownloadTestsBase):
DATA = 'abcdefghijklmnopqrs'
def test_v2_return_types(self):
download_kwargs = {
'range_': (7, 18),
'encryption': SSE_C_AES,
'progress_listener': self.progress_listener,
}
file_version = self.bucket.upload_bytes(
self.DATA.encode(), 'enc_file2', encryption=SSE_C_AES
)
other_properties = {
'download_version': DownloadVersion(
api=self.api,
id_=file_version.id_,
file_name=file_version.file_name,
size=len(self.DATA),
content_type=file_version.content_type,
content_sha1=file_version.content_sha1,
file_info=file_version.file_info,
upload_timestamp=file_version.upload_timestamp,
server_side_encryption=file_version.server_side_encryption,
range_=Range(7, 18),
content_disposition=None,
content_length=12,
content_language=None,
expires=None,
cache_control=None,
content_encoding=None,
file_retention=file_version.file_retention,
legal_hold=file_version.legal_hold,
),
}
ret = self.bucket.download_file_by_id(file_version.id_, **download_kwargs)
assert isinstance(ret, DownloadedFile), type(ret)
for attr_name, expected_value in {**download_kwargs, **other_properties}.items():
assert getattr(ret, attr_name) == expected_value, attr_name
if apiver_deps.V >= 2:
ret = self.bucket.download_file_by_name(file_version.file_name, **download_kwargs)
assert isinstance(ret, DownloadedFile), type(ret)
for attr_name, expected_value in {**download_kwargs, **other_properties}.items():
assert getattr(ret, attr_name) == expected_value, attr_name
ret = file_version.download(**download_kwargs)
assert isinstance(ret, DownloadedFile), type(ret)
for attr_name, expected_value in {**download_kwargs, **other_properties}.items():
assert getattr(ret, attr_name) == expected_value, attr_name
@pytest.mark.apiver(to_ver=1)
def test_v1_return_types(self):
expected = {
'contentLength': 19,
'contentSha1': '893e69ff0109f3459c4243013b3de8b12b41a30e',
'contentType': 'b2/x-auto',
'fileId': '9999',
'fileInfo': {},
'fileName': 'file1',
}
ret = self.bucket.download_file_by_id(self.file_version.id_, self.download_dest)
assert ret == expected
ret = self.bucket.download_file_by_name(self.file_version.file_name, self.download_dest)
assert ret == expected
def test_download_file_version(self):
self.file_version.download().save(self.bytes_io)
assert self.bytes_io.getvalue() == self.DATA.encode()
# self._verify performs different checks based on apiver,
# but this is a new feature so it works the same on v2, v1 and v0
def test_download_by_id_no_progress(self):
self.download_file_by_id(self.file_version.id_)
self._verify(self.DATA, check_progress_listener=False)
def test_download_by_name_no_progress(self):
self.download_file_by_name('file1')
self._verify(self.DATA, check_progress_listener=False)
def test_download_by_name_progress(self):
self.download_file_by_name('file1', progress_listener=self.progress_listener)
self._verify(self.DATA)
def test_download_by_id_progress(self):
self.download_file_by_id(self.file_version.id_, progress_listener=self.progress_listener)
self._verify(self.DATA)
def test_download_by_id_progress_partial(self):
self.download_file_by_id(
self.file_version.id_, progress_listener=self.progress_listener, range_=(3, 9)
)
self._verify('defghij')
def test_download_by_id_progress_exact_range(self):
self.download_file_by_id(
self.file_version.id_, progress_listener=self.progress_listener, range_=(0, 18)
)
self._verify(self.DATA)
def test_download_by_id_progress_range_one_off(self):
with self.assertRaises(
InvalidRange,
msg='A range of 0-19 was requested (size of 20), but cloud could only serve 19 of that',
):
self.download_file_by_id(
self.file_version.id_,
progress_listener=self.progress_listener,
range_=(0, 19),
)
@pytest.mark.apiver(to_ver=1)
def test_download_by_id_progress_partial_inplace_overwrite_v1(self):
# LOCAL is
# 12345678901234567890
#
# and then:
#
# abcdefghijklmnopqrs
# |||||||
# |||||||
# vvvvvvv
#
# 123defghij1234567890
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file2')
download_dest = PreSeekedDownloadDest(seek_target=3, local_file_path=path)
data = b'12345678901234567890'
write_file(path, data)
self.download_file_by_id(
self.file_version.id_,
download_dest,
progress_listener=self.progress_listener,
range_=(3, 9),
)
self._check_local_file_contents(path, b'123defghij1234567890')
@pytest.mark.apiver(from_ver=2)
def test_download_by_id_progress_partial_inplace_overwrite_v2(self):
# LOCAL is
# 12345678901234567890
#
# and then:
#
# abcdefghijklmnopqrs
# |||||||
# |||||||
# vvvvvvv
#
# 123defghij1234567890
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file2')
data = b'12345678901234567890'
write_file(path, data)
with open(path, 'rb+') as file:
file.seek(3)
self.download_file_by_id(
self.file_version.id_,
v2_file=file,
progress_listener=self.progress_listener,
range_=(3, 9),
)
self._check_local_file_contents(path, b'123defghij1234567890')
@pytest.mark.apiver(from_ver=2)
def test_download_update_mtime_v2(self):
with tempfile.TemporaryDirectory() as d:
file_version = self.bucket.upload_bytes(
self.DATA.encode(), 'file1', file_info={'src_last_modified_millis': '1000'}
)
path = os.path.join(d, 'file2')
self.bucket.download_file_by_id(file_version.id_).save_to(path)
assert pytest.approx(1, rel=0.001) == os.path.getmtime(path)
@pytest.mark.apiver(to_ver=1)
def test_download_by_id_progress_partial_shifted_overwrite_v1(self):
# LOCAL is
# 12345678901234567890
#
# and then:
#
# abcdefghijklmnopqrs
# |||||||
# \\\\\\\
# \\\\\\\
# \\\\\\\
# \\\\\\\
# \\\\\\\
# |||||||
# vvvvvvv
#
# 1234567defghij567890
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file2')
download_dest = PreSeekedDownloadDest(seek_target=7, local_file_path=path)
data = b'12345678901234567890'
write_file(path, data)
self.download_file_by_id(
self.file_version.id_,
download_dest,
progress_listener=self.progress_listener,
range_=(3, 9),
)
self._check_local_file_contents(path, b'1234567defghij567890')
@pytest.mark.apiver(from_ver=2)
def test_download_by_id_progress_partial_shifted_overwrite_v2(self):
# LOCAL is
# 12345678901234567890
#
# and then:
#
# abcdefghijklmnopqrs
# |||||||
# \\\\\\\
# \\\\\\\
# \\\\\\\
# \\\\\\\
# \\\\\\\
# |||||||
# vvvvvvv
#
# 1234567defghij567890
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file2')
data = b'12345678901234567890'
write_file(path, data)
with open(path, 'rb+') as file:
file.seek(7)
self.download_file_by_id(
self.file_version.id_,
v2_file=file,
progress_listener=self.progress_listener,
range_=(3, 9),
)
self._check_local_file_contents(path, b'1234567defghij567890')
def test_download_by_id_no_progress_encryption(self):
self.download_file_by_id(self.encrypted_file_version.id_, encryption=SSE_C_AES)
self._verify(self.DATA, check_progress_listener=False)
def test_download_by_id_no_progress_wrong_encryption(self):
with self.assertRaises(SSECKeyError):
self.download_file_by_id(self.encrypted_file_version.id_, encryption=SSE_C_AES_2)
def _check_local_file_contents(self, path, expected_contents):
with open(path, 'rb') as f:
contents = f.read()
self.assertEqual(contents, expected_contents)
@pytest.mark.apiver(from_ver=2)
def test_download_to_non_seekable_file(self):
file_version = self.bucket.upload_bytes(self.DATA.encode(), 'file1')
non_seekable_strategies = [
strat
for strat in self.bucket.api.services.download_manager.strategies
if not isinstance(strat, ParallelDownloader)
]
context = (
contextlib.nullcontext()
if non_seekable_strategies
else pytest.raises(
ValueError,
match='no strategy suitable for download was found!',
)
)
output_file = NonSeekableIO()
with context:
self.download_file_by_id(
file_version.id_,
v2_file=output_file,
)
assert output_file.getvalue() == self.DATA.encode()
@pytest.mark.apiver(from_ver=2)
def test_download_to_seekable_but_no_read_file(self):
file_version = self.bucket.upload_bytes(self.DATA.encode(), 'file1')
non_seekable_strategies = [
strat
for strat in self.bucket.api.services.download_manager.strategies
if not isinstance(strat, ParallelDownloader)
]
context = (
contextlib.nullcontext()
if non_seekable_strategies
else pytest.raises(
ValueError,
match='no strategy suitable for download was found!',
)
)
output_file = io.BytesIO()
seekable_but_not_readable = io.BufferedWriter(output_file)
# test sanity check
assert seekable_but_not_readable.seekable()
with pytest.raises(io.UnsupportedOperation):
seekable_but_not_readable.read(0)
with context:
self.download_file_by_id(
file_version.id_,
v2_file=seekable_but_not_readable,
)
seekable_but_not_readable.flush()
assert output_file.getvalue() == self.DATA.encode()
# download empty file
class EmptyFileDownloadScenarioMixin:
"""use with DownloadTests, but not for TestDownloadParallel as it does not like empty files"""
def test_download_by_name_empty_file(self):
self.file_version = self.bucket.upload_bytes(b'', 'empty')
self.download_file_by_name('empty', progress_listener=self.progress_listener)
self._verify('')
class UnverifiedChecksumDownloadScenarioMixin:
"""use with DownloadTests"""
def test_download_by_name_unverified_checksum(self):
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = b'hello world'
write_file(path, data)
file_info = self.bucket.upload_local_file(path, 'file1')
simulated_file = list(self.simulator.bucket_name_to_bucket.values())[0].file_id_to_file[
file_info.id_
]
simulated_file.content_sha1 = 'unverified:' + simulated_file.content_sha1
# , sha1_sum='unverified:2aae6c35c94fcfb415dbe95f408b9ce91ee846ed')
self.download_file_by_name('file1', progress_listener=self.progress_listener)
self._verify('hello world')
# actual tests
# test choosing strategy
@pytest.mark.apiver(from_ver=2)
class TestChooseStrategy(TestCaseWithBucket):
def test_choose_strategy(self):
file_version = self.bucket.upload_bytes(b'hello world' * 8, 'file1')
download_manager = self.bucket.api.services.download_manager
parallel_downloader = ParallelDownloader(
force_chunk_size=1,
max_streams=32,
min_part_size=16,
thread_pool=download_manager._thread_pool,
)
simple_downloader = download_manager.strategies[1]
download_manager.strategies = [
parallel_downloader,
simple_downloader,
]
with io.BytesIO() as bytes_io:
downloaded_file = self.bucket.download_file_by_id(file_version.id_)
downloaded_file.save(bytes_io, allow_seeking=True)
assert downloaded_file.download_strategy == parallel_downloader
downloaded_file = self.bucket.download_file_by_id(file_version.id_)
downloaded_file.save(bytes_io, allow_seeking=False)
assert downloaded_file.download_strategy == simple_downloader
downloaded_file = self.bucket.download_file_by_name(file_version.file_name)
downloaded_file.save(bytes_io, allow_seeking=True)
assert downloaded_file.download_strategy == parallel_downloader
downloaded_file = self.bucket.download_file_by_name(file_version.file_name)
downloaded_file.save(bytes_io, allow_seeking=False)
assert downloaded_file.download_strategy == simple_downloader
# Default tests
class TestDownloadDefault(DownloadTests, EmptyFileDownloadScenarioMixin, TestCaseWithBucket):
pass
class TestDownloadSimple(
DownloadTests,
UnverifiedChecksumDownloadScenarioMixin,
EmptyFileDownloadScenarioMixin,
TestCaseWithBucket,
):
def setUp(self):
super().setUp()
download_manager = self.bucket.api.services.download_manager
download_manager.strategies = [SimpleDownloader(force_chunk_size=20)]
class TestDownloadParallel(
DownloadTests,
UnverifiedChecksumDownloadScenarioMixin,
TestCaseWithBucket,
):
def setUp(self):
super().setUp()
download_manager = self.bucket.api.services.download_manager
download_manager.strategies = [
ParallelDownloader(
force_chunk_size=2,
max_streams=999,
min_part_size=2,
),
]
class TestDownloadParallelALotOfStreams(DownloadTestsBase, TestCaseWithBucket):
DATA = ''.join(['01234567890abcdef'] * 32)
def setUp(self):
super().setUp()
download_manager = self.bucket.api.services.download_manager
download_manager.strategies = [
# this should produce 32 streams with 16 single byte writes
# so we increase probability of non-sequential writes as much as possible
# with great help from random sleeps in FakeResponse
ParallelDownloader(
force_chunk_size=1,
max_streams=32,
min_part_size=16,
thread_pool=download_manager._thread_pool,
),
]
def test_download_by_id_progress_monotonic(self):
self.download_file_by_id(self.file_version.id_, progress_listener=self.progress_listener)
self._verify(self.DATA)
# Truncated downloads
class TruncatedFakeResponse(FakeResponse):
"""
A special FakeResponse class which returns only the first 4 bytes of data.
Use it to test followup retries for truncated download issues.
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.data_bytes = self.data_bytes[:4]
class TruncatedDownloadBucketSimulator(BucketSimulator):
RESPONSE_CLASS = TruncatedFakeResponse
class TruncatedDownloadRawSimulator(RawSimulator):
BUCKET_SIMULATOR_CLASS = TruncatedDownloadBucketSimulator
class TestCaseWithTruncatedDownloadBucket(TestCaseWithBucket):
RAW_SIMULATOR_CLASS = TruncatedDownloadRawSimulator
####### actual tests of truncated downloads
class TestTruncatedDownloadSimple(DownloadTests, TestCaseWithTruncatedDownloadBucket):
def setUp(self):
super().setUp()
download_manager = self.bucket.api.services.download_manager
download_manager.strategies = [SimpleDownloader(force_chunk_size=20)]
class TestTruncatedDownloadParallel(DownloadTests, TestCaseWithTruncatedDownloadBucket):
def setUp(self):
super().setUp()
download_manager = self.bucket.api.services.download_manager
download_manager.strategies = [
ParallelDownloader(
force_chunk_size=3,
max_streams=2,
min_part_size=2,
)
]
class DummyDownloader(AbstractDownloader):
def download(self, *args, **kwargs):
pass
@pytest.mark.parametrize(
'min_chunk_size,max_chunk_size,content_length,align_factor,expected_chunk_size',
[
(10, 100, 1000 * 9, 8, 8), # min_chunk_size aligned
(10, 100, 1000 * 17, 8, 16), # content_length // 1000 aligned
(10, 100, 1000 * 108, 8, 96), # max_chunk_size // 1000 aligned
(10, 100, 1000 * 9, 100, 100), # max_chunk_size/align_factor
(10, 100, 1000 * 17, 100, 100), # max_chunk_size/align_factor
(10, 100, 1000 * 108, 100, 100), # max_chunk_size/align_factor
(10, 100, 1, 100, 100), # max_chunk_size/align_factor
],
)
def test_downloader_get_chunk_size(
min_chunk_size, max_chunk_size, content_length, align_factor, expected_chunk_size
):
downloader = DummyDownloader(
min_chunk_size=min_chunk_size,
max_chunk_size=max_chunk_size,
align_factor=align_factor,
)
assert downloader._get_chunk_size(content_length) == expected_chunk_size
@pytest.mark.apiver(from_ver=2)
class TestDownloadTuneWriteBuffer(DownloadTestsBase, TestCaseWithBucket):
ALIGN_FACTOR = 123
DATA = 'abc' * 4096
def get_api(self):
return B2Api(
self.account_info,
api_config=B2HttpApiConfig(_raw_api_class=self.RAW_SIMULATOR_CLASS),
save_to_buffer_size=self.ALIGN_FACTOR,
)
def test_get_chunk_size_alignment(self):
download_manager = self.bucket.api.services.download_manager
for downloader in download_manager.strategies:
assert downloader._get_chunk_size(len(self.DATA)) % self.ALIGN_FACTOR == 0
def test_buffering_in_save_to(self):
with tempfile.TemporaryDirectory() as d:
path = pathlib.Path(d) / 'file2'
with mock.patch('b2sdk._internal.transfer.inbound.downloaded_file.open') as mock_open:
mock_open.side_effect = open
self.bucket.download_file_by_id(self.file_version.id_).save_to(path)
mock_open.assert_called_once_with(path, mock.ANY, buffering=self.ALIGN_FACTOR)
assert path.read_text() == self.DATA
def test_set_write_buffer_parallel_called_get_chunk_size(self):
self._check_called_on_downloader(
ParallelDownloader(
force_chunk_size=len(self.DATA) // 3,
max_streams=999,
min_part_size=len(self.DATA) // 3,
)
)
def test_set_write_buffer_simple_called_get_chunk_size(self):
self._check_called_on_downloader(SimpleDownloader(force_chunk_size=len(self.DATA) // 3))
def _check_called_on_downloader(self, downloader):
download_manager = self.bucket.api.services.download_manager
download_manager.strategies = [downloader]
orig_get_chunk_size = downloader._get_chunk_size
with mock.patch.object(downloader, '_get_chunk_size') as mock_get_chunk_size:
mock_get_chunk_size.side_effect = orig_get_chunk_size
self.download_file_by_id(self.file_version.id_)
self._verify(self.DATA, check_progress_listener=False)
assert mock_get_chunk_size.called
@pytest.mark.apiver(from_ver=2)
class TestDownloadNoHashChecking(DownloadTestsBase, TestCaseWithBucket):
DATA = 'abcdefghijklmnopqrs'
def get_api(self):
return B2Api(
self.account_info,
api_config=B2HttpApiConfig(_raw_api_class=self.RAW_SIMULATOR_CLASS),
check_download_hash=False,
)
def test_download_by_id_no_hash_checking(self):
downloaded_file = self.bucket.download_file_by_id(self.file_version.id_)
orig_validate_download = downloaded_file._validate_download
with mock.patch.object(downloaded_file, '_validate_download') as mocked_validate_download:
mocked_validate_download.side_effect = orig_validate_download
downloaded_file.save(self.bytes_io)
self._verify(self.DATA, check_progress_listener=False)
mocked_validate_download.assert_called_once_with(mock.ANY, '')
assert downloaded_file.download_version.content_sha1 != 'none'
assert downloaded_file.download_version.content_sha1 != ''
class DecodeTestsBase:
def setUp(self):
super().setUp()
self.bucket.upload_bytes(
b'Test File 1', 'test.txt?foo=bar', file_info={'custom_info': 'aaa?bbb'}
)
self.bucket.upload_bytes(
b'Test File 2', 'test.txt%3Ffoo=bar', file_info={'custom_info': 'aaa%3Fbbb'}
)
self.bucket.upload_bytes(b'Test File 3', 'test.txt%3Ffoo%3Dbar')
self.bucket.upload_bytes(b'Test File 4', 'test.txt%253Ffoo%253Dbar')
self.bytes_io = io.BytesIO()
if apiver_deps.V <= 1:
self.download_dest = DownloadDestBytes()
else:
self.download_dest = None
self.progress_listener = StubProgressListener()
def _verify(self, expected_result, check_progress_listener=True):
self._assert_downloaded_data(expected_result)
if check_progress_listener:
valid, reason = self.progress_listener.is_valid_reason(
check_progress=False,
check_monotonic_progress=True,
)
assert valid, reason
def _assert_downloaded_data(self, expected_result):
if apiver_deps.V <= 1:
assert self.download_dest.get_bytes_written() == expected_result.encode()
else:
assert self.bytes_io.getvalue() == expected_result.encode()
def download_file_by_name(self, file_name, download_dest=None, **kwargs):
if apiver_deps.V <= 1:
self.bucket.download_file_by_name(
file_name, download_dest or self.download_dest, **kwargs
)
else:
self.bucket.download_file_by_name(file_name, **kwargs).save(self.bytes_io)
class DecodeTests(DecodeTestsBase, TestCaseWithBucket):
def test_file_content_1(self):
self.download_file_by_name('test.txt?foo=bar', progress_listener=self.progress_listener)
self._verify('Test File 1')
def test_file_content_2(self):
self.download_file_by_name('test.txt%3Ffoo=bar', progress_listener=self.progress_listener)
self._verify('Test File 2')
def test_file_content_3(self):
self.download_file_by_name('test.txt%3Ffoo%3Dbar', progress_listener=self.progress_listener)
self._verify('Test File 3')
def test_file_content_4(self):
self.download_file_by_name(
'test.txt%253Ffoo%253Dbar', progress_listener=self.progress_listener
)
self._verify('Test File 4')
def test_file_info_1(self):
download_version = self.bucket.get_file_info_by_name('test.txt?foo=bar')
assert download_version.file_name == 'test.txt?foo=bar'
assert download_version.file_info['custom_info'] == 'aaa?bbb'
def test_file_info_2(self):
download_version = self.bucket.get_file_info_by_name('test.txt%3Ffoo=bar')
assert download_version.file_name == 'test.txt%3Ffoo=bar'
assert download_version.file_info['custom_info'] == 'aaa%3Fbbb'
def test_file_info_3(self):
download_version = self.bucket.get_file_info_by_name('test.txt%3Ffoo%3Dbar')
assert download_version.file_name == 'test.txt%3Ffoo%3Dbar'
def test_file_info_4(self):
download_version = self.bucket.get_file_info_by_name('test.txt%253Ffoo%253Dbar')
assert download_version.file_name == 'test.txt%253Ffoo%253Dbar'
class TestAuthorizeForBucket(TestCaseWithBucket):
CACHE_CLASS = InMemoryCache
@pytest.mark.apiver(from_ver=2)
def test_authorize_for_bucket_ensures_cache(self):
key = create_key(
self.api,
key_name='singlebucket',
capabilities=[
'listBuckets',
],
bucket_id=self.bucket_id,
)
self.api.authorize_account(
application_key_id=key.id_,
application_key=key.application_key,
realm='production',
)
# Check whether the bucket fetching performs an API call.
with mock.patch.object(self.api, 'list_buckets') as mock_list_buckets:
self.api.get_bucket_by_id(self.bucket_id)
mock_list_buckets.assert_not_called()
self.api.get_bucket_by_name(self.bucket_name)
mock_list_buckets.assert_not_called()
@pytest.mark.apiver(from_ver=2)
def test_authorize_for_non_existing_bucket(self):
key = create_key(
self.api,
key_name='singlebucket',
capabilities=[
'listBuckets',
],
bucket_id=self.bucket_id + 'x',
)
with self.assertRaises(RestrictedBucketMissing):
self.api.authorize_account(
application_key_id=key.id_,
application_key=key.application_key,
realm='production',
)
class TestDownloadLocalDirectoryIssues(TestCaseWithBucket):
def setUp(self):
super().setUp()
self.file_version = self.bucket.upload_bytes(b'test-data', 'file1')
self.bytes_io = io.BytesIO()
self.progress_listener = StubProgressListener()
@pytest.mark.apiver(from_ver=2)
def test_download_file_to_unknown_directory(self):
with tempfile.TemporaryDirectory() as temp_dir:
target_file = pathlib.Path(temp_dir) / 'non-existing-directory' / 'some-file'
with self.assertRaises(DestinationDirectoryDoesntExist):
self.bucket.download_file_by_name(self.file_version.file_name).save_to(target_file)
@pytest.mark.apiver(from_ver=2)
def test_download_file_targeting_directory(self):
with tempfile.TemporaryDirectory() as temp_dir:
target_file = pathlib.Path(temp_dir) / 'existing-directory'
os.makedirs(target_file, exist_ok=True)
with self.assertRaises(DestinationIsADirectory):
self.bucket.download_file_by_name(self.file_version.file_name).save_to(target_file)
@pytest.mark.apiver(from_ver=2)
def test_download_file_targeting_directory_is_a_file(self):
with tempfile.TemporaryDirectory() as temp_dir:
some_file = pathlib.Path(temp_dir) / 'existing-file'
some_file.write_bytes(b'i-am-a-file')
target_file = some_file / 'save-target'
with self.assertRaises(DestinationParentIsNotADirectory):
self.bucket.download_file_by_name(self.file_version.file_name).save_to(target_file)
@pytest.mark.apiver(from_ver=2)
@pytest.mark.skipif(
platform.system() == 'Windows',
reason='os.chmod on Windows only affects read-only flag for files',
)
def test_download_file_no_access_to_directory(self):
chain = contextlib.ExitStack()
temp_dir = chain.enter_context(tempfile.TemporaryDirectory())
with chain:
target_directory = pathlib.Path(temp_dir) / 'impossible-directory'
os.makedirs(target_directory, exist_ok=True)
# Don't allow any operation on this directory. Used explicitly, as the documentation
# states that on some platforms passing mode to `makedirs` may be ignored.
os.chmod(target_directory, mode=0)
# Ensuring that whenever we exit this context, our directory will be removable.
chain.push(lambda *args, **kwargs: os.chmod(target_directory, mode=0o777))
target_file = target_directory / 'target_file'
with self.assertRaises(DestinationDirectoryDoesntAllowOperation):
self.bucket.download_file_by_name(self.file_version.file_name).save_to(target_file)
class TestFileInfoB2Fields(TestCaseWithBucket):
@dataclasses.dataclass
class TestCase:
fields: dict[str, str]
expires_dt: datetime.datetime | None = None
expires_parsed: datetime.datetime | None = None
expires_parsed_raises: bool = False
@property
def kwargs(self) -> dict[str, str | datetime.datetime]:
kws = {**self.fields}
if self.expires_dt:
kws['expires'] = self.expires_dt
return kws
def assert_(self, version):
for name, value in self.fields.items():
assert getattr(version, name) == value
if self.expires_parsed_raises:
with pytest.raises(ValueError):
version.expires_parsed()
else:
assert version.expires_parsed() == self.expires_parsed
test_cases = [
TestCase(fields={}),
TestCase(
fields={
'cache_control': 'max-age=3600',
'expires': 'Sun, 06 Nov 1994 08:49:37 GMT',
'content_disposition': 'attachment; filename="fname.ext"',
'content_encoding': 'utf-8',
'content_language': 'en_US',
},
expires_parsed=datetime.datetime(1994, 11, 6, 8, 49, 37, tzinfo=datetime.timezone.utc),
),
# RFC 850 format
TestCase(
fields={'expires': 'Sunday, 06-Nov-95 08:49:37 GMT'},
expires_parsed=datetime.datetime(1995, 11, 6, 8, 49, 37, tzinfo=datetime.timezone.utc),
),
# ANSI C's asctime() format
TestCase(
fields={'expires': 'Sun Nov 6 08:49:37 1996'},
expires_parsed=datetime.datetime(1996, 11, 6, 8, 49, 37, tzinfo=datetime.timezone.utc),
),
# Non-standard date format
TestCase(
fields={'expires': '2020-01-01 00:00:00'},
expires_parsed_raises=True,
),
# Non-GMT timezone
TestCase(
fields={'expires': 'Sunday, 06-Nov-95 08:49:37 PDT'},
expires_parsed_raises=True,
),
# Passing `expires`` as a datetime
TestCase(
fields={'expires': 'Sun, 06 Nov 1994 08:49:37 GMT'},
expires_dt=datetime.datetime(1994, 11, 6, 8, 49, 37, tzinfo=datetime.timezone.utc),
expires_parsed=datetime.datetime(1994, 11, 6, 8, 49, 37, tzinfo=datetime.timezone.utc),
expires_parsed_raises=False,
),
# Passing `expires`` as a datetime in non-UTC timezone
TestCase(
fields={'expires': 'Sun, 06 Nov 1994 08:49:37 GMT'},
expires_dt=datetime.datetime(
1994, 11, 6, 9, 49, 37, tzinfo=datetime.timezone(datetime.timedelta(hours=1))
),
expires_parsed=datetime.datetime(1994, 11, 6, 8, 49, 37, tzinfo=datetime.timezone.utc),
expires_parsed_raises=False,
),
]
def test_upload_bytes(self):
for test_case in self.test_cases:
file_version = self.bucket.upload_bytes(b'', 'file1', **test_case.kwargs)
test_case.assert_(file_version)
def test_upload_unbound_stream(self):
for test_case in self.test_cases:
file_version = self.bucket.upload_unbound_stream(
io.BytesIO(b'data'), 'file1', **test_case.kwargs
)
test_case.assert_(file_version)
def test_upload_empty_unbound_stream(self):
for test_case in self.test_cases:
file_version = self.bucket.upload_unbound_stream(
io.BytesIO(b''), 'file1', **test_case.kwargs
)
test_case.assert_(file_version)
def test_upload_local_file(self):
for test_case in self.test_cases:
with tempfile.TemporaryDirectory() as d:
path = os.path.join(d, 'file1')
data = b''
write_file(path, data)
file_version = self.bucket.upload_local_file(path, 'file1', **test_case.kwargs)
test_case.assert_(file_version)
def test_copy_with_file_info(self):
for test_case in self.test_cases:
file_version = self.bucket.upload_bytes(b'', 'file1', **test_case.kwargs)
copied_file_version = self.bucket.copy(file_version.id_, 'file2')
test_case.assert_(copied_file_version)
def test_copy_overwriting_file_info(self):
for test_case in self.test_cases:
file_version = self.bucket.upload_bytes(b'', 'file1')
# For reasons I don't know, the content type must be supplied if and only if
# file info is supplied - otherwise the SDK raises an exception forbidding that.
content_type = None
if test_case.fields:
content_type = 'text/plain'
copied_file_version = self.bucket.copy(
file_version.id_, 'file2', content_type=content_type, **test_case.kwargs
)
test_case.assert_(copied_file_version)
def test_download_version(self):
for test_case in self.test_cases:
file_version = self.bucket.upload_bytes(b'', 'file1', **test_case.kwargs)
download_file = self.bucket.download_file_by_id(file_version.id_)
test_case.assert_(download_file.download_version)
# Listing where every other response returns no entries and pointer to the next file
class EmptyListBucketSimulator(BucketSimulator):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# Whenever we receive a list request, if it's the first time
# for this particular ``start_file_name``, we'll return
# an empty response pointing to the same file.
self.last_queried_file = None
def _should_return_empty(self, file_name: str) -> bool:
# Note that every other request is empty – the logic is as follows:
# 1st request – unknown start name – empty response
# 2nd request – known start name – normal response with a proper next filename
# 3rd request – unknown start name (as it's the next filename from the previous request) – empty response
# 4th request – known start name
# etc. This works especially well when using limiter of number of files fetched set to 1.
should_return_empty = self.last_queried_file != file_name
self.last_queried_file = file_name
return should_return_empty
def list_file_versions(
self,
account_auth_token,
start_file_name=None,
start_file_id=None,
max_file_count=None, # noqa
prefix=None,
):
if self._should_return_empty(start_file_name):
return dict(files=[], nextFileName=start_file_name, nextFileId=start_file_id)
return super().list_file_versions(
account_auth_token,
start_file_name,
start_file_id,
1, # Forcing only a single file per response.
prefix,
)
def list_file_names(
self,
account_auth_token,
start_file_name=None,
max_file_count=None, # noqa
prefix=None,
):
if self._should_return_empty(start_file_name):
return dict(files=[], nextFileName=start_file_name)
return super().list_file_names(
account_auth_token,
start_file_name,
1, # Forcing only a single file per response.
prefix,
)
class EmptyListSimulator(RawSimulator):
BUCKET_SIMULATOR_CLASS = EmptyListBucketSimulator
class TestEmptyListVersions(TestListVersions):
RAW_SIMULATOR_CLASS = EmptyListSimulator
class TestEmptyLs(TestLs):
RAW_SIMULATOR_CLASS = EmptyListSimulator
def test_bucket_notification_rules(bucket, b2api_simulator):
assert bucket.get_notification_rules() == []
notification_rule = {
'eventTypes': ['b2:ObjectCreated:*'],
'isEnabled': True,
'name': 'test-rule',
'objectNamePrefix': '',
'targetConfiguration': {
'customHeaders': [],
'targetType': 'webhook',
'url': 'https://example.com/webhook',
},
}
set_notification_rules = bucket.set_notification_rules([notification_rule])
assert set_notification_rules == bucket.get_notification_rules()
assert_dict_equal_ignore_extra(
set_notification_rules,
[{**notification_rule, 'isSuspended': False, 'suspensionReason': ''}],
)
b2api_simulator.bucket_id_to_bucket[bucket.id_].simulate_notification_rule_suspension(
notification_rule['name'], 'simulated suspension'
)
assert_dict_equal_ignore_extra(
bucket.get_notification_rules(),
[{**notification_rule, 'isSuspended': True, 'suspensionReason': 'simulated suspension'}],
)
assert bucket.set_notification_rules([]) == []
assert bucket.get_notification_rules() == []
|