Files
wehub-resource-sync c3749daf48
Tests / test-linux (3.13) (push) Failing after 0s
Tests / test-linux (3.11) (push) Failing after 1s
Tests / lint (push) Failing after 0s
Tests / test-linux (3.9) (push) Failing after 1s
Docker / build (push) Failing after 1s
Docker / build-gpu (push) Failing after 2s
Tests / test-windows (push) Has been cancelled
Tests / test-macos (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:03:03 +08:00

188 lines
6.6 KiB
Python

"""Tests for mempalace.palace shared helpers."""
import chromadb
from _chroma_palace_helper import make_minimal_chroma_sqlite
from mempalace.backends import CollectionNotInitializedError, PalaceNotFoundError
from mempalace.palace import _open_collection_or_explain, get_collection
def _capture():
"""Return (emit, lines) — emit appends to lines for inspection."""
lines: list[str] = []
return lines.append, lines
def test_open_collection_or_explain_state_a_missing_dir(tmp_path):
"""State A: palace dir does not exist."""
emit, lines = _capture()
missing = tmp_path / "no-such-palace"
result = _open_collection_or_explain(str(missing), out=emit)
assert result is None
assert any("No palace found" in line for line in lines)
assert any("mempalace init" in line for line in lines)
# Helper must not create the directory.
assert not missing.exists()
def test_open_collection_or_explain_state_b_no_db(tmp_path):
"""State B: dir exists but chroma.sqlite3 does not.
Critical invariant: the helper must NOT trigger chromadb's lazy DB
creation by reaching the backend. The dir must remain empty after
the call so a read-only inspection stays read-only.
"""
emit, lines = _capture()
palace = tmp_path / "palace"
palace.mkdir()
assert not (palace / "chroma.sqlite3").exists()
result = _open_collection_or_explain(str(palace), out=emit)
assert result is None
assert any("has no chroma.sqlite3 yet" in line for line in lines)
# No side-effect: backend was not invoked.
assert list(palace.iterdir()) == []
def test_open_collection_or_explain_state_c_no_collection(tmp_path):
"""State C: DB file exists but the collection has never been created."""
emit, lines = _capture()
palace = tmp_path / "palace"
palace.mkdir()
chromadb.PersistentClient(path=str(palace)) # creates DB, no collection
assert (palace / "chroma.sqlite3").is_file()
result = _open_collection_or_explain(str(palace), out=emit)
assert result is None
assert any("initialized but empty" in line for line in lines)
assert any("mempalace mine" in line for line in lines)
def test_open_collection_or_explain_unknown_backend(tmp_path, monkeypatch):
"""An unknown backend name (typo in MEMPALACE_BACKEND/--backend) must
surface as a CLI state message, not an escaping KeyError stack trace."""
emit, lines = _capture()
palace = tmp_path / "palace"
palace.mkdir()
monkeypatch.setenv("MEMPALACE_BACKEND", "does_not_exist")
result = _open_collection_or_explain(str(palace), out=emit)
assert result is None
assert any("Unknown backend selected" in line for line in lines)
assert any("does_not_exist" in line for line in lines)
def test_open_collection_or_explain_state_d_healthy(tmp_path):
"""State D: healthy palace — returns the opened collection silently."""
emit, lines = _capture()
palace = tmp_path / "palace"
palace.mkdir()
get_collection(str(palace), create=True) # bootstrap collection
result = _open_collection_or_explain(str(palace), out=emit)
assert result is not None
assert lines == [] # healthy path is silent
def test_open_collection_or_explain_state_e_unexpected_error(tmp_path, monkeypatch):
"""State E: unexpected error opening the backend routes to repair hint."""
emit, lines = _capture()
palace = tmp_path / "palace"
palace.mkdir()
make_minimal_chroma_sqlite(palace) # pass the isfile guard
def boom(*args, **kwargs):
raise RuntimeError("disk on fire")
monkeypatch.setattr("mempalace.palace.get_collection", boom)
result = _open_collection_or_explain(str(palace), out=emit)
assert result is None
assert any("Error opening palace" in line for line in lines)
assert any("repair-status" in line for line in lines)
def test_open_collection_or_explain_default_sink_is_print(tmp_path, capsys):
"""When out is None, messages go through builtin print → stdout."""
missing = tmp_path / "no-such-palace"
result = _open_collection_or_explain(str(missing))
assert result is None
assert "No palace found" in capsys.readouterr().out
def test_open_collection_or_explain_propagates_palace_not_found_from_backend(tmp_path, monkeypatch):
"""If the backend raises bare PalaceNotFoundError after our filesystem
guards (rare race or backend-internal "not found"), the helper still
prints the State A message and returns None."""
emit, lines = _capture()
palace = tmp_path / "palace"
palace.mkdir()
make_minimal_chroma_sqlite(palace)
def raise_pnf(*args, **kwargs):
raise PalaceNotFoundError(str(palace))
monkeypatch.setattr("mempalace.palace.get_collection", raise_pnf)
result = _open_collection_or_explain(str(palace), out=emit)
assert result is None
assert any("No palace found" in line for line in lines)
def test_open_collection_or_explain_reraises_backend_closed_error(tmp_path, monkeypatch):
"""BackendClosedError is a programmer error (caller violated the backend
lifecycle), not a palace-state UX condition. The helper must propagate
it instead of swallowing it into the State E "repair-status" hint.
Without this re-raise, a closed default backend would silently mask
every call site as "Error opening palace ... Try: repair-status"
even when the actual fix is to stop using a closed backend handle.
"""
from mempalace.backends import BackendClosedError
palace = tmp_path / "palace"
palace.mkdir()
make_minimal_chroma_sqlite(palace)
def raise_closed(*args, **kwargs):
raise BackendClosedError("ChromaBackend has been closed")
monkeypatch.setattr("mempalace.palace.get_collection", raise_closed)
import pytest
with pytest.raises(BackendClosedError):
_open_collection_or_explain(str(palace))
def test_open_collection_or_explain_distinguishes_collection_subclass(tmp_path, monkeypatch):
"""The helper must surface CollectionNotInitializedError as the
'empty' message rather than the broader 'No palace found' message,
even though the former subclasses the latter."""
emit, lines = _capture()
palace = tmp_path / "palace"
palace.mkdir()
make_minimal_chroma_sqlite(palace)
def raise_cnie(*args, **kwargs):
raise CollectionNotInitializedError(str(palace))
monkeypatch.setattr("mempalace.palace.get_collection", raise_cnie)
result = _open_collection_or_explain(str(palace), out=emit)
assert result is None
assert any("initialized but empty" in line for line in lines)
assert not any("No palace found" in line for line in lines)