22 lines
589 B
Python
22 lines
589 B
Python
import pytest
|
|
from werkzeug.datastructures import ImmutableDict
|
|
|
|
from atst.utils.form_cache import DEFAULT_CACHE_NAME, FormCache
|
|
|
|
|
|
@pytest.fixture
|
|
def form_cache(app):
|
|
return FormCache(app.redis)
|
|
|
|
def test_cache_form_data(app, form_cache):
|
|
data = ImmutableDict({"kessel_run": "12 parsecs"})
|
|
key = form_cache.write(data)
|
|
assert app.redis.get("{}:{}".format(DEFAULT_CACHE_NAME, key))
|
|
|
|
|
|
def test_retrieve_form_data(form_cache):
|
|
data = ImmutableDict({"class": "corellian"})
|
|
key = form_cache.write(data)
|
|
retrieved = form_cache.read(key)
|
|
assert retrieved == data
|