myTestFreqAI/tests/util/test_periodiccache.py
Ubuntu 17199e9a44
Some checks failed
Pre-commit auto-update / auto-update (push) Has been cancelled
first add
2025-04-21 21:11:51 +08:00

33 lines
877 B
Python

import time_machine
from freqtrade.util import PeriodicCache
def test_ttl_cache():
with time_machine.travel("2021-09-01 05:00:00 +00:00", tick=False) as t:
cache = PeriodicCache(5, ttl=60)
cache1h = PeriodicCache(5, ttl=3600)
assert cache.timer() == 1630472400.0
cache["a"] = 1235
cache1h["a"] = 555123
assert "a" in cache
assert "a" in cache1h
t.move_to("2021-09-01 05:00:59 +00:00")
assert "a" in cache
assert "a" in cache1h
# Cache expired
t.move_to("2021-09-01 05:01:00 +00:00")
assert "a" not in cache
assert "a" in cache1h
t.move_to("2021-09-01 05:59:59 +00:00")
assert "a" not in cache
assert "a" in cache1h
t.move_to("2021-09-01 06:00:00 +00:00")
assert "a" not in cache
assert "a" not in cache1h