开发环境从旧虚拟机 (DESKTOP-KGB0K5G) 迁移到新机器 (DESKTOP-D676QDA), 项目目录从 C:\NeoZQYY 变更为 C:\Project\NeoZQYY, 批量替换 126 个文件中的绝对路径引用。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
43 lines
3.2 KiB
Plaintext
43 lines
3.2 KiB
Plaintext
============================= test session starts =============================
|
|
platform win32 -- Python 3.13.9, pytest-9.0.2, pluggy-1.6.0 -- C:\Project\NeoZQYY\.venv\Scripts\python.exe
|
|
cachedir: .pytest_cache
|
|
hypothesis profile 'default'
|
|
rootdir: C:\Project\NeoZQYY\apps\backend
|
|
configfile: pyproject.toml
|
|
plugins: anyio-4.12.1, hypothesis-6.151.6, asyncio-1.3.0
|
|
asyncio: mode=Mode.STRICT, debug=False, asyncio_default_fixture_loop_scope=None, asyncio_default_test_loop_scope=function
|
|
collecting ... collected 30 items
|
|
|
|
tests/test_auth_jwt.py::TestPasswordHashing::test_hash_and_verify PASSED [ 3%]
|
|
tests/test_auth_jwt.py::TestPasswordHashing::test_wrong_password_rejected PASSED [ 6%]
|
|
tests/test_auth_jwt.py::TestPasswordHashing::test_hash_is_not_plaintext PASSED [ 10%]
|
|
tests/test_auth_jwt.py::TestTokenCreation::test_access_token_contains_expected_fields PASSED [ 13%]
|
|
tests/test_auth_jwt.py::TestTokenCreation::test_refresh_token_contains_expected_fields PASSED [ 16%]
|
|
tests/test_auth_jwt.py::TestTokenCreation::test_token_pair_returns_both_tokens PASSED [ 20%]
|
|
tests/test_auth_jwt.py::TestTokenTypeValidation::test_decode_access_token_rejects_refresh PASSED [ 23%]
|
|
tests/test_auth_jwt.py::TestTokenTypeValidation::test_decode_refresh_token_rejects_access PASSED [ 26%]
|
|
tests/test_auth_jwt.py::TestTokenTypeValidation::test_decode_access_token_accepts_access PASSED [ 30%]
|
|
tests/test_auth_jwt.py::TestTokenTypeValidation::test_decode_refresh_token_accepts_refresh PASSED [ 33%]
|
|
tests/test_auth_jwt.py::TestTokenExpiry::test_expired_token_rejected PASSED [ 36%]
|
|
tests/test_auth_jwt.py::TestInvalidToken::test_garbage_token_rejected PASSED [ 40%]
|
|
tests/test_auth_jwt.py::TestInvalidToken::test_wrong_secret_rejected PASSED [ 43%]
|
|
tests/test_auth_dependencies.py::TestGetCurrentUser::test_valid_access_token PASSED [ 46%]
|
|
tests/test_auth_dependencies.py::TestGetCurrentUser::test_missing_auth_header_returns_401 PASSED [ 50%]
|
|
tests/test_auth_dependencies.py::TestGetCurrentUser::test_invalid_token_returns_401 PASSED [ 53%]
|
|
tests/test_auth_dependencies.py::TestGetCurrentUser::test_refresh_token_rejected PASSED [ 56%]
|
|
tests/test_auth_dependencies.py::TestGetCurrentUser::test_current_user_is_frozen_dataclass PASSED [ 60%]
|
|
tests/test_auth_properties.py::test_invalid_credentials_always_rejected PASSED [ 63%]
|
|
tests/test_auth_properties.py::test_valid_jwt_grants_access PASSED [ 66%]
|
|
tests/test_auth_router.py::TestLogin::test_login_success PASSED [ 70%]
|
|
tests/test_auth_router.py::TestLogin::test_login_user_not_found PASSED [ 73%]
|
|
tests/test_auth_router.py::TestLogin::test_login_wrong_password PASSED [ 76%]
|
|
tests/test_auth_router.py::TestLogin::test_login_disabled_account PASSED [ 80%]
|
|
tests/test_auth_router.py::TestLogin::test_login_missing_username PASSED [ 83%]
|
|
tests/test_auth_router.py::TestLogin::test_login_empty_password PASSED [ 86%]
|
|
tests/test_auth_router.py::TestRefresh::test_refresh_success PASSED [ 90%]
|
|
tests/test_auth_router.py::TestRefresh::test_refresh_with_invalid_token PASSED [ 93%]
|
|
tests/test_auth_router.py::TestRefresh::test_refresh_with_access_token_rejected PASSED [ 96%]
|
|
tests/test_auth_router.py::TestRefresh::test_refresh_missing_token PASSED [100%]
|
|
|
|
============================= 30 passed in 10.76s =============================
|