lint pipe fixes
This commit is contained in:
@@ -8,5 +8,5 @@ steps:
|
|||||||
commands:
|
commands:
|
||||||
- pip install uv
|
- pip install uv
|
||||||
- uv sync --no-dev --group tests
|
- uv sync --no-dev --group tests
|
||||||
- uv run pytest
|
- uv run pytest --cov=app --cov-fail-under=70 --cov-report=term-missing
|
||||||
|
|
||||||
|
|||||||
0
app/__init__.py
Normal file
0
app/__init__.py
Normal file
BIN
app/__pycache__/__init__.cpython-313.pyc
Normal file
BIN
app/__pycache__/__init__.cpython-313.pyc
Normal file
Binary file not shown.
BIN
app/__pycache__/main.cpython-313.pyc
Normal file
BIN
app/__pycache__/main.cpython-313.pyc
Normal file
Binary file not shown.
@@ -17,8 +17,10 @@ dev = [
|
|||||||
"pre-commit>=4.5.1",
|
"pre-commit>=4.5.1",
|
||||||
]
|
]
|
||||||
tests = [
|
tests = [
|
||||||
|
"httpx>=0.28.1",
|
||||||
"pytest>=9.0.3",
|
"pytest>=9.0.3",
|
||||||
"pytest-asyncio>=1.3.0",
|
"pytest-asyncio>=1.3.0",
|
||||||
|
"pytest-cov>=7.1.0",
|
||||||
]
|
]
|
||||||
lints = [
|
lints = [
|
||||||
"black>=23.7.0",
|
"black>=23.7.0",
|
||||||
@@ -28,3 +30,12 @@ lints = [
|
|||||||
types = [
|
types = [
|
||||||
"mypy>=1.20.1",
|
"mypy>=1.20.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[tool.pytest.ini_options]
|
||||||
|
asyncio_mode = "auto"
|
||||||
|
asyncio_default_fixture_loop_scope = "function"
|
||||||
|
addopts = "--cov=src --cov-report=term"
|
||||||
|
pythonpath = "."
|
||||||
|
testpaths = "tests"
|
||||||
|
xfail_strict = true
|
||||||
|
|
||||||
|
|||||||
BIN
tests/__pycache__/test_app_run.cpython-313-pytest-9.0.3.pyc
Normal file
BIN
tests/__pycache__/test_app_run.cpython-313-pytest-9.0.3.pyc
Normal file
Binary file not shown.
41
tests/test_app_run.py
Normal file
41
tests/test_app_run.py
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
from contextlib import asynccontextmanager
|
||||||
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
from fastapi import FastAPI
|
||||||
|
|
||||||
|
# Предполагаем, что тестируемый модуль называется `myapp`
|
||||||
|
# Импортируем из него нужные объекты
|
||||||
|
from app.main import app_factory, lifespan, main
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_lifespan():
|
||||||
|
"""Проверяет, что lifespan является корректным асинхронным контекстным менеджером."""
|
||||||
|
app = FastAPI()
|
||||||
|
# Проверяем, что lifespan - это asynccontextmanager
|
||||||
|
assert isinstance(lifespan, asynccontextmanager(lifespan).__class__)
|
||||||
|
|
||||||
|
# Проверяем, что контекстный менеджер работает (ничего не ломается)
|
||||||
|
async with lifespan(app):
|
||||||
|
pass # Просто убеждаемся, что yield отрабатывает
|
||||||
|
|
||||||
|
|
||||||
|
def test_app_factory():
|
||||||
|
"""Проверяет, что app_factory создаёт правильное приложение FastAPI с переданным lifespan."""
|
||||||
|
app = app_factory()
|
||||||
|
assert isinstance(app, FastAPI)
|
||||||
|
# Проверяем, что lifespan приложения установлен на функцию lifespan
|
||||||
|
assert app.router.lifespan_context == lifespan
|
||||||
|
|
||||||
|
|
||||||
|
@patch("app.main.uvicorn.run")
|
||||||
|
def test_main(mock_uvicorn_run):
|
||||||
|
"""Проверяет, что main вызывает uvicorn.run с правильными параметрами."""
|
||||||
|
main()
|
||||||
|
mock_uvicorn_run.assert_called_once_with(
|
||||||
|
app_factory,
|
||||||
|
factory=True,
|
||||||
|
host="0.0.0.0",
|
||||||
|
port=8000, # Предполагаемый порт (в коде обрезано, но обычно 8000)
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user