Browse Source
* ✨ Add support for UploadFile annotations * 📝 Update File upload docs with FileUpload class * ✅ Add tests for UploadFile support * 📝 Update UploadFile docspull/65/head
committed by
GitHub
11 changed files with 224 additions and 26 deletions
@ -1,8 +1,13 @@ |
|||||
from fastapi import FastAPI, File |
from fastapi import FastAPI, File, UploadFile |
||||
|
|
||||
app = FastAPI() |
app = FastAPI() |
||||
|
|
||||
|
|
||||
@app.post("/files/") |
@app.post("/files/") |
||||
async def create_file(*, file: bytes = File(...)): |
async def create_file(file: bytes = File(...)): |
||||
return {"file_size": len(file)} |
return {"file_size": len(file)} |
||||
|
|
||||
|
|
||||
|
@app.post("/uploadfile/") |
||||
|
async def create_upload_file(file: UploadFile = File(...)): |
||||
|
return {"filename": file.filename} |
||||
|
@ -1,8 +1,14 @@ |
|||||
from fastapi import FastAPI, File, Form |
from fastapi import FastAPI, File, Form, UploadFile |
||||
|
|
||||
app = FastAPI() |
app = FastAPI() |
||||
|
|
||||
|
|
||||
@app.post("/files/") |
@app.post("/files/") |
||||
async def create_file(*, file: bytes = File(...), token: str = Form(...)): |
async def create_file( |
||||
return {"file_size": len(file), "token": token} |
file: bytes = File(...), fileb: UploadFile = File(...), token: str = Form(...) |
||||
|
): |
||||
|
return { |
||||
|
"file_size": len(file), |
||||
|
"token": token, |
||||
|
"fileb_content_type": fileb.content_type, |
||||
|
} |
||||
|
@ -0,0 +1,15 @@ |
|||||
|
from typing import Any, Callable, Iterable, Type |
||||
|
|
||||
|
from starlette.datastructures import UploadFile as StarletteUploadFile |
||||
|
|
||||
|
|
||||
|
class UploadFile(StarletteUploadFile): |
||||
|
@classmethod |
||||
|
def __get_validators__(cls: Type["UploadFile"]) -> Iterable[Callable]: |
||||
|
yield cls.validate |
||||
|
|
||||
|
@classmethod |
||||
|
def validate(cls: Type["UploadFile"], v: Any) -> Any: |
||||
|
if not isinstance(v, StarletteUploadFile): |
||||
|
raise ValueError(f"Expected UploadFile, received: {type(v)}") |
||||
|
return v |
@ -0,0 +1,7 @@ |
|||||
|
import pytest |
||||
|
from fastapi import UploadFile |
||||
|
|
||||
|
|
||||
|
def test_upload_file_invalid(): |
||||
|
with pytest.raises(ValueError): |
||||
|
UploadFile.validate("not a Starlette UploadFile") |
Loading…
Reference in new issue