forked from OCA/rest-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_generic_extendable.py
More file actions
224 lines (205 loc) · 8.62 KB
/
Copy pathtest_generic_extendable.py
File metadata and controls
224 lines (205 loc) · 8.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from requests import Response
from odoo.tests.common import tagged
from fastapi.exceptions import ResponseValidationError
from .common import FastAPITransactionCase
from .routers import demo_pydantic_router
from .schemas import PrivateCustomer, PrivateUser, User
@tagged("post_install", "-at_install")
class TestUser(FastAPITransactionCase):
@classmethod
def setUpClass(cls) -> None:
super().setUpClass()
def test_app_components(self):
with self._create_test_client(router=demo_pydantic_router) as test_client:
to_openapi = test_client.app.openapi()
# Check post input and output types
self.assertEqual(
to_openapi["paths"]["/post_user"]["post"]["requestBody"]["content"][
"application/json"
]["schema"]["$ref"],
"#/components/schemas/User",
)
self.assertEqual(
to_openapi["paths"]["/post_user"]["post"]["responses"]["200"][
"content"
]["application/json"]["schema"]["$ref"],
"#/components/schemas/UserSearchResponse",
)
self.assertEqual(
to_openapi["paths"]["/post_private_user"]["post"]["requestBody"][
"content"
]["application/json"]["schema"]["$ref"],
"#/components/schemas/PrivateUser",
)
self.assertEqual(
to_openapi["paths"]["/post_private_user"]["post"]["responses"]["200"][
"content"
]["application/json"]["schema"]["$ref"],
"#/components/schemas/User",
)
self.assertEqual(
to_openapi["paths"]["/post_private_user_generic"]["post"][
"requestBody"
]["content"]["application/json"]["schema"]["$ref"],
"#/components/schemas/PrivateUser",
)
self.assertEqual(
to_openapi["paths"]["/post_private_user_generic"]["post"]["responses"][
"200"
]["content"]["application/json"]["schema"]["$ref"],
"#/components/schemas/UserSearchResponse",
)
# Check Pydantic model extension
self.assertEqual(
set(to_openapi["components"]["schemas"]["User"]["properties"].keys()),
{"name", "address"},
)
self.assertEqual(
set(
to_openapi["components"]["schemas"]["PrivateUser"][
"properties"
].keys()
),
{"name", "address", "password"},
)
self.assertEqual(
to_openapi["components"]["schemas"]["UserSearchResponse"]["properties"][
"items"
]["items"]["$ref"],
"#/components/schemas/User",
)
def test_post_user(self):
name = "Jean Dupont"
address = "Rue du Puits 12, 4000 Liège"
pydantic_data = User(name=name, address=address)
# Assert that class was correctly extended
self.assertTrue(pydantic_data.address)
with self._create_test_client(router=demo_pydantic_router) as test_client:
response: Response = test_client.post(
"/post_user",
headers={
"Content-Type": "application/json",
},
content=pydantic_data.model_dump_json(),
)
self.assertEqual(response.status_code, 200)
res = response.json()
self.assertEqual(res["total"], 1)
user = res["items"][0]
self.assertEqual(user["name"], name)
self.assertEqual(user["address"], address)
self.assertFalse("password" in user.keys())
def test_post_private_user(self):
"""
/post_private_user return attributes from User, but not PrivateUser
Security check: this method should never return attributes from
derived type PrivateUser, even thought a PrivateUser object
is given as input.
"""
name = "Jean Dupont"
address = "Rue du Puits 12, 4000 Liège"
password = "dummy123"
pydantic_data = PrivateUser(name=name, address=address, password=password)
# Assert that class was correctly extended
self.assertTrue(pydantic_data.address)
self.assertTrue(pydantic_data.password)
with self._create_test_client(router=demo_pydantic_router) as test_client:
response: Response = test_client.post(
"/post_private_user",
headers={
"Content-Type": "application/json",
},
content=pydantic_data.model_dump_json(),
)
self.assertEqual(response.status_code, 200)
user = response.json()
self.assertEqual(user["name"], name)
self.assertEqual(user["address"], address)
# Private attrs were not returned
self.assertFalse("password" in user.keys())
def test_post_private_user_generic(self):
"""
/post_private_user_generic return attributes from User, but not PrivateUser
Security check: this method should never return attributes from
derived type PrivateUser, even thought a PrivateUser object
is given as input.
This test is specifically made to test this assertion with generics.
"""
name = "Jean Dupont"
address = "Rue du Puits 12, 4000 Liège"
password = "dummy123"
pydantic_data = PrivateUser(name=name, address=address, password=password)
# Assert that class was correctly extended
self.assertTrue(pydantic_data.address)
self.assertTrue(pydantic_data.password)
with self._create_test_client(router=demo_pydantic_router) as test_client:
response: Response = test_client.post(
"/post_private_user_generic",
headers={
"Content-Type": "application/json",
},
content=pydantic_data.model_dump_json(),
)
self.assertEqual(response.status_code, 200)
res = response.json()
self.assertEqual(res["total"], 1)
user = res["items"][0]
self.assertEqual(user["name"], name)
self.assertEqual(user["address"], address)
# Private attrs were not returned
self.assertFalse("password" in user.keys())
def test_get_user_failed_no_address(self):
"""
Try to get a specific user but having no address
-> Error because address is a required field on User (extended) class
:return:
"""
user = self.env["res.users"].create(
{
"name": "Michel Dupont",
"login": "michel",
}
)
with self._create_test_client(
router=demo_pydantic_router
) as test_client, self.assertRaises(ResponseValidationError):
test_client.get(f"/{user.id}")
def test_get_user_failed_no_pwd(self):
"""
Try to get a specific user having an address but no password.
-> No error because return type is User, not PrivateUser
:return:
"""
user = self.env["res.users"].create(
{
"name": "Michel Dupont",
"login": "michel",
"street": "Rue du Moulin",
}
)
self.assertFalse(user.password)
with self._create_test_client(router=demo_pydantic_router) as test_client:
response: Response = test_client.get(f"/private/{user.id}")
self.assertEqual(response.status_code, 200)
def test_extra_forbid_response_fails(self):
"""
If adding extra="forbid" to the User model, we cannot write
a router with a response type = User and returning PrivateUser
in the code
"""
name = "Jean Dupont"
address = "Rue du Puits 12, 4000 Liège"
password = "dummy123"
pydantic_data = PrivateCustomer(name=name, address=address, password=password)
with self.assertRaises(ResponseValidationError), self._create_test_client(
router=demo_pydantic_router
) as test_client:
test_client.post(
"/post_private_customer",
headers={
"Content-Type": "application/json",
},
content=pydantic_data.model_dump_json(),
)