The test was restoring original_model from /api/models, but after prior runs the config.yaml model.default field could be stale, causing the restore to bake in the wrong value. Fix: always restore to TEST_DEFAULT_MODEL (the conftest-injected env value) for deterministic ordering-independent cleanup. Also exposes TEST_DEFAULT_MODEL from _pytest_port.py so other tests that mutate the default model can use it for clean teardown. TESTING.md: update automated test count from 1353 to 1578.
47 lines
1.7 KiB
Python
47 lines
1.7 KiB
Python
"""
|
|
Shared test server constants for use in individual test files.
|
|
|
|
Instead of hardcoding ``BASE = "http://127.0.0.1:8788"`` in every test file,
|
|
import from here so the port and state dir are always consistent with
|
|
what conftest.py computed for this worktree.
|
|
|
|
Usage::
|
|
|
|
from tests._pytest_port import BASE
|
|
|
|
conftest.py publishes ``HERMES_WEBUI_TEST_PORT`` and
|
|
``HERMES_WEBUI_TEST_STATE_DIR`` to ``os.environ`` at module level
|
|
(before any test file is imported), so this module always reads the
|
|
correct values. The auto-derivation fallback matches conftest's logic
|
|
exactly, so standalone imports also work correctly.
|
|
"""
|
|
import hashlib
|
|
import os
|
|
import pathlib
|
|
|
|
def _auto_test_port(repo_root: pathlib.Path) -> int:
|
|
h = int(hashlib.md5(str(repo_root).encode()).hexdigest(), 16)
|
|
return 20000 + (h % 10000)
|
|
|
|
def _auto_state_dir_name(repo_root: pathlib.Path) -> str:
|
|
h = hashlib.md5(str(repo_root).encode()).hexdigest()[:8]
|
|
return f"webui-test-{h}"
|
|
|
|
_TESTS_DIR = pathlib.Path(__file__).parent.resolve()
|
|
_REPO_ROOT = _TESTS_DIR.parent.resolve()
|
|
_HERMES_HOME = pathlib.Path(os.getenv('HERMES_HOME',
|
|
str(pathlib.Path.home() / '.hermes')))
|
|
|
|
TEST_PORT = int(os.environ.get('HERMES_WEBUI_TEST_PORT',
|
|
str(_auto_test_port(_REPO_ROOT))))
|
|
BASE = f"http://127.0.0.1:{TEST_PORT}"
|
|
|
|
TEST_STATE_DIR = pathlib.Path(os.environ.get(
|
|
'HERMES_WEBUI_TEST_STATE_DIR',
|
|
str(_HERMES_HOME / _auto_state_dir_name(_REPO_ROOT))
|
|
))
|
|
|
|
# Default model injected by conftest — tests that mutate the default model
|
|
# must restore to this value so later tests see a consistent baseline.
|
|
TEST_DEFAULT_MODEL = os.environ.get('HERMES_WEBUI_DEFAULT_MODEL', 'openai/gpt-5.4-mini')
|