b981c06d59
- Fix unit test imports: add env setup in conftest.py before module imports - Add 24 new auth router tests (RBAC, preferences, password validation) - Add 16 new tests for litellm and chat_summary routers - Apply black formatting and ruff linting across codebase - Add pre-commit hooks configuration (black, ruff, file checks) - Increase CI coverage threshold from 40% to 50% Test Results: - 206 tests passing (91 unit + 115 integration) - Coverage: 58.79% on core modules - auth.py: 57% → 85%, litellm.py: 23% → 87%, chat_summary.py: 41% → 100% - auth_service: 96.51%, config: 100%, rbac: 93.48%
37 lines
758 B
Python
37 lines
758 B
Python
"""
|
|
Basic diagnostic tests to validate test environment.
|
|
"""
|
|
|
|
import sys
|
|
|
|
|
|
def test_python_version():
|
|
"""Verify Python version."""
|
|
assert sys.version_info >= (3, 10), f"Python version: {sys.version}"
|
|
|
|
|
|
def test_imports():
|
|
"""Verify all required modules can be imported."""
|
|
try:
|
|
import asyncssh
|
|
import docker
|
|
import fastapi
|
|
import httpx
|
|
import jwt
|
|
import passlib
|
|
import pyotp
|
|
import pytest
|
|
import pytest_asyncio
|
|
import pytest_cov
|
|
import pytest_mock
|
|
import uvicorn
|
|
|
|
assert True
|
|
except ImportError as e:
|
|
pytest.fail(f"Import failed: {e}")
|
|
|
|
|
|
def test_basic_math():
|
|
"""Sanity check that tests can run."""
|
|
assert 1 + 1 == 2
|