from datetime import datetime, timedelta, date, timezone from pathlib import Path import sys import pytest # type: ignore import my.time.tz.main as TZ import my.time.tz.via_location as LTZ def test_iter_tzs() -> None: ll = list(LTZ._iter_tzs()) assert len(ll) > 3 def test_past() -> None: # should fallback to the home location provider dt = D('20000101 12:34:45') dt = TZ.localize(dt) tz = dt.tzinfo assert tz is not None assert getattr(tz, 'zone') == 'America/New_York' def test_future() -> None: fut = datetime.now() + timedelta(days=100) # shouldn't crash at least assert TZ.localize(fut) is not None def test_tz() -> None: # todo hmm, the way it's implemented at the moment, never returns None? # not present in the test data tz = LTZ._get_tz(D('20200101 10:00:00')) assert tz is not None assert tz.zone == 'Europe/Sofia' tz = LTZ._get_tz(D('20170801 11:00:00')) assert tz is not None assert tz.zone == 'Europe/Vienna' tz = LTZ._get_tz(D('20170730 10:00:00')) assert tz is not None assert tz.zone == 'Europe/Rome' tz = LTZ._get_tz(D('20201001 14:15:16')) assert tz is not None assert tz.zone == 'Europe/Moscow' tz = LTZ._get_tz(datetime.min) assert tz is not None assert tz.zone == 'America/New_York' def D(dstr: str) -> datetime: return datetime.strptime(dstr, '%Y%m%d %H:%M:%S') # TODO copy pasted from location.py, need to extract some common provider @pytest.fixture(autouse=True) def prepare(tmp_path: Path): LTZ._FASTER = True from more_itertools import one testdata = Path(__file__).absolute().parent.parent / 'testdata' assert testdata.exists(), testdata track = one(testdata.rglob('italy-slovenia-2017-07-29.json')) # todo ugh. unnecessary zipping, but at the moment takeout provider doesn't support plain dirs import zipfile with zipfile.ZipFile(tmp_path / 'takeout.zip', 'w') as zf: zf.writestr('Takeout/Location History/Location History.json', track.read_bytes()) # FIXME ugh. early import/inheritance of user_confg in my.google.takeout.paths messes things up.. from my.cfg import config class google: takeout_path = tmp_path config.google = google # type: ignore class location: home = ( # supports ISO strings ('2005-12-04' , (42.697842, 23.325973)), # Bulgaria, Sofia # supports date/datetime objects (date(year=1980, month=2, day=15) , (40.7128 , -74.0060 )), # NY # check tz handling.. (datetime.fromtimestamp(1600000000, tz=timezone.utc), (55.7558 , 37.6173 )), # Moscow, Russia ) # note: order doesn't matter, will be sorted in the data provider config.location = location # type: ignore yield