From 0cb111e4b8e2cbc50a2d5411da41e04d8f57ae3a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 22:41:12 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/openapi/utils.py | 10 +- ...additional_responses_default_media_type.py | 110 ++++++------------ 2 files changed, 43 insertions(+), 77 deletions(-) diff --git a/fastapi/openapi/utils.py b/fastapi/openapi/utils.py index 6489441d8..cd9bb92ef 100644 --- a/fastapi/openapi/utils.py +++ b/fastapi/openapi/utils.py @@ -347,12 +347,14 @@ def get_openapi_path( response_schema = {} route_responses = dict((str(k), v) for k, v in route.responses.items()) - if status_code not in route_responses or not route_responses.get(status_code).get('superimpose'): + if status_code not in route_responses or not route_responses.get( + status_code + ).get("superimpose"): operation.setdefault("responses", {}).setdefault( status_code, {} - ).setdefault("content", {}).setdefault(route_response_media_type, {})[ - "schema" - ] = response_schema + ).setdefault("content", {}).setdefault( + route_response_media_type, {} + )["schema"] = response_schema if route.responses: operation_responses = operation.setdefault("responses", {}) diff --git a/tests/test_additional_responses_default_media_type.py b/tests/test_additional_responses_default_media_type.py index 58c430b4f..6f0253009 100644 --- a/tests/test_additional_responses_default_media_type.py +++ b/tests/test_additional_responses_default_media_type.py @@ -3,11 +3,10 @@ over the default route's response class's media_type. """ -from pydantic import BaseModel -from starlette.status import HTTP_200_OK, HTTP_500_INTERNAL_SERVER_ERROR - from fastapi import FastAPI from fastapi.testclient import TestClient +from pydantic import BaseModel +from starlette.status import HTTP_200_OK, HTTP_500_INTERNAL_SERVER_ERROR app = FastAPI() client = TestClient(app) @@ -22,7 +21,7 @@ class Error(BaseModel): "/a", responses={ HTTP_200_OK: {"superimpose": True, "content": {"text/event-stream": {}}}, - HTTP_500_INTERNAL_SERVER_ERROR: {"description": "Error", "model": Error} + HTTP_500_INTERNAL_SERVER_ERROR: {"description": "Error", "model": Error}, }, ) def a(): @@ -33,14 +32,19 @@ def a(): "/b", responses={ str(HTTP_200_OK): {"content": {"text/event-stream": {}}}, - HTTP_500_INTERNAL_SERVER_ERROR: {"description": "Error", "model": Error} - } + HTTP_500_INTERNAL_SERVER_ERROR: {"description": "Error", "model": Error}, + }, ) def b(): pass # pragma: no cover -@app.get("/c", responses={HTTP_500_INTERNAL_SERVER_ERROR: {"description": "Error", "model": Error}}) +@app.get( + "/c", + responses={ + HTTP_500_INTERNAL_SERVER_ERROR: {"description": "Error", "model": Error} + }, +) def c(): pass # pragma: no cover @@ -56,10 +60,7 @@ def test_openapi_schema(): assert response.status_code == 200, response.text assert response.json() == { "openapi": "3.1.0", - "info": { - "title": "FastAPI", - "version": "0.1.0" - }, + "info": {"title": "FastAPI", "version": "0.1.0"}, "paths": { "/a": { "get": { @@ -68,23 +69,17 @@ def test_openapi_schema(): "responses": { "200": { "description": "Successful Response", - "content": { - "text/event-stream": { - - } - } + "content": {"text/event-stream": {}}, }, "500": { "description": "Error", "content": { "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } + "schema": {"$ref": "#/components/schemas/Error"} } - } - } - } + }, + }, + }, } }, "/b": { @@ -95,27 +90,19 @@ def test_openapi_schema(): "200": { "description": "Successful Response", "content": { - "application/json": { - "schema": { - - } - }, - "text/event-stream": { - - } - } + "application/json": {"schema": {}}, + "text/event-stream": {}, + }, }, "500": { "description": "Error", "content": { "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } + "schema": {"$ref": "#/components/schemas/Error"} } - } - } - } + }, + }, + }, } }, "/c": { @@ -125,25 +112,17 @@ def test_openapi_schema(): "responses": { "200": { "description": "Successful Response", - "content": { - "application/json": { - "schema": { - - } - } - } + "content": {"application/json": {"schema": {}}}, }, "500": { "description": "Error", "content": { "application/json": { - "schema": { - "$ref": "#/components/schemas/Error" - } + "schema": {"$ref": "#/components/schemas/Error"} } - } - } - } + }, + }, + }, } }, "/d": { @@ -153,38 +132,23 @@ def test_openapi_schema(): "responses": { "200": { "description": "Successful Response", - "content": { - "application/json": { - "schema": { - - } - } - } + "content": {"application/json": {"schema": {}}}, } - } + }, } - } + }, }, "components": { "schemas": { "Error": { "properties": { - "status": { - "type": "string", - "title": "Status" - }, - "title": { - "type": "string", - "title": "Title" - } + "status": {"type": "string", "title": "Status"}, + "title": {"type": "string", "title": "Title"}, }, "type": "object", - "required": [ - "status", - "title" - ], - "title": "Error" + "required": ["status", "title"], + "title": "Error", } } - } + }, }