committed by
GitHub
58 changed files with 910 additions and 7266 deletions
@ -35,7 +35,7 @@ jobs: |
|||
TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }} |
|||
run: python -m build |
|||
- name: Publish |
|||
uses: pypa/[email protected].3 |
|||
uses: pypa/[email protected].4 |
|||
- name: Dump GitHub context |
|||
env: |
|||
GITHUB_CONTEXT: ${{ toJson(github) }} |
|||
|
@ -0,0 +1,556 @@ |
|||
# Большие приложения, в которых много файлов |
|||
|
|||
При построении приложения или веб-API нам редко удается поместить всё в один файл. |
|||
|
|||
**FastAPI** предоставляет удобный инструментарий, который позволяет нам структурировать приложение, сохраняя при этом всю необходимую гибкость. |
|||
|
|||
/// info | Примечание |
|||
|
|||
Если вы раньше использовали Flask, то это аналог шаблонов Flask (Flask's Blueprints). |
|||
|
|||
/// |
|||
|
|||
## Пример структуры приложения |
|||
|
|||
Давайте предположим, что наше приложение имеет следующую структуру: |
|||
|
|||
``` |
|||
. |
|||
├── app |
|||
│ ├── __init__.py |
|||
│ ├── main.py |
|||
│ ├── dependencies.py |
|||
│ └── routers |
|||
│ │ ├── __init__.py |
|||
│ │ ├── items.py |
|||
│ │ └── users.py |
|||
│ └── internal |
|||
│ ├── __init__.py |
|||
│ └── admin.py |
|||
``` |
|||
|
|||
/// tip | Подсказка |
|||
|
|||
Обратите внимание, что в каждом каталоге и подкаталоге имеется файл `__init__.py` |
|||
|
|||
Это как раз то, что позволяет импортировать код из одного файла в другой. |
|||
|
|||
Например, в файле `app/main.py` может быть следующая строка: |
|||
|
|||
``` |
|||
from app.routers import items |
|||
``` |
|||
|
|||
/// |
|||
|
|||
* Всё помещается в каталоге `app`. В нём также находится пустой файл `app/__init__.py`. Таким образом, `app` является "Python-пакетом" (коллекцией модулей Python). |
|||
* Он содержит файл `app/main.py`. Данный файл является частью пакета (т.е. находится внутри каталога, содержащего файл `__init__.py`), и, соответственно, он является модулем пакета: `app.main`. |
|||
* Он также содержит файл `app/dependencies.py`, который также, как и `app/main.py`, является модулем: `app.dependencies`. |
|||
* Здесь также находится подкаталог `app/routers/`, содержащий `__init__.py`. Он является суб-пакетом: `app.routers`. |
|||
* Файл `app/routers/items.py` находится внутри пакета `app/routers/`. Таким образом, он является суб-модулем: `app.routers.items`. |
|||
* Точно также `app/routers/users.py` является ещё одним суб-модулем: `app.routers.users`. |
|||
* Подкаталог `app/internal/`, содержащий файл `__init__.py`, является ещё одним суб-пакетом: `app.internal`. |
|||
* А файл `app/internal/admin.py` является ещё одним суб-модулем: `app.internal.admin`. |
|||
|
|||
<img src="/img/tutorial/bigger-applications/package.svg"> |
|||
|
|||
Та же самая файловая структура приложения, но с комментариями: |
|||
|
|||
``` |
|||
. |
|||
├── app # "app" пакет |
|||
│ ├── __init__.py # этот файл превращает "app" в "Python-пакет" |
|||
│ ├── main.py # модуль "main", напр.: import app.main |
|||
│ ├── dependencies.py # модуль "dependencies", напр.: import app.dependencies |
|||
│ └── routers # суб-пакет "routers" |
|||
│ │ ├── __init__.py # превращает "routers" в суб-пакет |
|||
│ │ ├── items.py # суб-модуль "items", напр.: import app.routers.items |
|||
│ │ └── users.py # суб-модуль "users", напр.: import app.routers.users |
|||
│ └── internal # суб-пакет "internal" |
|||
│ ├── __init__.py # превращает "internal" в суб-пакет |
|||
│ └── admin.py # суб-модуль "admin", напр.: import app.internal.admin |
|||
``` |
|||
|
|||
## `APIRouter` |
|||
|
|||
Давайте предположим, что для работы с пользователями используется отдельный файл (суб-модуль) `/app/routers/users.py`. |
|||
|
|||
Для лучшей организации приложения, вы хотите отделить операции пути, связанные с пользователями, от остального кода. |
|||
|
|||
Но так, чтобы эти операции по-прежнему оставались частью **FastAPI** приложения/веб-API (частью одного пакета) |
|||
|
|||
С помощью `APIRouter` вы можете создать *операции пути* (*эндпоинты*) для данного модуля. |
|||
|
|||
|
|||
### Импорт `APIRouter` |
|||
|
|||
Точно также, как и в случае с классом `FastAPI`, вам нужно импортировать и создать объект класса `APIRouter`. |
|||
|
|||
```Python hl_lines="1 3" title="app/routers/users.py" |
|||
{!../../docs_src/bigger_applications/app/routers/users.py!} |
|||
``` |
|||
|
|||
### Создание *эндпоинтов* с помощью `APIRouter` |
|||
|
|||
В дальнейшем используйте `APIRouter` для объявления *эндпоинтов*, точно также, как вы используете класс `FastAPI`: |
|||
|
|||
```Python hl_lines="6 11 16" title="app/routers/users.py" |
|||
{!../../docs_src/bigger_applications/app/routers/users.py!} |
|||
``` |
|||
|
|||
Вы можете думать об `APIRouter` как об "уменьшенной версии" класса FastAPI`. |
|||
|
|||
`APIRouter` поддерживает все те же самые опции. |
|||
|
|||
`APIRouter` поддерживает все те же самые параметры, такие как `parameters`, `responses`, `dependencies`, `tags`, и т. д. |
|||
|
|||
/// tip | Подсказка |
|||
|
|||
В данном примере, в качестве названия переменной используется `router`, но вы можете использовать любое другое имя. |
|||
|
|||
/// |
|||
|
|||
Мы собираемся подключить данный `APIRouter` к нашему основному приложению на `FastAPI`, но сначала давайте проверим зависимости и создадим ещё один модуль с `APIRouter`. |
|||
|
|||
## Зависимости |
|||
|
|||
Нам понадобятся некоторые зависимости, которые мы будем использовать в разных местах нашего приложения. |
|||
|
|||
Мы поместим их в отдельный модуль `dependencies` (`app/dependencies.py`). |
|||
|
|||
Теперь мы воспользуемся простой зависимостью, чтобы прочитать кастомизированный `X-Token` из заголовка: |
|||
|
|||
//// tab | Python 3.9+ |
|||
|
|||
```Python hl_lines="3 6-8" title="app/dependencies.py" |
|||
{!> ../../docs_src/bigger_applications/app_an_py39/dependencies.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ |
|||
|
|||
```Python hl_lines="1 5-7" title="app/dependencies.py" |
|||
{!> ../../docs_src/bigger_applications/app_an/dependencies.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
//// tab | Python 3.8+ non-Annotated |
|||
|
|||
/// tip | Подсказка |
|||
|
|||
Мы рекомендуем использовать версию `Annotated`, когда это возможно. |
|||
|
|||
/// |
|||
|
|||
```Python hl_lines="1 4-6" title="app/dependencies.py" |
|||
{!> ../../docs_src/bigger_applications/app/dependencies.py!} |
|||
``` |
|||
|
|||
//// |
|||
|
|||
/// tip | Подсказка |
|||
|
|||
Для простоты мы воспользовались неким воображаемым заголовоком. |
|||
|
|||
В реальных случаях для получения наилучших результатов используйте интегрированные утилиты обеспечения безопасности [Security utilities](security/index.md){.internal-link target=_blank}. |
|||
|
|||
/// |
|||
|
|||
## Ещё один модуль с `APIRouter` |
|||
|
|||
Давайте также предположим, что у вас есть *эндпоинты*, отвечающие за обработку "items", и они находятся в модуле `app/routers/items.py`. |
|||
|
|||
У вас определены следующие *операции пути* (*эндпоинты*): |
|||
|
|||
* `/items/` |
|||
* `/items/{item_id}` |
|||
|
|||
Тут всё точно также, как и в ситуации с `app/routers/users.py`. |
|||
|
|||
Но теперь мы хотим поступить немного умнее и слегка упростить код. |
|||
|
|||
Мы знаем, что все *эндпоинты* данного модуля имеют некоторые общие свойства: |
|||
|
|||
* Префикс пути: `/items`. |
|||
* Теги: (один единственный тег: `items`). |
|||
* Дополнительные ответы (responses) |
|||
* Зависимости: использование созданной нами зависимости `X-token` |
|||
|
|||
Таким образом, вместо того чтобы добавлять все эти свойства в функцию каждого отдельного *эндпоинта*, |
|||
мы добавим их в `APIRouter`. |
|||
|
|||
```Python hl_lines="5-10 16 21" title="app/routers/items.py" |
|||
{!../../docs_src/bigger_applications/app/routers/items.py!} |
|||
``` |
|||
|
|||
Так как каждый *эндпоинт* начинается с символа `/`: |
|||
|
|||
```Python hl_lines="1" |
|||
@router.get("/{item_id}") |
|||
async def read_item(item_id: str): |
|||
... |
|||
``` |
|||
|
|||
...то префикс не должен заканчиваться символом `/`. |
|||
|
|||
В нашем случае префиксом является `/items`. |
|||
|
|||
Мы также можем добавить в наш маршрутизатор (router) список `тегов` (`tags`) и дополнительных `ответов` (`responses`), которые являются общими для каждого *эндпоинта*. |
|||
|
|||
И ещё мы можем добавить в наш маршрутизатор список `зависимостей`, которые должны вызываться при каждом обращении к *эндпоинтам*. |
|||
|
|||
/// tip | Подсказка |
|||
|
|||
Обратите внимание, что также, как и в случае с зависимостями в декораторах *эндпоинтов* ([dependencies in *path operation decorators*](dependencies/dependencies-in-path-operation-decorators.md){.internal-link target=_blank}), никакого значения в *функцию эндпоинта* передано не будет. |
|||
|
|||
/// |
|||
|
|||
В результате мы получим следующие эндпоинты: |
|||
|
|||
* `/items/` |
|||
* `/items/{item_id}` |
|||
|
|||
...как мы и планировали. |
|||
|
|||
* Они будут помечены тегами из заданного списка, в нашем случае это `"items"`. |
|||
* Эти теги особенно полезны для системы автоматической интерактивной документации (с использованием OpenAPI). |
|||
* Каждый из них будет включать предопределенные ответы `responses`. |
|||
* Каждый *эндпоинт* будет иметь список зависимостей (`dependencies`), исполняемых перед вызовом *эндпоинта*. |
|||
* Если вы определили зависимости в самой операции пути, **то она также будет выполнена**. |
|||
* Сначала выполняются зависимости маршрутизатора, затем вызываются зависимости, определенные в декораторе *эндпоинта* ([`dependencies` in the decorator](dependencies/dependencies-in-path-operation-decorators.md){.internal-link target=_blank}), и, наконец, обычные параметрические зависимости. |
|||
* Вы также можете добавить зависимости безопасности с областями видимости (`scopes`) [`Security` dependencies with `scopes`](../advanced/security/oauth2-scopes.md){.internal-link target=_blank}. |
|||
|
|||
/// tip | Подсказка |
|||
|
|||
Например, с помощью зависимостей в `APIRouter` мы можем потребовать аутентификации для доступа ко всей группе *эндпоинтов*, не указывая зависимости для каждой отдельной функции *эндпоинта*. |
|||
|
|||
/// |
|||
|
|||
/// check | Заметка |
|||
|
|||
Параметры `prefix`, `tags`, `responses` и `dependencies` относятся к функционалу **FastAPI**, помогающему избежать дублирования кода. |
|||
|
|||
/// |
|||
|
|||
### Импорт зависимостей |
|||
|
|||
Наш код находится в модуле `app.routers.items` (файл `app/routers/items.py`). |
|||
|
|||
И нам нужно вызвать функцию зависимости из модуля `app.dependencies` (файл `app/dependencies.py`). |
|||
|
|||
Мы используем операцию относительного импорта `..` для импорта зависимости: |
|||
|
|||
```Python hl_lines="3" title="app/routers/items.py" |
|||
{!../../docs_src/bigger_applications/app/routers/items.py!} |
|||
``` |
|||
|
|||
#### Как работает относительный импорт? |
|||
|
|||
/// tip | Подсказка |
|||
|
|||
Если вы прекрасно знаете, как работает импорт в Python, то переходите к следующему разделу. |
|||
|
|||
/// |
|||
|
|||
Одна точка `.`, как в данном примере: |
|||
|
|||
```Python |
|||
from .dependencies import get_token_header |
|||
``` |
|||
означает: |
|||
|
|||
* Начните с пакета, в котором находится данный модуль (файл `app/routers/items.py` расположен в каталоге `app/routers/`)... |
|||
* ... найдите модуль `dependencies` (файл `app/routers/dependencies.py`)... |
|||
* ... и импортируйте из него функцию `get_token_header`. |
|||
|
|||
К сожалению, такого файла не существует, и наши зависимости находятся в файле `app/dependencies.py`. |
|||
|
|||
Вспомните, как выглядит файловая структура нашего приложения: |
|||
|
|||
<img src="/img/tutorial/bigger-applications/package.svg"> |
|||
|
|||
--- |
|||
|
|||
Две точки `..`, как в данном примере: |
|||
|
|||
```Python |
|||
from ..dependencies import get_token_header |
|||
``` |
|||
|
|||
означают: |
|||
|
|||
* Начните с пакета, в котором находится данный модуль (файл `app/routers/items.py` находится в каталоге `app/routers/`)... |
|||
* ... перейдите в родительский пакет (каталог `app/`)... |
|||
* ... найдите в нём модуль `dependencies` (файл `app/dependencies.py`)... |
|||
* ... и импортируйте из него функцию `get_token_header`. |
|||
|
|||
Это работает верно! 🎉 |
|||
|
|||
--- |
|||
|
|||
Аналогично, если бы мы использовали три точки `...`, как здесь: |
|||
|
|||
```Python |
|||
from ...dependencies import get_token_header |
|||
``` |
|||
|
|||
то это бы означало: |
|||
|
|||
* Начните с пакета, в котором находится данный модуль (файл `app/routers/items.py` находится в каталоге `app/routers/`)... |
|||
* ... перейдите в родительский пакет (каталог `app/`)... |
|||
* ... затем перейдите в родительский пакет текущего пакета (такого пакета не существует, `app` находится на самом верхнем уровне 😱)... |
|||
* ... найдите в нём модуль `dependencies` (файл `app/dependencies.py`)... |
|||
* ... и импортируйте из него функцию `get_token_header`. |
|||
|
|||
Это будет относиться к некоторому пакету, находящемуся на один уровень выше чем `app/` и содержащему свой собственный файл `__init__.py`. Но ничего такого у нас нет. Поэтому это приведет к ошибке в нашем примере. 🚨 |
|||
|
|||
Теперь вы знаете, как работает импорт в Python, и сможете использовать относительное импортирование в своих собственных приложениях любого уровня сложности. 🤓 |
|||
|
|||
### Добавление пользовательских тегов (`tags`), ответов (`responses`) и зависимостей (`dependencies`) |
|||
|
|||
Мы не будем добавлять префикс `/items` и список тегов `tags=["items"]` для каждого *эндпоинта*, т.к. мы уже их добавили с помощью `APIRouter`. |
|||
|
|||
Но помимо этого мы можем добавить новые теги для каждого отдельного *эндпоинта*, а также некоторые дополнительные ответы (`responses`), характерные для данного *эндпоинта*: |
|||
|
|||
```Python hl_lines="30-31" title="app/routers/items.py" |
|||
{!../../docs_src/bigger_applications/app/routers/items.py!} |
|||
``` |
|||
|
|||
/// tip | Подсказка |
|||
|
|||
Последний *эндпоинт* будет иметь следующую комбинацию тегов: `["items", "custom"]`. |
|||
|
|||
А также в его документации будут содержаться оба ответа: один для `404` и другой для `403`. |
|||
|
|||
/// |
|||
|
|||
## Модуль main в `FastAPI` |
|||
|
|||
Теперь давайте посмотрим на модуль `app/main.py`. |
|||
|
|||
Именно сюда вы импортируете и именно здесь вы используете класс `FastAPI`. |
|||
|
|||
Это основной файл вашего приложения, который объединяет всё в одно целое. |
|||
|
|||
И теперь, когда большая часть логики приложения разделена на отдельные модули, основной файл `app/main.py` будет достаточно простым. |
|||
|
|||
### Импорт `FastAPI` |
|||
|
|||
Вы импортируете и создаете класс `FastAPI` как обычно. |
|||
|
|||
Мы даже можем объявить глобальные зависимости [global dependencies](dependencies/global-dependencies.md){.internal-link target=_blank}, которые будут объединены с зависимостями для каждого отдельного маршрутизатора: |
|||
|
|||
```Python hl_lines="1 3 7" title="app/main.py" |
|||
{!../../docs_src/bigger_applications/app/main.py!} |
|||
``` |
|||
|
|||
### Импорт `APIRouter` |
|||
|
|||
Теперь мы импортируем другие суб-модули, содержащие `APIRouter`: |
|||
|
|||
```Python hl_lines="4-5" title="app/main.py" |
|||
{!../../docs_src/bigger_applications/app/main.py!} |
|||
``` |
|||
|
|||
Так как файлы `app/routers/users.py` и `app/routers/items.py` являются суб-модулями одного и того же Python-пакета `app`, то мы сможем их импортировать, воспользовавшись операцией относительного импорта `.`. |
|||
|
|||
### Как работает импорт? |
|||
|
|||
Данная строка кода: |
|||
|
|||
```Python |
|||
from .routers import items, users |
|||
``` |
|||
|
|||
означает: |
|||
|
|||
* Начните с пакета, в котором содержится данный модуль (файл `app/main.py` содержится в каталоге `app/`)... |
|||
* ... найдите суб-пакет `routers` (каталог `app/routers/`)... |
|||
* ... и из него импортируйте суб-модули `items` (файл `app/routers/items.py`) и `users` (файл `app/routers/users.py`)... |
|||
|
|||
В модуле `items` содержится переменная `router` (`items.router`), та самая, которую мы создали в файле `app/routers/items.py`, она является объектом класса `APIRouter`. |
|||
|
|||
И затем мы сделаем то же самое для модуля `users`. |
|||
|
|||
Мы также могли бы импортировать и другим методом: |
|||
|
|||
```Python |
|||
from app.routers import items, users |
|||
``` |
|||
|
|||
/// info | Примечание |
|||
|
|||
Первая версия является примером относительного импорта: |
|||
|
|||
```Python |
|||
from .routers import items, users |
|||
``` |
|||
|
|||
Вторая версия является примером абсолютного импорта: |
|||
|
|||
```Python |
|||
from app.routers import items, users |
|||
``` |
|||
|
|||
Узнать больше о пакетах и модулях в Python вы можете из <a href="https://docs.python.org/3/tutorial/modules.html" class="external-link" target="_blank">официальной документации Python о модулях</a> |
|||
|
|||
/// |
|||
|
|||
### Избегайте конфликтов имен |
|||
|
|||
Вместо того чтобы импортировать только переменную `router`, мы импортируем непосредственно суб-модуль `items`. |
|||
|
|||
Мы делаем это потому, что у нас есть ещё одна переменная `router` в суб-модуле `users`. |
|||
|
|||
Если бы мы импортировали их одну за другой, как показано в примере: |
|||
|
|||
```Python |
|||
from .routers.items import router |
|||
from .routers.users import router |
|||
``` |
|||
|
|||
то переменная `router` из `users` переписал бы переменную `router` из `items`, и у нас не было бы возможности использовать их одновременно. |
|||
|
|||
Поэтому, для того чтобы использовать обе эти переменные в одном файле, мы импортировали соответствующие суб-модули: |
|||
|
|||
```Python hl_lines="5" title="app/main.py" |
|||
{!../../docs_src/bigger_applications/app/main.py!} |
|||
``` |
|||
|
|||
### Подключение маршрутизаторов (`APIRouter`) для `users` и для `items` |
|||
|
|||
Давайте подключим маршрутизаторы (`router`) из суб-модулей `users` и `items`: |
|||
|
|||
```Python hl_lines="10-11" title="app/main.py" |
|||
{!../../docs_src/bigger_applications/app/main.py!} |
|||
``` |
|||
|
|||
/// info | Примечание |
|||
|
|||
`users.router` содержит `APIRouter` из файла `app/routers/users.py`. |
|||
|
|||
А `items.router` содержит `APIRouter` из файла `app/routers/items.py`. |
|||
|
|||
/// |
|||
|
|||
С помощью `app.include_router()` мы можем добавить каждый из маршрутизаторов (`APIRouter`) в основное приложение `FastAPI`. |
|||
|
|||
Он подключит все маршруты заданного маршрутизатора к нашему приложению. |
|||
|
|||
/// note | Технические детали |
|||
|
|||
Фактически, внутри он создаст все *операции пути* для каждой операции пути объявленной в `APIRouter`. |
|||
|
|||
И под капотом всё будет работать так, как будто бы мы имеем дело с одним файлом приложения. |
|||
|
|||
/// |
|||
|
|||
/// check | Заметка |
|||
|
|||
При подключении маршрутизаторов не стоит беспокоиться о производительности. |
|||
|
|||
Операция подключения займёт микросекунды и понадобится только при запуске приложения. |
|||
|
|||
Таким образом, это не повлияет на производительность. ⚡ |
|||
|
|||
/// |
|||
|
|||
### Подключение `APIRouter` с пользовательскими префиксом (`prefix`), тегами (`tags`), ответами (`responses`), и зависимостями (`dependencies`) |
|||
|
|||
Теперь давайте представим, что ваша организация передала вам файл `app/internal/admin.py`. |
|||
|
|||
Он содержит `APIRouter` с некоторыми *эндпоитами* администрирования, которые ваша организация использует для нескольких проектов. |
|||
|
|||
В данном примере это сделать очень просто. Но давайте предположим, что поскольку файл используется для нескольких проектов, |
|||
то мы не можем модифицировать его, добавляя префиксы (`prefix`), зависимости (`dependencies`), теги (`tags`), и т.д. непосредственно в `APIRouter`: |
|||
|
|||
```Python hl_lines="3" title="app/internal/admin.py" |
|||
{!../../docs_src/bigger_applications/app/internal/admin.py!} |
|||
``` |
|||
|
|||
Но, несмотря на это, мы хотим использовать кастомный префикс (`prefix`) для подключенного маршрутизатора (`APIRouter`), в результате чего, каждая *операция пути* будет начинаться с `/admin`. Также мы хотим защитить наш маршрутизатор с помощью зависимостей, созданных для нашего проекта. И ещё мы хотим включить теги (`tags`) и ответы (`responses`). |
|||
|
|||
Мы можем применить все вышеперечисленные настройки, не изменяя начальный `APIRouter`. Нам всего лишь нужно передать нужные параметры в `app.include_router()`. |
|||
|
|||
```Python hl_lines="14-17" title="app/main.py" |
|||
{!../../docs_src/bigger_applications/app/main.py!} |
|||
``` |
|||
|
|||
Таким образом, оригинальный `APIRouter` не будет модифицирован, и мы сможем использовать файл `app/internal/admin.py` сразу в нескольких проектах организации. |
|||
|
|||
В результате, в нашем приложении каждый *эндпоинт* модуля `admin` будет иметь: |
|||
|
|||
* Префикс `/admin`. |
|||
* Тег `admin`. |
|||
* Зависимость `get_token_header`. |
|||
* Ответ `418`. 🍵 |
|||
|
|||
Это будет иметь место исключительно для `APIRouter` в нашем приложении, и не затронет любой другой код, использующий его. |
|||
|
|||
Например, другие проекты, могут использовать тот же самый `APIRouter` с другими методами аутентификации. |
|||
|
|||
### Подключение отдельного *эндпоинта* |
|||
|
|||
Мы также можем добавить *эндпоинт* непосредственно в основное приложение `FastAPI`. |
|||
|
|||
Здесь мы это делаем ... просто, чтобы показать, что это возможно 🤷: |
|||
|
|||
```Python hl_lines="21-23" title="app/main.py" |
|||
{!../../docs_src/bigger_applications/app/main.py!} |
|||
``` |
|||
|
|||
и это будет работать корректно вместе с другими *эндпоинтами*, добавленными с помощью `app.include_router()`. |
|||
|
|||
/// info | Сложные технические детали |
|||
|
|||
**Примечание**: это сложная техническая деталь, которую, скорее всего, **вы можете пропустить**. |
|||
|
|||
--- |
|||
|
|||
Маршрутизаторы (`APIRouter`) не "монтируются" по-отдельности и не изолируются от остального приложения. |
|||
|
|||
Это происходит потому, что нужно включить их *эндпоинты* в OpenAPI схему и в интерфейс пользователя. |
|||
|
|||
В силу того, что мы не можем их изолировать и "примонтировать" независимо от остальных, *эндпоинты* клонируются (пересоздаются) и не подключаются напрямую. |
|||
|
|||
/// |
|||
|
|||
## Проверка автоматической документации API |
|||
|
|||
Теперь запустите приложение: |
|||
|
|||
<div class="termy"> |
|||
|
|||
```console |
|||
$ fastapi dev app/main.py |
|||
|
|||
<span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) |
|||
``` |
|||
|
|||
</div> |
|||
|
|||
Откройте документацию по адресу <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>. |
|||
|
|||
Вы увидите автоматическую API документацию. Она включает в себя маршруты из суб-модулей, используя верные маршруты, префиксы и теги: |
|||
|
|||
<img src="/img/tutorial/bigger-applications/image01.png"> |
|||
|
|||
## Подключение существующего маршрута через новый префикс (`prefix`) |
|||
|
|||
Вы можете использовать `.include_router()` несколько раз с одним и тем же маршрутом, применив различные префиксы. |
|||
|
|||
Это может быть полезным, если нужно предоставить доступ к одному и тому же API через различные префиксы, например, `/api/v1` и `/api/latest`. |
|||
|
|||
Это продвинутый способ, который вам может и не пригодится. Мы приводим его на случай, если вдруг вам это понадобится. |
|||
|
|||
## Включение одного маршрутизатора (`APIRouter`) в другой |
|||
|
|||
Точно так же, как вы включаете `APIRouter` в приложение `FastAPI`, вы можете включить `APIRouter` в другой `APIRouter`: |
|||
|
|||
```Python |
|||
router.include_router(other_router) |
|||
``` |
|||
|
|||
Удостоверьтесь, что вы сделали это до того, как подключить маршрутизатор (`router`) к вашему `FastAPI` приложению, и *эндпоинты* маршрутизатора `other_router` были также подключены. |
@ -1,232 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.request_form_models.tutorial001_an import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
def test_post_body_form(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 200 |
|||
assert response.json() == {"username": "Foo", "password": "secret"} |
|||
|
|||
|
|||
def test_post_body_form_no_password(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == IsDict( |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {"username": "Foo"}, |
|||
} |
|||
] |
|||
} |
|||
) | IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
} |
|||
] |
|||
} |
|||
) |
|||
|
|||
|
|||
def test_post_body_form_no_username(client: TestClient): |
|||
response = client.post("/login/", data={"password": "secret"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == IsDict( |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {"password": "secret"}, |
|||
} |
|||
] |
|||
} |
|||
) | IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
} |
|||
] |
|||
} |
|||
) |
|||
|
|||
|
|||
def test_post_body_form_no_data(client: TestClient): |
|||
response = client.post("/login/") |
|||
assert response.status_code == 422 |
|||
assert response.json() == IsDict( |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
] |
|||
} |
|||
) | IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
}, |
|||
{ |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
}, |
|||
] |
|||
} |
|||
) |
|||
|
|||
|
|||
def test_post_body_json(client: TestClient): |
|||
response = client.post("/login/", json={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 422, response.text |
|||
assert response.json() == IsDict( |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
] |
|||
} |
|||
) | IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
}, |
|||
{ |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
}, |
|||
] |
|||
} |
|||
) |
|||
|
|||
|
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/login/": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_login__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": {"$ref": "#/components/schemas/FormData"} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"FormData": { |
|||
"properties": { |
|||
"username": {"type": "string", "title": "Username"}, |
|||
"password": {"type": "string", "title": "Password"}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["username", "password"], |
|||
"title": "FormData", |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,240 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from tests.utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.request_form_models.tutorial001_an_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_post_body_form(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 200 |
|||
assert response.json() == {"username": "Foo", "password": "secret"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_post_body_form_no_password(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == IsDict( |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {"username": "Foo"}, |
|||
} |
|||
] |
|||
} |
|||
) | IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
} |
|||
] |
|||
} |
|||
) |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_post_body_form_no_username(client: TestClient): |
|||
response = client.post("/login/", data={"password": "secret"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == IsDict( |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {"password": "secret"}, |
|||
} |
|||
] |
|||
} |
|||
) | IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
} |
|||
] |
|||
} |
|||
) |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_post_body_form_no_data(client: TestClient): |
|||
response = client.post("/login/") |
|||
assert response.status_code == 422 |
|||
assert response.json() == IsDict( |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
] |
|||
} |
|||
) | IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
}, |
|||
{ |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
}, |
|||
] |
|||
} |
|||
) |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_post_body_json(client: TestClient): |
|||
response = client.post("/login/", json={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 422, response.text |
|||
assert response.json() == IsDict( |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
] |
|||
} |
|||
) | IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"detail": [ |
|||
{ |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
}, |
|||
{ |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
"type": "value_error.missing", |
|||
}, |
|||
] |
|||
} |
|||
) |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/login/": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_login__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": {"$ref": "#/components/schemas/FormData"} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"FormData": { |
|||
"properties": { |
|||
"username": {"type": "string", "title": "Username"}, |
|||
"password": {"type": "string", "title": "Password"}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["username", "password"], |
|||
"title": "FormData", |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,196 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from tests.utils import needs_pydanticv2 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.request_form_models.tutorial002_an import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
def test_post_body_form(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 200 |
|||
assert response.json() == {"username": "Foo", "password": "secret"} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
def test_post_body_extra_form(client: TestClient): |
|||
response = client.post( |
|||
"/login/", data={"username": "Foo", "password": "secret", "extra": "extra"} |
|||
) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "extra_forbidden", |
|||
"loc": ["body", "extra"], |
|||
"msg": "Extra inputs are not permitted", |
|||
"input": "extra", |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
def test_post_body_form_no_password(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {"username": "Foo"}, |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
def test_post_body_form_no_username(client: TestClient): |
|||
response = client.post("/login/", data={"password": "secret"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {"password": "secret"}, |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
def test_post_body_form_no_data(client: TestClient): |
|||
response = client.post("/login/") |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
def test_post_body_json(client: TestClient): |
|||
response = client.post("/login/", json={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 422, response.text |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/login/": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_login__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": {"$ref": "#/components/schemas/FormData"} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"FormData": { |
|||
"properties": { |
|||
"username": {"type": "string", "title": "Username"}, |
|||
"password": {"type": "string", "title": "Password"}, |
|||
}, |
|||
"additionalProperties": False, |
|||
"type": "object", |
|||
"required": ["username", "password"], |
|||
"title": "FormData", |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,203 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from tests.utils import needs_py39, needs_pydanticv2 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.request_form_models.tutorial002_an_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
@needs_py39 |
|||
def test_post_body_form(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 200 |
|||
assert response.json() == {"username": "Foo", "password": "secret"} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
@needs_py39 |
|||
def test_post_body_extra_form(client: TestClient): |
|||
response = client.post( |
|||
"/login/", data={"username": "Foo", "password": "secret", "extra": "extra"} |
|||
) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "extra_forbidden", |
|||
"loc": ["body", "extra"], |
|||
"msg": "Extra inputs are not permitted", |
|||
"input": "extra", |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
@needs_py39 |
|||
def test_post_body_form_no_password(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {"username": "Foo"}, |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
@needs_py39 |
|||
def test_post_body_form_no_username(client: TestClient): |
|||
response = client.post("/login/", data={"password": "secret"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {"password": "secret"}, |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
@needs_py39 |
|||
def test_post_body_form_no_data(client: TestClient): |
|||
response = client.post("/login/") |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
@needs_py39 |
|||
def test_post_body_json(client: TestClient): |
|||
response = client.post("/login/", json={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 422, response.text |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
{ |
|||
"type": "missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "Field required", |
|||
"input": {}, |
|||
}, |
|||
] |
|||
} |
|||
|
|||
|
|||
@needs_pydanticv2 |
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/login/": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_login__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": {"$ref": "#/components/schemas/FormData"} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"FormData": { |
|||
"properties": { |
|||
"username": {"type": "string", "title": "Username"}, |
|||
"password": {"type": "string", "title": "Password"}, |
|||
}, |
|||
"additionalProperties": False, |
|||
"type": "object", |
|||
"required": ["username", "password"], |
|||
"title": "FormData", |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,196 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from tests.utils import needs_pydanticv1 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.request_form_models.tutorial002_pv1_an import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
def test_post_body_form(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 200 |
|||
assert response.json() == {"username": "Foo", "password": "secret"} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
def test_post_body_extra_form(client: TestClient): |
|||
response = client.post( |
|||
"/login/", data={"username": "Foo", "password": "secret", "extra": "extra"} |
|||
) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.extra", |
|||
"loc": ["body", "extra"], |
|||
"msg": "extra fields not permitted", |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
def test_post_body_form_no_password(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
def test_post_body_form_no_username(client: TestClient): |
|||
response = client.post("/login/", data={"password": "secret"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
def test_post_body_form_no_data(client: TestClient): |
|||
response = client.post("/login/") |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
}, |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
}, |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
def test_post_body_json(client: TestClient): |
|||
response = client.post("/login/", json={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 422, response.text |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
}, |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
}, |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/login/": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_login__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": {"$ref": "#/components/schemas/FormData"} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"FormData": { |
|||
"properties": { |
|||
"username": {"type": "string", "title": "Username"}, |
|||
"password": {"type": "string", "title": "Password"}, |
|||
}, |
|||
"additionalProperties": False, |
|||
"type": "object", |
|||
"required": ["username", "password"], |
|||
"title": "FormData", |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,203 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from tests.utils import needs_py39, needs_pydanticv1 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.request_form_models.tutorial002_pv1_an_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
@needs_py39 |
|||
def test_post_body_form(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 200 |
|||
assert response.json() == {"username": "Foo", "password": "secret"} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
@needs_py39 |
|||
def test_post_body_extra_form(client: TestClient): |
|||
response = client.post( |
|||
"/login/", data={"username": "Foo", "password": "secret", "extra": "extra"} |
|||
) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.extra", |
|||
"loc": ["body", "extra"], |
|||
"msg": "extra fields not permitted", |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
@needs_py39 |
|||
def test_post_body_form_no_password(client: TestClient): |
|||
response = client.post("/login/", data={"username": "Foo"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
@needs_py39 |
|||
def test_post_body_form_no_username(client: TestClient): |
|||
response = client.post("/login/", data={"password": "secret"}) |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
} |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
@needs_py39 |
|||
def test_post_body_form_no_data(client: TestClient): |
|||
response = client.post("/login/") |
|||
assert response.status_code == 422 |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
}, |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
}, |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
@needs_py39 |
|||
def test_post_body_json(client: TestClient): |
|||
response = client.post("/login/", json={"username": "Foo", "password": "secret"}) |
|||
assert response.status_code == 422, response.text |
|||
assert response.json() == { |
|||
"detail": [ |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "username"], |
|||
"msg": "field required", |
|||
}, |
|||
{ |
|||
"type": "value_error.missing", |
|||
"loc": ["body", "password"], |
|||
"msg": "field required", |
|||
}, |
|||
] |
|||
} |
|||
|
|||
|
|||
# TODO: remove when deprecating Pydantic v1 |
|||
@needs_pydanticv1 |
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/login/": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_login__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": {"$ref": "#/components/schemas/FormData"} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"FormData": { |
|||
"properties": { |
|||
"username": {"type": "string", "title": "Username"}, |
|||
"password": {"type": "string", "title": "Password"}, |
|||
}, |
|||
"additionalProperties": False, |
|||
"type": "object", |
|||
"required": ["username", "password"], |
|||
"title": "FormData", |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,129 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310, needs_pydanticv1 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.schema_extra_example.tutorial001_pv1_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py310 |
|||
@needs_pydanticv1 |
|||
def test_post_body_example(client: TestClient): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
@needs_py310 |
|||
@needs_pydanticv1 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
# insert_assert(response.json()) |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"type": "integer", "title": "Item Id"}, |
|||
"name": "item_id", |
|||
"in": "path", |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Item"} |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"properties": { |
|||
"detail": { |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
"type": "array", |
|||
"title": "Detail", |
|||
} |
|||
}, |
|||
"type": "object", |
|||
"title": "HTTPValidationError", |
|||
}, |
|||
"Item": { |
|||
"properties": { |
|||
"name": {"type": "string", "title": "Name"}, |
|||
"description": {"type": "string", "title": "Description"}, |
|||
"price": {"type": "number", "title": "Price"}, |
|||
"tax": {"type": "number", "title": "Tax"}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["name", "price"], |
|||
"title": "Item", |
|||
"examples": [ |
|||
{ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
} |
|||
], |
|||
}, |
|||
"ValidationError": { |
|||
"properties": { |
|||
"loc": { |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
"type": "array", |
|||
"title": "Location", |
|||
}, |
|||
"msg": {"type": "string", "title": "Message"}, |
|||
"type": {"type": "string", "title": "Error Type"}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["loc", "msg", "type"], |
|||
"title": "ValidationError", |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,135 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310, needs_pydanticv2 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.schema_extra_example.tutorial001_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py310 |
|||
@needs_pydanticv2 |
|||
def test_post_body_example(client: TestClient): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
@needs_py310 |
|||
@needs_pydanticv2 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
# insert_assert(response.json()) |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"name": "item_id", |
|||
"in": "path", |
|||
"required": True, |
|||
"schema": {"type": "integer", "title": "Item Id"}, |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"required": True, |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Item"} |
|||
} |
|||
}, |
|||
}, |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"HTTPValidationError": { |
|||
"properties": { |
|||
"detail": { |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
"type": "array", |
|||
"title": "Detail", |
|||
} |
|||
}, |
|||
"type": "object", |
|||
"title": "HTTPValidationError", |
|||
}, |
|||
"Item": { |
|||
"properties": { |
|||
"name": {"type": "string", "title": "Name"}, |
|||
"description": { |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
"title": "Description", |
|||
}, |
|||
"price": {"type": "number", "title": "Price"}, |
|||
"tax": { |
|||
"anyOf": [{"type": "number"}, {"type": "null"}], |
|||
"title": "Tax", |
|||
}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["name", "price"], |
|||
"title": "Item", |
|||
"examples": [ |
|||
{ |
|||
"description": "A very nice Item", |
|||
"name": "Foo", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
} |
|||
], |
|||
}, |
|||
"ValidationError": { |
|||
"properties": { |
|||
"loc": { |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
"type": "array", |
|||
"title": "Location", |
|||
}, |
|||
"msg": {"type": "string", "title": "Message"}, |
|||
"type": {"type": "string", "title": "Error Type"}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["loc", "msg", "type"], |
|||
"title": "ValidationError", |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,168 +0,0 @@ |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.schema_extra_example.tutorial004_an import app |
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
# Test required and embedded body parameters with no bodies sent |
|||
def test_post_body_example(): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
def test_openapi_schema(): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "Item Id", "type": "integer"}, |
|||
"name": "item_id", |
|||
"in": "path", |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": IsDict( |
|||
{ |
|||
"$ref": "#/components/schemas/Item", |
|||
"examples": [ |
|||
{ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
{"name": "Bar", "price": "35.4"}, |
|||
{ |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"allOf": [ |
|||
{"$ref": "#/components/schemas/Item"} |
|||
], |
|||
"title": "Item", |
|||
"examples": [ |
|||
{ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
{"name": "Bar", "price": "35.4"}, |
|||
{ |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
], |
|||
} |
|||
) |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"Item": { |
|||
"title": "Item", |
|||
"required": ["name", "price"], |
|||
"type": "object", |
|||
"properties": { |
|||
"name": {"title": "Name", "type": "string"}, |
|||
"description": IsDict( |
|||
{ |
|||
"title": "Description", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Description", "type": "string"} |
|||
), |
|||
"price": {"title": "Price", "type": "number"}, |
|||
"tax": IsDict( |
|||
{ |
|||
"title": "Tax", |
|||
"anyOf": [{"type": "number"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Tax", "type": "number"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,177 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.schema_extra_example.tutorial004_an_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
# Test required and embedded body parameters with no bodies sent |
|||
@needs_py310 |
|||
def test_post_body_example(client: TestClient): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "Item Id", "type": "integer"}, |
|||
"name": "item_id", |
|||
"in": "path", |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": IsDict( |
|||
{ |
|||
"$ref": "#/components/schemas/Item", |
|||
"examples": [ |
|||
{ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
{"name": "Bar", "price": "35.4"}, |
|||
{ |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"allOf": [ |
|||
{"$ref": "#/components/schemas/Item"} |
|||
], |
|||
"title": "Item", |
|||
"examples": [ |
|||
{ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
{"name": "Bar", "price": "35.4"}, |
|||
{ |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
], |
|||
} |
|||
) |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"Item": { |
|||
"title": "Item", |
|||
"required": ["name", "price"], |
|||
"type": "object", |
|||
"properties": { |
|||
"name": {"title": "Name", "type": "string"}, |
|||
"description": IsDict( |
|||
{ |
|||
"title": "Description", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Description", "type": "string"} |
|||
), |
|||
"price": {"title": "Price", "type": "number"}, |
|||
"tax": IsDict( |
|||
{ |
|||
"title": "Tax", |
|||
"anyOf": [{"type": "number"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Tax", "type": "number"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,177 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.schema_extra_example.tutorial004_an_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
# Test required and embedded body parameters with no bodies sent |
|||
@needs_py39 |
|||
def test_post_body_example(client: TestClient): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "Item Id", "type": "integer"}, |
|||
"name": "item_id", |
|||
"in": "path", |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": IsDict( |
|||
{ |
|||
"$ref": "#/components/schemas/Item", |
|||
"examples": [ |
|||
{ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
{"name": "Bar", "price": "35.4"}, |
|||
{ |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"allOf": [ |
|||
{"$ref": "#/components/schemas/Item"} |
|||
], |
|||
"title": "Item", |
|||
"examples": [ |
|||
{ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
{"name": "Bar", "price": "35.4"}, |
|||
{ |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
], |
|||
} |
|||
) |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"Item": { |
|||
"title": "Item", |
|||
"required": ["name", "price"], |
|||
"type": "object", |
|||
"properties": { |
|||
"name": {"title": "Name", "type": "string"}, |
|||
"description": IsDict( |
|||
{ |
|||
"title": "Description", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Description", "type": "string"} |
|||
), |
|||
"price": {"title": "Price", "type": "number"}, |
|||
"tax": IsDict( |
|||
{ |
|||
"title": "Tax", |
|||
"anyOf": [{"type": "number"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Tax", "type": "number"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,177 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.schema_extra_example.tutorial004_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
# Test required and embedded body parameters with no bodies sent |
|||
@needs_py310 |
|||
def test_post_body_example(client: TestClient): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "Item Id", "type": "integer"}, |
|||
"name": "item_id", |
|||
"in": "path", |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": IsDict( |
|||
{ |
|||
"$ref": "#/components/schemas/Item", |
|||
"examples": [ |
|||
{ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
{"name": "Bar", "price": "35.4"}, |
|||
{ |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"allOf": [ |
|||
{"$ref": "#/components/schemas/Item"} |
|||
], |
|||
"title": "Item", |
|||
"examples": [ |
|||
{ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
{"name": "Bar", "price": "35.4"}, |
|||
{ |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
], |
|||
} |
|||
) |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"Item": { |
|||
"title": "Item", |
|||
"required": ["name", "price"], |
|||
"type": "object", |
|||
"properties": { |
|||
"name": {"title": "Name", "type": "string"}, |
|||
"description": IsDict( |
|||
{ |
|||
"title": "Description", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Description", "type": "string"} |
|||
), |
|||
"price": {"title": "Price", "type": "number"}, |
|||
"tax": IsDict( |
|||
{ |
|||
"title": "Tax", |
|||
"anyOf": [{"type": "number"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Tax", "type": "number"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,166 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.schema_extra_example.tutorial005_an import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
def test_post_body_example(client: TestClient): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
def test_openapi_schema(client: TestClient) -> None: |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "Item Id", "type": "integer"}, |
|||
"name": "item_id", |
|||
"in": "path", |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": IsDict({"$ref": "#/components/schemas/Item"}) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"allOf": [ |
|||
{"$ref": "#/components/schemas/Item"} |
|||
], |
|||
"title": "Item", |
|||
} |
|||
), |
|||
"examples": { |
|||
"normal": { |
|||
"summary": "A normal example", |
|||
"description": "A **normal** item works correctly.", |
|||
"value": { |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
}, |
|||
"converted": { |
|||
"summary": "An example with converted data", |
|||
"description": "FastAPI can convert price `strings` to actual `numbers` automatically", |
|||
"value": {"name": "Bar", "price": "35.4"}, |
|||
}, |
|||
"invalid": { |
|||
"summary": "Invalid data is rejected with an error", |
|||
"value": { |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"Item": { |
|||
"title": "Item", |
|||
"required": ["name", "price"], |
|||
"type": "object", |
|||
"properties": { |
|||
"name": {"title": "Name", "type": "string"}, |
|||
"description": IsDict( |
|||
{ |
|||
"title": "Description", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Description", "type": "string"} |
|||
), |
|||
"price": {"title": "Price", "type": "number"}, |
|||
"tax": IsDict( |
|||
{ |
|||
"title": "Tax", |
|||
"anyOf": [{"type": "number"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Tax", "type": "number"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,170 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.schema_extra_example.tutorial005_an_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_post_body_example(client: TestClient): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_openapi_schema(client: TestClient) -> None: |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "Item Id", "type": "integer"}, |
|||
"name": "item_id", |
|||
"in": "path", |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": IsDict({"$ref": "#/components/schemas/Item"}) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"allOf": [ |
|||
{"$ref": "#/components/schemas/Item"} |
|||
], |
|||
"title": "Item", |
|||
} |
|||
), |
|||
"examples": { |
|||
"normal": { |
|||
"summary": "A normal example", |
|||
"description": "A **normal** item works correctly.", |
|||
"value": { |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
}, |
|||
"converted": { |
|||
"summary": "An example with converted data", |
|||
"description": "FastAPI can convert price `strings` to actual `numbers` automatically", |
|||
"value": {"name": "Bar", "price": "35.4"}, |
|||
}, |
|||
"invalid": { |
|||
"summary": "Invalid data is rejected with an error", |
|||
"value": { |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"Item": { |
|||
"title": "Item", |
|||
"required": ["name", "price"], |
|||
"type": "object", |
|||
"properties": { |
|||
"name": {"title": "Name", "type": "string"}, |
|||
"description": IsDict( |
|||
{ |
|||
"title": "Description", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Description", "type": "string"} |
|||
), |
|||
"price": {"title": "Price", "type": "number"}, |
|||
"tax": IsDict( |
|||
{ |
|||
"title": "Tax", |
|||
"anyOf": [{"type": "number"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Tax", "type": "number"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,170 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.schema_extra_example.tutorial005_an_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_post_body_example(client: TestClient): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient) -> None: |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "Item Id", "type": "integer"}, |
|||
"name": "item_id", |
|||
"in": "path", |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": IsDict({"$ref": "#/components/schemas/Item"}) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"allOf": [ |
|||
{"$ref": "#/components/schemas/Item"} |
|||
], |
|||
"title": "Item", |
|||
} |
|||
), |
|||
"examples": { |
|||
"normal": { |
|||
"summary": "A normal example", |
|||
"description": "A **normal** item works correctly.", |
|||
"value": { |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
}, |
|||
"converted": { |
|||
"summary": "An example with converted data", |
|||
"description": "FastAPI can convert price `strings` to actual `numbers` automatically", |
|||
"value": {"name": "Bar", "price": "35.4"}, |
|||
}, |
|||
"invalid": { |
|||
"summary": "Invalid data is rejected with an error", |
|||
"value": { |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"Item": { |
|||
"title": "Item", |
|||
"required": ["name", "price"], |
|||
"type": "object", |
|||
"properties": { |
|||
"name": {"title": "Name", "type": "string"}, |
|||
"description": IsDict( |
|||
{ |
|||
"title": "Description", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Description", "type": "string"} |
|||
), |
|||
"price": {"title": "Price", "type": "number"}, |
|||
"tax": IsDict( |
|||
{ |
|||
"title": "Tax", |
|||
"anyOf": [{"type": "number"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Tax", "type": "number"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,170 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.schema_extra_example.tutorial005_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_post_body_example(client: TestClient): |
|||
response = client.put( |
|||
"/items/5", |
|||
json={ |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
) |
|||
assert response.status_code == 200 |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_openapi_schema(client: TestClient) -> None: |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/{item_id}": { |
|||
"put": { |
|||
"summary": "Update Item", |
|||
"operationId": "update_item_items__item_id__put", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "Item Id", "type": "integer"}, |
|||
"name": "item_id", |
|||
"in": "path", |
|||
} |
|||
], |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": IsDict({"$ref": "#/components/schemas/Item"}) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"allOf": [ |
|||
{"$ref": "#/components/schemas/Item"} |
|||
], |
|||
"title": "Item", |
|||
} |
|||
), |
|||
"examples": { |
|||
"normal": { |
|||
"summary": "A normal example", |
|||
"description": "A **normal** item works correctly.", |
|||
"value": { |
|||
"name": "Foo", |
|||
"description": "A very nice Item", |
|||
"price": 35.4, |
|||
"tax": 3.2, |
|||
}, |
|||
}, |
|||
"converted": { |
|||
"summary": "An example with converted data", |
|||
"description": "FastAPI can convert price `strings` to actual `numbers` automatically", |
|||
"value": {"name": "Bar", "price": "35.4"}, |
|||
}, |
|||
"invalid": { |
|||
"summary": "Invalid data is rejected with an error", |
|||
"value": { |
|||
"name": "Baz", |
|||
"price": "thirty five point four", |
|||
}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
"Item": { |
|||
"title": "Item", |
|||
"required": ["name", "price"], |
|||
"type": "object", |
|||
"properties": { |
|||
"name": {"title": "Name", "type": "string"}, |
|||
"description": IsDict( |
|||
{ |
|||
"title": "Description", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Description", "type": "string"} |
|||
), |
|||
"price": {"title": "Price", "type": "number"}, |
|||
"tax": IsDict( |
|||
{ |
|||
"title": "Tax", |
|||
"anyOf": [{"type": "number"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Tax", "type": "number"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,57 +0,0 @@ |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.security.tutorial001_an import app |
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
def test_no_token(): |
|||
response = client.get("/items") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
def test_token(): |
|||
response = client.get("/items", headers={"Authorization": "Bearer testtoken"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"token": "testtoken"} |
|||
|
|||
|
|||
def test_incorrect_token(): |
|||
response = client.get("/items", headers={"Authorization": "Notexistent testtoken"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
def test_openapi_schema(): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Items", |
|||
"operationId": "read_items_items__get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": {"password": {"scopes": {}, "tokenUrl": "token"}}, |
|||
} |
|||
} |
|||
}, |
|||
} |
@ -1,68 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.security.tutorial001_an_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_no_token(client: TestClient): |
|||
response = client.get("/items") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token(client: TestClient): |
|||
response = client.get("/items", headers={"Authorization": "Bearer testtoken"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"token": "testtoken"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_incorrect_token(client: TestClient): |
|||
response = client.get("/items", headers={"Authorization": "Notexistent testtoken"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Items", |
|||
"operationId": "read_items_items__get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": {"password": {"scopes": {}, "tokenUrl": "token"}}, |
|||
} |
|||
} |
|||
}, |
|||
} |
@ -1,207 +0,0 @@ |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.security.tutorial003_an import app |
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
def test_login(): |
|||
response = client.post("/token", data={"username": "johndoe", "password": "secret"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"access_token": "johndoe", "token_type": "bearer"} |
|||
|
|||
|
|||
def test_login_incorrect_password(): |
|||
response = client.post( |
|||
"/token", data={"username": "johndoe", "password": "incorrect"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
def test_login_incorrect_username(): |
|||
response = client.post("/token", data={"username": "foo", "password": "secret"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
def test_no_token(): |
|||
response = client.get("/users/me") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
def test_token(): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer johndoe"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"username": "johndoe", |
|||
"full_name": "John Doe", |
|||
"email": "[email protected]", |
|||
"hashed_password": "fakehashedsecret", |
|||
"disabled": False, |
|||
} |
|||
|
|||
|
|||
def test_incorrect_token(): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Invalid authentication credentials"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
def test_incorrect_token_type(): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Notexistent testtoken"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
def test_inactive_user(): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer alice"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Inactive user"} |
|||
|
|||
|
|||
def test_openapi_schema(): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/token": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_token_post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_login_token_post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
}, |
|||
"/users/me": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Users Me", |
|||
"operationId": "read_users_me_users_me_get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"Body_login_token_post": { |
|||
"title": "Body_login_token_post", |
|||
"required": ["username", "password"], |
|||
"type": "object", |
|||
"properties": { |
|||
"grant_type": IsDict( |
|||
{ |
|||
"title": "Grant Type", |
|||
"anyOf": [ |
|||
{"pattern": "password", "type": "string"}, |
|||
{"type": "null"}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"title": "Grant Type", |
|||
"pattern": "password", |
|||
"type": "string", |
|||
} |
|||
), |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"password": {"title": "Password", "type": "string"}, |
|||
"scope": {"title": "Scope", "type": "string", "default": ""}, |
|||
"client_id": IsDict( |
|||
{ |
|||
"title": "Client Id", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Id", "type": "string"} |
|||
), |
|||
"client_secret": IsDict( |
|||
{ |
|||
"title": "Client Secret", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Secret", "type": "string"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": {"password": {"scopes": {}, "tokenUrl": "token"}}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
@ -1,223 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.security.tutorial003_an_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login(client: TestClient): |
|||
response = client.post("/token", data={"username": "johndoe", "password": "secret"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"access_token": "johndoe", "token_type": "bearer"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login_incorrect_password(client: TestClient): |
|||
response = client.post( |
|||
"/token", data={"username": "johndoe", "password": "incorrect"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login_incorrect_username(client: TestClient): |
|||
response = client.post("/token", data={"username": "foo", "password": "secret"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_no_token(client: TestClient): |
|||
response = client.get("/users/me") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer johndoe"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"username": "johndoe", |
|||
"full_name": "John Doe", |
|||
"email": "[email protected]", |
|||
"hashed_password": "fakehashedsecret", |
|||
"disabled": False, |
|||
} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_incorrect_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Invalid authentication credentials"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_incorrect_token_type(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Notexistent testtoken"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_inactive_user(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer alice"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Inactive user"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/token": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_token_post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_login_token_post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
}, |
|||
"/users/me": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Users Me", |
|||
"operationId": "read_users_me_users_me_get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"Body_login_token_post": { |
|||
"title": "Body_login_token_post", |
|||
"required": ["username", "password"], |
|||
"type": "object", |
|||
"properties": { |
|||
"grant_type": IsDict( |
|||
{ |
|||
"title": "Grant Type", |
|||
"anyOf": [ |
|||
{"pattern": "password", "type": "string"}, |
|||
{"type": "null"}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"title": "Grant Type", |
|||
"pattern": "password", |
|||
"type": "string", |
|||
} |
|||
), |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"password": {"title": "Password", "type": "string"}, |
|||
"scope": {"title": "Scope", "type": "string", "default": ""}, |
|||
"client_id": IsDict( |
|||
{ |
|||
"title": "Client Id", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Id", "type": "string"} |
|||
), |
|||
"client_secret": IsDict( |
|||
{ |
|||
"title": "Client Secret", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Secret", "type": "string"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": {"password": {"scopes": {}, "tokenUrl": "token"}}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
@ -1,223 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.security.tutorial003_an_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_login(client: TestClient): |
|||
response = client.post("/token", data={"username": "johndoe", "password": "secret"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"access_token": "johndoe", "token_type": "bearer"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_login_incorrect_password(client: TestClient): |
|||
response = client.post( |
|||
"/token", data={"username": "johndoe", "password": "incorrect"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_login_incorrect_username(client: TestClient): |
|||
response = client.post("/token", data={"username": "foo", "password": "secret"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_no_token(client: TestClient): |
|||
response = client.get("/users/me") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer johndoe"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"username": "johndoe", |
|||
"full_name": "John Doe", |
|||
"email": "[email protected]", |
|||
"hashed_password": "fakehashedsecret", |
|||
"disabled": False, |
|||
} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_incorrect_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Invalid authentication credentials"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_incorrect_token_type(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Notexistent testtoken"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_inactive_user(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer alice"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Inactive user"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/token": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_token_post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_login_token_post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
}, |
|||
"/users/me": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Users Me", |
|||
"operationId": "read_users_me_users_me_get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"Body_login_token_post": { |
|||
"title": "Body_login_token_post", |
|||
"required": ["username", "password"], |
|||
"type": "object", |
|||
"properties": { |
|||
"grant_type": IsDict( |
|||
{ |
|||
"title": "Grant Type", |
|||
"anyOf": [ |
|||
{"pattern": "password", "type": "string"}, |
|||
{"type": "null"}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"title": "Grant Type", |
|||
"pattern": "password", |
|||
"type": "string", |
|||
} |
|||
), |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"password": {"title": "Password", "type": "string"}, |
|||
"scope": {"title": "Scope", "type": "string", "default": ""}, |
|||
"client_id": IsDict( |
|||
{ |
|||
"title": "Client Id", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Id", "type": "string"} |
|||
), |
|||
"client_secret": IsDict( |
|||
{ |
|||
"title": "Client Secret", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Secret", "type": "string"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": {"password": {"scopes": {}, "tokenUrl": "token"}}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
@ -1,223 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.security.tutorial003_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login(client: TestClient): |
|||
response = client.post("/token", data={"username": "johndoe", "password": "secret"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"access_token": "johndoe", "token_type": "bearer"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login_incorrect_password(client: TestClient): |
|||
response = client.post( |
|||
"/token", data={"username": "johndoe", "password": "incorrect"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login_incorrect_username(client: TestClient): |
|||
response = client.post("/token", data={"username": "foo", "password": "secret"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_no_token(client: TestClient): |
|||
response = client.get("/users/me") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer johndoe"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"username": "johndoe", |
|||
"full_name": "John Doe", |
|||
"email": "[email protected]", |
|||
"hashed_password": "fakehashedsecret", |
|||
"disabled": False, |
|||
} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_incorrect_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Invalid authentication credentials"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_incorrect_token_type(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Notexistent testtoken"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_inactive_user(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer alice"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Inactive user"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/token": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login", |
|||
"operationId": "login_token_post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_login_token_post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
}, |
|||
"/users/me": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Users Me", |
|||
"operationId": "read_users_me_users_me_get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"Body_login_token_post": { |
|||
"title": "Body_login_token_post", |
|||
"required": ["username", "password"], |
|||
"type": "object", |
|||
"properties": { |
|||
"grant_type": IsDict( |
|||
{ |
|||
"title": "Grant Type", |
|||
"anyOf": [ |
|||
{"pattern": "password", "type": "string"}, |
|||
{"type": "null"}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"title": "Grant Type", |
|||
"pattern": "password", |
|||
"type": "string", |
|||
} |
|||
), |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"password": {"title": "Password", "type": "string"}, |
|||
"scope": {"title": "Scope", "type": "string", "default": ""}, |
|||
"client_id": IsDict( |
|||
{ |
|||
"title": "Client Id", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Id", "type": "string"} |
|||
), |
|||
"client_secret": IsDict( |
|||
{ |
|||
"title": "Client Secret", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Secret", "type": "string"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": {"password": {"scopes": {}, "tokenUrl": "token"}}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
@ -1,409 +0,0 @@ |
|||
from dirty_equals import IsDict, IsOneOf |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.security.tutorial005_an import ( |
|||
app, |
|||
create_access_token, |
|||
fake_users_db, |
|||
get_password_hash, |
|||
verify_password, |
|||
) |
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
def get_access_token(username="johndoe", password="secret", scope=None): |
|||
data = {"username": username, "password": password} |
|||
if scope: |
|||
data["scope"] = scope |
|||
response = client.post("/token", data=data) |
|||
content = response.json() |
|||
access_token = content.get("access_token") |
|||
return access_token |
|||
|
|||
|
|||
def test_login(): |
|||
response = client.post("/token", data={"username": "johndoe", "password": "secret"}) |
|||
assert response.status_code == 200, response.text |
|||
content = response.json() |
|||
assert "access_token" in content |
|||
assert content["token_type"] == "bearer" |
|||
|
|||
|
|||
def test_login_incorrect_password(): |
|||
response = client.post( |
|||
"/token", data={"username": "johndoe", "password": "incorrect"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
def test_login_incorrect_username(): |
|||
response = client.post("/token", data={"username": "foo", "password": "secret"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
def test_no_token(): |
|||
response = client.get("/users/me") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
def test_token(): |
|||
access_token = get_access_token(scope="me") |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"username": "johndoe", |
|||
"full_name": "John Doe", |
|||
"email": "[email protected]", |
|||
"disabled": False, |
|||
} |
|||
|
|||
|
|||
def test_incorrect_token(): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
def test_incorrect_token_type(): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Notexistent testtoken"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
def test_verify_password(): |
|||
assert verify_password("secret", fake_users_db["johndoe"]["hashed_password"]) |
|||
|
|||
|
|||
def test_get_password_hash(): |
|||
assert get_password_hash("secretalice") |
|||
|
|||
|
|||
def test_create_access_token(): |
|||
access_token = create_access_token(data={"data": "foo"}) |
|||
assert access_token |
|||
|
|||
|
|||
def test_token_no_sub(): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjoiZm9vIn0.9ynBhuYb4e6aW3oJr_K_TBgwcMTDpRToQIE25L57rOE" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
def test_token_no_username(): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmb28ifQ.NnExK_dlNAYyzACrXtXDrcWOgGY2JuPbI4eDaHdfK5Y" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
def test_token_no_scope(): |
|||
access_token = get_access_token() |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not enough permissions"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
def test_token_nonexistent_user(): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c2VybmFtZTpib2IifQ.HcfCW67Uda-0gz54ZWTqmtgJnZeNem0Q757eTa9EZuw" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
def test_token_inactive_user(): |
|||
access_token = get_access_token( |
|||
username="alice", password="secretalice", scope="me" |
|||
) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Inactive user"} |
|||
|
|||
|
|||
def test_read_items(): |
|||
access_token = get_access_token(scope="me items") |
|||
response = client.get( |
|||
"/users/me/items/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == [{"item_id": "Foo", "owner": "johndoe"}] |
|||
|
|||
|
|||
def test_read_system_status(): |
|||
access_token = get_access_token() |
|||
response = client.get( |
|||
"/status/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"status": "ok"} |
|||
|
|||
|
|||
def test_read_system_status_no_token(): |
|||
response = client.get("/status/") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
def test_openapi_schema(): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/token": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Token"} |
|||
} |
|||
}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login For Access Token", |
|||
"operationId": "login_for_access_token_token_post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_login_for_access_token_token_post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
}, |
|||
"/users/me/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/User"} |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
"summary": "Read Users Me", |
|||
"operationId": "read_users_me_users_me__get", |
|||
"security": [{"OAuth2PasswordBearer": ["me"]}], |
|||
} |
|||
}, |
|||
"/users/me/items/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Own Items", |
|||
"operationId": "read_own_items_users_me_items__get", |
|||
"security": [{"OAuth2PasswordBearer": ["items", "me"]}], |
|||
} |
|||
}, |
|||
"/status/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read System Status", |
|||
"operationId": "read_system_status_status__get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"User": { |
|||
"title": "User", |
|||
"required": IsOneOf( |
|||
["username", "email", "full_name", "disabled"], |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
["username"], |
|||
), |
|||
"type": "object", |
|||
"properties": { |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"email": IsDict( |
|||
{ |
|||
"title": "Email", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Email", "type": "string"} |
|||
), |
|||
"full_name": IsDict( |
|||
{ |
|||
"title": "Full Name", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Full Name", "type": "string"} |
|||
), |
|||
"disabled": IsDict( |
|||
{ |
|||
"title": "Disabled", |
|||
"anyOf": [{"type": "boolean"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Disabled", "type": "boolean"} |
|||
), |
|||
}, |
|||
}, |
|||
"Token": { |
|||
"title": "Token", |
|||
"required": ["access_token", "token_type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"access_token": {"title": "Access Token", "type": "string"}, |
|||
"token_type": {"title": "Token Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"Body_login_for_access_token_token_post": { |
|||
"title": "Body_login_for_access_token_token_post", |
|||
"required": ["username", "password"], |
|||
"type": "object", |
|||
"properties": { |
|||
"grant_type": IsDict( |
|||
{ |
|||
"title": "Grant Type", |
|||
"anyOf": [ |
|||
{"pattern": "password", "type": "string"}, |
|||
{"type": "null"}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"title": "Grant Type", |
|||
"pattern": "password", |
|||
"type": "string", |
|||
} |
|||
), |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"password": {"title": "Password", "type": "string"}, |
|||
"scope": {"title": "Scope", "type": "string", "default": ""}, |
|||
"client_id": IsDict( |
|||
{ |
|||
"title": "Client Id", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Id", "type": "string"} |
|||
), |
|||
"client_secret": IsDict( |
|||
{ |
|||
"title": "Client Secret", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Secret", "type": "string"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": { |
|||
"password": { |
|||
"scopes": { |
|||
"me": "Read information about the current user.", |
|||
"items": "Read items.", |
|||
}, |
|||
"tokenUrl": "token", |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
@ -1,437 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict, IsOneOf |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.security.tutorial005_an_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
def get_access_token( |
|||
*, username="johndoe", password="secret", scope=None, client: TestClient |
|||
): |
|||
data = {"username": username, "password": password} |
|||
if scope: |
|||
data["scope"] = scope |
|||
response = client.post("/token", data=data) |
|||
content = response.json() |
|||
access_token = content.get("access_token") |
|||
return access_token |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login(client: TestClient): |
|||
response = client.post("/token", data={"username": "johndoe", "password": "secret"}) |
|||
assert response.status_code == 200, response.text |
|||
content = response.json() |
|||
assert "access_token" in content |
|||
assert content["token_type"] == "bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login_incorrect_password(client: TestClient): |
|||
response = client.post( |
|||
"/token", data={"username": "johndoe", "password": "incorrect"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login_incorrect_username(client: TestClient): |
|||
response = client.post("/token", data={"username": "foo", "password": "secret"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_no_token(client: TestClient): |
|||
response = client.get("/users/me") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token(client: TestClient): |
|||
access_token = get_access_token(scope="me", client=client) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"username": "johndoe", |
|||
"full_name": "John Doe", |
|||
"email": "[email protected]", |
|||
"disabled": False, |
|||
} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_incorrect_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_incorrect_token_type(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Notexistent testtoken"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_verify_password(): |
|||
from docs_src.security.tutorial005_an_py310 import fake_users_db, verify_password |
|||
|
|||
assert verify_password("secret", fake_users_db["johndoe"]["hashed_password"]) |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_get_password_hash(): |
|||
from docs_src.security.tutorial005_an_py310 import get_password_hash |
|||
|
|||
assert get_password_hash("secretalice") |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_create_access_token(): |
|||
from docs_src.security.tutorial005_an_py310 import create_access_token |
|||
|
|||
access_token = create_access_token(data={"data": "foo"}) |
|||
assert access_token |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_no_sub(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjoiZm9vIn0.9ynBhuYb4e6aW3oJr_K_TBgwcMTDpRToQIE25L57rOE" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_no_username(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmb28ifQ.NnExK_dlNAYyzACrXtXDrcWOgGY2JuPbI4eDaHdfK5Y" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_no_scope(client: TestClient): |
|||
access_token = get_access_token(client=client) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not enough permissions"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_nonexistent_user(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c2VybmFtZTpib2IifQ.HcfCW67Uda-0gz54ZWTqmtgJnZeNem0Q757eTa9EZuw" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_inactive_user(client: TestClient): |
|||
access_token = get_access_token( |
|||
username="alice", password="secretalice", scope="me", client=client |
|||
) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Inactive user"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_read_items(client: TestClient): |
|||
access_token = get_access_token(scope="me items", client=client) |
|||
response = client.get( |
|||
"/users/me/items/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == [{"item_id": "Foo", "owner": "johndoe"}] |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_read_system_status(client: TestClient): |
|||
access_token = get_access_token(client=client) |
|||
response = client.get( |
|||
"/status/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"status": "ok"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_read_system_status_no_token(client: TestClient): |
|||
response = client.get("/status/") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/token": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Token"} |
|||
} |
|||
}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login For Access Token", |
|||
"operationId": "login_for_access_token_token_post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_login_for_access_token_token_post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
}, |
|||
"/users/me/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/User"} |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
"summary": "Read Users Me", |
|||
"operationId": "read_users_me_users_me__get", |
|||
"security": [{"OAuth2PasswordBearer": ["me"]}], |
|||
} |
|||
}, |
|||
"/users/me/items/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Own Items", |
|||
"operationId": "read_own_items_users_me_items__get", |
|||
"security": [{"OAuth2PasswordBearer": ["items", "me"]}], |
|||
} |
|||
}, |
|||
"/status/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read System Status", |
|||
"operationId": "read_system_status_status__get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"User": { |
|||
"title": "User", |
|||
"required": IsOneOf( |
|||
["username", "email", "full_name", "disabled"], |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
["username"], |
|||
), |
|||
"type": "object", |
|||
"properties": { |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"email": IsDict( |
|||
{ |
|||
"title": "Email", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Email", "type": "string"} |
|||
), |
|||
"full_name": IsDict( |
|||
{ |
|||
"title": "Full Name", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Full Name", "type": "string"} |
|||
), |
|||
"disabled": IsDict( |
|||
{ |
|||
"title": "Disabled", |
|||
"anyOf": [{"type": "boolean"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Disabled", "type": "boolean"} |
|||
), |
|||
}, |
|||
}, |
|||
"Token": { |
|||
"title": "Token", |
|||
"required": ["access_token", "token_type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"access_token": {"title": "Access Token", "type": "string"}, |
|||
"token_type": {"title": "Token Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"Body_login_for_access_token_token_post": { |
|||
"title": "Body_login_for_access_token_token_post", |
|||
"required": ["username", "password"], |
|||
"type": "object", |
|||
"properties": { |
|||
"grant_type": IsDict( |
|||
{ |
|||
"title": "Grant Type", |
|||
"anyOf": [ |
|||
{"pattern": "password", "type": "string"}, |
|||
{"type": "null"}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"title": "Grant Type", |
|||
"pattern": "password", |
|||
"type": "string", |
|||
} |
|||
), |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"password": {"title": "Password", "type": "string"}, |
|||
"scope": {"title": "Scope", "type": "string", "default": ""}, |
|||
"client_id": IsDict( |
|||
{ |
|||
"title": "Client Id", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Id", "type": "string"} |
|||
), |
|||
"client_secret": IsDict( |
|||
{ |
|||
"title": "Client Secret", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Secret", "type": "string"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": { |
|||
"password": { |
|||
"scopes": { |
|||
"me": "Read information about the current user.", |
|||
"items": "Read items.", |
|||
}, |
|||
"tokenUrl": "token", |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
@ -1,437 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict, IsOneOf |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.security.tutorial005_an_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
def get_access_token( |
|||
*, username="johndoe", password="secret", scope=None, client: TestClient |
|||
): |
|||
data = {"username": username, "password": password} |
|||
if scope: |
|||
data["scope"] = scope |
|||
response = client.post("/token", data=data) |
|||
content = response.json() |
|||
access_token = content.get("access_token") |
|||
return access_token |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_login(client: TestClient): |
|||
response = client.post("/token", data={"username": "johndoe", "password": "secret"}) |
|||
assert response.status_code == 200, response.text |
|||
content = response.json() |
|||
assert "access_token" in content |
|||
assert content["token_type"] == "bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_login_incorrect_password(client: TestClient): |
|||
response = client.post( |
|||
"/token", data={"username": "johndoe", "password": "incorrect"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_login_incorrect_username(client: TestClient): |
|||
response = client.post("/token", data={"username": "foo", "password": "secret"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_no_token(client: TestClient): |
|||
response = client.get("/users/me") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token(client: TestClient): |
|||
access_token = get_access_token(scope="me", client=client) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"username": "johndoe", |
|||
"full_name": "John Doe", |
|||
"email": "[email protected]", |
|||
"disabled": False, |
|||
} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_incorrect_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_incorrect_token_type(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Notexistent testtoken"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_verify_password(): |
|||
from docs_src.security.tutorial005_an_py39 import fake_users_db, verify_password |
|||
|
|||
assert verify_password("secret", fake_users_db["johndoe"]["hashed_password"]) |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_get_password_hash(): |
|||
from docs_src.security.tutorial005_an_py39 import get_password_hash |
|||
|
|||
assert get_password_hash("secretalice") |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_create_access_token(): |
|||
from docs_src.security.tutorial005_an_py39 import create_access_token |
|||
|
|||
access_token = create_access_token(data={"data": "foo"}) |
|||
assert access_token |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_no_sub(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjoiZm9vIn0.9ynBhuYb4e6aW3oJr_K_TBgwcMTDpRToQIE25L57rOE" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_no_username(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmb28ifQ.NnExK_dlNAYyzACrXtXDrcWOgGY2JuPbI4eDaHdfK5Y" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_no_scope(client: TestClient): |
|||
access_token = get_access_token(client=client) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not enough permissions"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_nonexistent_user(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c2VybmFtZTpib2IifQ.HcfCW67Uda-0gz54ZWTqmtgJnZeNem0Q757eTa9EZuw" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_inactive_user(client: TestClient): |
|||
access_token = get_access_token( |
|||
username="alice", password="secretalice", scope="me", client=client |
|||
) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Inactive user"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_read_items(client: TestClient): |
|||
access_token = get_access_token(scope="me items", client=client) |
|||
response = client.get( |
|||
"/users/me/items/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == [{"item_id": "Foo", "owner": "johndoe"}] |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_read_system_status(client: TestClient): |
|||
access_token = get_access_token(client=client) |
|||
response = client.get( |
|||
"/status/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"status": "ok"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_read_system_status_no_token(client: TestClient): |
|||
response = client.get("/status/") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/token": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Token"} |
|||
} |
|||
}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login For Access Token", |
|||
"operationId": "login_for_access_token_token_post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_login_for_access_token_token_post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
}, |
|||
"/users/me/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/User"} |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
"summary": "Read Users Me", |
|||
"operationId": "read_users_me_users_me__get", |
|||
"security": [{"OAuth2PasswordBearer": ["me"]}], |
|||
} |
|||
}, |
|||
"/users/me/items/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Own Items", |
|||
"operationId": "read_own_items_users_me_items__get", |
|||
"security": [{"OAuth2PasswordBearer": ["items", "me"]}], |
|||
} |
|||
}, |
|||
"/status/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read System Status", |
|||
"operationId": "read_system_status_status__get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"User": { |
|||
"title": "User", |
|||
"required": IsOneOf( |
|||
["username", "email", "full_name", "disabled"], |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
["username"], |
|||
), |
|||
"type": "object", |
|||
"properties": { |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"email": IsDict( |
|||
{ |
|||
"title": "Email", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Email", "type": "string"} |
|||
), |
|||
"full_name": IsDict( |
|||
{ |
|||
"title": "Full Name", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Full Name", "type": "string"} |
|||
), |
|||
"disabled": IsDict( |
|||
{ |
|||
"title": "Disabled", |
|||
"anyOf": [{"type": "boolean"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Disabled", "type": "boolean"} |
|||
), |
|||
}, |
|||
}, |
|||
"Token": { |
|||
"title": "Token", |
|||
"required": ["access_token", "token_type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"access_token": {"title": "Access Token", "type": "string"}, |
|||
"token_type": {"title": "Token Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"Body_login_for_access_token_token_post": { |
|||
"title": "Body_login_for_access_token_token_post", |
|||
"required": ["username", "password"], |
|||
"type": "object", |
|||
"properties": { |
|||
"grant_type": IsDict( |
|||
{ |
|||
"title": "Grant Type", |
|||
"anyOf": [ |
|||
{"pattern": "password", "type": "string"}, |
|||
{"type": "null"}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"title": "Grant Type", |
|||
"pattern": "password", |
|||
"type": "string", |
|||
} |
|||
), |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"password": {"title": "Password", "type": "string"}, |
|||
"scope": {"title": "Scope", "type": "string", "default": ""}, |
|||
"client_id": IsDict( |
|||
{ |
|||
"title": "Client Id", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Id", "type": "string"} |
|||
), |
|||
"client_secret": IsDict( |
|||
{ |
|||
"title": "Client Secret", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Secret", "type": "string"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": { |
|||
"password": { |
|||
"scopes": { |
|||
"me": "Read information about the current user.", |
|||
"items": "Read items.", |
|||
}, |
|||
"tokenUrl": "token", |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
@ -1,437 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict, IsOneOf |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.security.tutorial005_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
def get_access_token( |
|||
*, username="johndoe", password="secret", scope=None, client: TestClient |
|||
): |
|||
data = {"username": username, "password": password} |
|||
if scope: |
|||
data["scope"] = scope |
|||
response = client.post("/token", data=data) |
|||
content = response.json() |
|||
access_token = content.get("access_token") |
|||
return access_token |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login(client: TestClient): |
|||
response = client.post("/token", data={"username": "johndoe", "password": "secret"}) |
|||
assert response.status_code == 200, response.text |
|||
content = response.json() |
|||
assert "access_token" in content |
|||
assert content["token_type"] == "bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login_incorrect_password(client: TestClient): |
|||
response = client.post( |
|||
"/token", data={"username": "johndoe", "password": "incorrect"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_login_incorrect_username(client: TestClient): |
|||
response = client.post("/token", data={"username": "foo", "password": "secret"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_no_token(client: TestClient): |
|||
response = client.get("/users/me") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token(client: TestClient): |
|||
access_token = get_access_token(scope="me", client=client) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"username": "johndoe", |
|||
"full_name": "John Doe", |
|||
"email": "[email protected]", |
|||
"disabled": False, |
|||
} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_incorrect_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_incorrect_token_type(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Notexistent testtoken"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_verify_password(): |
|||
from docs_src.security.tutorial005_py310 import fake_users_db, verify_password |
|||
|
|||
assert verify_password("secret", fake_users_db["johndoe"]["hashed_password"]) |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_get_password_hash(): |
|||
from docs_src.security.tutorial005_py310 import get_password_hash |
|||
|
|||
assert get_password_hash("secretalice") |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_create_access_token(): |
|||
from docs_src.security.tutorial005_py310 import create_access_token |
|||
|
|||
access_token = create_access_token(data={"data": "foo"}) |
|||
assert access_token |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_no_sub(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjoiZm9vIn0.9ynBhuYb4e6aW3oJr_K_TBgwcMTDpRToQIE25L57rOE" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_no_username(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmb28ifQ.NnExK_dlNAYyzACrXtXDrcWOgGY2JuPbI4eDaHdfK5Y" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_no_scope(client: TestClient): |
|||
access_token = get_access_token(client=client) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not enough permissions"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_nonexistent_user(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c2VybmFtZTpib2IifQ.HcfCW67Uda-0gz54ZWTqmtgJnZeNem0Q757eTa9EZuw" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_token_inactive_user(client: TestClient): |
|||
access_token = get_access_token( |
|||
username="alice", password="secretalice", scope="me", client=client |
|||
) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Inactive user"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_read_items(client: TestClient): |
|||
access_token = get_access_token(scope="me items", client=client) |
|||
response = client.get( |
|||
"/users/me/items/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == [{"item_id": "Foo", "owner": "johndoe"}] |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_read_system_status(client: TestClient): |
|||
access_token = get_access_token(client=client) |
|||
response = client.get( |
|||
"/status/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"status": "ok"} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_read_system_status_no_token(client: TestClient): |
|||
response = client.get("/status/") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/token": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Token"} |
|||
} |
|||
}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login For Access Token", |
|||
"operationId": "login_for_access_token_token_post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_login_for_access_token_token_post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
}, |
|||
"/users/me/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/User"} |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
"summary": "Read Users Me", |
|||
"operationId": "read_users_me_users_me__get", |
|||
"security": [{"OAuth2PasswordBearer": ["me"]}], |
|||
} |
|||
}, |
|||
"/users/me/items/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Own Items", |
|||
"operationId": "read_own_items_users_me_items__get", |
|||
"security": [{"OAuth2PasswordBearer": ["items", "me"]}], |
|||
} |
|||
}, |
|||
"/status/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read System Status", |
|||
"operationId": "read_system_status_status__get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"User": { |
|||
"title": "User", |
|||
"required": IsOneOf( |
|||
["username", "email", "full_name", "disabled"], |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
["username"], |
|||
), |
|||
"type": "object", |
|||
"properties": { |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"email": IsDict( |
|||
{ |
|||
"title": "Email", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Email", "type": "string"} |
|||
), |
|||
"full_name": IsDict( |
|||
{ |
|||
"title": "Full Name", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Full Name", "type": "string"} |
|||
), |
|||
"disabled": IsDict( |
|||
{ |
|||
"title": "Disabled", |
|||
"anyOf": [{"type": "boolean"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Disabled", "type": "boolean"} |
|||
), |
|||
}, |
|||
}, |
|||
"Token": { |
|||
"title": "Token", |
|||
"required": ["access_token", "token_type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"access_token": {"title": "Access Token", "type": "string"}, |
|||
"token_type": {"title": "Token Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"Body_login_for_access_token_token_post": { |
|||
"title": "Body_login_for_access_token_token_post", |
|||
"required": ["username", "password"], |
|||
"type": "object", |
|||
"properties": { |
|||
"grant_type": IsDict( |
|||
{ |
|||
"title": "Grant Type", |
|||
"anyOf": [ |
|||
{"pattern": "password", "type": "string"}, |
|||
{"type": "null"}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"title": "Grant Type", |
|||
"pattern": "password", |
|||
"type": "string", |
|||
} |
|||
), |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"password": {"title": "Password", "type": "string"}, |
|||
"scope": {"title": "Scope", "type": "string", "default": ""}, |
|||
"client_id": IsDict( |
|||
{ |
|||
"title": "Client Id", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Id", "type": "string"} |
|||
), |
|||
"client_secret": IsDict( |
|||
{ |
|||
"title": "Client Secret", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Secret", "type": "string"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": { |
|||
"password": { |
|||
"scopes": { |
|||
"me": "Read information about the current user.", |
|||
"items": "Read items.", |
|||
}, |
|||
"tokenUrl": "token", |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
@ -1,437 +0,0 @@ |
|||
import pytest |
|||
from dirty_equals import IsDict, IsOneOf |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.security.tutorial005_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
def get_access_token( |
|||
*, username="johndoe", password="secret", scope=None, client: TestClient |
|||
): |
|||
data = {"username": username, "password": password} |
|||
if scope: |
|||
data["scope"] = scope |
|||
response = client.post("/token", data=data) |
|||
content = response.json() |
|||
access_token = content.get("access_token") |
|||
return access_token |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_login(client: TestClient): |
|||
response = client.post("/token", data={"username": "johndoe", "password": "secret"}) |
|||
assert response.status_code == 200, response.text |
|||
content = response.json() |
|||
assert "access_token" in content |
|||
assert content["token_type"] == "bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_login_incorrect_password(client: TestClient): |
|||
response = client.post( |
|||
"/token", data={"username": "johndoe", "password": "incorrect"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_login_incorrect_username(client: TestClient): |
|||
response = client.post("/token", data={"username": "foo", "password": "secret"}) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Incorrect username or password"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_no_token(client: TestClient): |
|||
response = client.get("/users/me") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token(client: TestClient): |
|||
access_token = get_access_token(scope="me", client=client) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"username": "johndoe", |
|||
"full_name": "John Doe", |
|||
"email": "[email protected]", |
|||
"disabled": False, |
|||
} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_incorrect_token(client: TestClient): |
|||
response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_incorrect_token_type(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Notexistent testtoken"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_verify_password(): |
|||
from docs_src.security.tutorial005_py39 import fake_users_db, verify_password |
|||
|
|||
assert verify_password("secret", fake_users_db["johndoe"]["hashed_password"]) |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_get_password_hash(): |
|||
from docs_src.security.tutorial005_py39 import get_password_hash |
|||
|
|||
assert get_password_hash("secretalice") |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_create_access_token(): |
|||
from docs_src.security.tutorial005_py39 import create_access_token |
|||
|
|||
access_token = create_access_token(data={"data": "foo"}) |
|||
assert access_token |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_no_sub(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjoiZm9vIn0.9ynBhuYb4e6aW3oJr_K_TBgwcMTDpRToQIE25L57rOE" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_no_username(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmb28ifQ.NnExK_dlNAYyzACrXtXDrcWOgGY2JuPbI4eDaHdfK5Y" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_no_scope(client: TestClient): |
|||
access_token = get_access_token(client=client) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not enough permissions"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_nonexistent_user(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", |
|||
headers={ |
|||
"Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c2VybmFtZTpib2IifQ.HcfCW67Uda-0gz54ZWTqmtgJnZeNem0Q757eTa9EZuw" |
|||
}, |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Could not validate credentials"} |
|||
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"' |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_token_inactive_user(client: TestClient): |
|||
access_token = get_access_token( |
|||
username="alice", password="secretalice", scope="me", client=client |
|||
) |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 400, response.text |
|||
assert response.json() == {"detail": "Inactive user"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_read_items(client: TestClient): |
|||
access_token = get_access_token(scope="me items", client=client) |
|||
response = client.get( |
|||
"/users/me/items/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == [{"item_id": "Foo", "owner": "johndoe"}] |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_read_system_status(client: TestClient): |
|||
access_token = get_access_token(client=client) |
|||
response = client.get( |
|||
"/status/", headers={"Authorization": f"Bearer {access_token}"} |
|||
) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"status": "ok"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_read_system_status_no_token(client: TestClient): |
|||
response = client.get("/status/") |
|||
assert response.status_code == 401, response.text |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.headers["WWW-Authenticate"] == "Bearer" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/token": { |
|||
"post": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Token"} |
|||
} |
|||
}, |
|||
}, |
|||
"422": { |
|||
"description": "Validation Error", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/HTTPValidationError" |
|||
} |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"summary": "Login For Access Token", |
|||
"operationId": "login_for_access_token_token_post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/x-www-form-urlencoded": { |
|||
"schema": { |
|||
"$ref": "#/components/schemas/Body_login_for_access_token_token_post" |
|||
} |
|||
} |
|||
}, |
|||
"required": True, |
|||
}, |
|||
} |
|||
}, |
|||
"/users/me/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/User"} |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
"summary": "Read Users Me", |
|||
"operationId": "read_users_me_users_me__get", |
|||
"security": [{"OAuth2PasswordBearer": ["me"]}], |
|||
} |
|||
}, |
|||
"/users/me/items/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Own Items", |
|||
"operationId": "read_own_items_users_me_items__get", |
|||
"security": [{"OAuth2PasswordBearer": ["items", "me"]}], |
|||
} |
|||
}, |
|||
"/status/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read System Status", |
|||
"operationId": "read_system_status_status__get", |
|||
"security": [{"OAuth2PasswordBearer": []}], |
|||
} |
|||
}, |
|||
}, |
|||
"components": { |
|||
"schemas": { |
|||
"User": { |
|||
"title": "User", |
|||
"required": IsOneOf( |
|||
["username", "email", "full_name", "disabled"], |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
["username"], |
|||
), |
|||
"type": "object", |
|||
"properties": { |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"email": IsDict( |
|||
{ |
|||
"title": "Email", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Email", "type": "string"} |
|||
), |
|||
"full_name": IsDict( |
|||
{ |
|||
"title": "Full Name", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Full Name", "type": "string"} |
|||
), |
|||
"disabled": IsDict( |
|||
{ |
|||
"title": "Disabled", |
|||
"anyOf": [{"type": "boolean"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Disabled", "type": "boolean"} |
|||
), |
|||
}, |
|||
}, |
|||
"Token": { |
|||
"title": "Token", |
|||
"required": ["access_token", "token_type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"access_token": {"title": "Access Token", "type": "string"}, |
|||
"token_type": {"title": "Token Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"Body_login_for_access_token_token_post": { |
|||
"title": "Body_login_for_access_token_token_post", |
|||
"required": ["username", "password"], |
|||
"type": "object", |
|||
"properties": { |
|||
"grant_type": IsDict( |
|||
{ |
|||
"title": "Grant Type", |
|||
"anyOf": [ |
|||
{"pattern": "password", "type": "string"}, |
|||
{"type": "null"}, |
|||
], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{ |
|||
"title": "Grant Type", |
|||
"pattern": "password", |
|||
"type": "string", |
|||
} |
|||
), |
|||
"username": {"title": "Username", "type": "string"}, |
|||
"password": {"title": "Password", "type": "string"}, |
|||
"scope": {"title": "Scope", "type": "string", "default": ""}, |
|||
"client_id": IsDict( |
|||
{ |
|||
"title": "Client Id", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Id", "type": "string"} |
|||
), |
|||
"client_secret": IsDict( |
|||
{ |
|||
"title": "Client Secret", |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
} |
|||
) |
|||
| IsDict( |
|||
# TODO: remove when deprecating Pydantic v1 |
|||
{"title": "Client Secret", "type": "string"} |
|||
), |
|||
}, |
|||
}, |
|||
"ValidationError": { |
|||
"title": "ValidationError", |
|||
"required": ["loc", "msg", "type"], |
|||
"type": "object", |
|||
"properties": { |
|||
"loc": { |
|||
"title": "Location", |
|||
"type": "array", |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
}, |
|||
"msg": {"title": "Message", "type": "string"}, |
|||
"type": {"title": "Error Type", "type": "string"}, |
|||
}, |
|||
}, |
|||
"HTTPValidationError": { |
|||
"title": "HTTPValidationError", |
|||
"type": "object", |
|||
"properties": { |
|||
"detail": { |
|||
"title": "Detail", |
|||
"type": "array", |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
"securitySchemes": { |
|||
"OAuth2PasswordBearer": { |
|||
"type": "oauth2", |
|||
"flows": { |
|||
"password": { |
|||
"scopes": { |
|||
"me": "Read information about the current user.", |
|||
"items": "Read items.", |
|||
}, |
|||
"tokenUrl": "token", |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
} |
@ -1,65 +0,0 @@ |
|||
from base64 import b64encode |
|||
|
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.security.tutorial006_an import app |
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
def test_security_http_basic(): |
|||
response = client.get("/users/me", auth=("john", "secret")) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"username": "john", "password": "secret"} |
|||
|
|||
|
|||
def test_security_http_basic_no_credentials(): |
|||
response = client.get("/users/me") |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.status_code == 401, response.text |
|||
assert response.headers["WWW-Authenticate"] == "Basic" |
|||
|
|||
|
|||
def test_security_http_basic_invalid_credentials(): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Basic notabase64token"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.headers["WWW-Authenticate"] == "Basic" |
|||
assert response.json() == {"detail": "Invalid authentication credentials"} |
|||
|
|||
|
|||
def test_security_http_basic_non_basic_credentials(): |
|||
payload = b64encode(b"johnsecret").decode("ascii") |
|||
auth_header = f"Basic {payload}" |
|||
response = client.get("/users/me", headers={"Authorization": auth_header}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.headers["WWW-Authenticate"] == "Basic" |
|||
assert response.json() == {"detail": "Invalid authentication credentials"} |
|||
|
|||
|
|||
def test_openapi_schema(): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/users/me": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Current User", |
|||
"operationId": "read_current_user_users_me_get", |
|||
"security": [{"HTTPBasic": []}], |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"securitySchemes": {"HTTPBasic": {"type": "http", "scheme": "basic"}} |
|||
}, |
|||
} |
@ -1,77 +0,0 @@ |
|||
from base64 import b64encode |
|||
|
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client(): |
|||
from docs_src.security.tutorial006_an import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_security_http_basic(client: TestClient): |
|||
response = client.get("/users/me", auth=("john", "secret")) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"username": "john", "password": "secret"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_security_http_basic_no_credentials(client: TestClient): |
|||
response = client.get("/users/me") |
|||
assert response.json() == {"detail": "Not authenticated"} |
|||
assert response.status_code == 401, response.text |
|||
assert response.headers["WWW-Authenticate"] == "Basic" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_security_http_basic_invalid_credentials(client: TestClient): |
|||
response = client.get( |
|||
"/users/me", headers={"Authorization": "Basic notabase64token"} |
|||
) |
|||
assert response.status_code == 401, response.text |
|||
assert response.headers["WWW-Authenticate"] == "Basic" |
|||
assert response.json() == {"detail": "Invalid authentication credentials"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_security_http_basic_non_basic_credentials(client: TestClient): |
|||
payload = b64encode(b"johnsecret").decode("ascii") |
|||
auth_header = f"Basic {payload}" |
|||
response = client.get("/users/me", headers={"Authorization": auth_header}) |
|||
assert response.status_code == 401, response.text |
|||
assert response.headers["WWW-Authenticate"] == "Basic" |
|||
assert response.json() == {"detail": "Invalid authentication credentials"} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_openapi_schema(client: TestClient): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/users/me": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Current User", |
|||
"operationId": "read_current_user_users_me_get", |
|||
"security": [{"HTTPBasic": []}], |
|||
} |
|||
} |
|||
}, |
|||
"components": { |
|||
"securitySchemes": {"HTTPBasic": {"type": "http", "scheme": "basic"}} |
|||
}, |
|||
} |
@ -1,136 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310, needs_pydanticv2 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client() -> TestClient: |
|||
from docs_src.separate_openapi_schemas.tutorial001_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_create_item(client: TestClient) -> None: |
|||
response = client.post("/items/", json={"name": "Foo"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"name": "Foo", "description": None} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_read_items(client: TestClient) -> None: |
|||
response = client.get("/items/") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == [ |
|||
{ |
|||
"name": "Portal Gun", |
|||
"description": "Device to travel through the multi-rick-verse", |
|||
}, |
|||
{"name": "Plumbus", "description": None}, |
|||
] |
|||
|
|||
|
|||
@needs_py310 |
|||
@needs_pydanticv2 |
|||
def test_openapi_schema(client: TestClient) -> None: |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/": { |
|||
"get": { |
|||
"summary": "Read Items", |
|||
"operationId": "read_items_items__get", |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"items": {"$ref": "#/components/schemas/Item"}, |
|||
"type": "array", |
|||
"title": "Response Read Items Items Get", |
|||
} |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
"post": { |
|||
"summary": "Create Item", |
|||
"operationId": "create_item_items__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Item"} |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"properties": { |
|||
"detail": { |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
"type": "array", |
|||
"title": "Detail", |
|||
} |
|||
}, |
|||
"type": "object", |
|||
"title": "HTTPValidationError", |
|||
}, |
|||
"Item": { |
|||
"properties": { |
|||
"name": {"type": "string", "title": "Name"}, |
|||
"description": { |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
"title": "Description", |
|||
}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["name"], |
|||
"title": "Item", |
|||
}, |
|||
"ValidationError": { |
|||
"properties": { |
|||
"loc": { |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
"type": "array", |
|||
"title": "Location", |
|||
}, |
|||
"msg": {"type": "string", "title": "Message"}, |
|||
"type": {"type": "string", "title": "Error Type"}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["loc", "msg", "type"], |
|||
"title": "ValidationError", |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,136 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39, needs_pydanticv2 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client() -> TestClient: |
|||
from docs_src.separate_openapi_schemas.tutorial001_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_create_item(client: TestClient) -> None: |
|||
response = client.post("/items/", json={"name": "Foo"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"name": "Foo", "description": None} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_read_items(client: TestClient) -> None: |
|||
response = client.get("/items/") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == [ |
|||
{ |
|||
"name": "Portal Gun", |
|||
"description": "Device to travel through the multi-rick-verse", |
|||
}, |
|||
{"name": "Plumbus", "description": None}, |
|||
] |
|||
|
|||
|
|||
@needs_py39 |
|||
@needs_pydanticv2 |
|||
def test_openapi_schema(client: TestClient) -> None: |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/": { |
|||
"get": { |
|||
"summary": "Read Items", |
|||
"operationId": "read_items_items__get", |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"items": {"$ref": "#/components/schemas/Item"}, |
|||
"type": "array", |
|||
"title": "Response Read Items Items Get", |
|||
} |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
"post": { |
|||
"summary": "Create Item", |
|||
"operationId": "create_item_items__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Item"} |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"properties": { |
|||
"detail": { |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
"type": "array", |
|||
"title": "Detail", |
|||
} |
|||
}, |
|||
"type": "object", |
|||
"title": "HTTPValidationError", |
|||
}, |
|||
"Item": { |
|||
"properties": { |
|||
"name": {"type": "string", "title": "Name"}, |
|||
"description": { |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
"title": "Description", |
|||
}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["name"], |
|||
"title": "Item", |
|||
}, |
|||
"ValidationError": { |
|||
"properties": { |
|||
"loc": { |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
"type": "array", |
|||
"title": "Location", |
|||
}, |
|||
"msg": {"type": "string", "title": "Message"}, |
|||
"type": {"type": "string", "title": "Error Type"}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["loc", "msg", "type"], |
|||
"title": "ValidationError", |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,136 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py310, needs_pydanticv2 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client() -> TestClient: |
|||
from docs_src.separate_openapi_schemas.tutorial002_py310 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_create_item(client: TestClient) -> None: |
|||
response = client.post("/items/", json={"name": "Foo"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"name": "Foo", "description": None} |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_read_items(client: TestClient) -> None: |
|||
response = client.get("/items/") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == [ |
|||
{ |
|||
"name": "Portal Gun", |
|||
"description": "Device to travel through the multi-rick-verse", |
|||
}, |
|||
{"name": "Plumbus", "description": None}, |
|||
] |
|||
|
|||
|
|||
@needs_py310 |
|||
@needs_pydanticv2 |
|||
def test_openapi_schema(client: TestClient) -> None: |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/": { |
|||
"get": { |
|||
"summary": "Read Items", |
|||
"operationId": "read_items_items__get", |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"items": {"$ref": "#/components/schemas/Item"}, |
|||
"type": "array", |
|||
"title": "Response Read Items Items Get", |
|||
} |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
"post": { |
|||
"summary": "Create Item", |
|||
"operationId": "create_item_items__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Item"} |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"properties": { |
|||
"detail": { |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
"type": "array", |
|||
"title": "Detail", |
|||
} |
|||
}, |
|||
"type": "object", |
|||
"title": "HTTPValidationError", |
|||
}, |
|||
"Item": { |
|||
"properties": { |
|||
"name": {"type": "string", "title": "Name"}, |
|||
"description": { |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
"title": "Description", |
|||
}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["name"], |
|||
"title": "Item", |
|||
}, |
|||
"ValidationError": { |
|||
"properties": { |
|||
"loc": { |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
"type": "array", |
|||
"title": "Location", |
|||
}, |
|||
"msg": {"type": "string", "title": "Message"}, |
|||
"type": {"type": "string", "title": "Error Type"}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["loc", "msg", "type"], |
|||
"title": "ValidationError", |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,136 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39, needs_pydanticv2 |
|||
|
|||
|
|||
@pytest.fixture(name="client") |
|||
def get_client() -> TestClient: |
|||
from docs_src.separate_openapi_schemas.tutorial002_py39 import app |
|||
|
|||
client = TestClient(app) |
|||
return client |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_create_item(client: TestClient) -> None: |
|||
response = client.post("/items/", json={"name": "Foo"}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"name": "Foo", "description": None} |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_read_items(client: TestClient) -> None: |
|||
response = client.get("/items/") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == [ |
|||
{ |
|||
"name": "Portal Gun", |
|||
"description": "Device to travel through the multi-rick-verse", |
|||
}, |
|||
{"name": "Plumbus", "description": None}, |
|||
] |
|||
|
|||
|
|||
@needs_py39 |
|||
@needs_pydanticv2 |
|||
def test_openapi_schema(client: TestClient) -> None: |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == { |
|||
"openapi": "3.1.0", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/": { |
|||
"get": { |
|||
"summary": "Read Items", |
|||
"operationId": "read_items_items__get", |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": { |
|||
"application/json": { |
|||
"schema": { |
|||
"items": {"$ref": "#/components/schemas/Item"}, |
|||
"type": "array", |
|||
"title": "Response Read Items Items Get", |
|||
} |
|||
} |
|||
}, |
|||
} |
|||
}, |
|||
}, |
|||
"post": { |
|||
"summary": "Create Item", |
|||
"operationId": "create_item_items__post", |
|||
"requestBody": { |
|||
"content": { |
|||
"application/json": { |
|||
"schema": {"$ref": "#/components/schemas/Item"} |
|||
} |
|||
}, |
|||
"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": { |
|||
"HTTPValidationError": { |
|||
"properties": { |
|||
"detail": { |
|||
"items": {"$ref": "#/components/schemas/ValidationError"}, |
|||
"type": "array", |
|||
"title": "Detail", |
|||
} |
|||
}, |
|||
"type": "object", |
|||
"title": "HTTPValidationError", |
|||
}, |
|||
"Item": { |
|||
"properties": { |
|||
"name": {"type": "string", "title": "Name"}, |
|||
"description": { |
|||
"anyOf": [{"type": "string"}, {"type": "null"}], |
|||
"title": "Description", |
|||
}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["name"], |
|||
"title": "Item", |
|||
}, |
|||
"ValidationError": { |
|||
"properties": { |
|||
"loc": { |
|||
"items": { |
|||
"anyOf": [{"type": "string"}, {"type": "integer"}] |
|||
}, |
|||
"type": "array", |
|||
"title": "Location", |
|||
}, |
|||
"msg": {"type": "string", "title": "Message"}, |
|||
"type": {"type": "string", "title": "Error Type"}, |
|||
}, |
|||
"type": "object", |
|||
"required": ["loc", "msg", "type"], |
|||
"title": "ValidationError", |
|||
}, |
|||
} |
|||
}, |
|||
} |
@ -1,88 +0,0 @@ |
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
from fastapi.websockets import WebSocketDisconnect |
|||
|
|||
from docs_src.websockets.tutorial002_an import app |
|||
|
|||
|
|||
def test_main(): |
|||
client = TestClient(app) |
|||
response = client.get("/") |
|||
assert response.status_code == 200, response.text |
|||
assert b"<!DOCTYPE html>" in response.content |
|||
|
|||
|
|||
def test_websocket_with_cookie(): |
|||
client = TestClient(app, cookies={"session": "fakesession"}) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: fakesession" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: foo" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: fakesession" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: foo" |
|||
|
|||
|
|||
def test_websocket_with_header(): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/bar/ws?token=some-token") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: bar" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: bar" |
|||
|
|||
|
|||
def test_websocket_with_header_and_query(): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/2/ws?q=3&token=some-token") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == "Query parameter q is: 3" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: 2" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == "Query parameter q is: 3" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: 2" |
|||
|
|||
|
|||
def test_websocket_no_credentials(): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws"): |
|||
pytest.fail( |
|||
"did not raise WebSocketDisconnect on __enter__" |
|||
) # pragma: no cover |
|||
|
|||
|
|||
def test_websocket_invalid_data(): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws?q=bar&token=some-token"): |
|||
pytest.fail( |
|||
"did not raise WebSocketDisconnect on __enter__" |
|||
) # pragma: no cover |
@ -1,102 +0,0 @@ |
|||
import pytest |
|||
from fastapi import FastAPI |
|||
from fastapi.testclient import TestClient |
|||
from fastapi.websockets import WebSocketDisconnect |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="app") |
|||
def get_app(): |
|||
from docs_src.websockets.tutorial002_an_py310 import app |
|||
|
|||
return app |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_main(app: FastAPI): |
|||
client = TestClient(app) |
|||
response = client.get("/") |
|||
assert response.status_code == 200, response.text |
|||
assert b"<!DOCTYPE html>" in response.content |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_with_cookie(app: FastAPI): |
|||
client = TestClient(app, cookies={"session": "fakesession"}) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: fakesession" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: foo" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: fakesession" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: foo" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_with_header(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/bar/ws?token=some-token") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: bar" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: bar" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_with_header_and_query(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/2/ws?q=3&token=some-token") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == "Query parameter q is: 3" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: 2" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == "Query parameter q is: 3" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: 2" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_no_credentials(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws"): |
|||
pytest.fail( |
|||
"did not raise WebSocketDisconnect on __enter__" |
|||
) # pragma: no cover |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_invalid_data(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws?q=bar&token=some-token"): |
|||
pytest.fail( |
|||
"did not raise WebSocketDisconnect on __enter__" |
|||
) # pragma: no cover |
@ -1,102 +0,0 @@ |
|||
import pytest |
|||
from fastapi import FastAPI |
|||
from fastapi.testclient import TestClient |
|||
from fastapi.websockets import WebSocketDisconnect |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture(name="app") |
|||
def get_app(): |
|||
from docs_src.websockets.tutorial002_an_py39 import app |
|||
|
|||
return app |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_main(app: FastAPI): |
|||
client = TestClient(app) |
|||
response = client.get("/") |
|||
assert response.status_code == 200, response.text |
|||
assert b"<!DOCTYPE html>" in response.content |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_websocket_with_cookie(app: FastAPI): |
|||
client = TestClient(app, cookies={"session": "fakesession"}) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: fakesession" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: foo" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: fakesession" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: foo" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_websocket_with_header(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/bar/ws?token=some-token") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: bar" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: bar" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_websocket_with_header_and_query(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/2/ws?q=3&token=some-token") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == "Query parameter q is: 3" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: 2" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == "Query parameter q is: 3" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: 2" |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_websocket_no_credentials(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws"): |
|||
pytest.fail( |
|||
"did not raise WebSocketDisconnect on __enter__" |
|||
) # pragma: no cover |
|||
|
|||
|
|||
@needs_py39 |
|||
def test_websocket_invalid_data(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws?q=bar&token=some-token"): |
|||
pytest.fail( |
|||
"did not raise WebSocketDisconnect on __enter__" |
|||
) # pragma: no cover |
@ -1,102 +0,0 @@ |
|||
import pytest |
|||
from fastapi import FastAPI |
|||
from fastapi.testclient import TestClient |
|||
from fastapi.websockets import WebSocketDisconnect |
|||
|
|||
from ...utils import needs_py310 |
|||
|
|||
|
|||
@pytest.fixture(name="app") |
|||
def get_app(): |
|||
from docs_src.websockets.tutorial002_py310 import app |
|||
|
|||
return app |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_main(app: FastAPI): |
|||
client = TestClient(app) |
|||
response = client.get("/") |
|||
assert response.status_code == 200, response.text |
|||
assert b"<!DOCTYPE html>" in response.content |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_with_cookie(app: FastAPI): |
|||
client = TestClient(app, cookies={"session": "fakesession"}) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: fakesession" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: foo" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: fakesession" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: foo" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_with_header(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/bar/ws?token=some-token") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: bar" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: bar" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_with_header_and_query(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/2/ws?q=3&token=some-token") as websocket: |
|||
message = "Message one" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == "Query parameter q is: 3" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: 2" |
|||
message = "Message two" |
|||
websocket.send_text(message) |
|||
data = websocket.receive_text() |
|||
assert data == "Session cookie or query token value is: some-token" |
|||
data = websocket.receive_text() |
|||
assert data == "Query parameter q is: 3" |
|||
data = websocket.receive_text() |
|||
assert data == f"Message text was: {message}, for item ID: 2" |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_no_credentials(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws"): |
|||
pytest.fail( |
|||
"did not raise WebSocketDisconnect on __enter__" |
|||
) # pragma: no cover |
|||
|
|||
|
|||
@needs_py310 |
|||
def test_websocket_invalid_data(app: FastAPI): |
|||
client = TestClient(app) |
|||
with pytest.raises(WebSocketDisconnect): |
|||
with client.websocket_connect("/items/foo/ws?q=bar&token=some-token"): |
|||
pytest.fail( |
|||
"did not raise WebSocketDisconnect on __enter__" |
|||
) # pragma: no cover |
Loading…
Reference in new issue