Browse Source
* ➕ Add pydantic-settings to all extras * 📝 Update docs for Pydantic settings * 📝 Update Settings source examples to use Pydantic v2, and add a Pydantic v1 version * ✅ Add tests for settings with Pydantic v1 and v2 * 🔥 Remove solved TODO comment * ♻️ Update conditional OpenAPI to use new Pydantic v2 settingspull/9795/head
committed by
GitHub
17 changed files with 118 additions and 27 deletions
@ -0,0 +1,21 @@ |
|||||
|
from fastapi import FastAPI |
||||
|
from pydantic import BaseSettings |
||||
|
|
||||
|
|
||||
|
class Settings(BaseSettings): |
||||
|
app_name: str = "Awesome API" |
||||
|
admin_email: str |
||||
|
items_per_user: int = 50 |
||||
|
|
||||
|
|
||||
|
settings = Settings() |
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.get("/info") |
||||
|
async def info(): |
||||
|
return { |
||||
|
"app_name": settings.app_name, |
||||
|
"admin_email": settings.admin_email, |
||||
|
"items_per_user": settings.items_per_user, |
||||
|
} |
@ -0,0 +1,19 @@ |
|||||
|
from fastapi.testclient import TestClient |
||||
|
from pytest import MonkeyPatch |
||||
|
|
||||
|
from ...utils import needs_pydanticv2 |
||||
|
|
||||
|
|
||||
|
@needs_pydanticv2 |
||||
|
def test_settings(monkeypatch: MonkeyPatch): |
||||
|
monkeypatch.setenv("ADMIN_EMAIL", "[email protected]") |
||||
|
from docs_src.settings.tutorial001 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
response = client.get("/info") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == { |
||||
|
"app_name": "Awesome API", |
||||
|
"admin_email": "[email protected]", |
||||
|
"items_per_user": 50, |
||||
|
} |
@ -0,0 +1,19 @@ |
|||||
|
from fastapi.testclient import TestClient |
||||
|
from pytest import MonkeyPatch |
||||
|
|
||||
|
from ...utils import needs_pydanticv1 |
||||
|
|
||||
|
|
||||
|
@needs_pydanticv1 |
||||
|
def test_settings(monkeypatch: MonkeyPatch): |
||||
|
monkeypatch.setenv("ADMIN_EMAIL", "[email protected]") |
||||
|
from docs_src.settings.tutorial001_pv1 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
response = client.get("/info") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == { |
||||
|
"app_name": "Awesome API", |
||||
|
"admin_email": "[email protected]", |
||||
|
"items_per_user": 50, |
||||
|
} |
Loading…
Reference in new issue