mirror of
https://github.com/long2ice/fastapi-cache.git
synced 2026-03-24 20:47:54 +00:00
fix tests
This commit is contained in:
@@ -99,10 +99,10 @@ def test_pydantic_model() -> None:
|
||||
|
||||
def test_non_get() -> None:
|
||||
with TestClient(app) as client:
|
||||
response = client.put("/uncached_put")
|
||||
response = client.put("/cached_put")
|
||||
assert "X-FastAPI-Cache" not in response.headers
|
||||
assert response.json() == {"value": 1}
|
||||
response = client.put("/uncached_put")
|
||||
response = client.put("/cached_put")
|
||||
assert "X-FastAPI-Cache" not in response.headers
|
||||
assert response.json() == {"value": 2}
|
||||
|
||||
@@ -115,25 +115,23 @@ def test_alternate_injected_namespace() -> None:
|
||||
|
||||
def test_cache_control() -> None:
|
||||
with TestClient(app) as client:
|
||||
response = client.put("/uncached_put")
|
||||
assert "X-FastAPI-Cache" not in response.headers
|
||||
response = client.get("/cached_put")
|
||||
assert response.json() == {"value": 1}
|
||||
|
||||
# HIT
|
||||
response = client.put("/uncached_put")
|
||||
assert response.headers.get("X-FastAPI-Cache") == "HIT"
|
||||
response = client.get("/cached_put")
|
||||
assert response.json() == {"value": 1}
|
||||
|
||||
# no-cache
|
||||
response = client.put("/uncached_put", headers={"Cache-Control": "no-cache"})
|
||||
response = client.get("/cached_put", headers={"Cache-Control": "no-cache"})
|
||||
assert response.json() == {"value": 2}
|
||||
|
||||
response = client.put("/uncached_put")
|
||||
response = client.get("/cached_put")
|
||||
assert response.json() == {"value": 2}
|
||||
|
||||
# no-store
|
||||
response = client.put("/uncached_put", headers={"Cache-Control": "no-store"})
|
||||
response = client.get("/cached_put", headers={"Cache-Control": "no-store"})
|
||||
assert response.json() == {"value": 3}
|
||||
|
||||
response = client.put("/uncached_put")
|
||||
response = client.get("/cached_put")
|
||||
assert response.json() == {"value": 2}
|
||||
|
||||
Reference in New Issue
Block a user