committed by
GitHub
24 changed files with 1169 additions and 3 deletions
@ -0,0 +1,336 @@ |
|||||
|
# İlk Adımlar |
||||
|
|
||||
|
En basit FastAPI dosyası şu şekildedir: |
||||
|
|
||||
|
```Python |
||||
|
{!../../../docs_src/first_steps/tutorial001.py!} |
||||
|
``` |
||||
|
|
||||
|
Bunu bir `main.py` dosyasına kopyalayın. |
||||
|
|
||||
|
Projeyi çalıştırın: |
||||
|
|
||||
|
<div class="termy"> |
||||
|
|
||||
|
```console |
||||
|
$ uvicorn main:app --reload |
||||
|
|
||||
|
<span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) |
||||
|
<span style="color: green;">INFO</span>: Started reloader process [28720] |
||||
|
<span style="color: green;">INFO</span>: Started server process [28722] |
||||
|
<span style="color: green;">INFO</span>: Waiting for application startup. |
||||
|
<span style="color: green;">INFO</span>: Application startup complete. |
||||
|
``` |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
!!! note |
||||
|
`uvicorn main:app` komutu şunu ifade eder: |
||||
|
|
||||
|
* `main`: `main.py` dosyası (the Python "module"). |
||||
|
* `app`: `main.py` dosyası içerisinde `app = FastAPI()` satırıyla oluşturulan nesne. |
||||
|
* `--reload`: Kod değişikliği sonrasında sunucunun yeniden başlatılmasını sağlar. Yalnızca geliştirme için kullanın. |
||||
|
|
||||
|
Çıktıda şu şekilde bir satır vardır: |
||||
|
|
||||
|
```hl_lines="4" |
||||
|
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) |
||||
|
``` |
||||
|
|
||||
|
Bu satır, yerel makinenizde uygulamanızın sunulduğu URL'yi gösterir. |
||||
|
|
||||
|
### Kontrol Et |
||||
|
|
||||
|
Tarayıcınızda <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a> adresini açın. |
||||
|
|
||||
|
Bir JSON yanıtı göreceksiniz: |
||||
|
|
||||
|
```JSON |
||||
|
{"message": "Hello World"} |
||||
|
``` |
||||
|
|
||||
|
### İnteraktif API dokümantasyonu |
||||
|
|
||||
|
<a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a> adresine gidin. |
||||
|
|
||||
|
Otomatik oluşturulmuş( <a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank">Swagger UI</a> tarafından sağlanan) interaktif bir API dokümanı göreceksiniz: |
||||
|
|
||||
|
 |
||||
|
|
||||
|
### Alternatif API dokümantasyonu |
||||
|
|
||||
|
Şimdi, <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a> adresine gidin. |
||||
|
|
||||
|
Otomatik oluşturulmuş(<a href="https://github.com/Rebilly/ReDoc" class="external-link" target="_blank">ReDoc</a> tarafından sağlanan) bir API dokümanı göreceksiniz: |
||||
|
|
||||
|
 |
||||
|
|
||||
|
### OpenAPI |
||||
|
|
||||
|
**FastAPI**, **OpenAPI** standardını kullanarak tüm API'lerinizi açıklayan bir "şema" oluşturur. |
||||
|
|
||||
|
#### "Şema" |
||||
|
|
||||
|
Bir "şema", bir şeyin tanımı veya açıklamasıdır. Soyut bir açıklamadır, uygulayan kod değildir. |
||||
|
|
||||
|
#### API "şemaları" |
||||
|
|
||||
|
Bu durumda, <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank">OpenAPI</a>, API şemasını nasıl tanımlayacağınızı belirten şartnamelerdir. |
||||
|
|
||||
|
Bu şema tanımı, API yollarınızı, aldıkları olası parametreleri vb. içerir. |
||||
|
|
||||
|
#### Data "şema" |
||||
|
|
||||
|
"Şema" terimi, JSON içeriği gibi bazı verilerin şeklini de ifade edebilir. |
||||
|
|
||||
|
Bu durumda, JSON öznitelikleri ve sahip oldukları veri türleri vb. anlamına gelir. |
||||
|
|
||||
|
#### OpenAPI and JSON Şema |
||||
|
|
||||
|
OpenAPI, API'niz için bir API şeması tanımlar. Ve bu şema, JSON veri şemaları standardı olan **JSON Şema** kullanılarak API'niz tarafından gönderilen ve alınan verilerin tanımlarını (veya "şemalarını") içerir. |
||||
|
|
||||
|
#### `openapi.json` kontrol et |
||||
|
|
||||
|
OpenAPI şemasının nasıl göründüğünü merak ediyorsanız, FastAPI otomatik olarak tüm API'nizin açıklamalarını içeren bir JSON (şema) oluşturur. |
||||
|
|
||||
|
Doğrudan şu adreste görebilirsiniz: <a href="http://127.0.0.1:8000/openapi.json" class="external-link" target="_blank">http://127.0.0.1:8000/openapi.json</a>. |
||||
|
|
||||
|
Aşağıdaki gibi bir şeyle başlayan bir JSON gösterecektir: |
||||
|
|
||||
|
```JSON |
||||
|
{ |
||||
|
"openapi": "3.0.2", |
||||
|
"info": { |
||||
|
"title": "FastAPI", |
||||
|
"version": "0.1.0" |
||||
|
}, |
||||
|
"paths": { |
||||
|
"/items/": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
|
||||
|
|
||||
|
|
||||
|
... |
||||
|
``` |
||||
|
|
||||
|
#### OpenAPI ne içindir? |
||||
|
|
||||
|
OpenAPI şeması, dahili olarak bulunan iki etkileşimli dokümantasyon sistemine güç veren şeydir. |
||||
|
|
||||
|
Ve tamamen OpenAPI'ye dayalı düzinelerce alternatif vardır. **FastAPI** ile oluşturulmuş uygulamanıza bu alternatiflerden herhangi birini kolayca ekleyebilirsiniz. |
||||
|
|
||||
|
API'nizle iletişim kuran istemciler için otomatik olarak kod oluşturmak için de kullanabilirsiniz. Örneğin, frontend, mobil veya IoT uygulamaları. |
||||
|
|
||||
|
## Adım adım özet |
||||
|
|
||||
|
### Adım 1: `FastAPI`yi içe aktarın |
||||
|
|
||||
|
```Python hl_lines="1" |
||||
|
{!../../../docs_src/first_steps/tutorial001.py!} |
||||
|
``` |
||||
|
|
||||
|
`FastAPI`, API'niz için tüm fonksiyonları sağlayan bir Python sınıfıdır. |
||||
|
|
||||
|
!!! note "Teknik Detaylar" |
||||
|
`FastAPI` doğrudan `Starlette` kalıtım alan bir sınıftır. |
||||
|
|
||||
|
Tüm <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> fonksiyonlarını `FastAPI` ile de kullanabilirsiniz. |
||||
|
|
||||
|
### Adım 2: Bir `FastAPI` örneği oluşturun |
||||
|
|
||||
|
```Python hl_lines="3" |
||||
|
{!../../../docs_src/first_steps/tutorial001.py!} |
||||
|
``` |
||||
|
|
||||
|
Burada `app` değişkeni `FastAPI` sınıfının bir örneği olacaktır. |
||||
|
|
||||
|
Bu tüm API'yi oluşturmak için ana etkileşim noktası olacaktır. |
||||
|
|
||||
|
`uvicorn` komutunda atıfta bulunulan `app` ile aynıdır. |
||||
|
|
||||
|
<div class="termy"> |
||||
|
|
||||
|
```console |
||||
|
$ uvicorn main:app --reload |
||||
|
|
||||
|
<span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) |
||||
|
``` |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
Uygulamanızı aşağıdaki gibi oluşturursanız: |
||||
|
|
||||
|
```Python hl_lines="3" |
||||
|
{!../../../docs_src/first_steps/tutorial002.py!} |
||||
|
``` |
||||
|
|
||||
|
Ve bunu `main.py` dosyasına koyduktan sonra `uvicorn` komutunu şu şekilde çağırabilirsiniz: |
||||
|
|
||||
|
<div class="termy"> |
||||
|
|
||||
|
```console |
||||
|
$ uvicorn main:my_awesome_api --reload |
||||
|
|
||||
|
<span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) |
||||
|
``` |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
### Adım 3: *Path işlemleri* oluşturmak |
||||
|
|
||||
|
#### Path |
||||
|
|
||||
|
Burada "Path" URL'de ilk "\" ile başlayan son bölümü ifade eder. |
||||
|
|
||||
|
Yani, şu şekilde bir URL'de: |
||||
|
|
||||
|
``` |
||||
|
https://example.com/items/foo |
||||
|
``` |
||||
|
|
||||
|
... path şöyle olabilir: |
||||
|
|
||||
|
``` |
||||
|
/items/foo |
||||
|
``` |
||||
|
|
||||
|
!!! info |
||||
|
Genellikle bir "path", "endpoint" veya "route" olarak adlandırılabilir. |
||||
|
|
||||
|
Bir API oluştururken, "path", "resource" ile "concern" ayırmanın ana yoludur. |
||||
|
|
||||
|
#### İşlemler |
||||
|
|
||||
|
Burada "işlem" HTTP methodlarından birini ifade eder. |
||||
|
|
||||
|
Onlardan biri: |
||||
|
|
||||
|
* `POST` |
||||
|
* `GET` |
||||
|
* `PUT` |
||||
|
* `DELETE` |
||||
|
|
||||
|
... ve daha egzotik olanları: |
||||
|
|
||||
|
* `OPTIONS` |
||||
|
* `HEAD` |
||||
|
* `PATCH` |
||||
|
* `TRACE` |
||||
|
|
||||
|
HTTP protokolünde, bu "methodlardan" birini (veya daha fazlasını) kullanarak her path ile iletişim kurabilirsiniz. |
||||
|
|
||||
|
--- |
||||
|
|
||||
|
API'lerinizi oluştururkan, belirli bir işlemi gerçekleştirirken belirli HTTP methodlarını kullanırsınız. |
||||
|
|
||||
|
Normalde kullanılan: |
||||
|
|
||||
|
* `POST`: veri oluşturmak. |
||||
|
* `GET`: veri okumak. |
||||
|
* `PUT`: veriyi güncellemek. |
||||
|
* `DELETE`: veriyi silmek. |
||||
|
|
||||
|
Bu nedenle, OpenAPI'de HTTP methodlarından her birine "işlem" denir. |
||||
|
|
||||
|
Bizde onlara "**işlemler**" diyeceğiz. |
||||
|
|
||||
|
#### Bir *Path işlem decoratorleri* tanımlanmak |
||||
|
|
||||
|
```Python hl_lines="6" |
||||
|
{!../../../docs_src/first_steps/tutorial001.py!} |
||||
|
``` |
||||
|
|
||||
|
`@app.get("/")` **FastAPI'ye** aşağıdaki fonksiyonun adresine giden istekleri işlemekten sorumlu olduğunu söyler: |
||||
|
|
||||
|
* path `/` |
||||
|
* <abbr title="an HTTP GET method"><code>get</code> işlemi</abbr> kullanılarak |
||||
|
|
||||
|
|
||||
|
!!! info "`@decorator` Bilgisi" |
||||
|
Python `@something` şeklinde ifadeleri "decorator" olarak adlandırır. |
||||
|
|
||||
|
Decoratoru bir fonksiyonun üzerine koyarsınız. Dekoratif bir şapka gibi (Sanırım terim buradan gelmektedir). |
||||
|
|
||||
|
Bir "decorator" fonksiyonu alır ve bazı işlemler gerçekleştir. |
||||
|
|
||||
|
Bizim durumumzda decarator **FastAPI'ye** fonksiyonun bir `get` işlemi ile `/` pathine geldiğini söyler. |
||||
|
|
||||
|
Bu **path işlem decoratordür** |
||||
|
|
||||
|
Ayrıca diğer işlemleri de kullanabilirsiniz: |
||||
|
|
||||
|
* `@app.post()` |
||||
|
* `@app.put()` |
||||
|
* `@app.delete()` |
||||
|
|
||||
|
Ve daha egzotik olanları: |
||||
|
|
||||
|
* `@app.options()` |
||||
|
* `@app.head()` |
||||
|
* `@app.patch()` |
||||
|
* `@app.trace()` |
||||
|
|
||||
|
!!! tip |
||||
|
Her işlemi (HTTP method) istediğiniz gibi kullanmakta özgürsünüz. |
||||
|
|
||||
|
**FastAPI** herhangi bir özel anlamı zorlamaz. |
||||
|
|
||||
|
Buradaki bilgiler bir gereklilik değil, bir kılavuz olarak sunulmaktadır. |
||||
|
|
||||
|
Örneğin, GraphQL kullanırkan normalde tüm işlemleri yalnızca `POST` işlemini kullanarak gerçekleştirirsiniz. |
||||
|
|
||||
|
### Adım 4: **path işlem fonksiyonunu** tanımlayın |
||||
|
|
||||
|
Aşağıdakiler bizim **path işlem fonksiyonlarımızdır**: |
||||
|
|
||||
|
* **path**: `/` |
||||
|
* **işlem**: `get` |
||||
|
* **function**: "decorator"ün altındaki fonksiyondur (`@app.get("/")` altında). |
||||
|
|
||||
|
```Python hl_lines="7" |
||||
|
{!../../../docs_src/first_steps/tutorial001.py!} |
||||
|
``` |
||||
|
|
||||
|
Bu bir Python fonksiyonudur. |
||||
|
|
||||
|
Bir `GET` işlemi kullanarak "`/`" URL'sine bir istek geldiğinde **FastAPI** tarafından çağrılır. |
||||
|
|
||||
|
Bu durumda bir `async` fonksiyonudur. |
||||
|
|
||||
|
--- |
||||
|
|
||||
|
Bunu `async def` yerine normal bir fonksiyon olarakta tanımlayabilirsiniz. |
||||
|
|
||||
|
```Python hl_lines="7" |
||||
|
{!../../../docs_src/first_steps/tutorial003.py!} |
||||
|
``` |
||||
|
|
||||
|
!!! note |
||||
|
|
||||
|
Eğer farkı bilmiyorsanız, [Async: *"Acelesi var?"*](../async.md#in-a-hurry){.internal-link target=_blank} kontrol edebilirsiniz. |
||||
|
|
||||
|
### Adım 5: İçeriği geri döndürün |
||||
|
|
||||
|
|
||||
|
```Python hl_lines="8" |
||||
|
{!../../../docs_src/first_steps/tutorial001.py!} |
||||
|
``` |
||||
|
|
||||
|
Bir `dict`, `list` döndürebilir veya `str`, `int` gibi tekil değerler döndürebilirsiniz. |
||||
|
|
||||
|
Ayrıca, Pydantic modellerini de döndürebilirsiniz. (Bununla ilgili daha sonra ayrıntılı bilgi göreceksiniz.) |
||||
|
|
||||
|
Otomatik olarak JSON'a dönüştürülecek(ORM'ler vb. dahil) başka birçok nesne ve model vardır. En beğendiklerinizi kullanmayı deneyin, yüksek ihtimalle destekleniyordur. |
||||
|
|
||||
|
## Özet |
||||
|
|
||||
|
* `FastAPI`'yi içe aktarın. |
||||
|
* Bir `app` örneği oluşturun. |
||||
|
* **path işlem decorator** yazın. (`@app.get("/")` gibi) |
||||
|
* **path işlem fonksiyonu** yazın. (`def root(): ...` gibi) |
||||
|
* Development sunucunuzu çalıştırın. (`uvicorn main:app --reload` gibi) |
@ -0,0 +1,11 @@ |
|||||
|
from fastapi import FastAPI, Response |
||||
|
from fastapi.responses import JSONResponse, RedirectResponse |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.get("/portal") |
||||
|
async def get_portal(teleport: bool = False) -> Response: |
||||
|
if teleport: |
||||
|
return RedirectResponse(url="https://www.youtube.com/watch?v=dQw4w9WgXcQ") |
||||
|
return JSONResponse(content={"message": "Here's your interdimensional portal."}) |
@ -0,0 +1,9 @@ |
|||||
|
from fastapi import FastAPI |
||||
|
from fastapi.responses import RedirectResponse |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.get("/teleport") |
||||
|
async def get_teleport() -> RedirectResponse: |
||||
|
return RedirectResponse(url="https://www.youtube.com/watch?v=dQw4w9WgXcQ") |
@ -0,0 +1,13 @@ |
|||||
|
from typing import Union |
||||
|
|
||||
|
from fastapi import FastAPI, Response |
||||
|
from fastapi.responses import RedirectResponse |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.get("/portal") |
||||
|
async def get_portal(teleport: bool = False) -> Union[Response, dict]: |
||||
|
if teleport: |
||||
|
return RedirectResponse(url="https://www.youtube.com/watch?v=dQw4w9WgXcQ") |
||||
|
return {"message": "Here's your interdimensional portal."} |
@ -0,0 +1,11 @@ |
|||||
|
from fastapi import FastAPI, Response |
||||
|
from fastapi.responses import RedirectResponse |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.get("/portal") |
||||
|
async def get_portal(teleport: bool = False) -> Response | dict: |
||||
|
if teleport: |
||||
|
return RedirectResponse(url="https://www.youtube.com/watch?v=dQw4w9WgXcQ") |
||||
|
return {"message": "Here's your interdimensional portal."} |
@ -0,0 +1,13 @@ |
|||||
|
from typing import Union |
||||
|
|
||||
|
from fastapi import FastAPI, Response |
||||
|
from fastapi.responses import RedirectResponse |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.get("/portal", response_model=None) |
||||
|
async def get_portal(teleport: bool = False) -> Union[Response, dict]: |
||||
|
if teleport: |
||||
|
return RedirectResponse(url="https://www.youtube.com/watch?v=dQw4w9WgXcQ") |
||||
|
return {"message": "Here's your interdimensional portal."} |
@ -0,0 +1,11 @@ |
|||||
|
from fastapi import FastAPI, Response |
||||
|
from fastapi.responses import RedirectResponse |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.get("/portal", response_model=None) |
||||
|
async def get_portal(teleport: bool = False) -> Response | dict: |
||||
|
if teleport: |
||||
|
return RedirectResponse(url="https://www.youtube.com/watch?v=dQw4w9WgXcQ") |
||||
|
return {"message": "Here's your interdimensional portal."} |
@ -0,0 +1,120 @@ |
|||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
from docs_src.response_model.tutorial003_01 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "FastAPI", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/user/": { |
||||
|
"post": { |
||||
|
"summary": "Create User", |
||||
|
"operationId": "create_user_user__post", |
||||
|
"requestBody": { |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": {"$ref": "#/components/schemas/UserIn"} |
||||
|
} |
||||
|
}, |
||||
|
"required": True, |
||||
|
}, |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": {"$ref": "#/components/schemas/BaseUser"} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
"422": { |
||||
|
"description": "Validation Error", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": { |
||||
|
"$ref": "#/components/schemas/HTTPValidationError" |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"schemas": { |
||||
|
"BaseUser": { |
||||
|
"title": "BaseUser", |
||||
|
"required": ["username", "email"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"username": {"title": "Username", "type": "string"}, |
||||
|
"email": {"title": "Email", "type": "string", "format": "email"}, |
||||
|
"full_name": {"title": "Full Name", "type": "string"}, |
||||
|
}, |
||||
|
}, |
||||
|
"HTTPValidationError": { |
||||
|
"title": "HTTPValidationError", |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"detail": { |
||||
|
"title": "Detail", |
||||
|
"type": "array", |
||||
|
"items": {"$ref": "#/components/schemas/ValidationError"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
"UserIn": { |
||||
|
"title": "UserIn", |
||||
|
"required": ["username", "email", "password"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"username": {"title": "Username", "type": "string"}, |
||||
|
"email": {"title": "Email", "type": "string", "format": "email"}, |
||||
|
"full_name": {"title": "Full Name", "type": "string"}, |
||||
|
"password": {"title": "Password", "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"}, |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_post_user(): |
||||
|
response = client.post( |
||||
|
"/user/", |
||||
|
json={ |
||||
|
"username": "foo", |
||||
|
"password": "fighter", |
||||
|
"email": "[email protected]", |
||||
|
"full_name": "Grave Dohl", |
||||
|
}, |
||||
|
) |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == { |
||||
|
"username": "foo", |
||||
|
"email": "[email protected]", |
||||
|
"full_name": "Grave Dohl", |
||||
|
} |
@ -0,0 +1,129 @@ |
|||||
|
import pytest |
||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
from ...utils import needs_py310 |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "FastAPI", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/user/": { |
||||
|
"post": { |
||||
|
"summary": "Create User", |
||||
|
"operationId": "create_user_user__post", |
||||
|
"requestBody": { |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": {"$ref": "#/components/schemas/UserIn"} |
||||
|
} |
||||
|
}, |
||||
|
"required": True, |
||||
|
}, |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": {"$ref": "#/components/schemas/BaseUser"} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
"422": { |
||||
|
"description": "Validation Error", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": { |
||||
|
"$ref": "#/components/schemas/HTTPValidationError" |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"schemas": { |
||||
|
"BaseUser": { |
||||
|
"title": "BaseUser", |
||||
|
"required": ["username", "email"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"username": {"title": "Username", "type": "string"}, |
||||
|
"email": {"title": "Email", "type": "string", "format": "email"}, |
||||
|
"full_name": {"title": "Full Name", "type": "string"}, |
||||
|
}, |
||||
|
}, |
||||
|
"HTTPValidationError": { |
||||
|
"title": "HTTPValidationError", |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"detail": { |
||||
|
"title": "Detail", |
||||
|
"type": "array", |
||||
|
"items": {"$ref": "#/components/schemas/ValidationError"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
"UserIn": { |
||||
|
"title": "UserIn", |
||||
|
"required": ["username", "email", "password"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"username": {"title": "Username", "type": "string"}, |
||||
|
"email": {"title": "Email", "type": "string", "format": "email"}, |
||||
|
"full_name": {"title": "Full Name", "type": "string"}, |
||||
|
"password": {"title": "Password", "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"}, |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
@pytest.fixture(name="client") |
||||
|
def get_client(): |
||||
|
from docs_src.response_model.tutorial003_01_py310 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
return client |
||||
|
|
||||
|
|
||||
|
@needs_py310 |
||||
|
def test_openapi_schema(client: TestClient): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
@needs_py310 |
||||
|
def test_post_user(client: TestClient): |
||||
|
response = client.post( |
||||
|
"/user/", |
||||
|
json={ |
||||
|
"username": "foo", |
||||
|
"password": "fighter", |
||||
|
"email": "[email protected]", |
||||
|
"full_name": "Grave Dohl", |
||||
|
}, |
||||
|
) |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == { |
||||
|
"username": "foo", |
||||
|
"email": "[email protected]", |
||||
|
"full_name": "Grave Dohl", |
||||
|
} |
@ -0,0 +1,93 @@ |
|||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
from docs_src.response_model.tutorial003_02 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "FastAPI", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/portal": { |
||||
|
"get": { |
||||
|
"summary": "Get Portal", |
||||
|
"operationId": "get_portal_portal_get", |
||||
|
"parameters": [ |
||||
|
{ |
||||
|
"required": False, |
||||
|
"schema": { |
||||
|
"title": "Teleport", |
||||
|
"type": "boolean", |
||||
|
"default": False, |
||||
|
}, |
||||
|
"name": "teleport", |
||||
|
"in": "query", |
||||
|
} |
||||
|
], |
||||
|
"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"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
"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"}, |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_get_portal(): |
||||
|
response = client.get("/portal") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == {"message": "Here's your interdimensional portal."} |
||||
|
|
||||
|
|
||||
|
def test_get_redirect(): |
||||
|
response = client.get("/portal", params={"teleport": True}, follow_redirects=False) |
||||
|
assert response.status_code == 307, response.text |
||||
|
assert response.headers["location"] == "https://www.youtube.com/watch?v=dQw4w9WgXcQ" |
@ -0,0 +1,36 @@ |
|||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
from docs_src.response_model.tutorial003_03 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "FastAPI", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/teleport": { |
||||
|
"get": { |
||||
|
"summary": "Get Teleport", |
||||
|
"operationId": "get_teleport_teleport_get", |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_get_portal(): |
||||
|
response = client.get("/teleport", follow_redirects=False) |
||||
|
assert response.status_code == 307, response.text |
||||
|
assert response.headers["location"] == "https://www.youtube.com/watch?v=dQw4w9WgXcQ" |
@ -0,0 +1,9 @@ |
|||||
|
import pytest |
||||
|
from fastapi.exceptions import FastAPIError |
||||
|
|
||||
|
|
||||
|
def test_invalid_response_model(): |
||||
|
with pytest.raises(FastAPIError): |
||||
|
from docs_src.response_model.tutorial003_04 import app |
||||
|
|
||||
|
assert app # pragma: no cover |
@ -0,0 +1,12 @@ |
|||||
|
import pytest |
||||
|
from fastapi.exceptions import FastAPIError |
||||
|
|
||||
|
from ...utils import needs_py310 |
||||
|
|
||||
|
|
||||
|
@needs_py310 |
||||
|
def test_invalid_response_model(): |
||||
|
with pytest.raises(FastAPIError): |
||||
|
from docs_src.response_model.tutorial003_04_py310 import app |
||||
|
|
||||
|
assert app # pragma: no cover |
@ -0,0 +1,93 @@ |
|||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
from docs_src.response_model.tutorial003_05 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "FastAPI", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/portal": { |
||||
|
"get": { |
||||
|
"summary": "Get Portal", |
||||
|
"operationId": "get_portal_portal_get", |
||||
|
"parameters": [ |
||||
|
{ |
||||
|
"required": False, |
||||
|
"schema": { |
||||
|
"title": "Teleport", |
||||
|
"type": "boolean", |
||||
|
"default": False, |
||||
|
}, |
||||
|
"name": "teleport", |
||||
|
"in": "query", |
||||
|
} |
||||
|
], |
||||
|
"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"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
"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"}, |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_get_portal(): |
||||
|
response = client.get("/portal") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == {"message": "Here's your interdimensional portal."} |
||||
|
|
||||
|
|
||||
|
def test_get_redirect(): |
||||
|
response = client.get("/portal", params={"teleport": True}, follow_redirects=False) |
||||
|
assert response.status_code == 307, response.text |
||||
|
assert response.headers["location"] == "https://www.youtube.com/watch?v=dQw4w9WgXcQ" |
@ -0,0 +1,103 @@ |
|||||
|
import pytest |
||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
from ...utils import needs_py310 |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "FastAPI", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/portal": { |
||||
|
"get": { |
||||
|
"summary": "Get Portal", |
||||
|
"operationId": "get_portal_portal_get", |
||||
|
"parameters": [ |
||||
|
{ |
||||
|
"required": False, |
||||
|
"schema": { |
||||
|
"title": "Teleport", |
||||
|
"type": "boolean", |
||||
|
"default": False, |
||||
|
}, |
||||
|
"name": "teleport", |
||||
|
"in": "query", |
||||
|
} |
||||
|
], |
||||
|
"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"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
"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"}, |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
@pytest.fixture(name="client") |
||||
|
def get_client(): |
||||
|
from docs_src.response_model.tutorial003_05_py310 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
return client |
||||
|
|
||||
|
|
||||
|
@needs_py310 |
||||
|
def test_openapi_schema(client: TestClient): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
@needs_py310 |
||||
|
def test_get_portal(client: TestClient): |
||||
|
response = client.get("/portal") |
||||
|
assert response.status_code == 200, response.text |
||||
|
assert response.json() == {"message": "Here's your interdimensional portal."} |
||||
|
|
||||
|
|
||||
|
@needs_py310 |
||||
|
def test_get_redirect(client: TestClient): |
||||
|
response = client.get("/portal", params={"teleport": True}, follow_redirects=False) |
||||
|
assert response.status_code == 307, response.text |
||||
|
assert response.headers["location"] == "https://www.youtube.com/watch?v=dQw4w9WgXcQ" |
Loading…
Reference in new issue