| """Tests for hermes_state.py — SessionDB SQLite CRUD, FTS5 search, export.""" |
|
|
| import time |
| import pytest |
| from pathlib import Path |
|
|
| from hermes_state import SessionDB |
|
|
|
|
| @pytest.fixture() |
| def db(tmp_path): |
| """Create a SessionDB with a temp database file.""" |
| db_path = tmp_path / "test_state.db" |
| session_db = SessionDB(db_path=db_path) |
| yield session_db |
| session_db.close() |
|
|
|
|
| |
| |
| |
|
|
| class TestSessionLifecycle: |
| def test_create_and_get_session(self, db): |
| sid = db.create_session( |
| session_id="s1", |
| source="cli", |
| model="test-model", |
| ) |
| assert sid == "s1" |
|
|
| session = db.get_session("s1") |
| assert session is not None |
| assert session["source"] == "cli" |
| assert session["model"] == "test-model" |
| assert session["ended_at"] is None |
|
|
| def test_get_nonexistent_session(self, db): |
| assert db.get_session("nonexistent") is None |
|
|
| def test_end_session(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.end_session("s1", end_reason="user_exit") |
|
|
| session = db.get_session("s1") |
| assert isinstance(session["ended_at"], float) |
| assert session["end_reason"] == "user_exit" |
|
|
| def test_update_system_prompt(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.update_system_prompt("s1", "You are a helpful assistant.") |
|
|
| session = db.get_session("s1") |
| assert session["system_prompt"] == "You are a helpful assistant." |
|
|
| def test_update_token_counts(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.update_token_counts("s1", input_tokens=200, output_tokens=100) |
| db.update_token_counts("s1", input_tokens=100, output_tokens=50) |
|
|
| session = db.get_session("s1") |
| assert session["input_tokens"] == 300 |
| assert session["output_tokens"] == 150 |
|
|
| def test_update_token_counts_backfills_model_when_null(self, db): |
| db.create_session(session_id="s1", source="telegram") |
| db.update_token_counts("s1", input_tokens=10, output_tokens=5, model="openai/gpt-5.4") |
|
|
| session = db.get_session("s1") |
| assert session["model"] == "openai/gpt-5.4" |
|
|
| def test_update_token_counts_preserves_existing_model(self, db): |
| db.create_session(session_id="s1", source="cli", model="anthropic/claude-opus-4.6") |
| db.update_token_counts("s1", input_tokens=10, output_tokens=5, model="openai/gpt-5.4") |
|
|
| session = db.get_session("s1") |
| assert session["model"] == "anthropic/claude-opus-4.6" |
|
|
| def test_parent_session(self, db): |
| db.create_session(session_id="parent", source="cli") |
| db.create_session(session_id="child", source="cli", parent_session_id="parent") |
|
|
| child = db.get_session("child") |
| assert child["parent_session_id"] == "parent" |
|
|
|
|
| |
| |
| |
|
|
| class TestMessageStorage: |
| def test_append_and_get_messages(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="Hello") |
| db.append_message("s1", role="assistant", content="Hi there!") |
|
|
| messages = db.get_messages("s1") |
| assert len(messages) == 2 |
| assert messages[0]["role"] == "user" |
| assert messages[0]["content"] == "Hello" |
| assert messages[1]["role"] == "assistant" |
|
|
| def test_message_increments_session_count(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="Hello") |
| db.append_message("s1", role="assistant", content="Hi") |
|
|
| session = db.get_session("s1") |
| assert session["message_count"] == 2 |
|
|
| def test_tool_response_does_not_increment_tool_count(self, db): |
| """Tool responses (role=tool) should not increment tool_call_count. |
| |
| Only assistant messages with tool_calls should count. |
| """ |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="tool", content="result", tool_name="web_search") |
|
|
| session = db.get_session("s1") |
| assert session["tool_call_count"] == 0 |
|
|
| def test_assistant_tool_calls_increment_by_count(self, db): |
| """An assistant message with N tool_calls should increment by N.""" |
| db.create_session(session_id="s1", source="cli") |
| tool_calls = [ |
| {"id": "call_1", "function": {"name": "web_search", "arguments": "{}"}}, |
| ] |
| db.append_message("s1", role="assistant", content="", tool_calls=tool_calls) |
|
|
| session = db.get_session("s1") |
| assert session["tool_call_count"] == 1 |
|
|
| def test_tool_call_count_matches_actual_calls(self, db): |
| """tool_call_count should equal the number of tool calls made, not messages.""" |
| db.create_session(session_id="s1", source="cli") |
|
|
| |
| tool_calls = [ |
| {"id": "call_1", "function": {"name": "ha_call_service", "arguments": "{}"}}, |
| {"id": "call_2", "function": {"name": "ha_call_service", "arguments": "{}"}}, |
| ] |
| db.append_message("s1", role="assistant", content="", tool_calls=tool_calls) |
|
|
| |
| db.append_message("s1", role="tool", content="ok", tool_name="ha_call_service") |
| db.append_message("s1", role="tool", content="ok", tool_name="ha_call_service") |
|
|
| session = db.get_session("s1") |
| |
| assert session["tool_call_count"] == 2, ( |
| f"Expected 2 tool calls but got {session['tool_call_count']}. " |
| "tool responses are double-counted and multi-call messages are under-counted" |
| ) |
|
|
| def test_tool_calls_serialization(self, db): |
| db.create_session(session_id="s1", source="cli") |
| tool_calls = [{"id": "call_1", "function": {"name": "web_search", "arguments": "{}"}}] |
| db.append_message("s1", role="assistant", tool_calls=tool_calls) |
|
|
| messages = db.get_messages("s1") |
| assert messages[0]["tool_calls"] == tool_calls |
|
|
| def test_get_messages_as_conversation(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="Hello") |
| db.append_message("s1", role="assistant", content="Hi!") |
|
|
| conv = db.get_messages_as_conversation("s1") |
| assert len(conv) == 2 |
| assert conv[0] == {"role": "user", "content": "Hello"} |
| assert conv[1] == {"role": "assistant", "content": "Hi!"} |
|
|
| def test_finish_reason_stored(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="assistant", content="Done", finish_reason="stop") |
|
|
| messages = db.get_messages("s1") |
| assert messages[0]["finish_reason"] == "stop" |
|
|
| def test_reasoning_persisted_and_restored(self, db): |
| """Reasoning text is stored for assistant messages and restored by |
| get_messages_as_conversation() so providers receive coherent multi-turn |
| reasoning context.""" |
| db.create_session(session_id="s1", source="telegram") |
| db.append_message("s1", role="user", content="create a cron job") |
| db.append_message( |
| "s1", |
| role="assistant", |
| content=None, |
| tool_calls=[{"function": {"name": "cronjob", "arguments": "{}"}, "id": "c1", "type": "function"}], |
| reasoning="I should call the cronjob tool to schedule this.", |
| ) |
| db.append_message("s1", role="tool", content='{"job_id": "abc"}', tool_call_id="c1") |
|
|
| conv = db.get_messages_as_conversation("s1") |
| assert len(conv) == 3 |
| |
| assistant = conv[1] |
| assert assistant["role"] == "assistant" |
| assert assistant.get("reasoning") == "I should call the cronjob tool to schedule this." |
| |
| assert "reasoning" not in conv[0] |
| assert "reasoning" not in conv[2] |
|
|
| def test_reasoning_details_persisted_and_restored(self, db): |
| """reasoning_details (structured array) is round-tripped through JSON |
| serialization in the DB.""" |
| db.create_session(session_id="s1", source="telegram") |
| details = [ |
| {"type": "reasoning.summary", "summary": "Thinking about tools"}, |
| {"type": "reasoning.encrypted_content", "encrypted_content": "abc123"}, |
| ] |
| db.append_message( |
| "s1", |
| role="assistant", |
| content="Hello", |
| reasoning="Thinking about what to say", |
| reasoning_details=details, |
| ) |
|
|
| conv = db.get_messages_as_conversation("s1") |
| assert len(conv) == 1 |
| msg = conv[0] |
| assert msg["reasoning"] == "Thinking about what to say" |
| assert msg["reasoning_details"] == details |
|
|
| def test_reasoning_not_set_for_non_assistant(self, db): |
| """reasoning is never leaked onto user or tool messages.""" |
| db.create_session(session_id="s1", source="telegram") |
| db.append_message("s1", role="user", content="hi") |
| db.append_message("s1", role="assistant", content="hello", reasoning=None) |
|
|
| conv = db.get_messages_as_conversation("s1") |
| assert "reasoning" not in conv[0] |
| assert "reasoning" not in conv[1] |
|
|
| def test_reasoning_empty_string_not_restored(self, db): |
| """Empty string reasoning is treated as absent.""" |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="assistant", content="hi", reasoning="") |
|
|
| conv = db.get_messages_as_conversation("s1") |
| assert "reasoning" not in conv[0] |
|
|
| def test_codex_reasoning_items_persisted_and_restored(self, db): |
| """codex_reasoning_items (encrypted blobs for Codex Responses API) are |
| round-tripped through JSON serialization in the DB.""" |
| db.create_session(session_id="s1", source="cli") |
| codex_items = [ |
| {"type": "reasoning", "id": "rs_abc", "encrypted_content": "enc_blob_123"}, |
| {"type": "reasoning", "id": "rs_def", "encrypted_content": "enc_blob_456"}, |
| ] |
| db.append_message( |
| "s1", |
| role="assistant", |
| content="Done", |
| codex_reasoning_items=codex_items, |
| ) |
|
|
| conv = db.get_messages_as_conversation("s1") |
| assert len(conv) == 1 |
| assert conv[0]["codex_reasoning_items"] == codex_items |
| assert conv[0]["codex_reasoning_items"][0]["encrypted_content"] == "enc_blob_123" |
|
|
|
|
| |
| |
| |
|
|
| class TestFTS5Search: |
| def test_search_finds_content(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="How do I deploy with Docker?") |
| db.append_message("s1", role="assistant", content="Use docker compose up.") |
|
|
| results = db.search_messages("docker") |
| assert len(results) == 2 |
| |
| snippets = [r.get("snippet", "") for r in results] |
| assert any("docker" in s.lower() or "Docker" in s for s in snippets) |
|
|
| def test_search_empty_query(self, db): |
| assert db.search_messages("") == [] |
| assert db.search_messages(" ") == [] |
|
|
| def test_search_with_source_filter(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="CLI question about Python") |
|
|
| db.create_session(session_id="s2", source="telegram") |
| db.append_message("s2", role="user", content="Telegram question about Python") |
|
|
| results = db.search_messages("Python", source_filter=["telegram"]) |
| |
| sources = [r["source"] for r in results] |
| assert all(s == "telegram" for s in sources) |
|
|
| def test_search_default_sources_include_acp(self, db): |
| db.create_session(session_id="s1", source="acp") |
| db.append_message("s1", role="user", content="ACP question about Python") |
|
|
| results = db.search_messages("Python") |
| sources = [r["source"] for r in results] |
| assert "acp" in sources |
|
|
| def test_search_default_includes_all_platforms(self, db): |
| """Default search (no source_filter) should find sessions from any platform.""" |
| for src in ("cli", "telegram", "signal", "homeassistant", "acp", "matrix"): |
| sid = f"s-{src}" |
| db.create_session(session_id=sid, source=src) |
| db.append_message(sid, role="user", content=f"universal search test from {src}") |
|
|
| results = db.search_messages("universal search test") |
| found_sources = {r["source"] for r in results} |
| assert found_sources == {"cli", "telegram", "signal", "homeassistant", "acp", "matrix"} |
|
|
| def test_search_with_role_filter(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="What is FastAPI?") |
| db.append_message("s1", role="assistant", content="FastAPI is a web framework.") |
|
|
| results = db.search_messages("FastAPI", role_filter=["assistant"]) |
| roles = [r["role"] for r in results] |
| assert all(r == "assistant" for r in roles) |
|
|
| def test_search_returns_context(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="Tell me about Kubernetes") |
| db.append_message("s1", role="assistant", content="Kubernetes is an orchestrator.") |
|
|
| results = db.search_messages("Kubernetes") |
| assert len(results) == 2 |
| assert "context" in results[0] |
| assert isinstance(results[0]["context"], list) |
| assert len(results[0]["context"]) > 0 |
|
|
| def test_search_special_chars_do_not_crash(self, db): |
| """FTS5 special characters in queries must not raise OperationalError.""" |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="How do I use C++ templates?") |
|
|
| |
| dangerous_queries = [ |
| 'C++', |
| '"unterminated', |
| '(problem', |
| 'hello AND', |
| '***', |
| '{test}', |
| 'OR hello', |
| 'a AND OR b', |
| ] |
| for query in dangerous_queries: |
| |
| results = db.search_messages(query) |
| assert isinstance(results, list), f"Query {query!r} did not return a list" |
|
|
| def test_search_sanitized_query_still_finds_content(self, db): |
| """Sanitization must not break normal keyword search.""" |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="Learning C++ templates today") |
|
|
| |
| results = db.search_messages("C++") |
| |
| assert isinstance(results, list) |
|
|
| def test_search_hyphenated_term_does_not_crash(self, db): |
| """Hyphenated terms like 'chat-send' must not crash FTS5.""" |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="Run the chat-send command") |
|
|
| results = db.search_messages("chat-send") |
| assert isinstance(results, list) |
| assert len(results) >= 1 |
| assert any("chat-send" in (r.get("snippet") or r.get("content", "")).lower() |
| for r in results) |
|
|
| def test_search_dotted_term_does_not_crash(self, db): |
| """Dotted terms like 'P2.2' or 'simulate.p2.test.ts' should not crash FTS5.""" |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="Working on P2.2 session_search edge cases") |
| db.append_message("s1", role="assistant", content="See simulate.p2.test.ts for details") |
|
|
| results = db.search_messages("P2.2") |
| assert isinstance(results, list) |
| assert len(results) >= 1 |
|
|
| results2 = db.search_messages("simulate.p2.test.ts") |
| assert isinstance(results2, list) |
| assert len(results2) >= 1 |
|
|
| def test_search_quoted_phrase_preserved(self, db): |
| """User-provided quoted phrases should be preserved for exact matching.""" |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="docker networking is complex") |
| db.append_message("s1", role="assistant", content="networking docker tips") |
|
|
| |
| results = db.search_messages('"docker networking"') |
| assert isinstance(results, list) |
| |
| |
| assert len(results) >= 1 |
|
|
| def test_sanitize_fts5_query_strips_dangerous_chars(self): |
| """Unit test for _sanitize_fts5_query static method.""" |
| from hermes_state import SessionDB |
| s = SessionDB._sanitize_fts5_query |
| assert s('hello world') == 'hello world' |
| assert '+' not in s('C++') |
| assert '"' not in s('"unterminated') |
| assert '(' not in s('(problem') |
| assert '{' not in s('{test}') |
| |
| assert s('hello AND') == 'hello' |
| assert s('OR world') == 'world' |
| |
| assert s('***') == '' |
| |
| assert s('deploy*') == 'deploy*' |
|
|
| def test_sanitize_fts5_preserves_quoted_phrases(self): |
| """Properly paired double-quoted phrases should be preserved.""" |
| from hermes_state import SessionDB |
| s = SessionDB._sanitize_fts5_query |
| |
| assert s('"exact phrase"') == '"exact phrase"' |
| |
| assert '"docker networking"' in s('"docker networking" setup') |
| |
| result = s('"hello world" OR "foo bar"') |
| assert '"hello world"' in result |
| assert '"foo bar"' in result |
| |
| assert '"' not in s('"unterminated') |
|
|
| def test_sanitize_fts5_quotes_hyphenated_terms(self): |
| """Hyphenated terms should be wrapped in quotes for exact matching.""" |
| from hermes_state import SessionDB |
| s = SessionDB._sanitize_fts5_query |
| |
| assert s('chat-send') == '"chat-send"' |
| |
| assert s('docker-compose-up') == '"docker-compose-up"' |
| |
| result = s('fix chat-send bug') |
| assert '"chat-send"' in result |
| assert 'fix' in result |
| assert 'bug' in result |
| |
| result = s('chat-send OR deploy-prod') |
| assert '"chat-send"' in result |
| assert '"deploy-prod"' in result |
| |
| assert s('"chat-send"') == '"chat-send"' |
| |
| assert s('"my chat-send thing"') == '"my chat-send thing"' |
|
|
| def test_sanitize_fts5_quotes_dotted_terms(self): |
| """Dotted terms should be wrapped in quotes to avoid FTS5 query parse edge cases.""" |
| from hermes_state import SessionDB |
| s = SessionDB._sanitize_fts5_query |
|
|
| assert s('P2.2') == '"P2.2"' |
| assert s('simulate.p2') == '"simulate.p2"' |
| assert s('simulate.p2.test.ts') == '"simulate.p2.test.ts"' |
|
|
| |
| assert s('"P2.2"') == '"P2.2"' |
|
|
| |
| result = s('P2.2 OR simulate.p2') |
| assert '"P2.2"' in result |
| assert '"simulate.p2"' in result |
|
|
| |
| assert s('my-app.config') == '"my-app.config"' |
| assert s('my-app.config.ts') == '"my-app.config.ts"' |
|
|
|
|
| |
| |
| |
|
|
| class TestSearchSessions: |
| def test_list_all_sessions(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.create_session(session_id="s2", source="telegram") |
|
|
| sessions = db.search_sessions() |
| assert len(sessions) == 2 |
|
|
| def test_filter_by_source(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.create_session(session_id="s2", source="telegram") |
|
|
| sessions = db.search_sessions(source="cli") |
| assert len(sessions) == 1 |
| assert sessions[0]["source"] == "cli" |
|
|
| def test_pagination(self, db): |
| for i in range(5): |
| db.create_session(session_id=f"s{i}", source="cli") |
|
|
| page1 = db.search_sessions(limit=2) |
| page2 = db.search_sessions(limit=2, offset=2) |
| assert len(page1) == 2 |
| assert len(page2) == 2 |
| assert page1[0]["id"] != page2[0]["id"] |
|
|
|
|
| |
| |
| |
|
|
| class TestCounts: |
| def test_session_count(self, db): |
| assert db.session_count() == 0 |
| db.create_session(session_id="s1", source="cli") |
| db.create_session(session_id="s2", source="telegram") |
| assert db.session_count() == 2 |
|
|
| def test_session_count_by_source(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.create_session(session_id="s2", source="telegram") |
| db.create_session(session_id="s3", source="cli") |
| assert db.session_count(source="cli") == 2 |
| assert db.session_count(source="telegram") == 1 |
|
|
| def test_message_count_total(self, db): |
| assert db.message_count() == 0 |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="Hello") |
| db.append_message("s1", role="assistant", content="Hi") |
| assert db.message_count() == 2 |
|
|
| def test_message_count_per_session(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.create_session(session_id="s2", source="cli") |
| db.append_message("s1", role="user", content="A") |
| db.append_message("s2", role="user", content="B") |
| db.append_message("s2", role="user", content="C") |
| assert db.message_count(session_id="s1") == 1 |
| assert db.message_count(session_id="s2") == 2 |
|
|
|
|
| |
| |
| |
|
|
| class TestDeleteAndExport: |
| def test_delete_session(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.append_message("s1", role="user", content="Hello") |
|
|
| assert db.delete_session("s1") is True |
| assert db.get_session("s1") is None |
| assert db.message_count(session_id="s1") == 0 |
|
|
| def test_delete_nonexistent(self, db): |
| assert db.delete_session("nope") is False |
|
|
| def test_resolve_session_id_exact(self, db): |
| db.create_session(session_id="20260315_092437_c9a6ff", source="cli") |
| assert db.resolve_session_id("20260315_092437_c9a6ff") == "20260315_092437_c9a6ff" |
|
|
| def test_resolve_session_id_unique_prefix(self, db): |
| db.create_session(session_id="20260315_092437_c9a6ff", source="cli") |
| assert db.resolve_session_id("20260315_092437_c9a6") == "20260315_092437_c9a6ff" |
|
|
| def test_resolve_session_id_ambiguous_prefix_returns_none(self, db): |
| db.create_session(session_id="20260315_092437_c9a6aa", source="cli") |
| db.create_session(session_id="20260315_092437_c9a6bb", source="cli") |
| assert db.resolve_session_id("20260315_092437_c9a6") is None |
|
|
| def test_resolve_session_id_escapes_like_wildcards(self, db): |
| db.create_session(session_id="20260315_092437_c9a6ff", source="cli") |
| db.create_session(session_id="20260315X092437_c9a6ff", source="cli") |
| assert db.resolve_session_id("20260315_092437") == "20260315_092437_c9a6ff" |
|
|
| def test_export_session(self, db): |
| db.create_session(session_id="s1", source="cli", model="test") |
| db.append_message("s1", role="user", content="Hello") |
| db.append_message("s1", role="assistant", content="Hi") |
|
|
| export = db.export_session("s1") |
| assert isinstance(export, dict) |
| assert export["source"] == "cli" |
| assert len(export["messages"]) == 2 |
|
|
| def test_export_nonexistent(self, db): |
| assert db.export_session("nope") is None |
|
|
| def test_export_all(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.create_session(session_id="s2", source="telegram") |
| db.append_message("s1", role="user", content="A") |
|
|
| exports = db.export_all() |
| assert len(exports) == 2 |
|
|
| def test_export_all_with_source(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.create_session(session_id="s2", source="telegram") |
|
|
| exports = db.export_all(source="cli") |
| assert len(exports) == 1 |
| assert exports[0]["source"] == "cli" |
|
|
|
|
| |
| |
| |
|
|
| class TestPruneSessions: |
| def test_prune_old_ended_sessions(self, db): |
| |
| db.create_session(session_id="old", source="cli") |
| db.end_session("old", end_reason="done") |
| |
| db._conn.execute( |
| "UPDATE sessions SET started_at = ? WHERE id = ?", |
| (time.time() - 100 * 86400, "old"), |
| ) |
| db._conn.commit() |
|
|
| |
| db.create_session(session_id="new", source="cli") |
|
|
| pruned = db.prune_sessions(older_than_days=90) |
| assert pruned == 1 |
| assert db.get_session("old") is None |
| session = db.get_session("new") |
| assert session is not None |
| assert session["id"] == "new" |
|
|
| def test_prune_skips_active_sessions(self, db): |
| db.create_session(session_id="active", source="cli") |
| |
| db._conn.execute( |
| "UPDATE sessions SET started_at = ? WHERE id = ?", |
| (time.time() - 200 * 86400, "active"), |
| ) |
| db._conn.commit() |
|
|
| pruned = db.prune_sessions(older_than_days=90) |
| assert pruned == 0 |
| assert db.get_session("active") is not None |
|
|
| def test_prune_with_source_filter(self, db): |
| for sid, src in [("old_cli", "cli"), ("old_tg", "telegram")]: |
| db.create_session(session_id=sid, source=src) |
| db.end_session(sid, end_reason="done") |
| db._conn.execute( |
| "UPDATE sessions SET started_at = ? WHERE id = ?", |
| (time.time() - 200 * 86400, sid), |
| ) |
| db._conn.commit() |
|
|
| pruned = db.prune_sessions(older_than_days=90, source="cli") |
| assert pruned == 1 |
| assert db.get_session("old_cli") is None |
| assert db.get_session("old_tg") is not None |
|
|
| def test_prune_with_multilevel_chain(self, db): |
| """Pruning old sessions orphans newer children instead of crashing on FK.""" |
| old_ts = time.time() - 200 * 86400 |
| recent_ts = time.time() - 10 * 86400 |
|
|
| |
| db.create_session(session_id="A", source="cli") |
| db.end_session("A", end_reason="compressed") |
| db.create_session(session_id="B", source="cli", parent_session_id="A") |
| db.end_session("B", end_reason="compressed") |
| db.create_session(session_id="C", source="cli", parent_session_id="B") |
| db.end_session("C", end_reason="compressed") |
| db.create_session(session_id="D", source="cli", parent_session_id="C") |
| db.end_session("D", end_reason="done") |
|
|
| |
| for sid, ts in [("A", old_ts), ("B", old_ts), ("C", recent_ts), ("D", recent_ts)]: |
| db._conn.execute( |
| "UPDATE sessions SET started_at = ? WHERE id = ?", (ts, sid) |
| ) |
| db._conn.commit() |
|
|
| |
| pruned = db.prune_sessions(older_than_days=90) |
| assert pruned == 2 |
| assert db.get_session("A") is None |
| assert db.get_session("B") is None |
| |
| c = db.get_session("C") |
| assert c is not None |
| assert c["parent_session_id"] is None |
| d = db.get_session("D") |
| assert d is not None |
| assert d["parent_session_id"] == "C" |
|
|
| def test_prune_entire_old_chain(self, db): |
| """All sessions in a chain are old — entire chain is pruned.""" |
| old_ts = time.time() - 200 * 86400 |
|
|
| db.create_session(session_id="X", source="cli") |
| db.end_session("X", end_reason="compressed") |
| db.create_session(session_id="Y", source="cli", parent_session_id="X") |
| db.end_session("Y", end_reason="compressed") |
| db.create_session(session_id="Z", source="cli", parent_session_id="Y") |
| db.end_session("Z", end_reason="done") |
|
|
| for sid in ("X", "Y", "Z"): |
| db._conn.execute( |
| "UPDATE sessions SET started_at = ? WHERE id = ?", (old_ts, sid) |
| ) |
| db._conn.commit() |
|
|
| pruned = db.prune_sessions(older_than_days=90) |
| assert pruned == 3 |
| for sid in ("X", "Y", "Z"): |
| assert db.get_session(sid) is None |
|
|
|
|
| class TestDeleteSessionOrphansChildren: |
| def test_delete_orphans_children(self, db): |
| """Deleting a parent session orphans its children.""" |
| db.create_session(session_id="parent", source="cli") |
| db.create_session(session_id="child", source="cli", parent_session_id="parent") |
| db.create_session(session_id="grandchild", source="cli", parent_session_id="child") |
|
|
| |
| result = db.delete_session("parent") |
| assert result is True |
| assert db.get_session("parent") is None |
| |
| child = db.get_session("child") |
| assert child is not None |
| assert child["parent_session_id"] is None |
| |
| grandchild = db.get_session("grandchild") |
| assert grandchild is not None |
| assert grandchild["parent_session_id"] == "child" |
|
|
|
|
| |
| |
| |
|
|
| |
| |
| |
|
|
| class TestSessionTitle: |
| def test_set_and_get_title(self, db): |
| db.create_session(session_id="s1", source="cli") |
| assert db.set_session_title("s1", "My Session") is True |
|
|
| session = db.get_session("s1") |
| assert session["title"] == "My Session" |
|
|
| def test_set_title_nonexistent_session(self, db): |
| assert db.set_session_title("nonexistent", "Title") is False |
|
|
| def test_title_initially_none(self, db): |
| db.create_session(session_id="s1", source="cli") |
| session = db.get_session("s1") |
| assert session["title"] is None |
|
|
| def test_update_title(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.set_session_title("s1", "First Title") |
| db.set_session_title("s1", "Updated Title") |
|
|
| session = db.get_session("s1") |
| assert session["title"] == "Updated Title" |
|
|
| def test_title_in_search_sessions(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.set_session_title("s1", "Debugging Auth") |
| db.create_session(session_id="s2", source="cli") |
|
|
| sessions = db.search_sessions() |
| titled = [s for s in sessions if s.get("title") == "Debugging Auth"] |
| assert len(titled) == 1 |
| assert titled[0]["id"] == "s1" |
|
|
| def test_title_in_export(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.set_session_title("s1", "Export Test") |
| db.append_message("s1", role="user", content="Hello") |
|
|
| export = db.export_session("s1") |
| assert export["title"] == "Export Test" |
|
|
| def test_title_with_special_characters(self, db): |
| db.create_session(session_id="s1", source="cli") |
| title = "PR #438 — fixing the 'auth' middleware" |
| db.set_session_title("s1", title) |
|
|
| session = db.get_session("s1") |
| assert session["title"] == title |
|
|
| def test_title_empty_string_normalized_to_none(self, db): |
| """Empty strings are normalized to None (clearing the title).""" |
| db.create_session(session_id="s1", source="cli") |
| db.set_session_title("s1", "My Title") |
| |
| db.set_session_title("s1", "") |
|
|
| session = db.get_session("s1") |
| assert session["title"] is None |
|
|
| def test_multiple_empty_titles_no_conflict(self, db): |
| """Multiple sessions can have empty-string (normalized to NULL) titles.""" |
| db.create_session(session_id="s1", source="cli") |
| db.create_session(session_id="s2", source="cli") |
| db.set_session_title("s1", "") |
| db.set_session_title("s2", "") |
| |
| assert db.get_session("s1")["title"] is None |
| assert db.get_session("s2")["title"] is None |
|
|
| def test_title_survives_end_session(self, db): |
| db.create_session(session_id="s1", source="cli") |
| db.set_session_title("s1", "Before End") |
| db.end_session("s1", end_reason="user_exit") |
|
|
| session = db.get_session("s1") |
| assert session["title"] == "Before End" |
| assert session["ended_at"] is not None |
|
|
|
|
| class TestSanitizeTitle: |
| """Tests for SessionDB.sanitize_title() validation and cleaning.""" |
|
|
| def test_normal_title_unchanged(self): |
| assert SessionDB.sanitize_title("My Project") == "My Project" |
|
|
| def test_strips_whitespace(self): |
| assert SessionDB.sanitize_title(" hello world ") == "hello world" |
|
|
| def test_collapses_internal_whitespace(self): |
| assert SessionDB.sanitize_title("hello world") == "hello world" |
|
|
| def test_tabs_and_newlines_collapsed(self): |
| assert SessionDB.sanitize_title("hello\t\nworld") == "hello world" |
|
|
| def test_none_returns_none(self): |
| assert SessionDB.sanitize_title(None) is None |
|
|
| def test_empty_string_returns_none(self): |
| assert SessionDB.sanitize_title("") is None |
|
|
| def test_whitespace_only_returns_none(self): |
| assert SessionDB.sanitize_title(" \t\n ") is None |
|
|
| def test_control_chars_stripped(self): |
| |
| assert SessionDB.sanitize_title("hello\x00world") == "helloworld" |
| assert SessionDB.sanitize_title("\x07\x08test\x1b") == "test" |
|
|
| def test_del_char_stripped(self): |
| assert SessionDB.sanitize_title("hello\x7fworld") == "helloworld" |
|
|
| def test_zero_width_chars_stripped(self): |
| |
| assert SessionDB.sanitize_title("hello\u200bworld") == "helloworld" |
| assert SessionDB.sanitize_title("hello\u200dworld") == "helloworld" |
|
|
| def test_rtl_override_stripped(self): |
| |
| assert SessionDB.sanitize_title("hello\u202eworld") == "helloworld" |
|
|
| def test_bom_stripped(self): |
| |
| assert SessionDB.sanitize_title("\ufeffhello") == "hello" |
|
|
| def test_only_control_chars_returns_none(self): |
| assert SessionDB.sanitize_title("\x00\x01\x02\u200b\ufeff") is None |
|
|
| def test_max_length_allowed(self): |
| title = "A" * 100 |
| assert SessionDB.sanitize_title(title) == title |
|
|
| def test_exceeds_max_length_raises(self): |
| title = "A" * 101 |
| with pytest.raises(ValueError, match="too long"): |
| SessionDB.sanitize_title(title) |
|
|
| def test_unicode_emoji_allowed(self): |
| assert SessionDB.sanitize_title("🚀 My Project 🎉") == "🚀 My Project 🎉" |
|
|
| def test_cjk_characters_allowed(self): |
| assert SessionDB.sanitize_title("我的项目") == "我的项目" |
|
|
| def test_accented_characters_allowed(self): |
| assert SessionDB.sanitize_title("Résumé éditing") == "Résumé éditing" |
|
|
| def test_special_punctuation_allowed(self): |
| title = "PR #438 — fixing the 'auth' middleware" |
| assert SessionDB.sanitize_title(title) == title |
|
|
| def test_sanitize_applied_in_set_session_title(self, db): |
| """set_session_title applies sanitize_title internally.""" |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", " hello\x00 world ") |
| assert db.get_session("s1")["title"] == "hello world" |
|
|
| def test_too_long_title_rejected_by_set(self, db): |
| """set_session_title raises ValueError for overly long titles.""" |
| db.create_session("s1", "cli") |
| with pytest.raises(ValueError, match="too long"): |
| db.set_session_title("s1", "X" * 150) |
|
|
|
|
| class TestSchemaInit: |
| def test_wal_mode(self, db): |
| cursor = db._conn.execute("PRAGMA journal_mode") |
| mode = cursor.fetchone()[0] |
| assert mode == "wal" |
|
|
| def test_foreign_keys_enabled(self, db): |
| cursor = db._conn.execute("PRAGMA foreign_keys") |
| assert cursor.fetchone()[0] == 1 |
|
|
| def test_tables_exist(self, db): |
| cursor = db._conn.execute( |
| "SELECT name FROM sqlite_master WHERE type='table' ORDER BY name" |
| ) |
| tables = {row[0] for row in cursor.fetchall()} |
| assert "sessions" in tables |
| assert "messages" in tables |
| assert "schema_version" in tables |
|
|
| def test_schema_version(self, db): |
| cursor = db._conn.execute("SELECT version FROM schema_version") |
| version = cursor.fetchone()[0] |
| assert version == 6 |
|
|
| def test_title_column_exists(self, db): |
| """Verify the title column was created in the sessions table.""" |
| cursor = db._conn.execute("PRAGMA table_info(sessions)") |
| columns = {row[1] for row in cursor.fetchall()} |
| assert "title" in columns |
|
|
| def test_migration_from_v2(self, tmp_path): |
| """Simulate a v2 database and verify migration adds title column.""" |
| import sqlite3 |
|
|
| db_path = tmp_path / "migrate_test.db" |
| conn = sqlite3.connect(str(db_path)) |
| |
| conn.executescript(""" |
| CREATE TABLE schema_version (version INTEGER NOT NULL); |
| INSERT INTO schema_version (version) VALUES (2); |
| |
| CREATE TABLE sessions ( |
| id TEXT PRIMARY KEY, |
| source TEXT NOT NULL, |
| user_id TEXT, |
| model TEXT, |
| model_config TEXT, |
| system_prompt TEXT, |
| parent_session_id TEXT, |
| started_at REAL NOT NULL, |
| ended_at REAL, |
| end_reason TEXT, |
| message_count INTEGER DEFAULT 0, |
| tool_call_count INTEGER DEFAULT 0, |
| input_tokens INTEGER DEFAULT 0, |
| output_tokens INTEGER DEFAULT 0 |
| ); |
| |
| CREATE TABLE messages ( |
| id INTEGER PRIMARY KEY AUTOINCREMENT, |
| session_id TEXT NOT NULL, |
| role TEXT NOT NULL, |
| content TEXT, |
| tool_call_id TEXT, |
| tool_calls TEXT, |
| tool_name TEXT, |
| timestamp REAL NOT NULL, |
| token_count INTEGER, |
| finish_reason TEXT |
| ); |
| """) |
| conn.execute( |
| "INSERT INTO sessions (id, source, started_at) VALUES (?, ?, ?)", |
| ("existing", "cli", 1000.0), |
| ) |
| conn.commit() |
| conn.close() |
|
|
| |
| migrated_db = SessionDB(db_path=db_path) |
|
|
| |
| cursor = migrated_db._conn.execute("SELECT version FROM schema_version") |
| assert cursor.fetchone()[0] == 6 |
|
|
| |
| session = migrated_db.get_session("existing") |
| assert session is not None |
| assert session["title"] is None |
|
|
| |
| assert migrated_db.set_session_title("existing", "Migrated Title") is True |
| session = migrated_db.get_session("existing") |
| assert session["title"] == "Migrated Title" |
|
|
| migrated_db.close() |
|
|
|
|
| class TestTitleUniqueness: |
| """Tests for unique title enforcement and title-based lookups.""" |
|
|
| def test_duplicate_title_raises(self, db): |
| """Setting a title already used by another session raises ValueError.""" |
| db.create_session("s1", "cli") |
| db.create_session("s2", "cli") |
| db.set_session_title("s1", "my project") |
| with pytest.raises(ValueError, match="already in use"): |
| db.set_session_title("s2", "my project") |
|
|
| def test_same_session_can_keep_title(self, db): |
| """A session can re-set its own title without error.""" |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "my project") |
| |
| assert db.set_session_title("s1", "my project") is True |
|
|
| def test_null_titles_not_unique(self, db): |
| """Multiple sessions can have NULL titles (no constraint violation).""" |
| db.create_session("s1", "cli") |
| db.create_session("s2", "cli") |
| |
| assert db.get_session("s1")["title"] is None |
| assert db.get_session("s2")["title"] is None |
|
|
| def test_get_session_by_title(self, db): |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "refactoring auth") |
| result = db.get_session_by_title("refactoring auth") |
| assert result is not None |
| assert result["id"] == "s1" |
|
|
| def test_get_session_by_title_not_found(self, db): |
| assert db.get_session_by_title("nonexistent") is None |
|
|
| def test_get_session_title(self, db): |
| db.create_session("s1", "cli") |
| assert db.get_session_title("s1") is None |
| db.set_session_title("s1", "my title") |
| assert db.get_session_title("s1") == "my title" |
|
|
| def test_get_session_title_nonexistent(self, db): |
| assert db.get_session_title("nonexistent") is None |
|
|
|
|
| class TestTitleLineage: |
| """Tests for title lineage resolution and auto-numbering.""" |
|
|
| def test_resolve_exact_title(self, db): |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "my project") |
| assert db.resolve_session_by_title("my project") == "s1" |
|
|
| def test_resolve_returns_latest_numbered(self, db): |
| """When numbered variants exist, return the most recent one.""" |
| import time |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "my project") |
| time.sleep(0.01) |
| db.create_session("s2", "cli") |
| db.set_session_title("s2", "my project #2") |
| time.sleep(0.01) |
| db.create_session("s3", "cli") |
| db.set_session_title("s3", "my project #3") |
| |
| assert db.resolve_session_by_title("my project") == "s3" |
|
|
| def test_resolve_exact_numbered(self, db): |
| """Resolving an exact numbered title returns that specific session.""" |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "my project") |
| db.create_session("s2", "cli") |
| db.set_session_title("s2", "my project #2") |
| |
| assert db.resolve_session_by_title("my project #2") == "s2" |
|
|
| def test_resolve_nonexistent_title(self, db): |
| assert db.resolve_session_by_title("nonexistent") is None |
|
|
| def test_next_title_no_existing(self, db): |
| """With no existing sessions, base title is returned as-is.""" |
| assert db.get_next_title_in_lineage("my project") == "my project" |
|
|
| def test_next_title_first_continuation(self, db): |
| """First continuation after the original gets #2.""" |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "my project") |
| assert db.get_next_title_in_lineage("my project") == "my project #2" |
|
|
| def test_next_title_increments(self, db): |
| """Each continuation increments the number.""" |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "my project") |
| db.create_session("s2", "cli") |
| db.set_session_title("s2", "my project #2") |
| db.create_session("s3", "cli") |
| db.set_session_title("s3", "my project #3") |
| assert db.get_next_title_in_lineage("my project") == "my project #4" |
|
|
| def test_next_title_strips_existing_number(self, db): |
| """Passing a numbered title strips the number and finds the base.""" |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "my project") |
| db.create_session("s2", "cli") |
| db.set_session_title("s2", "my project #2") |
| |
| assert db.get_next_title_in_lineage("my project #2") == "my project #3" |
|
|
|
|
| class TestTitleSqlWildcards: |
| """Titles containing SQL LIKE wildcards (%, _) must not cause false matches.""" |
|
|
| def test_resolve_title_with_underscore(self, db): |
| """A title like 'test_project' should not match 'testXproject #2'.""" |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "test_project") |
| db.create_session("s2", "cli") |
| db.set_session_title("s2", "testXproject #2") |
| |
| assert db.resolve_session_by_title("test_project") == "s1" |
|
|
| def test_resolve_title_with_percent(self, db): |
| """A title with '%' should not wildcard-match unrelated sessions.""" |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "100% done") |
| db.create_session("s2", "cli") |
| db.set_session_title("s2", "100X done #2") |
| |
| assert db.resolve_session_by_title("100% done") == "s1" |
|
|
| def test_next_lineage_with_underscore(self, db): |
| """get_next_title_in_lineage with underscores doesn't match wrong sessions.""" |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "test_project") |
| db.create_session("s2", "cli") |
| db.set_session_title("s2", "testXproject #2") |
| |
| assert db.get_next_title_in_lineage("test_project") == "test_project #2" |
|
|
|
|
| class TestListSessionsRich: |
| """Tests for enhanced session listing with preview and last_active.""" |
|
|
| def test_preview_from_first_user_message(self, db): |
| db.create_session("s1", "cli") |
| db.append_message("s1", "system", "You are a helpful assistant.") |
| db.append_message("s1", "user", "Help me refactor the auth module please") |
| db.append_message("s1", "assistant", "Sure, let me look at it.") |
| sessions = db.list_sessions_rich() |
| assert len(sessions) == 1 |
| assert "Help me refactor the auth module" in sessions[0]["preview"] |
|
|
| def test_preview_truncated_at_60(self, db): |
| db.create_session("s1", "cli") |
| long_msg = "A" * 100 |
| db.append_message("s1", "user", long_msg) |
| sessions = db.list_sessions_rich() |
| assert len(sessions[0]["preview"]) == 63 |
| assert sessions[0]["preview"].endswith("...") |
|
|
| def test_preview_empty_when_no_user_messages(self, db): |
| db.create_session("s1", "cli") |
| db.append_message("s1", "system", "System prompt") |
| sessions = db.list_sessions_rich() |
| assert sessions[0]["preview"] == "" |
|
|
| def test_last_active_from_latest_message(self, db): |
| import time |
| db.create_session("s1", "cli") |
| db.append_message("s1", "user", "Hello") |
| time.sleep(0.01) |
| db.append_message("s1", "assistant", "Hi there!") |
| sessions = db.list_sessions_rich() |
| |
| assert sessions[0]["last_active"] > sessions[0]["started_at"] |
|
|
| def test_last_active_fallback_to_started_at(self, db): |
| db.create_session("s1", "cli") |
| sessions = db.list_sessions_rich() |
| |
| assert sessions[0]["last_active"] == sessions[0]["started_at"] |
|
|
| def test_rich_list_includes_title(self, db): |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "refactoring auth") |
| sessions = db.list_sessions_rich() |
| assert sessions[0]["title"] == "refactoring auth" |
|
|
| def test_rich_list_source_filter(self, db): |
| db.create_session("s1", "cli") |
| db.create_session("s2", "telegram") |
| sessions = db.list_sessions_rich(source="cli") |
| assert len(sessions) == 1 |
| assert sessions[0]["id"] == "s1" |
|
|
| def test_preview_newlines_collapsed(self, db): |
| db.create_session("s1", "cli") |
| db.append_message("s1", "user", "Line one\nLine two\nLine three") |
| sessions = db.list_sessions_rich() |
| assert "\n" not in sessions[0]["preview"] |
| assert "Line one Line two" in sessions[0]["preview"] |
|
|
|
|
| |
| |
| |
|
|
| class TestExcludeSources: |
| """Tests for exclude_sources on list_sessions_rich and search_messages.""" |
|
|
| def test_list_sessions_rich_excludes_tool_source(self, db): |
| db.create_session("s1", "cli") |
| db.create_session("s2", "tool") |
| db.create_session("s3", "telegram") |
| sessions = db.list_sessions_rich(exclude_sources=["tool"]) |
| ids = [s["id"] for s in sessions] |
| assert "s1" in ids |
| assert "s3" in ids |
| assert "s2" not in ids |
|
|
| def test_list_sessions_rich_no_exclusion_returns_all(self, db): |
| db.create_session("s1", "cli") |
| db.create_session("s2", "tool") |
| sessions = db.list_sessions_rich() |
| ids = [s["id"] for s in sessions] |
| assert "s1" in ids |
| assert "s2" in ids |
|
|
| def test_list_sessions_rich_source_and_exclude_combined(self, db): |
| """When source= is explicit, exclude_sources should not conflict.""" |
| db.create_session("s1", "cli") |
| db.create_session("s2", "tool") |
| db.create_session("s3", "telegram") |
| |
| sessions = db.list_sessions_rich(source="tool") |
| ids = [s["id"] for s in sessions] |
| assert ids == ["s2"] |
|
|
| def test_list_sessions_rich_exclude_multiple_sources(self, db): |
| db.create_session("s1", "cli") |
| db.create_session("s2", "tool") |
| db.create_session("s3", "cron") |
| db.create_session("s4", "telegram") |
| sessions = db.list_sessions_rich(exclude_sources=["tool", "cron"]) |
| ids = [s["id"] for s in sessions] |
| assert "s1" in ids |
| assert "s4" in ids |
| assert "s2" not in ids |
| assert "s3" not in ids |
|
|
| def test_search_messages_excludes_tool_source(self, db): |
| db.create_session("s1", "cli") |
| db.append_message("s1", "user", "Python deployment question") |
| db.create_session("s2", "tool") |
| db.append_message("s2", "user", "Python automated question") |
| results = db.search_messages("Python", exclude_sources=["tool"]) |
| sources = [r["source"] for r in results] |
| assert "cli" in sources |
| assert "tool" not in sources |
|
|
| def test_search_messages_no_exclusion_returns_all_sources(self, db): |
| db.create_session("s1", "cli") |
| db.append_message("s1", "user", "Rust deployment question") |
| db.create_session("s2", "tool") |
| db.append_message("s2", "user", "Rust automated question") |
| results = db.search_messages("Rust") |
| sources = [r["source"] for r in results] |
| assert "cli" in sources |
| assert "tool" in sources |
|
|
| def test_search_messages_source_include_and_exclude(self, db): |
| """source_filter (include) and exclude_sources can coexist.""" |
| db.create_session("s1", "cli") |
| db.append_message("s1", "user", "Golang test") |
| db.create_session("s2", "telegram") |
| db.append_message("s2", "user", "Golang test") |
| db.create_session("s3", "tool") |
| db.append_message("s3", "user", "Golang test") |
| |
| results = db.search_messages( |
| "Golang", source_filter=["cli", "tool"], exclude_sources=["tool"] |
| ) |
| sources = [r["source"] for r in results] |
| assert sources == ["cli"] |
|
|
|
|
| class TestResolveSessionByNameOrId: |
| """Tests for the main.py helper that resolves names or IDs.""" |
|
|
| def test_resolve_by_id(self, db): |
| db.create_session("test-id-123", "cli") |
| session = db.get_session("test-id-123") |
| assert session is not None |
| assert session["id"] == "test-id-123" |
|
|
| def test_resolve_by_title_falls_back(self, db): |
| db.create_session("s1", "cli") |
| db.set_session_title("s1", "my project") |
| result = db.resolve_session_by_title("my project") |
| assert result == "s1" |
|
|
|
|
| |
| |
| |
|
|
| class TestConcurrentWriteSafety: |
| def test_create_session_insert_or_ignore_is_idempotent(self, db): |
| """create_session with the same ID twice must not raise (INSERT OR IGNORE).""" |
| db.create_session(session_id="dup-1", source="cli", model="m") |
| |
| db.create_session(session_id="dup-1", source="gateway", model="m2") |
| session = db.get_session("dup-1") |
| |
| assert session is not None |
| assert session["source"] == "cli" |
|
|
| def test_ensure_session_creates_missing_row(self, db): |
| """ensure_session must create a minimal row when the session doesn't exist.""" |
| assert db.get_session("orphan-session") is None |
| db.ensure_session("orphan-session", source="gateway", model="test-model") |
| row = db.get_session("orphan-session") |
| assert row is not None |
| assert row["source"] == "gateway" |
| assert row["model"] == "test-model" |
|
|
| def test_ensure_session_is_idempotent(self, db): |
| """ensure_session on an existing row must be a no-op (no overwrite).""" |
| db.create_session(session_id="existing", source="cli", model="original-model") |
| db.ensure_session("existing", source="gateway", model="overwrite-model") |
| row = db.get_session("existing") |
| |
| assert row["source"] == "cli" |
| assert row["model"] == "original-model" |
|
|
| def test_ensure_session_allows_append_message_after_failed_create(self, db): |
| """Messages can be flushed even when create_session failed at startup. |
| |
| Simulates the #3139 scenario: create_session raises (lock), then |
| ensure_session is called during flush, then append_message succeeds. |
| """ |
| |
| db.ensure_session("late-session", source="gateway", model="gpt-4") |
| db.append_message( |
| session_id="late-session", |
| role="user", |
| content="hello after lock", |
| ) |
| msgs = db.get_messages("late-session") |
| assert len(msgs) == 1 |
| assert msgs[0]["content"] == "hello after lock" |
|
|
| def test_sqlite_timeout_is_at_least_30s(self, db): |
| """Connection timeout should be >= 30s to survive CLI/gateway contention.""" |
| |
| |
| import sqlite3 |
| import inspect |
| from hermes_state import SessionDB as _SessionDB |
| src = inspect.getsource(_SessionDB.__init__) |
| assert "30" in src, ( |
| "SQLite timeout should be at least 30s to handle CLI/gateway lock contention" |
| ) |
|
|