File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ from typing import Optional
2
+
1
3
from fastapi import APIRouter , Body , status
2
4
from pydantic import BaseModel
3
5
@@ -28,6 +30,11 @@ async def create_window_2(window: WindowAPI):
28
30
return await window .save ()
29
31
30
32
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
+
31
38
@house_router .post ("/houses/" , response_model = HouseAPI )
32
39
async def create_house (window : WindowAPI ):
33
40
house = HouseAPI (name = "test_name" , windows = [window ])
Original file line number Diff line number Diff line change @@ -9,6 +9,22 @@ async def test_create_window(api_client):
9
9
assert resp_json ["y" ] == 20
10
10
11
11
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
+
12
28
async def test_create_house (api_client ):
13
29
payload = {"x" : 10 , "y" : 20 }
14
30
resp = await api_client .post ("/v1/houses/" , json = payload )
You can’t perform that action at this time.
0 commit comments