database_url, migration_database_url, mcp_auth_token and the mathpix app id/key are now pydantic SecretStr, so they render as '**********' in any repr/log/traceback instead of leaking the plaintext credential. Consumers (db.get_conn, cli.migrate, mcp._require_http_token, mathpix.extract_formulas) call .get_secret_value() at the point of use. Tests updated to the SecretStr type. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
"""Smoke tests for codex.config.Settings."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from codex.config import Settings, get_settings
|
|
|
|
|
|
def test_settings_defaults() -> None:
|
|
"""Settings() is constructable without env vars; expected defaults are set."""
|
|
s = Settings()
|
|
assert (
|
|
s.database_url.get_secret_value()
|
|
== "postgresql://researcher:change_me@localhost:5432/papers"
|
|
)
|
|
assert s.embedding_model == "BAAI/bge-m3"
|
|
assert s.embedding_dim == 1024
|
|
|
|
|
|
def test_settings_env_override(monkeypatch: object) -> None:
|
|
"""DATABASE_URL env var overrides the default database_url."""
|
|
import pytest
|
|
|
|
mp: pytest.MonkeyPatch = monkeypatch # type: ignore[assignment]
|
|
mp.setenv("DATABASE_URL", "postgresql://x:y@h:5432/db")
|
|
s = Settings()
|
|
assert s.database_url.get_secret_value() == "postgresql://x:y@h:5432/db"
|
|
|
|
|
|
def test_get_settings_is_singleton() -> None:
|
|
"""get_settings() returns the same object on repeated calls; new object after cache_clear."""
|
|
get_settings.cache_clear()
|
|
first = get_settings()
|
|
second = get_settings()
|
|
assert first is second
|
|
|
|
get_settings.cache_clear()
|
|
third = get_settings()
|
|
assert third is not first
|