Skip to content

Commit

Permalink
Fix django#1240: ignore files when checking request size for multipar…
Browse files Browse the repository at this point in the history
…t requests
  • Loading branch information
EliotBerriot committed Feb 7, 2019
1 parent 60d93ed commit 3e448c2
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 14 deletions.
5 changes: 4 additions & 1 deletion channels/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,11 @@ def __init__(self, scope, body):
# TODO: chunked bodies

# Limit the maximum request data size that will be handled in-memory.
# but only for non-multipart requests, because files are handled
# differently by django, see #1240
if (
settings.DATA_UPLOAD_MAX_MEMORY_SIZE is not None
self.content_type != "multipart/form-data"
and settings.DATA_UPLOAD_MAX_MEMORY_SIZE is not None
and self._content_length > settings.DATA_UPLOAD_MAX_MEMORY_SIZE
):
raise RequestDataTooBig(
Expand Down
53 changes: 40 additions & 13 deletions tests/test_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,22 +189,49 @@ def test_size_check_ignore_files(self):
+ b"My First Book\r\n"
+ b"--BOUNDARY\r\n"
+ b'Content-Disposition: form-data; name="pdf"; filename="book.pdf"\r\n\r\n'
+ b"FAKEPDFBYTESGOHERE"
+ b"FAKEPDFBYTESGOHERETHISISREALLYLONGBUTNOTUSEDTOCOMPUTETHESIZEOFTHEREQUEST"
+ b"--BOUNDARY--"
)
with override_settings(DATA_UPLOAD_MAX_MEMORY_SIZE=10):
AsgiRequest(
{
"http_version": "1.1",
"method": "POST",
"path": "/test/",
"headers": {
"content-type": b"multipart/form-data; boundary=BOUNDARY",
"content-length": str(len(body)).encode("ascii"),
},
request = AsgiRequest(
{
"http_version": "1.1",
"method": "POST",
"path": "/test/",
"headers": {
"content-type": b"multipart/form-data; boundary=BOUNDARY",
"content-length": str(len(body)).encode("ascii"),
},
body,
)
},
body,
)
with override_settings(DATA_UPLOAD_MAX_MEMORY_SIZE=60):
request.POST

def test_size_check_ignore_files_but_honor_other_post_data(self):
body = (
b"--BOUNDARY\r\n"
+ b'Content-Disposition: form-data; name="title"\r\n\r\n'
+ b"My First Book\r\n"
+ b"--BOUNDARY\r\n"
+ b'Content-Disposition: form-data; name="pdf"; filename="book.pdf"\r\n\r\n'
+ b"FAKEPDFBYTESGOHERETHISISREALLYLONGBUTNOTUSEDTOCOMPUTETHESIZEOFTHEREQUEST"
+ b"--BOUNDARY--"
)
request = AsgiRequest(
{
"http_version": "1.1",
"method": "POST",
"path": "/test/",
"headers": {
"content-type": b"multipart/form-data; boundary=BOUNDARY",
"content-length": str(len(body)).encode("ascii"),
},
},
body,
)
with override_settings(DATA_UPLOAD_MAX_MEMORY_SIZE=1):
with pytest.raises(RequestDataTooBig):
request.POST


### Handler tests
Expand Down

0 comments on commit 3e448c2

Please sign in to comment.