Skip to content

Commit 8892aac

Browse files
authored
Add tests with case of {id} in fastapi path (#1100)
1 parent 687b4a7 commit 8892aac

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

tests/fastapi/routes.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from typing import Optional
2+
13
from fastapi import APIRouter, Body, status
24
from pydantic import BaseModel
35

@@ -28,6 +30,11 @@ async def create_window_2(window: WindowAPI):
2830
return await window.save()
2931

3032

33+
@house_router.get("/windows/{id}", response_model=Optional[WindowAPI])
34+
async def get_window(id: PydanticObjectId):
35+
return await WindowAPI.get(id)
36+
37+
3138
@house_router.post("/houses/", response_model=HouseAPI)
3239
async def create_house(window: WindowAPI):
3340
house = HouseAPI(name="test_name", windows=[window])

tests/fastapi/test_api.py

+16
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,22 @@ async def test_create_window(api_client):
99
assert resp_json["y"] == 20
1010

1111

12+
async def test_get_window(api_client):
13+
payload = {"x": 10, "y": 20}
14+
data1 = (
15+
(await api_client.post("/v1/windows/", json=payload))
16+
.raise_for_status()
17+
.json()
18+
)
19+
window_id = data1["_id"]
20+
data2 = (
21+
(await api_client.get(f"/v1/windows/{window_id}"))
22+
.raise_for_status()
23+
.json()
24+
)
25+
assert data2 == data1
26+
27+
1228
async def test_create_house(api_client):
1329
payload = {"x": 10, "y": 20}
1430
resp = await api_client.post("/v1/houses/", json=payload)

0 commit comments

Comments
 (0)