Browse Source
Co-authored-by: Mike Shantz <[email protected]> Co-authored-by: Jonathan Plasse <[email protected]> Co-authored-by: Sebastián Ramírez <[email protected]>pull/9239/head
committed by
GitHub
6 changed files with 298 additions and 44 deletions
@ -0,0 +1,28 @@ |
|||
from contextlib import asynccontextmanager |
|||
|
|||
from fastapi import FastAPI |
|||
|
|||
|
|||
def fake_answer_to_everything_ml_model(x: float): |
|||
return x * 42 |
|||
|
|||
|
|||
ml_models = {} |
|||
|
|||
|
|||
@asynccontextmanager |
|||
async def lifespan(app: FastAPI): |
|||
# Load the ML model |
|||
ml_models["answer_to_everything"] = fake_answer_to_everything_ml_model |
|||
yield |
|||
# Clean up the ML models and release the resources |
|||
ml_models.clear() |
|||
|
|||
|
|||
app = FastAPI(lifespan=lifespan) |
|||
|
|||
|
|||
@app.get("/predict") |
|||
async def predict(x: float): |
|||
result = ml_models["answer_to_everything"](x) |
|||
return {"result": result} |
@ -0,0 +1,86 @@ |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.events.tutorial003 import ( |
|||
app, |
|||
fake_answer_to_everything_ml_model, |
|||
ml_models, |
|||
) |
|||
|
|||
openapi_schema = { |
|||
"openapi": "3.0.2", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/predict": { |
|||
"get": { |
|||
"summary": "Predict", |
|||
"operationId": "predict_predict_get", |
|||
"parameters": [ |
|||
{ |
|||
"required": True, |
|||
"schema": {"title": "X", "type": "number"}, |
|||
"name": "x", |
|||
"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_events(): |
|||
assert not ml_models, "ml_models should be empty" |
|||
with TestClient(app) as client: |
|||
assert ml_models["answer_to_everything"] == fake_answer_to_everything_ml_model |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == openapi_schema |
|||
response = client.get("/predict", params={"x": 2}) |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"result": 84.0} |
|||
assert not ml_models, "ml_models should be empty" |
Loading…
Reference in new issue