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
|
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
Tests here communicate with third party servers and/or
internal ad-hoc instances of Xandikos and Radicale, dependent on the
configuration in conf_private.py.
Tests that do not require communication with a working caldav server
belong in test_caldav_unit.py
"""
import codecs
import logging
import random
import sys
import tempfile
import threading
import time
import uuid
from collections import namedtuple
from datetime import date
from datetime import datetime
from datetime import timedelta
from datetime import timezone
import pytest
import requests
import vobject
from caldav.davclient import DAVClient
from caldav.davclient import DAVResponse
from caldav.elements import cdav
from caldav.elements import dav
from caldav.elements import ical
from caldav.lib import error
from caldav.lib import url
from caldav.lib.python_utilities import to_local
from caldav.lib.python_utilities import to_str
from caldav.lib.url import URL
from caldav.objects import Calendar
from caldav.objects import CalendarSet
from caldav.objects import DAVObject
from caldav.objects import Event
from caldav.objects import FreeBusy
from caldav.objects import Principal
from caldav.objects import Todo
from requests.packages import urllib3
from . import compatibility_issues
from .conf import caldav_servers
from .conf import client
from .conf import proxy
from .conf import proxy_noport
from .conf import radicale_host
from .conf import radicale_port
from .conf import rfc6638_users
from .conf import test_radicale
from .conf import test_xandikos
from .conf import xandikos_host
from .conf import xandikos_port
from .proxy import NonThreadingHTTPServer
from .proxy import ProxyHandler
if test_xandikos:
from xandikos.web import XandikosBackend, XandikosApp
import aiohttp
import aiohttp.web
import asyncio
if test_radicale:
import radicale.config
import radicale
import radicale.server
import socket
from urllib.parse import urlparse
log = logging.getLogger("caldav")
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
ev1 = """BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VEVENT
UID:20010712T182145Z-123401@example.com
DTSTAMP:20060712T182145Z
DTSTART:20060714T170000Z
DTEND:20060715T040000Z
SUMMARY:Bastille Day Party
END:VEVENT
END:VCALENDAR
"""
broken_ev1 = """BEGIN:VEVENT
UID:20010712T182145Z-123401@example.com
DTSTAMP:20060712T182145Z
DTSTART:20060714T170000Z
DTEND:20060715T040000Z
SUMMARY:Bastille Day Party
END:VEVENT
"""
ev2 = """BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VEVENT
UID:20010712T182145Z-123401@example.com
DTSTAMP:20070712T182145Z
DTSTART:20070714T170000Z
DTEND:20070715T040000Z
SUMMARY:Bastille Day Party +1year
END:VEVENT
END:VCALENDAR
"""
ev3 = """BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VEVENT
UID:20080712T182145Z-123401@example.com
DTSTAMP:20210712T182145Z
DTSTART:20210714T170000Z
DTEND:20210715T040000Z
SUMMARY:Bastille Day Jitsi Party
END:VEVENT
END:VCALENDAR
"""
## This list is for deleting the events/todo-items in case it isn't
## sufficient/possible to create/delete the whole test calendar.
uids_used = (
"19920901T130000Z-123407@host.com",
"19920901T130000Z-123408@host.com",
"19970901T130000Z-123403@example.com",
"19970901T130000Z-123404@host.com",
"19970901T130000Z-123405@example.com",
"19970901T130000Z-123405@host.com",
"19970901T130000Z-123406@host.com",
"20010712T182145Z-123401@example.com",
"20070313T123432Z-456553@example.com",
"20080712T182145Z-123401@example.com",
"19970901T130000Z-123403@example.com",
"20010712T182145Z-123401@example.com",
"20080712T182145Z-123401@example.com",
"takeoutthethrash",
"ctuid1",
"ctuid2",
"ctuid3",
"ctuid4",
"ctuid5",
"ctuid6",
)
## TODO: todo7 is an item without uid. Should be taken care of somehow.
# example from http://www.rfc-editor.org/rfc/rfc5545.txt
evr = """BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VEVENT
UID:19970901T130000Z-123403@example.com
DTSTAMP:19970901T130000Z
DTSTART;VALUE=DATE:19971102
SUMMARY:Our Blissful Anniversary
TRANSP:TRANSPARENT
CLASS:CONFIDENTIAL
CATEGORIES:ANNIVERSARY,PERSONAL,SPECIAL OCCASION
RRULE:FREQ=YEARLY
END:VEVENT
END:VCALENDAR"""
# example from http://www.rfc-editor.org/rfc/rfc5545.txt
todo = """BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VTODO
UID:20070313T123432Z-456553@example.com
DTSTAMP:20070313T123432Z
DUE;VALUE=DATE:20070501
SUMMARY:Submit Quebec Income Tax Return for 2006
CLASS:CONFIDENTIAL
CATEGORIES:FAMILY,FINANCE
STATUS:NEEDS-ACTION
END:VTODO
END:VCALENDAR"""
# example from RFC2445, 4.6.2
todo2 = """BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VTODO
UID:19970901T130000Z-123404@host.com
DTSTAMP:19970901T130000Z
DTSTART:19970415T133000Z
DUE:19970416T045959Z
SUMMARY:1996 Income Tax Preparation
CLASS:CONFIDENTIAL
CATEGORIES:FAMILY,FINANCE
PRIORITY:2
STATUS:NEEDS-ACTION
END:VTODO
END:VCALENDAR"""
todo3 = """
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VTODO
UID:19970901T130000Z-123405@host.com
DTSTAMP:19970901T130000Z
DTSTART:19970415T133000Z
DUE:19970516T045959Z
SUMMARY:1996 Income Tax Preparation
CLASS:CONFIDENTIAL
CATEGORIES:FAMILY,FINANCE
PRIORITY:1
END:VTODO
END:VCALENDAR"""
todo4 = """
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VTODO
UID:19970901T130000Z-123406@host.com
DTSTAMP:19970901T130000Z
SUMMARY:1996 Income Tax Preparation
CLASS:CONFIDENTIAL
CATEGORIES:FAMILY,FINANCE
PRIORITY:1
STATUS:NEEDS-ACTION
END:VTODO
END:VCALENDAR"""
todo5 = """
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VTODO
UID:19920901T130000Z-123407@host.com
DTSTAMP:19920901T130000Z
DTSTART:19920415T133000Z
DUE:19920516T045959Z
SUMMARY:1992 Income Tax Preparation
CLASS:CONFIDENTIAL
CATEGORIES:FAMILY,FINANCE
PRIORITY:1
END:VTODO
END:VCALENDAR"""
todo6 = """
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VTODO
UID:19920901T130000Z-123408@host.com
DTSTAMP:19920901T130000Z
DTSTART:19920415T133000Z
DUE:19920516T045959Z
SUMMARY:Yearly Income Tax Preparation
RRULE:FREQ=YEARLY
CLASS:CONFIDENTIAL
CATEGORIES:FAMILY,FINANCE
PRIORITY:1
END:VTODO
END:VCALENDAR"""
## a todo without uid. Should it be possible to store it at all?
todo7 = """
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VTODO
DTSTAMP:19980101T130000Z
DTSTART:19980415T133000Z
DUE:19980516T045959Z
STATUS:NEEDS-ACTION
SUMMARY:Get stuck with Netfix and forget about the tax income declaration
CLASS:CONFIDENTIAL
CATEGORIES:FAMILY
PRIORITY:1
END:VTODO
END:VCALENDAR"""
todo8 = """
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VTODO
UID:takeoutthethrash
DTSTAMP:20221013T151313Z
DTSTART:20221017T065500Z
STATUS:NEEDS-ACTION
DURATION:PT10M
SUMMARY:Take out the thrash before the collectors come.
RRULE:FREQ=WEEKLY;BYDAY=MO;BYHOUR=6;BYMINUTE=55;COUNT=3
CATEGORIES:CHORE
PRIORITY:3
END:VTODO
END:VCALENDAR"""
# example from http://www.kanzaki.com/docs/ical/vjournal.html
journal = """
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VJOURNAL
UID:19970901T130000Z-123405@example.com
DTSTAMP:19970901T130000Z
DTSTART;VALUE=DATE:19970317
SUMMARY:Staff meeting minutes
DESCRIPTION:1. Staff meeting: Participants include Joe\\, Lisa
and Bob. Aurora project plans were reviewed. There is currently
no budget reserves for this project. Lisa will escalate to
management. Next meeting on Tuesday.\n
END:VJOURNAL
END:VCALENDAR
"""
## From RFC4438 examples, with some modifications
sched_template = """BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Example Corp.//CalDAV Client//EN
BEGIN:VEVENT
UID:%s
SEQUENCE:0
DTSTAMP:20210206T%sZ
DTSTART:203206%02iT%sZ
DURATION:PT1H
TRANSP:OPAQUE
SUMMARY:Lunch or something
END:VEVENT
END:VCALENDAR
"""
sched = sched_template % (
str(uuid.uuid4()),
"%2i%2i%2i" % (random.randint(0, 23), random.randint(0, 59), random.randint(0, 59)),
random.randint(1, 28),
"%2i%2i%2i" % (random.randint(0, 23), random.randint(0, 59), random.randint(0, 59)),
)
@pytest.mark.skipif(
not rfc6638_users, reason="need rfc6638_users to be set in order to run this test"
)
@pytest.mark.skipif(
len(rfc6638_users) < 3,
reason="need at least three users in rfc6638_users to be set in order to run this test",
)
class TestScheduling(object):
"""Testing support of RFC6638.
TODO: work in progress. Stalled a bit due to lack of proper testing accounts. I haven't managed to get this test to pass at any systems yet, but I believe the problem is not on the library side.
* icloud: cannot really test much with only one test account
available. I did some testing forth and back with emails sent
to an account on another service through the
scheduling_examples.py, and it seems like I was able both to
accept an invite from an external account (and the external
account got notified about it) and to receive notification that
the external party having accepted the calendar invite.
FreeBusy doesn't work. I don't have capacity following up more
right now.
* DAViCal: I have only an old version to test with at the moment,
should look into that. I did manage to send and receive a
calendar invite, but apparently I did not manage to accept the
calendar invite. It should be looked more into. FreeBusy
doesn't work in the old version, probably it works in a newer
version.
* SOGo: Sending a calendar invite, but receiving nothing in the
CalDAV inbox. FreeBusy works somehow, but returns pure
iCalendar data and not XML, I believe that's not according to
RFC6638.
"""
def _getCalendar(self, i):
calendar_id = "schedulingnosetestcalendar%i" % i
calendar_name = "caldav scheduling test %i" % i
try:
self.principals[i].calendar(name=calendar_name).delete()
except error.NotFoundError:
pass
return self.principals[i].make_calendar(name=calendar_name, cal_id=calendar_id)
def setup_method(self):
self.clients = []
self.principals = []
for foo in rfc6638_users:
c = client(**foo)
self.clients.append(c)
self.principals.append(c.principal())
def teardown_method(self):
for i in range(0, len(self.principals)):
calendar_name = "caldav scheduling test %i" % i
try:
self.principals[i].calendar(name=calendar_name).delete()
except error.NotFoundError:
pass
## TODO
# def testFreeBusy(self):
# pass
def testInviteAndRespond(self):
## Look through inboxes of principals[0] and principals[1] so we can sort
## out existing stuff from new stuff
if len(self.principals) < 2:
pytest.skip("need 2 principals to do the invite and respond test")
inbox_items = set(
[x.url for x in self.principals[0].schedule_inbox().get_items()]
)
inbox_items.update(
set([x.url for x in self.principals[1].schedule_inbox().get_items()])
)
## self.principal[0] is the organizer, and invites self.principal[1]
organizers_calendar = self._getCalendar(0)
attendee_calendar = self._getCalendar(1)
organizers_calendar.save_with_invites(
sched, [self.principals[0], self.principals[1].get_vcal_address()]
)
assert len(organizers_calendar.events()) == 1
## no new inbox items expected for principals[0]
for item in self.principals[0].schedule_inbox().get_items():
assert item.url in inbox_items
## principals[1] should have one new inbox item
new_inbox_items = []
for item in self.principals[1].schedule_inbox().get_items():
if not item.url in inbox_items:
new_inbox_items.append(item)
assert len(new_inbox_items) == 1
## ... and the new inbox item should be an invite request
assert new_inbox_items[0].is_invite_request()
## Approving the invite
new_inbox_items[0].accept_invite(calendar=attendee_calendar)
## (now, this item should probably appear on a calendar somewhere ...
## TODO: make asserts on that)
## TODO: what happens if we delete that invite request now?
## principals[0] should now have a notification in the inbox that the
## calendar invite was accepted
new_inbox_items = []
for item in self.principals[0].schedule_inbox().get_items():
if not item.url in inbox_items:
new_inbox_items.append(item)
assert len(new_inbox_items) == 1
assert new_inbox_items[0].is_invite_reply()
new_inbox_items[0].delete()
## TODO. Invite two principals, let both of them load the
## invitation, and then let them respond in order. Lacks both
## tests and the implementation also apparently doesn't work as
## for now (perhaps I misunderstood the RFC).
# def testAcceptedInviteRaceCondition(self):
# pass
## TODO: more testing ... what happens if deleting things from the
## inbox/outbox?
class RepeatedFunctionalTestsBaseClass(object):
"""This is a class with functional tests (tests that goes through
basic functionality and actively communicates with third parties)
that we want to repeat for all configured caldav_servers.
(what a truly ugly name for this class - any better ideas?)
NOTE: this tests relies heavily on the assumption that we can create
calendars on the remote caldav server, but the RFC says ...
Support for MKCALENDAR on the server is only RECOMMENDED and not
REQUIRED because some calendar stores only support one calendar per
user (or principal), and those are typically pre-created for each
account.
We've had some problems with iCloud and Radicale earlier. Google
still does not support mkcalendar.
"""
_default_calendar = None
def check_compatibility_flag(self, flag):
## yield an assertion error if checking for the wrong thig
assert flag in compatibility_issues.incompatibility_description
return flag in self.incompatibilities
def skip_on_compatibility_flag(self, flag):
if self.check_compatibility_flag(flag):
msg = compatibility_issues.incompatibility_description[flag]
pytest.skip("Test skipped due to server incompatibility issue: " + msg)
def setup_method(self):
logging.debug("############## test setup")
self.incompatibilities = set()
self.cleanup_regime = self.server_params.get("cleanup", "light")
self.calendars_used = []
for flag in self.server_params.get("incompatibilities", []):
assert flag in compatibility_issues.incompatibility_description
self.incompatibilities.add(flag)
if self.check_compatibility_flag("unique_calendar_ids"):
self.testcal_id = "testcalendar-" + str(uuid.uuid4())
self.testcal_id2 = "testcalendar-" + str(uuid.uuid4())
else:
self.testcal_id = "pythoncaldav-test"
self.testcal_id2 = "pythoncaldav-test2"
self.caldav = client(**self.server_params)
if False and self.check_compatibility_flag("no-current-user-principal"):
self.principal = Principal(
client=self.caldav, url=self.server_params["principal_url"]
)
else:
self.principal = self.caldav.principal()
self._cleanup("pre")
if self.check_compatibility_flag("object_by_uid_is_broken"):
import caldav.objects
caldav.objects.NotImplementedError = SkipTest
logging.debug("##############################")
logging.debug("############## test setup done")
logging.debug("##############################")
def teardown_method(self):
logging.debug("############################")
logging.debug("############## test teardown_method")
logging.debug("############################")
self._cleanup("post")
logging.debug("############## test teardown_method done")
def _cleanup(self, mode=None):
if self.cleanup_regime in ("pre", "post") and self.cleanup_regime != mode:
return
if self.check_compatibility_flag("read_only"):
return ## no cleanup needed
if (
self.check_compatibility_flag("no_mkcalendar")
or self.cleanup_regime == "thorough"
):
for uid in uids_used:
try:
obj = self._fixCalendar().object_by_uid(uid)
obj.delete()
except error.NotFoundError:
pass
except:
logging.error(
"Something went kaboom while deleting event", exc_info=True
)
return
for cal in self.calendars_used:
cal.delete()
if self.check_compatibility_flag("unique_calendar_ids") and mode == "pre":
a = self._teardownCalendar(name="Yep")
if mode == "post":
for calid in (self.testcal_id, self.testcal_id2):
self._teardownCalendar(cal_id=calid)
if self.cleanup_regime == "thorough":
for name in ("Yep", "Yapp", "Yølp", self.testcal_id, self.testcal_id2):
self._teardownCalendar(name=name)
self._teardownCalendar(cal_id=name)
def _teardownCalendar(self, name=None, cal_id=None):
try:
cal = self.principal.calendar(name=name, cal_id=cal_id)
if self.check_compatibility_flag("sticky_events"):
try:
for goo in cal.objects():
goo.delete()
except:
pass
cal.delete()
except:
pass
def _fixCalendar(self, **kwargs):
"""
Should ideally return a new calendar, if that's not possible it
should see if there exists a test calendar, if that's not
possible, give up and return the primary calendar.
"""
if self.check_compatibility_flag(
"no_mkcalendar"
) or self.check_compatibility_flag("read_only"):
if not self._default_calendar:
calendars = self.principal.calendars()
for c in calendars:
if (
"pythoncaldav-test"
in c.get_properties(
[
dav.DisplayName(),
]
).values()
):
self._default_calendar = c
return c
self._default_calendar = calendars[0]
return self._default_calendar
else:
if not self.check_compatibility_flag(
"unique_calendar_ids"
) and self.cleanup_regime in ("light", "pre"):
self._teardownCalendar(cal_id=self.testcal_id)
if self.check_compatibility_flag("no_displayname"):
name = None
else:
name = "Yep"
ret = self.principal.make_calendar(
name=name, cal_id=self.testcal_id, **kwargs
)
## TEMP - checking that the calendar works
ret.events()
if self.cleanup_regime == "post":
self.calendars_used.append(ret)
return ret
def testSupport(self):
"""
Test the check_*_support methods
"""
self.skip_on_compatibility_flag("dav_not_supported")
assert self.caldav.check_dav_support()
assert self.caldav.check_cdav_support()
if self.check_compatibility_flag("no_scheduling"):
assert not self.caldav.check_scheduling_support()
else:
assert self.caldav.check_scheduling_support()
def testSchedulingInfo(self):
self.skip_on_compatibility_flag("no_scheduling")
inbox = self.principal.schedule_inbox()
outbox = self.principal.schedule_outbox()
calendar_user_address_set = self.principal.calendar_user_address_set()
me_a_participant = self.principal.get_vcal_address()
def testPropfind(self):
"""
Test of the propfind methods. (This is sort of redundant, since
this is implicitly run by the setup)
"""
# ResourceType MUST be defined, and SHOULD be returned on a propfind
# for "allprop" if I have the permission to see it.
# So, no ResourceType returned seems like a bug in bedework
self.skip_on_compatibility_flag("propfind_allprop_failure")
# first a raw xml propfind to the root URL
foo = self.caldav.propfind(
self.principal.url,
props='<?xml version="1.0" encoding="UTF-8"?>'
'<D:propfind xmlns:D="DAV:">'
" <D:allprop/>"
"</D:propfind>",
)
assert "resourcetype" in to_local(foo.raw)
# next, the internal _query_properties, returning an xml tree ...
foo2 = self.principal._query_properties(
[
dav.Status(),
]
)
assert "resourcetype" in to_local(foo.raw)
# TODO: more advanced asserts
def testGetCalendarHomeSet(self):
chs = self.principal.get_properties([cdav.CalendarHomeSet()])
assert "{urn:ietf:params:xml:ns:caldav}calendar-home-set" in chs
def testGetDefaultCalendar(self):
self.skip_on_compatibility_flag("no_default_calendar")
assert len(self.principal.calendars()) != 0
def testSearchShouldYieldData(self):
"""
ref https://github.com/python-caldav/caldav/issues/201
"""
c = self._fixCalendar()
if not self.check_compatibility_flag("read_only"):
## populate the calendar with an event or two or three
c.save_event(ev1)
c.save_event(ev2)
c.save_event(ev3)
objects = c.search(event=True)
## This will break if served a read-only calendar without any events
assert objects
## This was observed to be broken for @dreimer1986
assert objects[0].data
def testGetCalendar(self):
# Create calendar
c = self._fixCalendar()
assert c.url is not None
assert len(self.principal.calendars()) != 0
str_ = str(c)
repr_ = repr(c)
## Not sure if those asserts make much sense, the main point here is to exercise
## the __str__ and __repr__ methods on the Calendar object.
if not self.check_compatibility_flag("no_displayname"):
name = c.get_property(dav.DisplayName(), use_cached=True)
if not name:
name = c.url
assert str(name) == str_
assert "Calendar" in repr(c)
assert str(c.url) in repr(c)
def testProxy(self):
if self.caldav.url.scheme == "https":
pytest.skip(
"Skipping %s.testProxy as the TinyHTTPProxy "
"implementation doesn't support https"
)
self.skip_on_compatibility_flag("no_default_calendar")
server_address = ("127.0.0.1", 8080)
try:
proxy_httpd = NonThreadingHTTPServer(
server_address, ProxyHandler, logging.getLogger("TinyHTTPProxy")
)
except:
pytest.skip("Unable to set up proxy server")
threadobj = threading.Thread(target=proxy_httpd.serve_forever)
try:
threadobj.start()
assert threadobj.is_alive()
conn_params = self.server_params.copy()
conn_params["proxy"] = proxy
c = client(**conn_params)
p = c.principal()
assert len(p.calendars()) != 0
finally:
proxy_httpd.shutdown()
# this should not be necessary, but I've observed some failures
if threadobj.is_alive():
time.sleep(0.15)
assert not threadobj.is_alive()
threadobj = threading.Thread(target=proxy_httpd.serve_forever)
try:
threadobj.start()
assert threadobj.is_alive()
conn_params = self.server_params.copy()
conn_params["proxy"] = proxy_noport
c = client(**conn_params)
p = c.principal()
assert len(p.calendars()) != 0
assert threadobj.is_alive()
finally:
proxy_httpd.shutdown()
# this should not be necessary
if threadobj.is_alive():
time.sleep(0.05)
assert not threadobj.is_alive()
def _notFound(self):
if self.check_compatibility_flag("non_existing_raises_other"):
return error.DAVError
else:
return error.NotFoundError
def testPrincipal(self):
collections = self.principal.calendars()
if "principal_url" in self.server_params:
assert self.principal.url == self.server_params["principal_url"]
for c in collections:
assert c.__class__.__name__ == "Calendar"
def testCreateDeleteCalendar(self):
self.skip_on_compatibility_flag("no_mkcalendar")
self.skip_on_compatibility_flag("read_only")
if not self.check_compatibility_flag(
"unique_calendar_ids"
) and self.cleanup_regime in ("light", "pre"):
self._teardownCalendar(cal_id=self.testcal_id)
c = self.principal.make_calendar(name="Yep", cal_id=self.testcal_id)
assert c.url is not None
events = c.events()
assert len(events) == 0
events = self.principal.calendar(name="Yep", cal_id=self.testcal_id).events()
assert len(events) == 0
c.delete()
# this breaks with zimbra and radicale
if not self.check_compatibility_flag("non_existing_calendar_found"):
with pytest.raises(self._notFound()):
self.principal.calendar(name="Yep", cal_id=self.testcal_id).events()
def testCreateEvent(self):
self.skip_on_compatibility_flag("read_only")
c = self._fixCalendar()
existing_events = c.events()
if not self.check_compatibility_flag("no_mkcalendar"):
## we're supposed to be working towards a brand new calendar
assert len(existing_events) == 0
# add event
c.save_event(broken_ev1)
# c.events() should give a full list of events
events = c.events()
assert len(events) == len(existing_events) + 1
# We should be able to access the calender through the URL
c2 = self.caldav.calendar(url=c.url)
events2 = c2.events()
assert len(events2) == len(existing_events) + 1
assert events2[0].url == events[0].url
if not self.check_compatibility_flag(
"no_mkcalendar"
) and not self.check_compatibility_flag("no_displayname"):
# We should be able to access the calender through the name
c2 = self.principal.calendar(name="Yep")
## may break if we have multiple calendars with the same name
assert c2.url == c.url
events2 = c2.events()
assert len(events2) == 1
assert events2[0].url == events[0].url
# add another event, it should be doable without having premade ICS
ev2 = c.save_event(
dtstart=datetime(2015, 10, 10, 8, 7, 6),
summary="This is a test event",
dtend=datetime(2016, 10, 10, 9, 8, 7),
uid="ctuid1",
)
events = c.events()
assert len(events) == len(existing_events) + 2
ev2.delete()
def testCalendarByFullURL(self):
"""
ref private email, passing a full URL as cal_id works in 0.5.0 but
is broken in 0.8.0
"""
mycal = self._fixCalendar()
samecal = self.caldav.principal().calendar(cal_id=str(mycal.url))
assert mycal.url.canonical() == samecal.url.canonical()
## passing cal_id as a URL object should also work.
samecal = self.caldav.principal().calendar(cal_id=mycal.url)
assert mycal.url.canonical() == samecal.url.canonical()
def testObjectBySyncToken(self):
"""
Support for sync-collection reports, ref https://github.com/python-caldav/caldav/issues/87.
This test is using explicit calls to objects_by_sync_token
"""
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_sync_token")
## Boiler plate ... make a calendar and add some content
c = self._fixCalendar()
objcnt = 0
## in case we need to reuse an existing calendar ...
if not self.check_compatibility_flag("no_todo"):
objcnt += len(c.todos())
objcnt += len(c.events())
obj = c.save_event(ev1)
objcnt += 1
if not self.check_compatibility_flag("no_recurring"):
c.save_event(evr)
objcnt += 1
if not self.check_compatibility_flag(
"no_todo"
) and not self.check_compatibility_flag("no_todo_on_standard_calendar"):
c.save_todo(todo)
c.save_todo(todo2)
c.save_todo(todo3)
objcnt += 3
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## objects should return all objcnt object.
my_objects = c.objects()
assert my_objects.sync_token != ""
assert len(list(my_objects)) == objcnt
## They should not be loaded.
for some_obj in my_objects:
assert some_obj.data is None
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## running sync_token again with the new token should return 0 hits
my_changed_objects = c.objects_by_sync_token(sync_token=my_objects.sync_token)
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(my_changed_objects)) == 0
## I was unable to run the rest of the tests towards Google using their legacy caldav API
self.skip_on_compatibility_flag("no_overwrite")
## MODIFYING an object
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
obj.icalendar_instance.subcomponents[0]["SUMMARY"] = "foobar"
obj.save()
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## The modified object should be returned by the server
my_changed_objects = c.objects_by_sync_token(
sync_token=my_changed_objects.sync_token, load_objects=True
)
if self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(my_changed_objects)) >= 1
else:
assert len(list(my_changed_objects)) == 1
## this time it should be loaded
assert list(my_changed_objects)[0].data is not None
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## Re-running objects_by_sync_token, and no objects should be returned
my_changed_objects = c.objects_by_sync_token(
sync_token=my_changed_objects.sync_token
)
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(my_changed_objects)) == 0
## ADDING yet another object ... and it should also be reported
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
obj3 = c.save_event(ev3)
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
my_changed_objects = c.objects_by_sync_token(
sync_token=my_changed_objects.sync_token
)
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(my_changed_objects)) == 1
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## Re-running objects_by_sync_token, and no objects should be returned
my_changed_objects = c.objects_by_sync_token(
sync_token=my_changed_objects.sync_token
)
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(my_changed_objects)) == 0
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## DELETING the object ... and it should be reported
obj.delete()
self.skip_on_compatibility_flag("sync_breaks_on_delete")
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
my_changed_objects = c.objects_by_sync_token(
sync_token=my_changed_objects.sync_token, load_objects=True
)
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(my_changed_objects)) == 1
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## even if we have asked for the object to be loaded, data should be None as it's a deleted object
assert list(my_changed_objects)[0].data is None
## Re-running objects_by_sync_token, and no objects should be returned
my_changed_objects = c.objects_by_sync_token(
sync_token=my_changed_objects.sync_token
)
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(my_changed_objects)) == 0
def testSync(self):
"""
Support for sync-collection reports, ref https://github.com/python-caldav/caldav/issues/87.
Same test pattern as testObjectBySyncToken, but exercises the .sync() method
"""
self.skip_on_compatibility_flag("no_sync_token")
self.skip_on_compatibility_flag("read_only")
## Boiler plate ... make a calendar and add some content
c = self._fixCalendar()
objcnt = 0
## in case we need to reuse an existing calendar ...
if not self.check_compatibility_flag("no_todo"):
objcnt += len(c.todos())
objcnt += len(c.events())
obj = c.save_event(ev1)
objcnt += 1
if not self.check_compatibility_flag("no_recurring"):
c.save_event(evr)
objcnt += 1
if not self.check_compatibility_flag(
"no_todo"
) and not self.check_compatibility_flag("no_todo_on_standard_calendar"):
c.save_todo(todo)
c.save_todo(todo2)
c.save_todo(todo3)
objcnt += 3
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## objects should return all objcnt object.
my_objects = c.objects(load_objects=True)
assert my_objects.sync_token != ""
assert len(list(my_objects)) == objcnt
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## sync() should do nothing
updated, deleted = my_objects.sync()
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(updated)) == 0
assert len(list(deleted)) == 0
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## I was unable to run the rest of the tests towards Google using their legacy caldav API
self.skip_on_compatibility_flag("no_overwrite")
## MODIFYING an object
obj.icalendar_instance.subcomponents[0]["SUMMARY"] = "foobar"
obj.save()
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
updated, deleted = my_objects.sync()
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(updated)) == 1
assert len(list(deleted)) == 0
assert "foobar" in my_objects.objects_by_url()[obj.url].data
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## ADDING yet another object ... and it should also be reported
obj3 = c.save_event(ev3)
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
updated, deleted = my_objects.sync()
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(updated)) == 1
assert len(list(deleted)) == 0
assert obj3.url in my_objects.objects_by_url()
self.skip_on_compatibility_flag("sync_breaks_on_delete")
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## DELETING the object ... and it should be reported
obj.delete()
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
updated, deleted = my_objects.sync()
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(updated)) == 0
assert len(list(deleted)) == 1
assert not obj.url in my_objects.objects_by_url()
if self.check_compatibility_flag("time_based_sync_tokens"):
time.sleep(1)
## sync() should do nothing
updated, deleted = my_objects.sync()
if not self.check_compatibility_flag("fragile_sync_tokens"):
assert len(list(updated)) == 0
assert len(list(deleted)) == 0
def testLoadEvent(self):
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_mkcalendar")
if not self.check_compatibility_flag(
"unique_calendar_ids"
) and self.cleanup_regime in ("light", "pre"):
self._teardownCalendar(cal_id=self.testcal_id)
self._teardownCalendar(cal_id=self.testcal_id2)
c1 = self.principal.make_calendar(name="Yep", cal_id=self.testcal_id)
c2 = self.principal.make_calendar(name="Yapp", cal_id=self.testcal_id2)
e1_ = c1.save_event(ev1)
if not self.check_compatibility_flag("event_by_url_is_broken"):
e1_.load()
e1 = c1.events()[0]
assert e1.url == e1_.url
if not self.check_compatibility_flag("event_by_url_is_broken"):
e1.load()
if (
not self.check_compatibility_flag("unique_calendar_ids")
and self.cleanup_regime == "post"
):
self._teardownCalendar(cal_id=self.testcal_id)
self._teardownCalendar(cal_id=self.testcal_id2)
def testCopyEvent(self):
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_mkcalendar")
if not self.check_compatibility_flag(
"unique_calendar_ids"
) and self.cleanup_regime in ("light", "pre"):
self._teardownCalendar(cal_id=self.testcal_id)
self._teardownCalendar(cal_id=self.testcal_id2)
## Let's create two calendars, and populate one event on the first calendar
c1 = self.principal.make_calendar(name="Yep", cal_id=self.testcal_id)
c2 = self.principal.make_calendar(name="Yapp", cal_id=self.testcal_id2)
e1_ = c1.save_event(ev1)
e1 = c1.events()[0]
if not self.check_compatibility_flag("duplicates_not_allowed"):
## Duplicate the event in the same calendar, with new uid
e1_dup = e1.copy()
e1_dup.save()
assert len(c1.events()) == 2
if not self.check_compatibility_flag(
"duplicate_in_other_calendar_with_same_uid_breaks"
):
e1_in_c2 = e1.copy(new_parent=c2, keep_uid=True)
e1_in_c2.save()
if not self.check_compatibility_flag(
"duplicate_in_other_calendar_with_same_uid_is_lost"
):
assert len(c2.events()) == 1
## what will happen with the event in c1 if we modify the event in c2,
## which shares the id with the event in c1?
e1_in_c2.instance.vevent.summary.value = "asdf"
e1_in_c2.save()
e1.load()
## should e1.summary be 'asdf' or 'Bastille Day Party'? I do
## not know, but all implementations I've tested will treat
## the copy in the other calendar as a distinct entity, even
## if the uid is the same.
assert e1.instance.vevent.summary.value == "Bastille Day Party"
assert c2.events()[0].instance.vevent.uid == e1.instance.vevent.uid
## Duplicate the event in the same calendar, with same uid -
## this makes no sense, there won't be any duplication
e1_dup2 = e1.copy(keep_uid=True)
e1_dup2.save()
if self.check_compatibility_flag("duplicates_not_allowed"):
assert len(c1.events()) == 1
else:
assert len(c1.events()) == 2
if (
not self.check_compatibility_flag("unique_calendar_ids")
and self.cleanup_regime == "post"
):
self._teardownCalendar(cal_id=self.testcal_id)
self._teardownCalendar(cal_id=self.testcal_id2)
def testCreateCalendarAndEventFromVobject(self):
self.skip_on_compatibility_flag("read_only")
c = self._fixCalendar()
## in case the calendar is reused
cnt = len(c.events())
# add event from vobject data
ve1 = vobject.readOne(ev1)
c.save_event(ve1)
cnt += 1
# c.events() should give a full list of events
events = c.events()
assert len(events) == cnt
# This makes no sense, it's a noop. Perhaps an error
# should be raised, but as for now, this is simply ignored.
c.save_event(None)
assert len(c.events()) == cnt
def testGetSupportedComponents(self):
self.skip_on_compatibility_flag("no_supported_components_support")
c = self._fixCalendar()
components = c.get_supported_components()
assert components
assert "VEVENT" in components
def testSearchEvent(self):
self.skip_on_compatibility_flag("read_only")
c = self._fixCalendar()
c.save_event(ev1)
c.save_event(ev3)
c.save_event(evr)
## Search without any parameters should yield everything on calendar
all_events = c.search()
if self.check_compatibility_flag("search_needs_comptype"):
assert len(all_events) <= 3
else:
assert len(all_events) == 3
## Search with comp_class set to Event should yield all events on calendar
all_events = c.search(comp_class=Event)
assert len(all_events) == 3
## Search with todo flag set should yield no events
no_events = c.search(todo=True)
assert len(no_events) == 0
## Date search should be possible
some_events = c.search(
comp_class=Event,
expand=False,
start=datetime(2006, 7, 13, 13, 0),
end=datetime(2006, 7, 15, 13, 0),
)
if not self.check_compatibility_flag("fastmail_buggy_noexpand_date_search"):
assert len(some_events) == 1
## Search for misc text fields
## UID is a special case, supported by almost all servers
some_events = c.search(
comp_class=Event, uid="19970901T130000Z-123403@example.com"
)
if not self.check_compatibility_flag("text_search_not_working"):
assert len(some_events) == 1
## class
some_events = c.search(comp_class=Event, class_="CONFIDENTIAL")
if not self.check_compatibility_flag("text_search_not_working"):
assert len(some_events) == 1
## not defined
some_events = c.search(comp_class=Event, no_class=True)
## ev1, ev3 should be returned
## or perhaps not,
## ref https://gitlab.com/davical-project/davical/-/issues/281#note_1265743591
## PUBLIC is default, so maybe no events should be returned?
if not self.check_compatibility_flag("isnotdefined_not_working"):
assert len(some_events) == 2
some_events = c.search(comp_class=Event, no_category=True)
## ev1, ev3 should be returned
if not self.check_compatibility_flag("isnotdefined_not_working"):
assert len(some_events) == 2
some_events = c.search(comp_class=Event, no_dtend=True)
## evr should be returned
if not self.check_compatibility_flag("isnotdefined_not_working"):
assert len(some_events) == 1
self.skip_on_compatibility_flag("text_search_not_working")
## category
if not self.check_compatibility_flag("radicale_breaks_on_category_search"):
some_events = c.search(comp_class=Event, category="PERSONAL")
if not self.check_compatibility_flag("category_search_yields_nothing"):
assert len(some_events) == 1
some_events = c.search(comp_class=Event, category="personal")
if not self.check_compatibility_flag("category_search_yields_nothing"):
if self.check_compatibility_flag("text_search_is_case_insensitive"):
assert len(some_events) == 1
else:
assert len(some_events) == 0
## This is not a very useful search, and it's sort of a client side bug that we allow it at all.
## It will not match if categories field is set to "PERSONAL,ANNIVERSARY,SPECIAL OCCASION"
## It may not match since the above is to be considered equivalent to the raw data entered.
some_events = c.search(
comp_class=Event, category="ANNIVERSARY,PERSONAL,SPECIAL OCCASION"
)
assert len(some_events) in (0, 1)
## TODO: This is actually a bug. We need to do client side filtering
some_events = c.search(comp_class=Event, category="PERSON")
if self.check_compatibility_flag("text_search_is_exact_match_sometimes"):
assert len(some_events) in (0, 1)
if self.check_compatibility_flag("text_search_is_exact_match_only"):
assert len(some_events) == 0
elif not self.check_compatibility_flag("category_search_yields_nothing"):
assert len(some_events) == 1
## I expect "logical and" when combining category with a date range
no_events = c.search(
comp_class=Event,
category="PERSONAL",
start=datetime(2006, 7, 13, 13, 0),
end=datetime(2006, 7, 15, 13, 0),
)
if not self.check_compatibility_flag(
"category_search_yields_nothing"
) and not self.check_compatibility_flag("combined_search_not_working"):
if self.check_compatibility_flag("fastmail_buggy_noexpand_date_search"):
## fastmail and davical delivers too many recurring events on a date search
## (but fastmail anyway won't get here, as combined search is not working with fastmail)
assert len(no_events) == 1
else:
assert len(no_events) == 1
some_events = c.search(
comp_class=Event,
category="PERSONAL",
start=datetime(1997, 11, 1, 13, 0),
end=datetime(1997, 11, 3, 13, 0),
)
if not self.check_compatibility_flag(
"category_search_yields_nothing"
) and not self.check_compatibility_flag("combined_search_not_working"):
assert len(some_events) == 1
some_events = c.search(comp_class=Event, summary="Bastille Day Party")
assert len(some_events) == 1
some_events = c.search(comp_class=Event, summary="Bastille Day")
if self.check_compatibility_flag("text_search_is_exact_match_sometimes"):
assert len(some_events) in (0, 2)
elif self.check_compatibility_flag("text_search_is_exact_match_only"):
assert len(some_events) == 0
else:
assert len(some_events) == 2
## Even sorting should work out
all_events = c.search(sort_keys=("summary", "dtstamp"))
assert len(all_events) == 3
assert all_events[0].instance.vevent.summary.value == "Bastille Day Jitsi Party"
## Sorting by upper case should also wor
all_events = c.search(sort_keys=("SUMMARY", "DTSTAMP"))
assert len(all_events) == 3
assert all_events[0].instance.vevent.summary.value == "Bastille Day Jitsi Party"
def testSearchSortTodo(self):
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_todo")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
t1 = c.save_todo(
summary="1 task overdue",
due=date(2022, 12, 12),
dtstart=date(2022, 10, 11),
uid="1",
)
t2 = c.save_todo(
summary="2 task future",
due=datetime.now() + timedelta(hours=15),
dtstart=datetime.now() + timedelta(minutes=15),
uid="2",
)
t3 = c.save_todo(
summary="3 task future due",
due=datetime.now() + timedelta(hours=15),
dtstart=datetime(2022, 12, 11, 10, 9, 8),
uid="3",
)
t4 = c.save_todo(summary="4 task priority low", priority=9, uid="4")
t5 = c.save_todo(summary="5 task status completed", status="COMPLETED", uid="5")
t6 = c.save_todo(
summary="6 task has categories", categories="home,garden,sunshine", uid="6"
)
def check_order(tasks, order):
assert [str(x.icalendar_component["uid"]) for x in tasks] == [
str(x) for x in order
]
all_tasks = c.search(todo=True, sort_keys=("uid",))
check_order(all_tasks, (1, 2, 3, 4, 6))
all_tasks = c.search(sort_keys=("summary",))
check_order(all_tasks, (1, 2, 3, 4, 5, 6))
all_tasks = c.search(
sort_keys=("isnt_overdue", "categories", "dtstart", "priority", "status")
)
## This is difficult ...
## * 1 is the only one that is overdue, and False sorts before True, so 1 comes first
## * categories, empty string sorts before a non-empty string, so 6 is at the end of the list
## So we have 2-5 still to worry about ...
## * dtstart - default is "long ago", so 4,5 or 5,4 should be first, followed by 3,2
## * priority - default is 0, so 5 comes before 4
check_order(all_tasks, (1, 5, 4, 3, 2, 6))
def testSearchTodos(self):
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_todo")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
t1 = c.save_todo(todo)
t2 = c.save_todo(todo2)
t3 = c.save_todo(todo3)
t4 = c.save_todo(todo4)
t5 = c.save_todo(todo5)
t6 = c.save_todo(todo6)
## Search without any parameters should yield everything on calendar
all_todos = c.search()
if self.check_compatibility_flag("search_needs_comptype"):
assert len(all_todos) <= 6
else:
assert len(all_todos) == 6
## Search with comp_class set to Event should yield all events on calendar
all_todos = c.search(comp_class=Event)
assert len(all_todos) == 0
## Search with todo flag set should yield all 6 tasks
## (Except, if the calendar server does not support is-not-defined very
## well, perhaps only 3 will be returned - see
## https://gitlab.com/davical-project/davical/-/issues/281 )
all_todos = c.search(todo=True)
if self.check_compatibility_flag("isnotdefined_not_working"):
assert len(all_todos) in (3, 6)
else:
assert len(all_todos) == 6
## Search for misc text fields
## UID is a special case, supported by almost all servers
some_todos = c.search(comp_class=Todo, uid="19970901T130000Z-123404@host.com")
if not self.check_compatibility_flag("text_search_not_working"):
assert len(some_todos) == 1
## class ... hm, all 6 example todos are 'CONFIDENTIAL' ...
some_todos = c.search(comp_class=Todo, class_="CONFIDENTIAL")
if not self.check_compatibility_flag("text_search_not_working"):
assert len(some_todos) == 6
## category
self.skip_on_compatibility_flag("radicale_breaks_on_category_search")
## Too much copying of the examples ...
some_todos = c.search(comp_class=Todo, category="FINANCE")
if not self.check_compatibility_flag(
"category_search_yields_nothing"
) and not self.check_compatibility_flag("text_search_not_working"):
assert len(some_todos) == 6
some_todos = c.search(comp_class=Todo, category="finance")
if not self.check_compatibility_flag(
"category_search_yields_nothing"
) and not self.check_compatibility_flag("text_search_not_working"):
if self.check_compatibility_flag("text_search_is_case_insensitive"):
assert len(some_todos) == 6
else:
assert len(some_todos) == 0
## This is not a very useful search, and it's sort of a client side bug that we allow it at all.
## It will not match if categories field is set to "PERSONAL,ANNIVERSARY,SPECIAL OCCASION"
## It may not match since the above is to be considered equivalent to the raw data entered.
some_todos = c.search(comp_class=Todo, category="FAMILY,FINANCE")
if not self.check_compatibility_flag("text_search_not_working"):
assert len(some_todos) in (0, 6)
## TODO: We should consider to do client side filtering to ensure exact
## match only on components having MIL as a category (and not FAMILY)
some_todos = c.search(comp_class=Todo, category="MIL")
if self.check_compatibility_flag("text_search_is_exact_match_sometimes"):
assert len(some_todos) in (0, 6)
elif self.check_compatibility_flag("text_search_is_exact_match_only"):
assert len(some_todos) == 0
elif not self.check_compatibility_flag(
"category_search_yields_nothing"
) and not self.check_compatibility_flag("text_search_not_working"):
## This is the correct thing, according to the letter of the RFC
assert len(some_todos) == 6
## completing events, and it should not show up anymore
t3.complete()
t5.complete()
t6.complete()
some_todos = c.search(todo=True)
assert len(some_todos) == 3
## unless we specifically ask for completed tasks
all_todos = c.search(todo=True, include_completed=True)
assert len(all_todos) == 6
def testWrongPassword(self):
if (
not "password" in self.server_params
or not self.server_params["password"]
or self.server_params["password"] == "any-password-seems-to-work"
):
pytest.skip(
"Testing with wrong password skipped as calendar server does not require a password"
)
server_params = self.server_params.copy()
server_params["password"] = (
codecs.encode(server_params["password"], "rot13") + "!"
)
with pytest.raises(error.AuthorizationError):
client(**server_params).principal()
def testCreateChildParent(self):
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_relships")
c = self._fixCalendar(supported_calendar_component_set=["VEVENT"])
parent = c.save_event(
dtstart=datetime(2022, 12, 26, 19, 15),
dtend=datetime(2022, 12, 26, 20, 00),
summary="this is a parent event test",
uid="ctuid1",
)
child = c.save_event(
dtstart=datetime(2022, 12, 26, 19, 17),
dtend=datetime(2022, 12, 26, 20, 00),
summary="this is a child event test",
parent=[parent.id],
uid="ctuid2",
)
grandparent = c.save_event(
dtstart=datetime(2022, 12, 26, 19, 00),
dtend=datetime(2022, 12, 26, 20, 00),
summary="this is a grandparent event test",
child=[parent.id],
uid="ctuid3",
)
parent_ = c.event_by_uid(parent.id)
child_ = c.event_by_uid(child.id)
grandparent_ = c.event_by_uid(grandparent.id)
rt = grandparent_.icalendar_component["RELATED-TO"]
if isinstance(rt, list):
assert len(rt) == 1
rt = rt[0]
assert rt == parent.id
assert rt.params["RELTYPE"] == "CHILD"
rt = parent_.icalendar_component["RELATED-TO"]
assert len(rt) == 2
assert set([str(rt[0]), str(rt[1])]) == set([grandparent.id, child.id])
assert set([rt[0].params["RELTYPE"], rt[1].params["RELTYPE"]]) == set(
["CHILD", "PARENT"]
)
rt = child_.icalendar_component["RELATED-TO"]
if isinstance(rt, list):
assert len(rt) == 1
rt = rt[0]
assert rt == parent.id
assert rt.params["RELTYPE"] == "PARENT"
foo = parent_.get_relatives(reltypes={"PARENT"})
assert len(foo) == 1
assert len(foo["PARENT"]) == 1
assert [foo["PARENT"][0].icalendar_component["UID"] == grandparent.id]
foo = parent_.get_relatives(reltypes={"CHILD"})
assert len(foo) == 1
assert len(foo["CHILD"]) == 1
assert [foo["CHILD"][0].icalendar_component["UID"] == child.id]
foo = parent_.get_relatives(reltypes={"CHILD", "PARENT"})
assert len(foo) == 2
assert len(foo["CHILD"]) == 1
assert len(foo["PARENT"]) == 1
foo = parent_.get_relatives(relfilter=lambda x: x.params.get("GAP"))
def testSetDue(self):
self.skip_on_compatibility_flag("read_only")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
utc = timezone.utc
some_todo = c.save_todo(
dtstart=datetime(2022, 12, 26, 19, 15, tzinfo=utc),
due=datetime(2022, 12, 26, 20, 00, tzinfo=utc),
summary="Some task",
uid="ctuid1",
)
## setting the due should ... set the due (surprise, surprise)
some_todo.set_due(datetime(2022, 12, 26, 20, 10, tzinfo=utc))
assert some_todo.icalendar_component["DUE"].dt == datetime(
2022, 12, 26, 20, 10, tzinfo=utc
)
assert some_todo.icalendar_component["DTSTART"].dt == datetime(
2022, 12, 26, 19, 15, tzinfo=utc
)
## move_dtstart causes the duration to be unchanged
some_todo.set_due(datetime(2022, 12, 26, 20, 20, tzinfo=utc), move_dtstart=True)
assert some_todo.icalendar_component["DUE"].dt == datetime(
2022, 12, 26, 20, 20, tzinfo=utc
)
assert some_todo.icalendar_component["DTSTART"].dt == datetime(
2022, 12, 26, 19, 25, tzinfo=utc
)
## This task has duration set rather than due. Due should be implied to be 19:30.
some_other_todo = c.save_todo(
dtstart=datetime(2022, 12, 26, 19, 15, tzinfo=utc),
duration=timedelta(minutes=15),
summary="Some other task",
uid="ctuid2",
)
some_other_todo.set_due(
datetime(2022, 12, 26, 19, 45, tzinfo=utc), move_dtstart=True
)
assert some_other_todo.icalendar_component["DUE"].dt == datetime(
2022, 12, 26, 19, 45, tzinfo=utc
)
assert some_other_todo.icalendar_component["DTSTART"].dt == datetime(
2022, 12, 26, 19, 30, tzinfo=utc
)
some_todo.save()
self.skip_on_compatibility_flag("no_relships")
parent = c.save_todo(
dtstart=datetime(2022, 12, 26, 19, 00, tzinfo=utc),
dtend=datetime(2022, 12, 26, 21, 00, tzinfo=utc),
summary="this is a parent test task",
uid="ctuid3",
child=[some_todo.id],
)
## The above updates the some_todo object on the server side, but the local object is not
## updated ... until we reload it
some_todo.load()
## This should work out (set the children due to some time before the parents due)
some_todo.set_due(
datetime(2022, 12, 26, 20, 30, tzinfo=utc),
move_dtstart=True,
check_dependent=True,
)
assert some_todo.icalendar_component["DUE"].dt == datetime(
2022, 12, 26, 20, 30, tzinfo=utc
)
assert some_todo.icalendar_component["DTSTART"].dt == datetime(
2022, 12, 26, 19, 35, tzinfo=utc
)
## This should not work out (set the children due to some time before the parents due)
with pytest.raises(error.ConsistencyError):
some_todo.set_due(
datetime(2022, 12, 26, 21, 30, tzinfo=utc),
move_dtstart=True,
check_dependent=True,
)
child = c.save_todo(
dtstart=datetime(2022, 12, 26, 19, 45),
due=datetime(2022, 12, 26, 19, 55),
summary="this is a test child task",
uid="ctuid4",
parent=[some_todo.id],
)
## This should still work out (set the children due to some time before the parents due)
## (The fact that we now have a child does not affect it anyhow)
some_todo.set_due(
datetime(2022, 12, 26, 20, 31, tzinfo=utc),
move_dtstart=True,
check_dependent=True,
)
assert some_todo.icalendar_component["DUE"].dt == datetime(
2022, 12, 26, 20, 31, tzinfo=utc
)
assert some_todo.icalendar_component["DTSTART"].dt == datetime(
2022, 12, 26, 19, 36, tzinfo=utc
)
def testCreateJournalListAndJournalEntry(self):
"""
This test demonstrates the support for journals.
* It will create a journal list
* It will add some journal entries to it
* It will list out all journal entries
"""
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_journal")
c = self._fixCalendar(supported_calendar_component_set=["VJOURNAL"])
j1 = c.save_journal(journal)
journals = c.journals()
assert len(journals) == 1
j1_ = c.journal_by_uid(j1.id)
j1_.icalendar_instance
journals[0].icalendar_instance
assert j1_.data == journals[0].data
j2 = c.save_journal(
dtstart=date(2011, 11, 11),
summary="A childbirth in a hospital in Kupchino",
description="A quick birth, in the middle of the night",
uid="ctuid1",
)
assert len(c.journals()) == 2
todos = c.todos()
events = c.events()
assert todos + events == []
def testCreateTaskListAndTodo(self):
"""
This test demonstrates the support for task lists.
* It will create a "task list"
* It will add a task to it
* Verify the cal.todos() method
* Verify that cal.events() method returns nothing
"""
self.skip_on_compatibility_flag("read_only")
# bedeworks and google calendar and some others does not support VTODO
self.skip_on_compatibility_flag("no_todo")
# For most servers (notable exception Zimbra), it's
# possible to create a calendar and add todo-items to it.
# Zimbra has separate calendars and task lists, and it's not
# allowed to put TODO-tasks into the calendar. We need to
# tell Zimbra that the new "calendar" is a task list. This
# is done though the supported_calendar_component_set
# property - hence the extra parameter here:
logging.info("Creating calendar Yep for tasks")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
# add todo-item
logging.info("Adding todo item to calendar Yep")
t1 = c.save_todo(todo)
assert t1.id == "20070313T123432Z-456553@example.com"
# c.todos() should give a full list of todo items
logging.info("Fetching the full list of todo items (should be one)")
todos = c.todos()
todos2 = c.todos(include_completed=True)
assert len(todos) == 1
assert len(todos2) == 1
t3 = c.save_todo(
summary="mop the floor", categories=["housework"], priority=4, uid="ctuid1"
)
assert len(c.todos()) == 2
# adding a todo without a UID, it should also work (library will add the missing UID)
t7 = c.save_todo(todo7)
assert len(c.todos()) == 3
logging.info("Fetching the events (should be none)")
# c.events() should NOT return todo-items
events = c.events()
assert len(events) == 0
t7.delete()
def testTodos(self):
"""
This test will exercise the cal.todos() method,
and in particular the sort_keys attribute.
* It will list out all pending tasks, sorted by due date
* It will list out all pending tasks, sorted by priority
"""
self.skip_on_compatibility_flag("read_only")
# Not all server implementations have support for VTODO
self.skip_on_compatibility_flag("no_todo")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
# add todo-item
t1 = c.save_todo(todo)
t2 = c.save_todo(todo2)
t4 = c.save_todo(todo4)
todos = c.todos()
assert len(todos) == 3
def uids(lst):
return [x.instance.vtodo.uid for x in lst]
## Default sort order is (due, priority).
assert uids(todos) == uids([t2, t1, t4])
todos = c.todos(sort_keys=("priority",))
## sort_key is considered to be a legacy parameter,
## but should work at least until 1.0
todos2 = c.todos(sort_key="priority")
def pri(lst):
return [
x.instance.vtodo.priority.value
for x in lst
if hasattr(x.instance.vtodo, "priority")
]
assert pri(todos) == pri([t4, t2])
assert pri(todos2) == pri([t4, t2])
todos = c.todos(
sort_keys=(
"summary",
"priority",
)
)
assert uids(todos) == uids([t4, t2, t1])
## str of CalendarObjectResource is slightly inconsistent compared to
## the str of Calendar objects, as the class name is included. Perhaps
## it should be removed, hence no assertions on that.
## (the statements below is mostly to exercise the __str__ and __repr__)
assert str(todos[0].url) in str(todos[0])
assert str(todos[0].url) in repr(todos[0])
assert "Todo" in repr(todos[0])
def testTodoDatesearch(self):
"""
Let's see how the date search method works for todo events
"""
self.skip_on_compatibility_flag("read_only")
# bedeworks does not support VTODO
self.skip_on_compatibility_flag("no_todo")
self.skip_on_compatibility_flag("no_todo_datesearch")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
# add todo-item
t1 = c.save_todo(todo)
t2 = c.save_todo(todo2)
t3 = c.save_todo(todo3)
t4 = c.save_todo(todo4)
t5 = c.save_todo(todo5)
t6 = c.save_todo(todo6)
todos = c.todos()
if self.check_compatibility_flag("isnotdefined_not_working"):
assert len(todos) in (3, 6)
else:
assert len(todos) == 6
notodos = c.date_search( # default compfilter is events
start=datetime(1997, 4, 14), end=datetime(2015, 5, 14), expand=False
)
assert not notodos
# Now, this is interesting.
# t1 has due set but not dtstart set
# t2 and t3 has dtstart and due set
# t4 has neither dtstart nor due set.
# t5 has dtstart and due set prior to the search window
# t6 has dtstart and due set prior to the search window, but is yearly recurring.
# What will a date search yield?
noexpand = self.check_compatibility_flag("no_expand")
todos1 = c.date_search(
start=datetime(1997, 4, 14),
end=datetime(2015, 5, 14),
compfilter="VTODO",
expand=not noexpand,
)
todos2 = c.search(
start=datetime(1997, 4, 14),
end=datetime(2015, 5, 14),
todo=True,
expand=not noexpand,
split_expanded=False,
include_completed=True,
)
# The RFCs are pretty clear on this. rfc5545 states:
# A "VTODO" calendar component without the "DTSTART" and "DUE" (or
# "DURATION") properties specifies a to-do that will be associated
# with each successive calendar date, until it is completed.
# and RFC4791, section 9.9 also says that events without
# dtstart or due should be counted. The expanded yearly event
# should be returned as one object with multiple BEGIN:VEVENT
# and DTSTART lines.
# Hence a compliant server should chuck out all the todos except t5.
# Not all servers perform according to (my interpretation of) the RFC.
foo = 5
if self.check_compatibility_flag(
"no_recurring"
) or self.check_compatibility_flag("no_recurring_todo"):
foo -= 1 ## t6 will not be returned
if self.check_compatibility_flag(
"vtodo_datesearch_nodtstart_task_is_skipped"
) or self.check_compatibility_flag(
"vtodo_datesearch_nodtstart_task_is_skipped_in_closed_date_range"
):
foo -= 2 ## t1 and t4 not returned
elif self.check_compatibility_flag("vtodo_datesearch_notime_task_is_skipped"):
foo -= 1 ## t4 not returned
assert len(todos1) == foo
assert len(todos2) == foo
## verify that "expand" works
if (
not self.check_compatibility_flag("no_expand")
and not self.check_compatibility_flag("no_recurring")
and not self.check_compatibility_flag("no_recurring_todo")
):
assert len([x for x in todos1 if "DTSTART:20020415T1330" in x.data]) == 1
assert len([x for x in todos2 if "DTSTART:20020415T1330" in x.data]) == 1
## exercise the default for expand (maybe -> False for open-ended search)
todos1 = c.date_search(start=datetime(2025, 4, 14), compfilter="VTODO")
todos2 = c.search(
start=datetime(2025, 4, 14), todo=True, include_completed=True
)
todos3 = c.search(start=datetime(2025, 4, 14), todo=True)
assert isinstance(todos1[0], Todo)
assert isinstance(todos2[0], Todo)
if not self.check_compatibility_flag("combined_search_not_working"):
assert isinstance(todos3[0], Todo)
## * t6 should be returned, as it's a yearly task spanning over 2025
## * t1 should probably be returned, as it has no due date set and hence
## has an infinite duration.
## * t4 should probably be returned, as it has no dtstart nor due and
## hence is also considered to span over infinite time
urls_found = [x.url for x in todos1]
urls_found2 = [x.url for x in todos1]
assert urls_found == urls_found2
if not (
self.check_compatibility_flag("no_recurring")
or self.check_compatibility_flag("no_recurring_todo")
):
urls_found.remove(t6.url)
if not self.check_compatibility_flag(
"vtodo_datesearch_nodtstart_task_is_skipped"
) and not self.check_compatibility_flag(
"vtodo_datesearch_notime_task_is_skipped"
):
urls_found.remove(t4.url)
if self.check_compatibility_flag("vtodo_no_due_infinite_duration"):
urls_found.remove(t1.url)
## everything should be popped from urls_found by now
assert len(urls_found) == 0
assert len([x for x in todos1 if "DTSTART:20270415T1330" in x.data]) == 0
assert len([x for x in todos2 if "DTSTART:20270415T1330" in x.data]) == 0
# TODO: prod the caldav server implementers about the RFC
# breakages.
def testTodoCompletion(self):
"""
Will check that todo-items can be completed and deleted
"""
self.skip_on_compatibility_flag("read_only")
# not all caldav servers support VTODO
self.skip_on_compatibility_flag("no_todo")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
# add todo-items
t1 = c.save_todo(todo)
t2 = c.save_todo(todo2)
t3 = c.save_todo(todo3, status="NEEDS-ACTION")
# There are now three todo-items at the calendar
todos = c.todos()
assert len(todos) == 3
# Complete one of them
t3.complete()
# There are now two todo-items at the calendar
todos = c.todos()
assert len(todos) == 2
# The historic todo-item can still be accessed
todos = c.todos(include_completed=True)
assert len(todos) == 3
t3_ = c.todo_by_uid(t3.id)
assert t3_.instance.vtodo.summary == t3.instance.vtodo.summary
assert t3_.instance.vtodo.uid == t3.instance.vtodo.uid
assert t3_.instance.vtodo.dtstart == t3.instance.vtodo.dtstart
t2.delete()
# ... the deleted one is gone ...
if not self.check_compatibility_flag("event_by_url_is_broken"):
todos = c.todos(include_completed=True)
assert len(todos) == 2
# date search should not include completed events ... hum.
# TODO, fixme.
# todos = c.date_search(
# start=datetime(1990, 4, 14), end=datetime(2015,5,14),
# compfilter='VTODO', hide_completed_todos=True)
# assert len(todos) == 1
def testTodoRecurringCompleteSafe(self):
self.skip_on_compatibility_flag("read_only")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
t6 = c.save_todo(todo6, status="NEEDS-ACTION")
if not self.check_compatibility_flag("rrule_takes_no_count"):
t8 = c.save_todo(todo8)
if not self.check_compatibility_flag("rrule_takes_no_count"):
assert len(c.todos()) == 2
else:
assert len(c.todos()) == 1
t6.complete(handle_rrule=True, rrule_mode="safe")
if self.check_compatibility_flag("rrule_takes_no_count"):
assert len(c.todos()) == 1
assert len(c.todos(include_completed=True)) == 2
c.todos()[0].delete()
self.skip_on_compatibility_flag("rrule_takes_no_count")
assert len(c.todos()) == 2
assert len(c.todos(include_completed=True)) == 3
t8.complete(handle_rrule=True, rrule_mode="safe")
todos = c.todos()
assert len(todos) == 2
t8.complete(handle_rrule=True, rrule_mode="safe")
t8.complete(handle_rrule=True, rrule_mode="safe")
assert len(c.todos()) == 1
assert len(c.todos(include_completed=True)) == 5
[x.delete() for x in c.todos(include_completed=True)]
def testTodoRecurringCompleteThisandfuture(self):
self.skip_on_compatibility_flag("read_only")
c = self._fixCalendar(supported_calendar_component_set=["VTODO"])
t6 = c.save_todo(todo6, status="NEEDS-ACTION")
if not self.check_compatibility_flag("rrule_takes_no_count"):
t8 = c.save_todo(todo8)
if not self.check_compatibility_flag("rrule_takes_no_count"):
assert len(c.todos()) == 2
else:
assert len(c.todos()) == 1
t6.complete(handle_rrule=True, rrule_mode="thisandfuture")
all_todos = c.todos(include_completed=True)
if self.check_compatibility_flag("rrule_takes_no_count"):
assert len(c.todos()) == 1
assert len(all_todos) == 1
self.skip_on_compatibility_flag("rrule_takes_no_count")
assert len(c.todos()) == 2
assert len(all_todos) == 2
# assert sum([len(x.icalendar_instance.subcomponents) for x in all_todos]) == 5
t8.complete(handle_rrule=True, rrule_mode="thisandfuture")
assert len(c.todos()) == 2
t8.complete(handle_rrule=True, rrule_mode="thisandfuture")
t8.complete(handle_rrule=True, rrule_mode="thisandfuture")
assert len(c.todos()) == 1
def testUtf8Event(self):
self.skip_on_compatibility_flag("read_only")
# TODO: what's the difference between this and testUnicodeEvent?
# TODO: split up in creating a calendar with non-ascii name
# and an event with non-ascii description
self.skip_on_compatibility_flag("no_mkcalendar")
if not self.check_compatibility_flag(
"unique_calendar_ids"
) and self.cleanup_regime in ("light", "pre"):
self._teardownCalendar(cal_id=self.testcal_id)
c = self.principal.make_calendar(name="Yølp", cal_id=self.testcal_id)
# add event
e1 = c.save_event(
ev1.replace("Bastille Day Party", "Bringebærsyltetøyfestival")
)
# fetch it back
events = c.events()
# no todos should be added
if not self.check_compatibility_flag("no_todo"):
todos = c.todos()
assert len(todos) == 0
# COMPATIBILITY PROBLEM - todo, look more into it
if "zimbra" not in str(c.url):
assert len(events) == 1
if (
not self.check_compatibility_flag("unique_calendar_ids")
and self.cleanup_regime == "post"
):
self._teardownCalendar(cal_id=self.testcal_id)
def testUnicodeEvent(self):
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_mkcalendar")
if not self.check_compatibility_flag(
"unique_calendar_ids"
) and self.cleanup_regime in ("light", "pre"):
self._teardownCalendar(cal_id=self.testcal_id)
c = self.principal.make_calendar(name="Yølp", cal_id=self.testcal_id)
# add event
e1 = c.save_event(
to_str(ev1.replace("Bastille Day Party", "Bringebærsyltetøyfestival"))
)
# c.events() should give a full list of events
events = c.events()
# COMPATIBILITY PROBLEM - todo, look more into it
if "zimbra" not in str(c.url):
assert len(events) == 1
def testSetCalendarProperties(self):
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_displayname")
c = self._fixCalendar()
assert c.url is not None
## TODO: there are more things in this test that
## should be run even if mkcalendar is not available.
self.skip_on_compatibility_flag("no_mkcalendar")
props = c.get_properties(
[
dav.DisplayName(),
]
)
assert "Yep" == props[dav.DisplayName.tag]
# Creating a new calendar with different ID but with existing name
# TODO: why do we do this?
if not self.check_compatibility_flag(
"unique_calendar_ids"
) and self.cleanup_regime in ("light", "pre"):
self._teardownCalendar(cal_id=self.testcal_id2)
cc = self.principal.make_calendar("Yep", self.testcal_id2)
cc.delete()
c.set_properties(
[
dav.DisplayName("hooray"),
]
)
props = c.get_properties(
[
dav.DisplayName(),
]
)
assert props[dav.DisplayName.tag] == "hooray"
## calendar color and calendar order are extra properties not
## described by RFC5545, but anyway supported by quite some
## server implementations
if self.check_compatibility_flag("calendar_color"):
props = c.get_properties(
[
ical.CalendarColor(),
]
)
assert props[ical.CalendarColor.tag] != "sort of blueish"
c.set_properties(
[
ical.CalendarColor("blue"),
]
)
props = c.get_properties(
[
ical.CalendarColor(),
]
)
assert props[ical.CalendarColor.tag] == "blue"
if self.check_compatibility_flag("calendar_order"):
props = c.get_properties(
[
ical.CalendarOrder(),
]
)
assert props[ical.CalendarOrder.tag] != "-434"
c.set_properties(
[
ical.CalendarOrder("12"),
]
)
props = c.get_properties(
[
ical.CalendarOrder(),
]
)
assert props[ical.CalendarOrder.tag] == "12"
def testLookupEvent(self):
"""
Makes sure we can add events and look them up by URL and ID
"""
self.skip_on_compatibility_flag("read_only")
# Create calendar
c = self._fixCalendar()
assert c.url is not None
# add event
e1 = c.save_event(ev1)
assert e1.url is not None
# Verify that we can look it up, both by URL and by ID
if not self.check_compatibility_flag("event_by_url_is_broken"):
e2 = c.event_by_url(e1.url)
assert e2.instance.vevent.uid == e1.instance.vevent.uid
assert e2.url == e1.url
e3 = c.event_by_uid("20010712T182145Z-123401@example.com")
assert e3.instance.vevent.uid == e1.instance.vevent.uid
assert e3.url == e1.url
# Knowing the URL of an event, we should be able to get to it
# without going through a calendar object
if not self.check_compatibility_flag("event_by_url_is_broken"):
e4 = Event(client=self.caldav, url=e1.url)
e4.load()
assert e4.instance.vevent.uid == e1.instance.vevent.uid
with pytest.raises(error.NotFoundError):
c.event_by_uid("0")
c.save_event(evr)
with pytest.raises(error.NotFoundError):
c.event_by_uid("0")
def testCreateOverwriteDeleteEvent(self):
"""
Makes sure we can add events and delete them
"""
self.skip_on_compatibility_flag("read_only")
# Create calendar
c = self._fixCalendar()
assert c.url is not None
# attempts on updating/overwriting a non-existing event should fail
with pytest.raises(error.ConsistencyError):
c.save_event(ev1, no_create=True)
# no_create and no_overwrite is mutually exclusive, this will always
# raise an error (unless the ical given is blank)
with pytest.raises(error.ConsistencyError):
c.save_event(ev1, no_create=True, no_overwrite=True)
# add event
e1 = c.save_event(ev1)
if not self.check_compatibility_flag(
"no_todo"
) and not self.check_compatibility_flag("no_todo_on_standard_calendar"):
t1 = c.save_todo(todo)
assert e1.url is not None
if not self.check_compatibility_flag(
"no_todo"
) and not self.check_compatibility_flag("no_todo_on_standard_calendar"):
assert t1.url is not None
if not self.check_compatibility_flag("event_by_url_is_broken"):
assert c.event_by_url(e1.url).url == e1.url
assert c.event_by_uid(e1.id).url == e1.url
## add same event again. As it has same uid, it should be overwritten
## (but some calendars may throw a "409 Conflict")
if not self.check_compatibility_flag("no_overwrite"):
e2 = c.save_event(ev1)
if not self.check_compatibility_flag(
"no_todo"
) and not self.check_compatibility_flag("no_todo_on_standard_calendar"):
t2 = c.save_todo(todo)
## add same event with "no_create". Should work like a charm.
e2 = c.save_event(ev1, no_create=True)
if not self.check_compatibility_flag(
"no_todo"
) and not self.check_compatibility_flag("no_todo_on_standard_calendar"):
t2 = c.save_todo(todo, no_create=True)
## this should also work.
e2.instance.vevent.summary.value = e2.instance.vevent.summary.value + "!"
e2.save(no_create=True)
if not self.check_compatibility_flag(
"no_todo"
) and not self.check_compatibility_flag("no_todo_on_standard_calendar"):
t2.instance.vtodo.summary.value = t2.instance.vtodo.summary.value + "!"
t2.save(no_create=True)
if not self.check_compatibility_flag("event_by_url_is_broken"):
e3 = c.event_by_url(e1.url)
assert e3.instance.vevent.summary.value == "Bastille Day Party!"
## "no_overwrite" should throw a ConsistencyError
with pytest.raises(error.ConsistencyError):
c.save_event(ev1, no_overwrite=True)
if not self.check_compatibility_flag(
"no_todo"
) and not self.check_compatibility_flag("no_todo_on_standard_calendar"):
with pytest.raises(error.ConsistencyError):
c.save_todo(todo, no_overwrite=True)
# delete event
e1.delete()
if not self.check_compatibility_flag(
"no_todo"
) and not self.check_compatibility_flag("no_todo_on_standard_calendar"):
t1.delete
if self.check_compatibility_flag("non_existing_raises_other"):
expected_error = error.DAVError
else:
expected_error = error.NotFoundError
# Verify that we can't look it up, both by URL and by ID
with pytest.raises(self._notFound()):
c.event_by_url(e1.url)
if not self.check_compatibility_flag("no_overwrite"):
with pytest.raises(self._notFound()):
c.event_by_url(e2.url)
if not self.check_compatibility_flag("event_by_url_is_broken"):
with pytest.raises(error.NotFoundError):
c.event_by_uid("20010712T182145Z-123401@example.com")
def testDateSearchAndFreeBusy(self):
"""
Verifies that date search works with a non-recurring event
Also verifies that it's possible to change a date of a
non-recurring event
"""
self.skip_on_compatibility_flag("read_only")
# Create calendar, add event ...
c = self._fixCalendar()
assert c.url is not None
e = c.save_event(ev1)
## just a sanity check to increase coverage (ref
## https://github.com/python-caldav/caldav/issues/93) -
## expand=False and no end date given is no-no
with pytest.raises(error.DAVError):
c.date_search(datetime(2006, 7, 13, 17, 00, 00), expand=True)
# .. and search for it.
r1 = c.date_search(
datetime(2006, 7, 13, 17, 00, 00),
datetime(2006, 7, 15, 17, 00, 00),
expand=False,
)
r2 = c.search(
event=True,
start=datetime(2006, 7, 13, 17, 00, 00),
end=datetime(2006, 7, 15, 17, 00, 00),
expand=False,
)
assert e.instance.vevent.uid == r1[0].instance.vevent.uid
assert e.instance.vevent.uid == r2[0].instance.vevent.uid
assert len(r1) == 1
assert len(r2) == 1
## The rest of the test code here depends on us changing an event.
## Apparently, in google calendar, events are immutable.
## TODO: delete the old event and insert a new one rather than skipping.
## (But events should not be immutable! One should be able to change an event, push the changes
## out to all participants and all copies of the calendar, and let everyone know that it's a
## changed event and not a cancellation and a new event).
self.skip_on_compatibility_flag("no_overwrite")
# ev2 is same UID, but one year ahead.
# The timestamp should change.
e.data = ev2
e.save()
r1 = c.date_search(
datetime(2006, 7, 13, 17, 00, 00),
datetime(2006, 7, 15, 17, 00, 00),
expand=False,
)
r2 = c.search(
event=True,
start=datetime(2006, 7, 13, 17, 00, 00),
end=datetime(2006, 7, 15, 17, 00, 00),
expand=False,
)
assert len(r1) == 0
assert len(r2) == 0
r1 = c.date_search(
datetime(2007, 7, 13, 17, 00, 00),
datetime(2007, 7, 15, 17, 00, 00),
expand=False,
)
assert len(r1) == 1
# date search without closing date should also find it
r = c.date_search(datetime(2007, 7, 13, 17, 00, 00), expand=False)
assert len(r) == 1
# Lets try a freebusy request as well
self.skip_on_compatibility_flag("no_freebusy_rfc4791")
freebusy = c.freebusy_request(
datetime(2007, 7, 13, 17, 00, 00), datetime(2007, 7, 15, 17, 00, 00)
)
# TODO: assert something more complex on the return object
assert isinstance(freebusy, FreeBusy)
assert freebusy.instance.vfreebusy
def testRecurringDateSearch(self):
"""
This is more sanity testing of the server side than testing of the
library per se. How will it behave if we serve it a recurring
event?
"""
self.skip_on_compatibility_flag("read_only")
self.skip_on_compatibility_flag("no_recurring")
c = self._fixCalendar()
# evr is a yearly event starting at 1997-02-11
e = c.save_event(evr)
## Without "expand", we should still find it when searching over 2008 ...
r = c.date_search(
datetime(2008, 11, 1, 17, 00, 00),
datetime(2008, 11, 3, 17, 00, 00),
expand=False,
)
r2 = c.search(
event=True,
start=datetime(2008, 11, 1, 17, 00, 00),
end=datetime(2008, 11, 3, 17, 00, 00),
expand=False,
)
assert len(r) == 1
assert len(r2) == 1
## With expand=True, we should find one occurrence
r1 = c.date_search(
datetime(2008, 11, 1, 17, 00, 00),
datetime(2008, 11, 3, 17, 00, 00),
expand=True,
)
r2 = c.search(
event=True,
start=datetime(2008, 11, 1, 17, 00, 00),
end=datetime(2008, 11, 3, 17, 00, 00),
expand=True,
)
assert len(r1) == 1
assert len(r2) == 1
assert r1[0].data.count("END:VEVENT") == 1
assert r2[0].data.count("END:VEVENT") == 1
## due to expandation, the DTSTART should be in 2008
assert r1[0].data.count("DTSTART;VALUE=DATE:2008") == 1
assert r2[0].data.count("DTSTART;VALUE=DATE:2008") == 1
## With expand=True and searching over two recurrences ...
r1 = c.date_search(
datetime(2008, 11, 1, 17, 00, 00),
datetime(2009, 11, 3, 17, 00, 00),
expand=True,
)
r2 = c.search(
event=True,
start=datetime(2008, 11, 1, 17, 00, 00),
end=datetime(2009, 11, 3, 17, 00, 00),
expand=True,
)
## According to https://tools.ietf.org/html/rfc4791#section-7.8.3, the
## resultset should be one vcalendar with two events.
assert len(r1) == 1
assert "RRULE" not in r1[0].data
assert r1[0].data.count("END:VEVENT") == 2
## However, the new search method will by default split it into
## two events
assert len(r2) == 2
assert "RRULE" not in r2[0].data
assert "RRULE" not in r2[1].data
assert r2[0].data.count("END:VEVENT") == 1
assert r2[1].data.count("END:VEVENT") == 1
# The recurring events should not be expanded when using the
# events() method
r = c.events()
if not self.check_compatibility_flag("no_mkcalendar"):
assert len(r) == 1
assert r[0].data.count("END:VEVENT") == 1
def testOffsetURL(self):
"""
pass a URL pointing to a calendar or a user to the DAVClient class,
and things should still work
"""
urls = [self.principal.url, self._fixCalendar().url]
connect_params = self.server_params.copy()
connect_params.pop("url")
for url in urls:
conn = client(**connect_params, url=url)
principal = conn.principal()
calendars = principal.calendars()
def testObjects(self):
# TODO: description ... what are we trying to test for here?
o = DAVObject(self.caldav)
with pytest.raises(Exception):
o.save()
# We want to run all tests in the above class through all caldav_servers;
# and I don't really want to create a custom nose test loader. The
# solution here seems to be to generate one child class for each
# caldav_url, and inject it into the module namespace. TODO: This is
# very hacky. If there are better ways to do it, please let me know.
# (maybe a custom nose test loader really would be the better option?)
# -- Tobias Brox <t-caldav@tobixen.no>, 2013-10-10
_servernames = set()
for _caldav_server in caldav_servers:
# create a unique identifier out of the server domain name
_parsed_url = urlparse(_caldav_server["url"])
_servername = _parsed_url.hostname.replace(".", "_").replace("-", "_") + str(
_parsed_url.port or ""
)
while _servername in _servernames:
_servername = _servername + "_"
_servernames.add(_servername)
# create a classname and a class
_classname = "TestForServer_" + _servername
# inject the new class into this namespace
vars()[_classname] = type(
_classname,
(RepeatedFunctionalTestsBaseClass,),
{"server_params": _caldav_server},
)
class TestLocalRadicale(RepeatedFunctionalTestsBaseClass):
"""
Sets up a local Radicale server and runs the functional tests towards it
"""
def setup_method(self):
if not test_radicale:
pytest.skip("Skipping Radicale test due to configuration")
self.serverdir = tempfile.TemporaryDirectory()
self.serverdir.__enter__()
self.configuration = radicale.config.load("")
self.configuration.update(
{"storage": {"filesystem_folder": self.serverdir.name}}
)
self.server = radicale.server
self.server_params = {
"url": "http://%s:%i/" % (radicale_host, radicale_port),
"username": "user1",
"password": "any-password-seems-to-work",
}
self.server_params["backwards_compatibility_url"] = (
self.server_params["url"] + "user1"
)
self.server_params["incompatibilities"] = compatibility_issues.radicale
self.shutdown_socket, self.shutdown_socket_out = socket.socketpair()
self.radicale_thread = threading.Thread(
target=self.server.serve,
args=(self.configuration, self.shutdown_socket_out),
)
self.radicale_thread.start()
i = 0
while True:
try:
requests.get(self.server_params["url"])
break
except:
time.sleep(0.05)
i += 1
assert i < 100
try:
RepeatedFunctionalTestsBaseClass.setup_method(self)
except:
logging.critical("something bad happened in setup", exc_info=True)
self.teardown_method()
def teardown_method(self):
if not test_radicale:
return
self.shutdown_socket.close()
i = 0
self.serverdir.__exit__(None, None, None)
RepeatedFunctionalTestsBaseClass.teardown_method(self)
class TestLocalXandikos(RepeatedFunctionalTestsBaseClass):
"""
Sets up a local Xandikos server and runs the functional tests towards it
"""
def setup_method(self):
if not test_xandikos:
pytest.skip("Skipping Xadikos test due to configuration")
## TODO: https://github.com/jelmer/xandikos/issues/131#issuecomment-1054805270 suggests a simpler way to launch the xandikos server
self.serverdir = tempfile.TemporaryDirectory()
self.serverdir.__enter__()
## Most of the stuff below is cargo-cult-copied from xandikos.web.main
## Later jelmer created some API that could be used for this
## Threshold put high due to https://github.com/jelmer/xandikos/issues/235
## index_threshold not supported in latest release yet
# self.backend = XandikosBackend(path=self.serverdir.name, index_threshold=0, paranoid=True)
# self.backend = XandikosBackend(path=self.serverdir.name, index_threshold=9999, paranoid=True)
self.backend = XandikosBackend(path=self.serverdir.name)
self.backend._mark_as_principal("/sometestuser/")
self.backend.create_principal("/sometestuser/", create_defaults=True)
mainapp = XandikosApp(
self.backend, current_user_principal="sometestuser", strict=True
)
async def xandikos_handler(request):
return await mainapp.aiohttp_handler(request, "/")
self.xapp = aiohttp.web.Application()
self.xapp.router.add_route("*", "/{path_info:.*}", xandikos_handler)
## https://stackoverflow.com/questions/51610074/how-to-run-an-aiohttp-server-in-a-thread
self.xapp_loop = asyncio.new_event_loop()
self.xapp_runner = aiohttp.web.AppRunner(self.xapp)
asyncio.set_event_loop(self.xapp_loop)
self.xapp_loop.run_until_complete(self.xapp_runner.setup())
self.xapp_site = aiohttp.web.TCPSite(
self.xapp_runner, host=xandikos_host, port=xandikos_port
)
self.xapp_loop.run_until_complete(self.xapp_site.start())
def aiohttp_server():
self.xapp_loop.run_forever()
self.xandikos_thread = threading.Thread(target=aiohttp_server)
self.xandikos_thread.start()
self.server_params = {"url": "http://%s:%i/" % (xandikos_host, xandikos_port)}
self.server_params["backwards_compatibility_url"] = (
self.server_params["url"] + "sometestuser"
)
self.server_params["incompatibilities"] = compatibility_issues.xandikos
RepeatedFunctionalTestsBaseClass.setup_method(self)
def teardown_method(self):
if not test_xandikos:
return
self.xapp_loop.stop()
## ... but the thread may be stuck waiting for a request ...
def silly_request():
try:
requests.get(self.server_params["url"])
except:
pass
threading.Thread(target=silly_request).start()
i = 0
while self.xapp_loop.is_running():
time.sleep(0.05)
i += 1
assert i < 100
self.xapp_loop.run_until_complete(self.xapp_runner.cleanup())
i = 0
while self.xandikos_thread.is_alive():
time.sleep(0.05)
i += 1
assert i < 100
self.serverdir.__exit__(None, None, None)
RepeatedFunctionalTestsBaseClass.teardown_method(self)
|