diff --git a/docs/en/docs/tutorial/response-status-code.md b/docs/en/docs/tutorial/response-status-code.md index 05244edf6..7915624fa 100644 --- a/docs/en/docs/tutorial/response-status-code.md +++ b/docs/en/docs/tutorial/response-status-code.md @@ -17,6 +17,9 @@ The same way you can specify a response model, you can also declare the HTTP sta The `status_code` parameter receives a number with the HTTP status code. +!!! info + `status_code` can alternatively also receive an `IntEnum`, such as Python's `http.HTTPStatus`. + It will: * Return that status code in the response. diff --git a/fastapi/routing.py b/fastapi/routing.py index 16eb7ab0b..38216823a 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -1,4 +1,5 @@ import asyncio +import enum import inspect import json from typing import Any, Callable, Dict, List, Optional, Sequence, Set, Type, Union @@ -296,6 +297,9 @@ class APIRoute(routing.Route): dependency_overrides_provider: Any = None, callbacks: Optional[List["APIRoute"]] = None, ) -> None: + # normalise enums e.g. http.HTTPStatus + if isinstance(status_code, enum.IntEnum): + status_code = int(status_code) self.path = path self.endpoint = endpoint self.name = get_name(endpoint) if name is None else name diff --git a/tests/main.py b/tests/main.py index ab0b18607..f32856cb6 100644 --- a/tests/main.py +++ b/tests/main.py @@ -1,3 +1,5 @@ +import http + from fastapi import FastAPI, Path, Query app = FastAPI() @@ -184,3 +186,8 @@ def get_query_param_required(query=Query(...)): @app.get("/query/param-required/int") def get_query_param_required_type(query: int = Query(...)): return f"foo bar {query}" + + +@app.get("/enum-status-code", status_code=http.HTTPStatus.CREATED) +def get_enum_status_code(): + return "foo bar" diff --git a/tests/test_application.py b/tests/test_application.py index f6d77460a..fcb77c93e 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -1078,6 +1078,18 @@ openapi_schema = { ], } }, + "/enum-status-code": { + "get": { + "responses": { + "201": { + "description": "Successful Response", + "content": {"application/json": {"schema": {}}}, + }, + }, + "summary": "Get Enum Status Code", + "operationId": "get_enum_status_code_enum_status_code_get", + } + }, }, "components": { "schemas": { @@ -1149,3 +1161,9 @@ def test_redoc(): assert response.status_code == 200, response.text assert response.headers["content-type"] == "text/html; charset=utf-8" assert "redoc@next" in response.text + + +def test_enum_status_code_response(): + response = client.get("/enum-status-code") + assert response.status_code == 201, response.text + assert response.json() == "foo bar"