committed by
GitHub
16 changed files with 1086 additions and 30 deletions
@ -0,0 +1,21 @@ |
|||
from typing import Optional |
|||
|
|||
from fastapi import FastAPI, File, UploadFile |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
@app.post("/files/") |
|||
async def create_file(file: Optional[bytes] = File(None)): |
|||
if not file: |
|||
return {"message": "No file sent"} |
|||
else: |
|||
return {"file_size": len(file)} |
|||
|
|||
|
|||
@app.post("/uploadfile/") |
|||
async def create_upload_file(file: Optional[UploadFile] = None): |
|||
if not file: |
|||
return {"message": "No upload file sent"} |
|||
else: |
|||
return {"filename": file.filename} |
@ -0,0 +1,19 @@ |
|||
from fastapi import FastAPI, File, UploadFile |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
@app.post("/files/") |
|||
async def create_file(file: bytes | None = File(None)): |
|||
if not file: |
|||
return {"message": "No file sent"} |
|||
else: |
|||
return {"file_size": len(file)} |
|||
|
|||
|
|||
@app.post("/uploadfile/") |
|||
async def create_upload_file(file: UploadFile | None = None): |
|||
if not file: |
|||
return {"message": "No upload file sent"} |
|||
else: |
|||
return {"filename": file.filename} |
@ -0,0 +1,15 @@ |
|||
from fastapi import FastAPI, File, UploadFile |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
@app.post("/files/") |
|||
async def create_file(file: bytes = File(..., description="A file read as bytes")): |
|||
return {"file_size": len(file)} |
|||
|
|||
|
|||
@app.post("/uploadfile/") |
|||
async def create_upload_file( |
|||
file: UploadFile = File(..., description="A file read as UploadFile") |
|||
): |
|||
return {"filename": file.filename} |
@ -0,0 +1,37 @@ |
|||
from typing import List |
|||
|
|||
from fastapi import FastAPI, File, UploadFile |
|||
from fastapi.responses import HTMLResponse |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
@app.post("/files/") |
|||
async def create_files( |
|||
files: List[bytes] = File(..., description="Multiple files as bytes") |
|||
): |
|||
return {"file_sizes": [len(file) for file in files]} |
|||
|
|||
|
|||
@app.post("/uploadfiles/") |
|||
async def create_upload_files( |
|||
files: List[UploadFile] = File(..., description="Multiple files as UploadFile") |
|||
): |
|||
return {"filenames": [file.filename for file in files]} |
|||
|
|||
|
|||
@app.get("/") |
|||
async def main(): |
|||
content = """ |
|||
<body> |
|||
<form action="/files/" enctype="multipart/form-data" method="post"> |
|||
<input name="files" type="file" multiple> |
|||
<input type="submit"> |
|||
</form> |
|||
<form action="/uploadfiles/" enctype="multipart/form-data" method="post"> |
|||
<input name="files" type="file" multiple> |
|||
<input type="submit"> |
|||
</form> |
|||
</body> |
|||
""" |
|||
return HTMLResponse(content=content) |
@ -0,0 +1,35 @@ |
|||
from fastapi import FastAPI, File, UploadFile |
|||
from fastapi.responses import HTMLResponse |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
@app.post("/files/") |
|||
async def create_files( |
|||
files: list[bytes] = File(..., description="Multiple files as bytes") |
|||
): |
|||
return {"file_sizes": [len(file) for file in files]} |
|||
|
|||
|
|||
@app.post("/uploadfiles/") |
|||
async def create_upload_files( |
|||
files: list[UploadFile] = File(..., description="Multiple files as UploadFile") |
|||
): |
|||
return {"filenames": [file.filename for file in files]} |
|||
|
|||
|
|||
@app.get("/") |
|||
async def main(): |
|||
content = """ |
|||
<body> |
|||
<form action="/files/" enctype="multipart/form-data" method="post"> |
|||
<input name="files" type="file" multiple> |
|||
<input type="submit"> |
|||
</form> |
|||
<form action="/uploadfiles/" enctype="multipart/form-data" method="post"> |
|||
<input name="files" type="file" multiple> |
|||
<input type="submit"> |
|||
</form> |
|||
</body> |
|||
""" |
|||
return HTMLResponse(content=content) |
@ -0,0 +1,157 @@ |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.request_files.tutorial001_02 import app |
|||
|
|||
client = TestClient(app) |
|||
|
|||
openapi_schema = { |
|||
"openapi": "3.0.2", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/files/": { |
|||
"post": { |
|||
"summary": "Create File", |
|||
"operationId": "create_file_files__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_file_files__post" |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"/uploadfile/": { |
|||
"post": { |
|||
"summary": "Create Upload File", |
|||
"operationId": "create_upload_file_uploadfile__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_upload_file_uploadfile__post" |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"Body_create_file_files__post": { |
|||
"title": "Body_create_file_files__post", |
|||
"type": "object", |
|||
"properties": { |
|||
"file": {"title": "File", "type": "string", "format": "binary"} |
|||
}, |
|||
}, |
|||
"Body_create_upload_file_uploadfile__post": { |
|||
"title": "Body_create_upload_file_uploadfile__post", |
|||
"type": "object", |
|||
"properties": { |
|||
"file": {"title": "File", "type": "string", "format": "binary"} |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": {"type": "string"}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
|||
|
|||
|
|||
def test_openapi_schema(): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == openapi_schema |
|||
|
|||
|
|||
def test_post_form_no_body(): |
|||
response = client.post("/files/") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"message": "No file sent"} |
|||
|
|||
|
|||
def test_post_uploadfile_no_body(): |
|||
response = client.post("/uploadfile/") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"message": "No upload file sent"} |
|||
|
|||
|
|||
def test_post_file(tmp_path): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
|
|||
client = TestClient(app) |
|||
with path.open("rb") as file: |
|||
response = client.post("/files/", files={"file": file}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"file_size": 14} |
|||
|
|||
|
|||
def test_post_upload_file(tmp_path): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
|
|||
client = TestClient(app) |
|||
with path.open("rb") as file: |
|||
response = client.post("/uploadfile/", files={"file": file}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"filename": "test.txt"} |
@ -0,0 +1,169 @@ |
|||
from pathlib import Path |
|||
|
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
openapi_schema = { |
|||
"openapi": "3.0.2", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/files/": { |
|||
"post": { |
|||
"summary": "Create File", |
|||
"operationId": "create_file_files__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_file_files__post" |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"/uploadfile/": { |
|||
"post": { |
|||
"summary": "Create Upload File", |
|||
"operationId": "create_upload_file_uploadfile__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_upload_file_uploadfile__post" |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"Body_create_file_files__post": { |
|||
"title": "Body_create_file_files__post", |
|||
"type": "object", |
|||
"properties": { |
|||
"file": {"title": "File", "type": "string", "format": "binary"} |
|||
}, |
|||
}, |
|||
"Body_create_upload_file_uploadfile__post": { |
|||
"title": "Body_create_upload_file_uploadfile__post", |
|||
"type": "object", |
|||
"properties": { |
|||
"file": {"title": "File", "type": "string", "format": "binary"} |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": {"type": "string"}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.request_files.tutorial001_02_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == openapi_schema |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_post_form_no_body(client: TestClient): |
|||
response = client.post("/files/") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"message": "No file sent"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_post_uploadfile_no_body(client: TestClient): |
|||
response = client.post("/uploadfile/") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"message": "No upload file sent"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_post_file(tmp_path: Path, client: TestClient): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
|
|||
with path.open("rb") as file: |
|||
response = client.post("/files/", files={"file": file}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"file_size": 14} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_post_upload_file(tmp_path: Path, client: TestClient): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
|
|||
with path.open("rb") as file: |
|||
response = client.post("/uploadfile/", files={"file": file}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"filename": "test.txt"} |
@ -0,0 +1,159 @@ |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.request_files.tutorial001_03 import app |
|||
|
|||
client = TestClient(app) |
|||
|
|||
openapi_schema = { |
|||
"openapi": "3.0.2", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/files/": { |
|||
"post": { |
|||
"summary": "Create File", |
|||
"operationId": "create_file_files__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_file_files__post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"/uploadfile/": { |
|||
"post": { |
|||
"summary": "Create Upload File", |
|||
"operationId": "create_upload_file_uploadfile__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_upload_file_uploadfile__post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"Body_create_file_files__post": { |
|||
"title": "Body_create_file_files__post", |
|||
"required": ["file"], |
|||
"type": "object", |
|||
"properties": { |
|||
"file": { |
|||
"title": "File", |
|||
"type": "string", |
|||
"description": "A file read as bytes", |
|||
"format": "binary", |
|||
} |
|||
}, |
|||
}, |
|||
"Body_create_upload_file_uploadfile__post": { |
|||
"title": "Body_create_upload_file_uploadfile__post", |
|||
"required": ["file"], |
|||
"type": "object", |
|||
"properties": { |
|||
"file": { |
|||
"title": "File", |
|||
"type": "string", |
|||
"description": "A file read as UploadFile", |
|||
"format": "binary", |
|||
} |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": {"type": "string"}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
|||
|
|||
|
|||
def test_openapi_schema(): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == openapi_schema |
|||
|
|||
|
|||
def test_post_file(tmp_path): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
|
|||
client = TestClient(app) |
|||
with path.open("rb") as file: |
|||
response = client.post("/files/", files={"file": file}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"file_size": 14} |
|||
|
|||
|
|||
def test_post_upload_file(tmp_path): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
|
|||
client = TestClient(app) |
|||
with path.open("rb") as file: |
|||
response = client.post("/uploadfile/", files={"file": file}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"filename": "test.txt"} |
@ -0,0 +1,194 @@ |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.request_files.tutorial003 import app |
|||
|
|||
client = TestClient(app) |
|||
|
|||
openapi_schema = { |
|||
"openapi": "3.0.2", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/files/": { |
|||
"post": { |
|||
"summary": "Create Files", |
|||
"operationId": "create_files_files__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_files_files__post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"/uploadfiles/": { |
|||
"post": { |
|||
"summary": "Create Upload Files", |
|||
"operationId": "create_upload_files_uploadfiles__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_upload_files_uploadfiles__post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"/": { |
|||
"get": { |
|||
"summary": "Main", |
|||
"operationId": "main__get", |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"Body_create_files_files__post": { |
|||
"title": "Body_create_files_files__post", |
|||
"required": ["files"], |
|||
"type": "object", |
|||
"properties": { |
|||
"files": { |
|||
"title": "Files", |
|||
"type": "array", |
|||
"items": {"type": "string", "format": "binary"}, |
|||
"description": "Multiple files as bytes", |
|||
} |
|||
}, |
|||
}, |
|||
"Body_create_upload_files_uploadfiles__post": { |
|||
"title": "Body_create_upload_files_uploadfiles__post", |
|||
"required": ["files"], |
|||
"type": "object", |
|||
"properties": { |
|||
"files": { |
|||
"title": "Files", |
|||
"type": "array", |
|||
"items": {"type": "string", "format": "binary"}, |
|||
"description": "Multiple files as UploadFile", |
|||
} |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": {"type": "string"}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
|||
|
|||
|
|||
def test_openapi_schema(): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == openapi_schema |
|||
|
|||
|
|||
def test_post_files(tmp_path): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
path2 = tmp_path / "test2.txt" |
|||
path2.write_bytes(b"<file content2>") |
|||
|
|||
client = TestClient(app) |
|||
with path.open("rb") as file, path2.open("rb") as file2: |
|||
response = client.post( |
|||
"/files/", |
|||
files=( |
|||
("files", ("test.txt", file)), |
|||
("files", ("test2.txt", file2)), |
|||
), |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"file_sizes": [14, 15]} |
|||
|
|||
|
|||
def test_post_upload_file(tmp_path): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
path2 = tmp_path / "test2.txt" |
|||
path2.write_bytes(b"<file content2>") |
|||
|
|||
client = TestClient(app) |
|||
with path.open("rb") as file, path2.open("rb") as file2: |
|||
response = client.post( |
|||
"/uploadfiles/", |
|||
files=( |
|||
("files", ("test.txt", file)), |
|||
("files", ("test2.txt", file2)), |
|||
), |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"filenames": ["test.txt", "test2.txt"]} |
|||
|
|||
|
|||
def test_get_root(): |
|||
client = TestClient(app) |
|||
response = client.get("/") |
|||
assert response.status_code == 200, response.text |
|||
assert b"<form" in response.content |
@ -0,0 +1,223 @@ |
|||
import pytest |
|||
from fastapi import FastAPI |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
openapi_schema = { |
|||
"openapi": "3.0.2", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/files/": { |
|||
"post": { |
|||
"summary": "Create Files", |
|||
"operationId": "create_files_files__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_files_files__post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"/uploadfiles/": { |
|||
"post": { |
|||
"summary": "Create Upload Files", |
|||
"operationId": "create_upload_files_uploadfiles__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"multipart/form-data": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_create_upload_files_uploadfiles__post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"/": { |
|||
"get": { |
|||
"summary": "Main", |
|||
"operationId": "main__get", |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"Body_create_files_files__post": { |
|||
"title": "Body_create_files_files__post", |
|||
"required": ["files"], |
|||
"type": "object", |
|||
"properties": { |
|||
"files": { |
|||
"title": "Files", |
|||
"type": "array", |
|||
"items": {"type": "string", "format": "binary"}, |
|||
"description": "Multiple files as bytes", |
|||
} |
|||
}, |
|||
}, |
|||
"Body_create_upload_files_uploadfiles__post": { |
|||
"title": "Body_create_upload_files_uploadfiles__post", |
|||
"required": ["files"], |
|||
"type": "object", |
|||
"properties": { |
|||
"files": { |
|||
"title": "Files", |
|||
"type": "array", |
|||
"items": {"type": "string", "format": "binary"}, |
|||
"description": "Multiple files as UploadFile", |
|||
} |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": {"type": "string"}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
|||
|
|||
|
|||
@pytest.fixture(name="app") |
|||
def get_app(): |
|||
from docs_src.request_files.tutorial003_py39 import app |
|||
|
|||
return app |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(app: FastAPI): |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == openapi_schema |
|||
|
|||
|
|||
file_required = { |
|||
"detail": [ |
|||
{ |
|||
"loc": ["body", "files"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_post_files(tmp_path, app: FastAPI): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
path2 = tmp_path / "test2.txt" |
|||
path2.write_bytes(b"<file content2>") |
|||
|
|||
client = TestClient(app) |
|||
with path.open("rb") as file, path2.open("rb") as file2: |
|||
response = client.post( |
|||
"/files/", |
|||
files=( |
|||
("files", ("test.txt", file)), |
|||
("files", ("test2.txt", file2)), |
|||
), |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"file_sizes": [14, 15]} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_post_upload_file(tmp_path, app: FastAPI): |
|||
path = tmp_path / "test.txt" |
|||
path.write_bytes(b"<file content>") |
|||
path2 = tmp_path / "test2.txt" |
|||
path2.write_bytes(b"<file content2>") |
|||
|
|||
client = TestClient(app) |
|||
with path.open("rb") as file, path2.open("rb") as file2: |
|||
response = client.post( |
|||
"/uploadfiles/", |
|||
files=( |
|||
("files", ("test.txt", file)), |
|||
("files", ("test2.txt", file2)), |
|||
), |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"filenames": ["test.txt", "test2.txt"]} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_get_root(app: FastAPI): |
|||
client = TestClient(app) |
|||
response = client.get("/") |
|||
assert response.status_code == 200, response.text |
|||
assert b"<form" in response.content |
Loading…
Reference in new issue