|
|
@ -1,3 +1,5 @@ |
|
|
|
import warnings |
|
|
|
|
|
|
|
import pytest |
|
|
|
from fastapi import FastAPI, File, Form, UploadFile |
|
|
|
from fastapi.dependencies.utils import ( |
|
|
@ -7,7 +9,10 @@ from fastapi.dependencies.utils import ( |
|
|
|
|
|
|
|
|
|
|
|
def test_incorrect_multipart_installed_form(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_incorrect_install_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
@ -17,7 +22,10 @@ def test_incorrect_multipart_installed_form(monkeypatch): |
|
|
|
|
|
|
|
|
|
|
|
def test_incorrect_multipart_installed_file_upload(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_incorrect_install_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
@ -27,7 +35,10 @@ def test_incorrect_multipart_installed_file_upload(monkeypatch): |
|
|
|
|
|
|
|
|
|
|
|
def test_incorrect_multipart_installed_file_bytes(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_incorrect_install_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
@ -37,7 +48,10 @@ def test_incorrect_multipart_installed_file_bytes(monkeypatch): |
|
|
|
|
|
|
|
|
|
|
|
def test_incorrect_multipart_installed_multi_form(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_incorrect_install_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
@ -47,7 +61,10 @@ def test_incorrect_multipart_installed_multi_form(monkeypatch): |
|
|
|
|
|
|
|
|
|
|
|
def test_incorrect_multipart_installed_form_file(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_incorrect_install_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
@ -57,50 +74,76 @@ def test_incorrect_multipart_installed_form_file(monkeypatch): |
|
|
|
|
|
|
|
|
|
|
|
def test_no_multipart_installed(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
app = FastAPI() |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
|
@app.post("/") |
|
|
|
async def root(username: str = Form()): |
|
|
|
return username # pragma: nocover |
|
|
|
@app.post("/") |
|
|
|
async def root(username: str = Form()): |
|
|
|
return username # pragma: nocover |
|
|
|
|
|
|
|
|
|
|
|
def test_no_multipart_installed_file(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
app = FastAPI() |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
|
@app.post("/") |
|
|
|
async def root(f: UploadFile = File()): |
|
|
|
return f # pragma: nocover |
|
|
|
@app.post("/") |
|
|
|
async def root(f: UploadFile = File()): |
|
|
|
return f # pragma: nocover |
|
|
|
|
|
|
|
|
|
|
|
def test_no_multipart_installed_file_bytes(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
app = FastAPI() |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
|
@app.post("/") |
|
|
|
async def root(f: bytes = File()): |
|
|
|
return f # pragma: nocover |
|
|
|
@app.post("/") |
|
|
|
async def root(f: bytes = File()): |
|
|
|
return f # pragma: nocover |
|
|
|
|
|
|
|
|
|
|
|
def test_no_multipart_installed_multi_form(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
app = FastAPI() |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
|
@app.post("/") |
|
|
|
async def root(username: str = Form(), password: str = Form()): |
|
|
|
return username # pragma: nocover |
|
|
|
@app.post("/") |
|
|
|
async def root(username: str = Form(), password: str = Form()): |
|
|
|
return username # pragma: nocover |
|
|
|
|
|
|
|
|
|
|
|
def test_no_multipart_installed_form_file(monkeypatch): |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
monkeypatch.delattr("multipart.__version__", raising=False) |
|
|
|
with pytest.raises(RuntimeError, match=multipart_not_installed_error): |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
|
@app.post("/") |
|
|
|
async def root(username: str = Form(), f: UploadFile = File()): |
|
|
|
return username # pragma: nocover |
|
|
|
|
|
|
|
|
|
|
|
def test_old_multipart_installed(monkeypatch): |
|
|
|
monkeypatch.setattr("python_multipart.__version__", "0.0.12") |
|
|
|
with warnings.catch_warnings(record=True): |
|
|
|
warnings.simplefilter("always") |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
|
@app.post("/") |
|
|
|
async def root(username: str = Form(), f: UploadFile = File()): |
|
|
|
async def root(username: str = Form()): |
|
|
|
return username # pragma: nocover |
|
|
|