123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- import copy
- import os
- import pathlib
- import tempfile
- import unittest.mock
- import icalendar.cal
- import pytest
- import ical2vdir
- def _normalize_ical(ical: bytes) -> bytes:
- return ical.replace(b"\n", b"\r\n")
- _SINGLE_EVENT_ICAL = _normalize_ical(
- b"""BEGIN:VEVENT
- SUMMARY:party
- DTSTART:20201024T100000Z
- DTEND:20201026T120000Z
- DTSTAMP:20200205T160640Z
- UID:1qa2ws3ed4rf5tg@google.com
- SEQUENCE:0
- CREATED:20191231T103841Z
- DESCRIPTION:
- LAST-MODIFIED:20191231T103841Z
- LOCATION:
- STATUS:CONFIRMED
- TRANSP:OPAQUE
- END:VEVENT
- """
- )
- def test__write_event_cleanup(tmp_path: pathlib.Path) -> None:
- event = icalendar.cal.Event.from_ical(_SINGLE_EVENT_ICAL)
- with pytest.raises(IsADirectoryError):
- ical2vdir._write_event(event, tmp_path)
- assert tmp_path.is_dir()
- def test__write_event_move_failed(tmp_path: pathlib.Path) -> None:
- event = icalendar.cal.Event.from_ical(_SINGLE_EVENT_ICAL)
- output_path = tmp_path.joinpath("test.ics")
- with unittest.mock.patch("os.unlink") as unlink_mock, unittest.mock.patch(
- "shutil.move", side_effect=Exception("test")
- ), pytest.raises(Exception, match=r"^test$"):
- ical2vdir._write_event(event, output_path)
- assert not output_path.exists()
- unlink_mock.assert_called_once()
- unlink_args, _ = unlink_mock.call_args
- (temp_path,) = unlink_args
- assert os.path.dirname(temp_path) == os.path.dirname(tempfile.mkdtemp())
- @pytest.mark.parametrize(
- ("event_ical", "expected_filename"),
- [
- (
- _SINGLE_EVENT_ICAL,
- "1qa2ws3ed4rf5tg@google.com.ics",
- ),
- (
- b"""BEGIN:VEVENT
- SUMMARY:work
- DTSTART;TZID=Europe/Vienna:20150924T090000
- DTEND;TZID=Europe/Vienna:20150924T123000
- DTSTAMP:20200205T160640Z
- UID:1qa2ws3ed4rf5tg@google.com
- RECURRENCE-ID;TZID=Europe/Vienna:20150924T090000
- SEQUENCE:5
- CREATED:20140228T212925Z
- DESCRIPTION:
- LAST-MODIFIED:20150908T181423Z
- LOCATION:
- STATUS:CONFIRMED
- TRANSP:TRANSPARENT
- END:VEVENT
- """,
- "1qa2ws3ed4rf5tg@google.com.20150924T090000+0200.ics",
- ),
- ],
- )
- def test__event_vdir_filename(event_ical: bytes, expected_filename: str) -> None:
- event = icalendar.cal.Event.from_ical(event_ical)
- assert ical2vdir._event_vdir_filename(event) == expected_filename
- @pytest.mark.parametrize("event_ical", [_SINGLE_EVENT_ICAL])
- def test__sync_event_create(tmp_path: pathlib.Path, event_ical: bytes) -> None:
- event = icalendar.cal.Event.from_ical(event_ical)
- ical2vdir._sync_event(event, tmp_path)
- (ics_path,) = tmp_path.iterdir()
- assert ics_path.name == "1qa2ws3ed4rf5tg@google.com.ics"
- assert ics_path.read_bytes() == _SINGLE_EVENT_ICAL
- @pytest.mark.parametrize("event_ical", [_SINGLE_EVENT_ICAL])
- def test__sync_event_update(tmp_path: pathlib.Path, event_ical: bytes) -> None:
- event = icalendar.cal.Event.from_ical(event_ical)
- ical2vdir._sync_event(event, tmp_path)
- event["SUMMARY"] += " suffix"
- ical2vdir._sync_event(event, tmp_path)
- (ics_path,) = tmp_path.iterdir()
- assert ics_path.name == event["UID"] + ".ics"
- assert ics_path.read_bytes() == _SINGLE_EVENT_ICAL.replace(
- b"party", b"party suffix"
- )
- @pytest.mark.parametrize("event_ical", [_SINGLE_EVENT_ICAL])
- def test__sync_event_unchanged(tmp_path: pathlib.Path, event_ical: bytes) -> None:
- event = icalendar.cal.Event.from_ical(event_ical)
- ical2vdir._sync_event(event, tmp_path)
- (ics_path,) = tmp_path.iterdir()
- old_stat = copy.deepcopy(ics_path.stat())
- ical2vdir._sync_event(event, tmp_path)
- assert ics_path.stat() == old_stat
- assert ics_path.read_bytes() == _SINGLE_EVENT_ICAL
|