-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathtest_multipart.py
1500 lines (1296 loc) · 54.5 KB
/
test_multipart.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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import asyncio
import io
import json
import pathlib
import sys
import zlib
from types import TracebackType
from typing import Dict, Optional, Tuple, Type
from unittest import mock
import pytest
from multidict import CIMultiDict, CIMultiDictProxy
import aiohttp
from aiohttp import payload
from aiohttp.hdrs import (
CONTENT_DISPOSITION,
CONTENT_ENCODING,
CONTENT_TRANSFER_ENCODING,
CONTENT_TYPE,
)
from aiohttp.helpers import parse_mimetype
from aiohttp.multipart import BodyPartReader, MultipartReader, MultipartResponseWrapper
from aiohttp.streams import StreamReader
if sys.version_info >= (3, 11):
from typing import Self
else:
from typing import TypeVar
Self = TypeVar("Self", bound="Stream")
BOUNDARY: bytes = b"--:"
@pytest.fixture
def buf() -> bytearray:
return bytearray()
@pytest.fixture
def stream(buf: bytearray) -> mock.Mock:
writer = mock.Mock()
async def write(chunk: bytes) -> None:
buf.extend(chunk)
writer.write.side_effect = write
return writer
@pytest.fixture
def writer() -> aiohttp.MultipartWriter:
return aiohttp.MultipartWriter(boundary=":")
class Stream(StreamReader):
def __init__(self, content: bytes) -> None:
self.content = io.BytesIO(content)
async def read(self, size: Optional[int] = None) -> bytes:
return self.content.read(size)
def at_eof(self) -> bool:
return self.content.tell() == len(self.content.getbuffer())
async def readline(self) -> bytes:
return self.content.readline()
def unread_data(self, data: bytes) -> None:
self.content = io.BytesIO(data + self.content.read())
def __enter__(self) -> Self:
return self
def __exit__(
self,
exc_type: Optional[Type[BaseException]],
exc_value: Optional[BaseException],
traceback: Optional[TracebackType],
) -> None:
self.content.close()
class Response:
def __init__(self, headers: CIMultiDictProxy[str], content: Stream) -> None:
self.headers = headers
self.content = content
class StreamWithShortenRead(Stream):
def __init__(self, content: bytes) -> None:
self._first = True
super().__init__(content)
async def read(self, size: Optional[int] = None) -> bytes:
if size is not None and self._first:
self._first = False
size = size // 2
return await super().read(size)
class TestMultipartResponseWrapper:
def test_at_eof(self) -> None:
m_resp = mock.create_autospec(aiohttp.ClientResponse, spec_set=True)
m_stream = mock.create_autospec(MultipartReader, spec_set=True)
wrapper = MultipartResponseWrapper(m_resp, m_stream)
wrapper.at_eof()
assert m_resp.content.at_eof.called
async def test_next(self) -> None:
m_resp = mock.create_autospec(aiohttp.ClientResponse, spec_set=True)
m_stream = mock.create_autospec(MultipartReader, spec_set=True)
wrapper = MultipartResponseWrapper(m_resp, m_stream)
m_stream.next.return_value = b""
m_stream.at_eof.return_value = False
await wrapper.next()
assert m_stream.next.called
async def test_release(self) -> None:
m_resp = mock.create_autospec(aiohttp.ClientResponse, spec_set=True)
m_stream = mock.create_autospec(MultipartReader, spec_set=True)
wrapper = MultipartResponseWrapper(m_resp, m_stream)
await wrapper.release()
assert m_resp.release.called
async def test_release_when_stream_at_eof(self) -> None:
m_resp = mock.create_autospec(aiohttp.ClientResponse, spec_set=True)
m_stream = mock.create_autospec(MultipartReader, spec_set=True)
wrapper = MultipartResponseWrapper(m_resp, m_stream)
m_stream.next.return_value = b""
m_stream.at_eof.return_value = True
await wrapper.next()
assert m_stream.next.called
assert m_resp.release.called
class TestPartReader:
async def test_next(self) -> None:
with Stream(b"Hello, world!\r\n--:") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.next()
assert b"Hello, world!" == result
assert obj.at_eof()
async def test_next_next(self) -> None:
with Stream(b"Hello, world!\r\n--:") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.next()
assert b"Hello, world!" == result
assert obj.at_eof()
result = await obj.next()
assert result is None
async def test_read(self) -> None:
with Stream(b"Hello, world!\r\n--:") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.read()
assert b"Hello, world!" == result
assert obj.at_eof()
async def test_read_chunk_at_eof(self) -> None:
with Stream(b"--:") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
obj._at_eof = True
result = await obj.read_chunk()
assert b"" == result
async def test_read_chunk_without_content_length(self) -> None:
with Stream(b"Hello, world!\r\n--:") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
c1 = await obj.read_chunk(8)
c2 = await obj.read_chunk(8)
c3 = await obj.read_chunk(8)
assert c1 + c2 == b"Hello, world!"
assert c3 == b""
async def test_read_incomplete_chunk(self) -> None:
with Stream(b"") as stream:
def prepare(data: bytes) -> bytes:
return data
with mock.patch.object(
stream,
"read",
side_effect=[
prepare(b"Hello, "),
prepare(b"World"),
prepare(b"!\r\n--:"),
prepare(b""),
],
):
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
c1 = await obj.read_chunk(8)
assert c1 == b"Hello, "
c2 = await obj.read_chunk(8)
assert c2 == b"World"
c3 = await obj.read_chunk(8)
assert c3 == b"!"
async def test_read_all_at_once(self) -> None:
with Stream(b"Hello, World!\r\n--:--\r\n") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.read_chunk()
assert b"Hello, World!" == result
result = await obj.read_chunk()
assert b"" == result
assert obj.at_eof()
async def test_read_incomplete_body_chunked(self) -> None:
with Stream(b"Hello, World!\r\n-") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = b""
with pytest.raises(AssertionError):
for _ in range(4):
result += await obj.read_chunk(7)
assert b"Hello, World!\r\n-" == result
async def test_read_boundary_with_incomplete_chunk(self) -> None:
with Stream(b"") as stream:
def prepare(data: bytes) -> bytes:
return data
with mock.patch.object(
stream,
"read",
side_effect=[
prepare(b"Hello, World"),
prepare(b"!\r\n"),
prepare(b"--:"),
prepare(b""),
],
):
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
c1 = await obj.read_chunk(12)
assert c1 == b"Hello, World"
c2 = await obj.read_chunk(8)
assert c2 == b"!"
c3 = await obj.read_chunk(8)
assert c3 == b""
async def test_multi_read_chunk(self) -> None:
with Stream(b"Hello,\r\n--:\r\n\r\nworld!\r\n--:--") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.read_chunk(8)
assert b"Hello," == result
result = await obj.read_chunk(8)
assert b"" == result
assert obj.at_eof()
async def test_read_chunk_properly_counts_read_bytes(self) -> None:
expected = b"." * 10
size = len(expected)
h = CIMultiDictProxy(CIMultiDict({"CONTENT-LENGTH": str(size)}))
with StreamWithShortenRead(expected + b"\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = bytearray()
while True:
chunk = await obj.read_chunk()
if not chunk:
break
result.extend(chunk)
assert size == len(result)
assert b"." * size == result
assert obj.at_eof()
async def test_read_does_not_read_boundary(self) -> None:
with Stream(b"Hello, world!\r\n--:") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.read()
assert b"Hello, world!" == result
assert b"--:" == (await stream.read())
async def test_multiread(self) -> None:
with Stream(b"Hello,\r\n--:\r\n\r\nworld!\r\n--:--") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.read()
assert b"Hello," == result
result = await obj.read()
assert b"" == result
assert obj.at_eof()
async def test_read_multiline(self) -> None:
with Stream(b"Hello\n,\r\nworld!\r\n--:--") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.read()
assert b"Hello\n,\r\nworld!" == result
result = await obj.read()
assert b"" == result
assert obj.at_eof()
async def test_read_respects_content_length(self) -> None:
h = CIMultiDictProxy(CIMultiDict({"CONTENT-LENGTH": "100500"}))
with Stream(b"." * 100500 + b"\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.read()
assert b"." * 100500 == result
assert obj.at_eof()
async def test_read_with_content_encoding_gzip(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_ENCODING: "gzip"}))
with Stream(
b"\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\x03\x0b\xc9\xccMU"
b"(\xc9W\x08J\xcdI\xacP\x04\x00$\xfb\x9eV\x0e\x00\x00\x00"
b"\r\n--:--"
) as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.read(decode=True)
assert b"Time to Relax!" == result
async def test_read_with_content_encoding_deflate(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_ENCODING: "deflate"}))
with Stream(b"\x0b\xc9\xccMU(\xc9W\x08J\xcdI\xacP\x04\x00\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.read(decode=True)
assert b"Time to Relax!" == result
async def test_read_with_content_encoding_identity(self) -> None:
thing = (
b"\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\x03\x0b\xc9\xccMU"
b"(\xc9W\x08J\xcdI\xacP\x04\x00$\xfb\x9eV\x0e\x00\x00\x00"
b"\r\n"
)
h = CIMultiDictProxy(CIMultiDict({CONTENT_ENCODING: "identity"}))
with Stream(thing + b"--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.read(decode=True)
assert thing[:-2] == result
async def test_read_with_content_encoding_unknown(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_ENCODING: "snappy"}))
with Stream(b"\x0e4Time to Relax!\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
with pytest.raises(RuntimeError):
await obj.read(decode=True)
async def test_read_with_content_transfer_encoding_base64(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TRANSFER_ENCODING: "base64"}))
with Stream(b"VGltZSB0byBSZWxheCE=\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.read(decode=True)
assert b"Time to Relax!" == result
async def test_decode_with_content_transfer_encoding_base64(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TRANSFER_ENCODING: "base64"}))
with Stream(b"VG\r\r\nltZSB0byBSZ\r\nWxheCE=\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = b""
while not obj.at_eof():
chunk = await obj.read_chunk(size=6)
result += obj.decode(chunk)
assert b"Time to Relax!" == result
async def test_read_with_content_transfer_encoding_quoted_printable(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TRANSFER_ENCODING: "quoted-printable"})
)
with Stream(
b"=D0=9F=D1=80=D0=B8=D0=B2=D0=B5=D1=82, =D0=BC=D0=B8=D1=80!\r\n--:--"
) as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.read(decode=True)
expected = (
b"\xd0\x9f\xd1\x80\xd0\xb8\xd0\xb2\xd0\xb5\xd1\x82,"
b" \xd0\xbc\xd0\xb8\xd1\x80!"
)
assert result == expected
@pytest.mark.parametrize("encoding", ("binary", "8bit", "7bit"))
async def test_read_with_content_transfer_encoding_binary(
self, encoding: str
) -> None:
data = (
b"\xd0\x9f\xd1\x80\xd0\xb8\xd0\xb2\xd0\xb5\xd1\x82,"
b" \xd0\xbc\xd0\xb8\xd1\x80!"
)
h = CIMultiDictProxy(CIMultiDict({CONTENT_TRANSFER_ENCODING: encoding}))
with Stream(data + b"\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.read(decode=True)
assert data == result
async def test_read_with_content_transfer_encoding_unknown(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TRANSFER_ENCODING: "unknown"}))
with Stream(b"\x0e4Time to Relax!\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
with pytest.raises(RuntimeError):
await obj.read(decode=True)
async def test_read_text(self) -> None:
with Stream(b"Hello, world!\r\n--:--") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.text()
assert "Hello, world!" == result
async def test_read_text_default_encoding(self) -> None:
with Stream("Привет, Мир!\r\n--:--".encode()) as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.text()
assert "Привет, Мир!" == result
async def test_read_text_encoding(self) -> None:
with Stream("Привет, Мир!\r\n--:--".encode("cp1251")) as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.text(encoding="cp1251")
assert "Привет, Мир!" == result
async def test_read_text_guess_encoding(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TYPE: "text/plain;charset=cp1251"}))
with Stream("Привет, Мир!\r\n--:--".encode("cp1251")) as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.text()
assert "Привет, Мир!" == result
async def test_read_text_compressed(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_ENCODING: "deflate", CONTENT_TYPE: "text/plain"})
)
with Stream(b"\x0b\xc9\xccMU(\xc9W\x08J\xcdI\xacP\x04\x00\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.text()
assert "Time to Relax!" == result
async def test_read_text_while_closed(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TYPE: "text/plain"}))
with Stream(b"") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
obj._at_eof = True
result = await obj.text()
assert "" == result
async def test_read_json(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TYPE: "application/json"}))
with Stream(b'{"test": "passed"}\r\n--:--') as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.json()
assert {"test": "passed"} == result
async def test_read_json_encoding(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TYPE: "application/json"}))
with Stream('{"тест": "пассед"}\r\n--:--'.encode("cp1251")) as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.json(encoding="cp1251")
assert {"тест": "пассед"} == result
async def test_read_json_guess_encoding(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: "application/json; charset=cp1251"})
)
with Stream('{"тест": "пассед"}\r\n--:--'.encode("cp1251")) as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.json()
assert {"тест": "пассед"} == result
async def test_read_json_compressed(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_ENCODING: "deflate", CONTENT_TYPE: "application/json"})
)
with Stream(b"\xabV*I-.Q\xb2RP*H,.NMQ\xaa\x05\x00\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.json()
assert {"test": "passed"} == result
async def test_read_json_while_closed(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TYPE: "application/json"}))
with Stream(b"") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
obj._at_eof = True
result = await obj.json()
assert result is None
async def test_read_form(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: "application/x-www-form-urlencoded"})
)
with Stream(b"foo=bar&foo=baz&boo=\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.form()
assert [("foo", "bar"), ("foo", "baz"), ("boo", "")] == result
async def test_read_form_invalid_utf8(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: "application/x-www-form-urlencoded"})
)
with Stream(b"\xff\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
with pytest.raises(
ValueError, match="data cannot be decoded with utf-8 encoding"
):
await obj.form()
async def test_read_form_encoding(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: "application/x-www-form-urlencoded"})
)
with Stream("foo=bar&foo=baz&boo=\r\n--:--".encode("cp1251")) as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.form(encoding="cp1251")
assert [("foo", "bar"), ("foo", "baz"), ("boo", "")] == result
async def test_read_form_guess_encoding(self) -> None:
h = CIMultiDictProxy(
CIMultiDict(
{CONTENT_TYPE: "application/x-www-form-urlencoded; charset=utf-8"}
)
)
with Stream(b"foo=bar&foo=baz&boo=\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
result = await obj.form()
assert [("foo", "bar"), ("foo", "baz"), ("boo", "")] == result
async def test_read_form_while_closed(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: "application/x-www-form-urlencoded"})
)
with Stream(b"") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
obj._at_eof = True
result = await obj.form()
assert not result
async def test_readline(self) -> None:
with Stream(b"Hello\n,\r\nworld!\r\n--:--") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
result = await obj.readline()
assert b"Hello\n" == result
result = await obj.readline()
assert b",\r\n" == result
result = await obj.readline()
assert b"world!" == result
result = await obj.readline()
assert b"" == result
assert obj.at_eof()
async def test_release(self) -> None:
with Stream(b"Hello,\r\n--:\r\n\r\nworld!\r\n--:--") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
await obj.release()
assert obj.at_eof()
assert b"--:\r\n\r\nworld!\r\n--:--" == stream.content.read()
async def test_release_respects_content_length(self) -> None:
h = CIMultiDictProxy(CIMultiDict({"CONTENT-LENGTH": "100500"}))
with Stream(b"." * 100500 + b"\r\n--:--") as stream:
obj = aiohttp.BodyPartReader(BOUNDARY, h, stream)
await obj.release()
assert obj.at_eof()
async def test_release_release(self) -> None:
with Stream(b"Hello,\r\n--:\r\n\r\nworld!\r\n--:--") as stream:
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
await obj.release()
await obj.release()
assert b"--:\r\n\r\nworld!\r\n--:--" == stream.content.read()
async def test_filename(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_DISPOSITION: "attachment; filename=foo.html"})
)
part = aiohttp.BodyPartReader(BOUNDARY, h, mock.Mock())
assert "foo.html" == part.filename
async def test_reading_long_part(self) -> None:
size = 2 * 2**16
protocol = mock.Mock(_reading_paused=False)
stream = StreamReader(protocol, 2**16, loop=asyncio.get_event_loop())
stream.feed_data(b"0" * size + b"\r\n--:--")
stream.feed_eof()
d = CIMultiDictProxy[str](CIMultiDict())
obj = aiohttp.BodyPartReader(BOUNDARY, d, stream)
data = await obj.read()
assert len(data) == size
class TestMultipartReader:
def test_from_response(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: 'multipart/related;boundary=":"'})
)
with Stream(b"--:\r\n\r\nhello\r\n--:--") as stream:
resp = Response(h, stream)
res = aiohttp.MultipartReader.from_response(resp) # type: ignore[arg-type]
assert isinstance(res, MultipartResponseWrapper)
assert isinstance(res.stream, aiohttp.MultipartReader)
def test_bad_boundary(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: "multipart/related;boundary=" + "a" * 80})
)
with Stream(b"") as stream:
resp = Response(h, stream)
with pytest.raises(ValueError):
aiohttp.MultipartReader.from_response(resp) # type: ignore[arg-type]
def test_dispatch(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TYPE: "text/plain"}))
with Stream(b"--:\r\n\r\necho\r\n--:--") as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
res = reader._get_part_reader(h)
assert isinstance(res, reader.part_reader_cls)
def test_dispatch_bodypart(self) -> None:
h = CIMultiDictProxy(CIMultiDict({CONTENT_TYPE: "text/plain"}))
with Stream(b"--:\r\n\r\necho\r\n--:--") as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
res = reader._get_part_reader(h)
assert isinstance(res, reader.part_reader_cls)
def test_dispatch_multipart(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: "multipart/related;boundary=--:--"})
)
with Stream(
b"----:--\r\n"
b"\r\n"
b"test\r\n"
b"----:--\r\n"
b"\r\n"
b"passed\r\n"
b"----:----\r\n"
b"--:--"
) as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
res = reader._get_part_reader(h)
assert isinstance(res, reader.__class__)
def test_dispatch_custom_multipart_reader(self) -> None:
class CustomReader(aiohttp.MultipartReader):
pass
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: "multipart/related;boundary=--:--"})
)
with Stream(
b"----:--\r\n"
b"\r\n"
b"test\r\n"
b"----:--\r\n"
b"\r\n"
b"passed\r\n"
b"----:----\r\n"
b"--:--"
) as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
reader.multipart_reader_cls = CustomReader
res = reader._get_part_reader(h)
assert isinstance(res, CustomReader)
async def test_emit_next(self) -> None:
h = CIMultiDictProxy(
CIMultiDict({CONTENT_TYPE: 'multipart/related;boundary=":"'})
)
with Stream(b"--:\r\n\r\necho\r\n--:--") as stream:
reader = aiohttp.MultipartReader(h, stream)
res = await reader.next()
assert isinstance(res, reader.part_reader_cls)
async def test_invalid_boundary(self) -> None:
with Stream(b"---:\r\n\r\necho\r\n---:--") as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
with pytest.raises(ValueError):
await reader.next()
@pytest.mark.skipif(sys.version_info < (3, 10), reason="Needs anext()")
async def test_read_boundary_across_chunks(self) -> None:
class SplitBoundaryStream(StreamReader):
def __init__(self) -> None:
self.content = [
b"--foobar\r\n\r\n",
b"Hello,\r\n-",
b"-fo",
b"ob",
b"ar\r\n",
b"\r\nwor",
b"ld!",
b"\r\n--f",
b"oobar--",
]
async def read(self, size: Optional[int] = None) -> bytes:
chunk = self.content.pop(0)
assert size is not None and len(chunk) <= size
return chunk
def at_eof(self) -> bool:
return not self.content
async def readline(self) -> bytes:
line = b""
while self.content and b"\n" not in line:
line += self.content.pop(0)
line, *extra = line.split(b"\n", maxsplit=1)
if extra and extra[0]:
self.content.insert(0, extra[0])
return line + b"\n"
def unread_data(self, data: bytes) -> None:
if self.content:
self.content[0] = data + self.content[0]
else:
self.content.append(data)
stream = SplitBoundaryStream()
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary="foobar"'}, stream
)
part = await anext(reader)
assert isinstance(part, BodyPartReader)
result = await part.read_chunk(10)
assert result == b"Hello,"
result = await part.read_chunk(10)
assert result == b""
assert part.at_eof()
part = await anext(reader)
assert isinstance(part, BodyPartReader)
result = await part.read_chunk(10)
assert result == b"world!"
result = await part.read_chunk(10)
assert result == b""
assert part.at_eof()
with pytest.raises(StopAsyncIteration):
await anext(reader)
async def test_release(self) -> None:
with Stream(
b"--:\r\n"
b"Content-Type: multipart/related;boundary=--:--\r\n"
b"\r\n"
b"----:--\r\n"
b"\r\n"
b"test\r\n"
b"----:--\r\n"
b"\r\n"
b"passed\r\n"
b"----:----\r\n"
b"\r\n"
b"--:--"
) as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/mixed;boundary=":"'},
stream,
)
await reader.release()
assert reader.at_eof()
async def test_release_release(self) -> None:
with Stream(b"--:\r\n\r\necho\r\n--:--") as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
await reader.release()
assert reader.at_eof()
await reader.release()
assert reader.at_eof()
async def test_release_next(self) -> None:
with Stream(b"--:\r\n\r\necho\r\n--:--") as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
await reader.release()
assert reader.at_eof()
res = await reader.next()
assert res is None
async def test_second_next_releases_previous_object(self) -> None:
with Stream(b"--:\r\n\r\ntest\r\n--:\r\n\r\npassed\r\n--:--") as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
first = await reader.next()
assert isinstance(first, aiohttp.BodyPartReader)
second = await reader.next()
assert second is not None
assert first.at_eof()
assert not second.at_eof()
async def test_release_without_read_the_last_object(self) -> None:
with Stream(b"--:\r\n\r\ntest\r\n--:\r\n\r\npassed\r\n--:--") as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
first = await reader.next()
second = await reader.next()
third = await reader.next()
assert first is not None
assert second is not None
assert first.at_eof()
assert second.at_eof()
assert second.at_eof()
assert third is None
async def test_read_chunk_by_length_doesnt_break_reader(self) -> None:
with Stream(
b"--:\r\n"
b"Content-Length: 4\r\n\r\n"
b"test"
b"\r\n--:\r\n"
b"Content-Length: 6\r\n\r\n"
b"passed"
b"\r\n--:--"
) as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
body_parts = []
while True:
read_part = b""
part = await reader.next()
if part is None:
break
assert isinstance(part, BodyPartReader)
while not part.at_eof():
read_part += await part.read_chunk(3)
body_parts.append(read_part)
assert body_parts == [b"test", b"passed"]
async def test_read_chunk_from_stream_doesnt_break_reader(self) -> None:
with Stream(
b"--:\r\n"
b"\r\n"
b"chunk"
b"\r\n--:\r\n"
b"\r\n"
b"two_chunks"
b"\r\n--:--"
) as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
body_parts = []
while True:
read_part = b""
part = await reader.next()
if part is None:
break
assert isinstance(part, BodyPartReader)
while not part.at_eof():
chunk = await part.read_chunk(5)
assert chunk
read_part += chunk
body_parts.append(read_part)
assert body_parts == [b"chunk", b"two_chunks"]
async def test_reading_skips_prelude(self) -> None:
with Stream(
b"Multi-part data is not supported.\r\n"
b"\r\n"
b"--:\r\n"
b"\r\n"
b"test\r\n"
b"--:\r\n"
b"\r\n"
b"passed\r\n"
b"--:--"
) as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/related;boundary=":"'},
stream,
)
first = await reader.next()
assert isinstance(first, aiohttp.BodyPartReader)
second = await reader.next()
assert isinstance(second, BodyPartReader)
assert first.at_eof()
assert not second.at_eof()
async def test_read_form_default_encoding(self) -> None:
with Stream(
b"--:\r\n"
b'Content-Disposition: form-data; name="_charset_"\r\n\r\n'
b"ascii"
b"\r\n"
b"--:\r\n"
b'Content-Disposition: form-data; name="field1"\r\n\r\n'
b"foo"
b"\r\n"
b"--:\r\n"
b"Content-Type: text/plain;charset=UTF-8\r\n"
b'Content-Disposition: form-data; name="field2"\r\n\r\n'
b"foo"
b"\r\n"
b"--:\r\n"
b'Content-Disposition: form-data; name="field3"\r\n\r\n'
b"foo"
b"\r\n"
) as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/form-data;boundary=":"'},
stream,
)
field1 = await reader.next()
assert isinstance(field1, BodyPartReader)
assert field1.name == "field1"
assert field1.get_charset("default") == "ascii"
field2 = await reader.next()
assert isinstance(field2, BodyPartReader)
assert field2.name == "field2"
assert field2.get_charset("default") == "UTF-8"
field3 = await reader.next()
assert isinstance(field3, BodyPartReader)
assert field3.name == "field3"
assert field3.get_charset("default") == "ascii"
async def test_read_form_invalid_default_encoding(self) -> None:
with Stream(
b"--:\r\n"
b'Content-Disposition: form-data; name="_charset_"\r\n\r\n'
b"this-value-is-too-long-to-be-a-charset"
b"\r\n"
b"--:\r\n"
b'Content-Disposition: form-data; name="field1"\r\n\r\n'
b"foo"
b"\r\n"
) as stream:
reader = aiohttp.MultipartReader(
{CONTENT_TYPE: 'multipart/form-data;boundary=":"'},
stream,
)
with pytest.raises(RuntimeError, match="Invalid default charset"):
await reader.next()
async def test_writer(writer: aiohttp.MultipartWriter) -> None:
assert writer.size == 7
assert writer.boundary == ":"
async def test_writer_serialize_io_chunk(
buf: bytearray, stream: Stream, writer: aiohttp.MultipartWriter
) -> None:
with io.BytesIO(b"foobarbaz") as file_handle:
writer.append(file_handle)
await writer.write(stream)
assert (
buf == b"--:\r\nContent-Type: application/octet-stream"
b"\r\nContent-Length: 9\r\n\r\nfoobarbaz\r\n--:--\r\n"
)
async def test_writer_serialize_json(
buf: bytearray, stream: Stream, writer: aiohttp.MultipartWriter
) -> None:
writer.append_json({"привет": "мир"})
await writer.write(stream)
assert (
b'{"\\u043f\\u0440\\u0438\\u0432\\u0435\\u0442":'
b' "\\u043c\\u0438\\u0440"}' in buf
)
async def test_writer_serialize_form(