作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的 FastAPI应用程序,我正在尝试使用 pytest
创建测试为了它。
我的目标是测试应用程序在出现不同错误时的行为。
我的应用中有一个简单的健康检查路线:
from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
async def health():
return "It's working ✨"
unittest.mock
但我的行为很奇怪。
import pytest
from unittest import mock
from fastapi import HTTPException
from starlette.testclient import TestClient
import app.api.health
from app.main import app # this is my application (FastAPI instance) with the `router` attached
@pytest.fixture()
def client():
with TestClient(app) as test_client:
yield test_client
def test_simple(client):
def mock_health_function():
raise HTTPException(status_code=400, detail='gibberish')
with mock.patch('app.api.health.health', mock_health_function):
response = client.get(HEALTHCHECK_PATH)
with pytest.raises(HTTPException): # this check passes successfully - my exception is raised
app.api.health.health()
assert response.status_code != 200 # this check does not pass. The original function was called as if nothing was patched
mock.patch
在测试中未直接调用函数时无法正常工作?
最佳答案
您可以使用 monkeypatch
fixture 来修补您的功能。
先把要打补丁的代码部分拉出来:
from fastapi import FastAPI
app = FastAPI()
def response():
return "It's working ✨"
@app.get("/health")
async def health():
return response()
然后在你的测试中使用monkeypatch
import pytest
from fastapi import HTTPException
from starlette.testclient import TestClient
from app import main
def mocked_response():
raise HTTPException(status_code=400, detail='gibberish')
@pytest.fixture()
def client():
from app.main import app
with TestClient(app) as test_client:
yield test_client
def test_simple(client, monkeypatch):
monkeypatch.setattr(main, "response", mocked_response)
resp = client.get("/health")
assert resp.status_code == 400
assert resp.json()["detail"] == "gibberish"
from fastapi import FastAPI, Depends
app = FastAPI()
def response():
return "It's working ✨"
@app.get("/health")
async def health(resp=Depends(response)):
return resp
在您的测试客户端中,您现在可以像这样覆盖依赖项:
import pytest
from fastapi import HTTPException
from starlette.testclient import TestClient
from app.main import response
def mocked_response():
raise HTTPException(status_code=400, detail='gibberish')
@pytest.fixture()
def client():
from app.main import app
app.dependency_overrides[response] = mocked_response
with TestClient(app) as test_client:
yield test_client
def test_simple(client):
resp = client.get("/health")
assert resp.status_code == 400
assert resp.json()["detail"] == "gibberish"
def response_closure():
def response(arg):
return arg
return response
@app.get("/health")
async def health(resp=Depends(response_closure)):
return resp("It's working ✨")
关于python - FastAPI - 模拟路径功能没有效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60854208/
我正在使用 Gunicorn 为 Django 应用程序提供服务,它工作正常,直到我将其超时时间从 30 秒更改为 900000 秒,我不得不这样做,因为我有一个用例需要上传和处理一个巨大的文件(过程
我有一个带有非常基本的管道的Jenkinsfile,它可以旋转docker容器: pipeline { agent { dockerfile { args '-u root' } } stag
在学习 MEAN 堆栈的过程中,我遇到了一个问题。每当我尝试使用 Passport 验证方法时,它都不会返回任何响应。我总是收到“localhost没有发送任何数据。ERR_EMPTY_RESPONS
在当今的大多数企业堆栈中,数据库是我们存储所有秘密的地方。它是安全屋,是待命室,也是用于存储可能非常私密或极具价值的物品的集散地。对于依赖它的数据库管理员、程序员和DevOps团队来说,保护它免受所
是否可以创建像图片上那样的边框?只需使用 css 边框属性。最终结果将是没 Angular 盒子。我不想添加额外的 html 元素。我只想为每个 li 元素添加 css 边框信息。 假设这是一个 ul
我是一名优秀的程序员,十分优秀!