-
Notifications
You must be signed in to change notification settings - Fork 337
/
Copy pathtest_forms.py
505 lines (400 loc) · 14.9 KB
/
test_forms.py
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
from contextlib import asynccontextmanager
from io import BytesIO
from typing import List, Tuple, Union
import pytest
from fastapi import HTTPException
from fastui import components
from fastui.forms import FormFile, Textarea, fastui_form
from pydantic import BaseModel
from starlette.datastructures import FormData, Headers, UploadFile
from typing_extensions import Annotated
class SimpleForm(BaseModel):
name: str
size: int = 4
class FakeRequest:
"""
TODO replace this with httpx or similar maybe, perhaps this is sufficient
"""
def __init__(self, form_data_list: List[Tuple[str, Union[str, UploadFile]]]):
self._form_data = FormData(form_data_list)
@asynccontextmanager
async def form(self):
yield self._form_data
def test_simple_form_fields():
m = components.ModelForm(model=SimpleForm, submit_url='/foobar/')
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foobar/',
'method': 'POST',
'type': 'ModelForm',
'formFields': [
{
'name': 'name',
'title': ['Name'],
'required': True,
'locked': False,
'htmlType': 'text',
'type': 'FormFieldInput',
},
{
'name': 'size',
'title': ['Size'],
'initial': 4,
'required': False,
'locked': False,
'htmlType': 'number',
'type': 'FormFieldInput',
},
],
}
def test_inline_form_fields():
m = components.ModelForm(model=SimpleForm, submit_url='/foobar/', display_mode='inline')
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foobar/',
'method': 'POST',
'type': 'ModelForm',
'displayMode': 'inline',
'footer': [],
'formFields': [
{
'name': 'name',
'title': ['Name'],
'required': True,
'locked': False,
'htmlType': 'text',
'type': 'FormFieldInput',
},
{
'name': 'size',
'title': ['Size'],
'initial': 4,
'required': False,
'locked': False,
'htmlType': 'number',
'type': 'FormFieldInput',
},
],
}
async def test_simple_form_submit():
form_dep = fastui_form(SimpleForm)
request = FakeRequest([('name', 'bar'), ('size', '123')])
m = await form_dep.dependency(request)
assert isinstance(m, SimpleForm)
assert m.model_dump() == {'name': 'bar', 'size': 123}
async def test_simple_form_submit_repeat():
form_dep = fastui_form(SimpleForm)
request = FakeRequest([('name', 'bar'), ('size', '123'), ('size', '456')])
with pytest.raises(HTTPException) as exc_info:
await form_dep.dependency(request)
# insert_assert(exc_info.value.detail)
assert exc_info.value.detail == {
'form': [{'type': 'int_type', 'loc': ('size',), 'msg': 'Input should be a valid integer'}]
}
class FormWithNested(BaseModel):
name: str
class NestedForm(BaseModel):
x: int
nested: NestedForm
def test_w_nested_form_fields():
m = components.ModelForm(model=FormWithNested, submit_url='/foobar/')
# insert_assert(m.model_dump(by_alias=True, exclude_none=True))
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foobar/',
'method': 'POST',
'type': 'ModelForm',
'formFields': [
{
'name': 'name',
'title': ['Name'],
'required': True,
'locked': False,
'htmlType': 'text',
'type': 'FormFieldInput',
},
{
'name': 'nested.x',
'title': ['NestedForm', 'X'],
'required': True,
'locked': False,
'htmlType': 'number',
'type': 'FormFieldInput',
},
],
}
async def test_w_nested_form_submit():
form_dep = fastui_form(FormWithNested)
request = FakeRequest([('name', 'bar'), ('nested.x', '123')])
m = await form_dep.dependency(request)
assert isinstance(m, FormWithNested)
assert m.model_dump() == {'name': 'bar', 'nested': {'x': 123}}
class FormWithFile(BaseModel):
profile_pic: Annotated[UploadFile, FormFile()]
def test_file():
m = components.ModelForm(model=FormWithFile, submit_url='/foobar/')
# insert_assert(m.model_dump(by_alias=True, exclude_none=True))
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foobar/',
'method': 'POST',
'type': 'ModelForm',
'formFields': [
{
'name': 'profile_pic',
'title': ['Profile Pic'],
'required': True,
'locked': False,
'multiple': False,
'type': 'FormFieldFile',
}
],
}
async def test_file_submit():
file = UploadFile(BytesIO(b'foobar'), size=6, filename='testing.txt')
request = FakeRequest([('profile_pic', file)])
m = await fastui_form(FormWithFile).dependency(request)
assert m.model_dump() == {'profile_pic': file}
async def test_file_submit_repeat():
file1 = UploadFile(BytesIO(b'foobar'), size=6, filename='testing1.txt')
file2 = UploadFile(BytesIO(b'foobar'), size=6, filename='testing2.txt')
request = FakeRequest([('profile_pic', file1), ('profile_pic', file2)])
with pytest.raises(HTTPException) as exc_info:
await fastui_form(FormWithFile).dependency(request)
# insert_assert(exc_info.value.detail)
assert exc_info.value.detail == {
'form': [{'type': 'not_file', 'loc': ('profile_pic',), 'msg': 'Input is not a file'}]
}
class FormWithFileConstraint(BaseModel):
profile_pic: Annotated[UploadFile, FormFile(accept='image/*', max_size=16_000)]
def test_file_constrained():
m = components.ModelForm(model=FormWithFileConstraint, submit_url='/foobar/')
# insert_assert(m.model_dump(by_alias=True, exclude_none=True))
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foobar/',
'method': 'POST',
'type': 'ModelForm',
'formFields': [
{
'name': 'profile_pic',
'title': ['Profile Pic'],
'required': True,
'locked': False,
'multiple': False,
'accept': 'image/*',
'type': 'FormFieldFile',
}
],
}
async def test_file_constrained_submit():
headers = Headers({'content-type': 'image/png'})
file = UploadFile(BytesIO(b'foobar'), size=16_000, headers=headers)
request = FakeRequest([('profile_pic', file)])
m = await fastui_form(FormWithFileConstraint).dependency(request)
assert m.model_dump() == {'profile_pic': file}
async def test_file_constrained_submit_filename():
file = UploadFile(BytesIO(b'foobar'), size=16_000, filename='image.png')
request = FakeRequest([('profile_pic', file)])
m = await fastui_form(FormWithFileConstraint).dependency(request)
assert m.model_dump() == {'profile_pic': file}
async def test_file_constrained_submit_too_big():
headers = Headers({'content-type': 'image/png'})
file = UploadFile(BytesIO(b'foobar'), size=16_001, filename='image.png', headers=headers)
request = FakeRequest([('profile_pic', file)])
with pytest.raises(HTTPException) as exc_info:
await fastui_form(FormWithFileConstraint).dependency(request)
# insert_assert(exc_info.value.detail)
assert exc_info.value.detail == {
'form': [
{
'type': 'file_too_big',
'loc': ('profile_pic',),
'msg': 'File size was 15.6KiB, exceeding maximum allowed size of 15.6KiB',
}
]
}
async def test_file_constrained_submit_wrong_type():
headers = Headers({'content-type': 'text/plain'})
file = UploadFile(BytesIO(b'foobar'), size=16, filename='testing.txt', headers=headers)
request = FakeRequest([('profile_pic', file)])
with pytest.raises(HTTPException) as exc_info:
await fastui_form(FormWithFileConstraint).dependency(request)
# insert_assert(exc_info.value.detail)
assert exc_info.value.detail == {
'form': [
{
'type': 'accept_mismatch',
'loc': ('profile_pic',),
'msg': (
'Uploaded file "testing.txt" with content type "text/plain" '
'does not match accept criteria "image/*"'
),
}
]
}
class FormMultipleFiles(BaseModel):
files: Annotated[List[UploadFile], FormFile()]
def test_multiple_files():
m = components.ModelForm(model=FormMultipleFiles, submit_url='/foobar/')
# insert_assert(m.model_dump(by_alias=True, exclude_none=True))
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foobar/',
'method': 'POST',
'type': 'ModelForm',
'formFields': [
{
'name': 'files',
'title': ['Files'],
'required': True,
'locked': False,
'multiple': True,
'type': 'FormFieldFile',
}
],
}
async def test_multiple_files_single():
file = UploadFile(BytesIO(b'foobar'), size=16_000, filename='image.png')
request = FakeRequest([('files', file)])
m = await fastui_form(FormMultipleFiles).dependency(request)
assert m.model_dump() == {'files': [file]}
async def test_multiple_files_multiple():
file1 = UploadFile(BytesIO(b'foobar'), size=6, filename='image1.png')
file2 = UploadFile(BytesIO(b'foobar'), size=6, filename='image2.png')
request = FakeRequest([('files', file1), ('files', file2)])
m = await fastui_form(FormMultipleFiles).dependency(request)
assert m.model_dump() == {'files': [file1, file2]}
class FixedTuple(BaseModel):
foo: Tuple[str, int, int]
def test_fixed_tuple():
m = components.ModelForm(model=FixedTuple, submit_url='/foo/')
# insert_assert(m.model_dump(by_alias=True, exclude_none=True))
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foo/',
'method': 'POST',
'type': 'ModelForm',
'formFields': [
{
'name': 'foo.0',
'title': ['Foo', '0'],
'required': True,
'locked': False,
'htmlType': 'text',
'type': 'FormFieldInput',
},
{
'name': 'foo.1',
'title': ['Foo', '1'],
'required': True,
'locked': False,
'htmlType': 'number',
'type': 'FormFieldInput',
},
{
'name': 'foo.2',
'title': ['Foo', '2'],
'required': True,
'locked': False,
'htmlType': 'number',
'type': 'FormFieldInput',
},
],
}
async def test_fixed_tuple_submit():
request = FakeRequest([('foo.0', 'bar'), ('foo.1', '123'), ('foo.2', '456')])
m = await fastui_form(FixedTuple).dependency(request)
assert m.model_dump() == {'foo': ('bar', 123, 456)}
class NestedTuple(BaseModel):
bar: FixedTuple
def test_fixed_tuple_nested():
m = components.ModelForm(model=NestedTuple, submit_url='/foobar/')
# insert_assert(m.model_dump(by_alias=True, exclude_none=True))
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foobar/',
'method': 'POST',
'type': 'ModelForm',
'formFields': [
{
'name': 'bar.foo.0',
'title': ['FixedTuple', 'Foo', '0'],
'required': True,
'locked': False,
'htmlType': 'text',
'type': 'FormFieldInput',
},
{
'name': 'bar.foo.1',
'title': ['FixedTuple', 'Foo', '1'],
'required': True,
'locked': False,
'htmlType': 'number',
'type': 'FormFieldInput',
},
{
'name': 'bar.foo.2',
'title': ['FixedTuple', 'Foo', '2'],
'required': True,
'locked': False,
'htmlType': 'number',
'type': 'FormFieldInput',
},
],
}
async def test_fixed_tuple_nested_submit():
request = FakeRequest([('bar.foo.0', 'bar'), ('bar.foo.1', '123'), ('bar.foo.2', '456')])
m = await fastui_form(NestedTuple).dependency(request)
assert m.model_dump() == {'bar': {'foo': ('bar', 123, 456)}}
def test_variable_tuple():
class VarTuple(BaseModel):
foo: Tuple[str, ...]
m = components.ModelForm(model=VarTuple, submit_url='/foo/')
with pytest.raises(NotImplementedError, match='Array fields are not fully supported'):
m.model_dump(by_alias=True, exclude_none=True)
def test_tuple_optional():
class TupleOptional(BaseModel):
foo: Tuple[str, Union[str, None]]
m = components.ModelForm(model=TupleOptional, submit_url='/foo/')
with pytest.raises(NotImplementedError, match='Tuples with optional fields are not yet supported'):
m.model_dump(by_alias=True, exclude_none=True)
class FormTextarea(BaseModel):
text: Annotated[str, Textarea()]
def test_form_textarea_form_fields():
m = components.ModelForm(model=FormTextarea, submit_url='/foobar/')
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foobar/',
'method': 'POST',
'type': 'ModelForm',
'formFields': [
{
'name': 'text',
'title': ['Text'],
'required': True,
'locked': False,
'type': 'FormFieldTextarea',
}
],
}
class FormNumbersDefaultStep(BaseModel):
size: int
cost: float
def test_form_numbers_default_step():
m = components.ModelForm(model=FormNumbersDefaultStep, submit_url='/foobar')
assert m.model_dump(by_alias=True, exclude_none=True) == {
'submitUrl': '/foobar',
'method': 'POST',
'type': 'ModelForm',
'formFields': [
{
'name': 'size',
'title': ['Size'],
'required': True,
'locked': False,
'htmlType': 'number',
'type': 'FormFieldInput',
},
{
'name': 'cost',
'title': ['Cost'],
'required': True,
'locked': False,
'htmlType': 'number',
'step': 'any',
'type': 'FormFieldInput',
},
],
}