Spaces:
Running
Running
File size: 22,263 Bytes
a7b67f0 961f793 a7b67f0 961f793 a7b67f0 961f793 a7b67f0 961f793 a7b67f0 961f793 a7b67f0 961f793 a7b67f0 961f793 a7b67f0 961f793 a7b67f0 961f793 a7b67f0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 | """Comprehensive tests for the universal memory sync engine.
Tests cover:
- Core sync: import, export, bidirectional
- Idempotency and deduplication
- Fast no-op detection
- Lineage and governance metadata
- Claude Code adapter: read/write frontmatter files
- Codex adapter: read/write AGENTS.md sections
- Cross-agent interop: save in one agent, find in another
"""
from __future__ import annotations
import hashlib
import json
import time
from dataclasses import dataclass, field
from datetime import datetime, timezone
from pathlib import Path
from typing import Any
import pytest
from headroom.memory.sync import (
sync,
sync_export,
sync_import,
)
from headroom.memory.sync_adapters.claude_code import (
ClaudeCodeAdapter,
_parse_frontmatter,
)
from headroom.memory.sync_adapters.codex_agent import CodexAdapter
# ---------------------------------------------------------------------------
# Fake backend for testing (no real DB/embeddings needed)
# ---------------------------------------------------------------------------
@dataclass
class FakeMemory:
id: str = ""
content: str = ""
user_id: str = ""
category: str = ""
importance: float = 0.5
created_at: datetime = field(default_factory=lambda: datetime.now(timezone.utc))
metadata: dict[str, Any] = field(default_factory=dict)
class FakeBackend:
"""In-memory backend for testing sync without real DB."""
def __init__(self) -> None:
self._memories: list[FakeMemory] = []
self._next_id = 1
async def get_user_memories(self, user_id: str, limit: int = 500) -> list[FakeMemory]:
return [m for m in self._memories if m.user_id == user_id][:limit]
async def save_memory(
self,
content: str,
user_id: str,
importance: float = 0.5,
metadata: dict[str, Any] | None = None,
**kwargs: Any,
) -> FakeMemory:
mem = FakeMemory(
id=f"mem_{self._next_id:04d}",
content=content,
user_id=user_id,
importance=importance,
metadata=metadata or {},
)
self._next_id += 1
self._memories.append(mem)
return mem
def add_memory(self, content: str, user_id: str = "tcms", **kwargs: Any) -> FakeMemory:
"""Sync helper to pre-populate memories."""
mem = FakeMemory(
id=f"mem_{self._next_id:04d}",
content=content,
user_id=user_id,
metadata=kwargs.get("metadata", {}),
importance=kwargs.get("importance", 0.5),
)
self._next_id += 1
self._memories.append(mem)
return mem
# ---------------------------------------------------------------------------
# Core sync tests
# ---------------------------------------------------------------------------
class TestSyncImport:
"""Test importing from agent files into DB."""
@pytest.fixture
def backend(self):
return FakeBackend()
@pytest.fixture
def claude_dir(self, tmp_path):
d = tmp_path / "memory"
d.mkdir()
return d
def _write_claude_memory(
self, memory_dir: Path, name: str, content: str, **fm_fields: str
) -> None:
slug = name.lower().replace(" ", "_")
fields = {"name": name, "description": content[:80], "type": "project", **fm_fields}
fm_lines = ["---"]
for k, v in fields.items():
fm_lines.append(f"{k}: {v}")
fm_lines.append("---")
(memory_dir / f"{slug}.md").write_text("\n".join(fm_lines) + f"\n\n{content}\n")
@pytest.mark.asyncio
async def test_import_claude_files_to_db(self, backend, claude_dir):
self._write_claude_memory(claude_dir, "Project codename", "The secret name is TC")
self._write_claude_memory(claude_dir, "Dark mode", "User prefers dark mode")
adapter = ClaudeCodeAdapter(claude_dir)
imported = await sync_import(backend, adapter, "tcms")
assert imported == 2
mems = await backend.get_user_memories("tcms")
contents = {m.content for m in mems}
assert "The secret name is TC" in contents
assert "User prefers dark mode" in contents
@pytest.mark.asyncio
async def test_import_skips_existing(self, backend, claude_dir):
"""Memories already in DB are not re-imported."""
backend.add_memory(
"The secret name is TC",
metadata={"content_hash": hashlib.sha256(b"The secret name is TC").hexdigest()[:16]},
)
self._write_claude_memory(claude_dir, "Project codename", "The secret name is TC")
self._write_claude_memory(claude_dir, "New fact", "Something new")
adapter = ClaudeCodeAdapter(claude_dir)
imported = await sync_import(backend, adapter, "tcms")
assert imported == 1 # Only "Something new"
@pytest.mark.asyncio
async def test_import_preserves_lineage(self, backend, claude_dir):
self._write_claude_memory(claude_dir, "Fact", "Important fact")
adapter = ClaudeCodeAdapter(claude_dir)
await sync_import(backend, adapter, "tcms")
mems = await backend.get_user_memories("tcms")
assert len(mems) == 1
assert mems[0].metadata["source_agent"] == "claude"
assert mems[0].metadata["source_file"] == "fact.md"
assert "content_hash" in mems[0].metadata
assert mems[0].metadata["sync_direction"] == "import"
class TestSyncExport:
"""Test exporting from DB to agent files."""
@pytest.fixture
def backend(self):
return FakeBackend()
@pytest.fixture
def claude_dir(self, tmp_path):
d = tmp_path / "memory"
d.mkdir()
return d
@pytest.mark.asyncio
async def test_export_new_memory_to_claude_files(self, backend, claude_dir):
backend.add_memory(
"Project uses Python 3.12",
metadata={
"source_agent": "codex",
"sync_direction": "export", # Not from claude import
},
)
adapter = ClaudeCodeAdapter(claude_dir)
exported = await sync_export(backend, adapter, "tcms")
assert exported == 1
# Check file was created
md_files = list(claude_dir.glob("headroom_*.md"))
assert len(md_files) == 1
content = md_files[0].read_text()
assert "Python 3.12" in content
assert "headroom_id: mem_0001" in content
assert "source_agent: codex" in content
@pytest.mark.asyncio
async def test_export_skips_claude_originated(self, backend, claude_dir):
"""Don't re-export memories that were imported FROM claude (anti-echo)."""
backend.add_memory(
"From claude",
metadata={
"source_agent": "claude",
"sync_direction": "import",
},
)
backend.add_memory(
"From codex",
metadata={
"source_agent": "codex",
},
)
adapter = ClaudeCodeAdapter(claude_dir)
exported = await sync_export(backend, adapter, "tcms")
assert exported == 1 # Only "From codex"
@pytest.mark.asyncio
async def test_export_updates_memory_md_index(self, backend, claude_dir):
# Create an existing MEMORY.md
(claude_dir / "MEMORY.md").write_text("# Memory\n\n## User\n- Some existing entry\n")
backend.add_memory("New fact from codex", metadata={"source_agent": "codex"})
adapter = ClaudeCodeAdapter(claude_dir)
await sync_export(backend, adapter, "tcms")
memory_md = (claude_dir / "MEMORY.md").read_text()
assert "Headroom Shared Memory" in memory_md
assert "New fact from codex" in memory_md
assert "Some existing entry" in memory_md # Preserved
class TestBidirectionalSync:
"""Test full bidirectional sync."""
@pytest.fixture
def backend(self):
return FakeBackend()
@pytest.fixture
def claude_dir(self, tmp_path):
d = tmp_path / "memory"
d.mkdir()
return d
@pytest.fixture
def state_path(self, tmp_path):
return tmp_path / "sync_state.json"
def _write_claude_memory(self, memory_dir: Path, name: str, content: str) -> None:
slug = name.lower().replace(" ", "_")
fm = f"---\nname: {name}\ndescription: {content[:80]}\ntype: project\n---"
(memory_dir / f"{slug}.md").write_text(f"{fm}\n\n{content}\n")
@pytest.mark.asyncio
async def test_bidirectional_sync(self, backend, claude_dir, state_path):
# Claude has a memory file
self._write_claude_memory(claude_dir, "Convention", "Always use ruff for linting")
# DB has a memory from Codex
backend.add_memory("Secret name is TC", metadata={"source_agent": "codex"})
adapter = ClaudeCodeAdapter(claude_dir)
result = await sync(backend, adapter, "tcms", state_path=state_path, force=True)
assert result.imported == 1 # Claude file → DB
assert result.exported == 1 # Codex memory → Claude file
# Verify DB has both
mems = await backend.get_user_memories("tcms")
contents = {m.content for m in mems}
assert "Always use ruff for linting" in contents
assert "Secret name is TC" in contents
# Verify Claude dir has the exported file
all_files = list(claude_dir.glob("headroom_*.md"))
assert len(all_files) >= 1
exported_content = " ".join(f.read_text() for f in all_files)
assert "TC" in exported_content
@pytest.mark.asyncio
async def test_sync_idempotent(self, backend, claude_dir, state_path):
"""Running sync twice produces no duplicates."""
self._write_claude_memory(claude_dir, "Fact", "Python 3.12 is required")
backend.add_memory("Port 8787 is default", metadata={"source_agent": "codex"})
adapter = ClaudeCodeAdapter(claude_dir)
r1 = await sync(backend, adapter, "tcms", state_path=state_path, force=True)
assert r1.imported == 1
assert r1.exported == 1
r2 = await sync(backend, adapter, "tcms", state_path=state_path, force=True)
assert r2.imported == 0 # Already imported
assert r2.exported == 0 # Already exported
# No duplicates in DB
mems = await backend.get_user_memories("tcms")
assert len(mems) == 2
@pytest.mark.asyncio
async def test_fast_noop_when_unchanged(self, backend, claude_dir, state_path):
"""Second sync with no changes completes in < 10ms."""
self._write_claude_memory(claude_dir, "Fact", "Some fact")
adapter = ClaudeCodeAdapter(claude_dir)
# First sync (populates state)
await sync(backend, adapter, "tcms", state_path=state_path, force=True)
# Second sync (should be fast no-op)
start = time.monotonic()
r = await sync(backend, adapter, "tcms", state_path=state_path)
elapsed = (time.monotonic() - start) * 1000
assert r.imported == 0
assert r.exported == 0
assert elapsed < 50 # Generous threshold for CI
class TestLineageAndGovernance:
"""Test metadata tracking for audit and lineage."""
@pytest.fixture
def backend(self):
return FakeBackend()
@pytest.fixture
def claude_dir(self, tmp_path):
d = tmp_path / "memory"
d.mkdir()
return d
@pytest.mark.asyncio
async def test_lineage_tracks_source_agent(self, backend, claude_dir):
fm = "---\nname: test\ndescription: test\ntype: project\n---"
(claude_dir / "test.md").write_text(f"{fm}\n\nClaude discovered this\n")
adapter = ClaudeCodeAdapter(claude_dir)
await sync_import(backend, adapter, "tcms")
mems = await backend.get_user_memories("tcms")
assert mems[0].metadata["source_agent"] == "claude"
@pytest.mark.asyncio
async def test_exported_files_have_headroom_id(self, backend, claude_dir):
backend.add_memory("From codex", metadata={"source_agent": "codex"})
adapter = ClaudeCodeAdapter(claude_dir)
await sync_export(backend, adapter, "tcms")
md_files = list(claude_dir.glob("headroom_*.md"))
assert len(md_files) == 1
content = md_files[0].read_text()
assert "headroom_id:" in content
@pytest.mark.asyncio
async def test_sync_state_records_timestamps(self, backend, claude_dir, tmp_path):
state_path = tmp_path / "state.json"
fm = "---\nname: t\ndescription: t\ntype: project\n---"
(claude_dir / "t.md").write_text(f"{fm}\n\nFact\n")
adapter = ClaudeCodeAdapter(claude_dir)
await sync(backend, adapter, "tcms", state_path=state_path, force=True)
state = json.loads(state_path.read_text())
key = "claude:tcms"
assert key in state
assert "last_sync" in state[key]
assert "agent_fingerprint" in state[key]
assert "db_fingerprint" in state[key]
# ---------------------------------------------------------------------------
# Claude Code adapter tests
# ---------------------------------------------------------------------------
class TestClaudeCodeAdapter:
"""Test Claude Code adapter read/write."""
@pytest.fixture
def memory_dir(self, tmp_path):
d = tmp_path / "memory"
d.mkdir()
return d
def test_parse_frontmatter(self):
content = "---\nname: Test\ntype: project\n---\n\nBody content here."
fm, body = _parse_frontmatter(content)
assert fm["name"] == "Test"
assert fm["type"] == "project"
assert body == "Body content here."
def test_parse_frontmatter_no_frontmatter(self):
content = "Just plain content."
fm, body = _parse_frontmatter(content)
assert fm == {}
assert body == "Just plain content."
@pytest.mark.asyncio
async def test_read_memories_skips_memory_md(self, memory_dir):
(memory_dir / "MEMORY.md").write_text("# Index\n- entry")
(memory_dir / "fact.md").write_text(
"---\nname: Fact\ntype: project\n---\n\nImportant fact."
)
adapter = ClaudeCodeAdapter(memory_dir)
mems = await adapter.read_memories()
assert len(mems) == 1
assert mems[0].content == "Important fact."
assert mems[0].source_file == "fact.md"
@pytest.mark.asyncio
async def test_write_creates_valid_md(self, memory_dir):
adapter = ClaudeCodeAdapter(memory_dir)
written = await adapter.write_memories(
[
{
"content": "Project uses FastAPI",
"category": "architecture",
"headroom_id": "mem_001",
"source_agent": "codex",
"content_hash": "abc123",
}
]
)
assert written == 1
files = list(memory_dir.glob("headroom_*.md"))
assert len(files) == 1
content = files[0].read_text()
fm, body = _parse_frontmatter(content)
assert fm["type"] == "architecture"
assert fm["headroom_id"] == "mem_001"
assert fm["source_agent"] == "codex"
assert "FastAPI" in body
def test_fingerprint_changes_on_modification(self, memory_dir):
(memory_dir / "test.md").write_text("content 1")
adapter = ClaudeCodeAdapter(memory_dir)
fp1 = adapter.fingerprint()
(memory_dir / "test.md").write_text("content 2")
fp2 = adapter.fingerprint()
assert fp1 != fp2
def test_fingerprint_stable_when_unchanged(self, memory_dir):
(memory_dir / "test.md").write_text("stable content")
adapter = ClaudeCodeAdapter(memory_dir)
assert adapter.fingerprint() == adapter.fingerprint()
def test_fingerprint_empty_dir(self, tmp_path):
empty = tmp_path / "empty"
empty.mkdir()
adapter = ClaudeCodeAdapter(empty)
assert adapter.fingerprint() == "empty"
# ---------------------------------------------------------------------------
# Codex adapter tests
# ---------------------------------------------------------------------------
class TestCodexAdapter:
"""Test Codex AGENTS.md adapter."""
@pytest.fixture
def agents_md(self, tmp_path):
return tmp_path / "AGENTS.md"
@pytest.mark.asyncio
async def test_read_from_agents_md(self, agents_md):
agents_md.write_text(
"# Instructions\n\n"
"<!-- headroom:memory:start -->\n"
"## Headroom Shared Memory\n\n"
"- Secret name is TC\n"
"- Uses Python 3.12\n"
"<!-- headroom:memory:end -->\n"
)
adapter = CodexAdapter(agents_md)
mems = await adapter.read_memories()
assert len(mems) == 2
assert mems[0].content == "Secret name is TC"
assert mems[1].content == "Uses Python 3.12"
@pytest.mark.asyncio
async def test_write_to_agents_md(self, agents_md):
agents_md.write_text("# Existing instructions\n")
adapter = CodexAdapter(agents_md)
written = await adapter.write_memories(
[
{"content": "Port 8787 is default"},
{"content": "Uses ruff for linting"},
]
)
assert written == 2
content = agents_md.read_text()
assert "headroom:memory:start" in content
assert "Port 8787 is default" in content
assert "Uses ruff for linting" in content
assert "Existing instructions" in content # Preserved
@pytest.mark.asyncio
async def test_write_replaces_existing_section(self, agents_md):
agents_md.write_text(
"# Instructions\n\n"
"<!-- headroom:memory:start -->\n"
"## Old\n- old fact\n"
"<!-- headroom:memory:end -->\n"
)
adapter = CodexAdapter(agents_md)
await adapter.write_memories([{"content": "new fact"}])
content = agents_md.read_text()
assert "new fact" in content
assert "old fact" not in content
@pytest.mark.asyncio
async def test_read_empty_agents_md(self, agents_md):
agents_md.write_text("# No memory section\n")
adapter = CodexAdapter(agents_md)
mems = await adapter.read_memories()
assert mems == []
@pytest.mark.asyncio
async def test_read_nonexistent_file(self, tmp_path):
adapter = CodexAdapter(tmp_path / "nonexistent.md")
mems = await adapter.read_memories()
assert mems == []
# ---------------------------------------------------------------------------
# Cross-agent integration tests
# ---------------------------------------------------------------------------
class TestCrossAgentInterop:
"""Test that memories flow between agents via sync."""
@pytest.fixture
def backend(self):
return FakeBackend()
@pytest.fixture
def claude_dir(self, tmp_path):
d = tmp_path / "claude_memory"
d.mkdir()
return d
@pytest.fixture
def agents_md(self, tmp_path):
return tmp_path / "AGENTS.md"
@pytest.fixture
def state_path(self, tmp_path):
return tmp_path / "state.json"
@pytest.mark.asyncio
async def test_codex_saves_claude_finds(self, backend, claude_dir, state_path):
"""Memory saved via Codex MCP appears in Claude's files after sync."""
# Simulate Codex saving via MCP (directly to backend)
backend.add_memory(
"Secret name is TC",
metadata={"source_agent": "codex", "content_hash": "x"},
)
# Sync to Claude
adapter = ClaudeCodeAdapter(claude_dir)
result = await sync(backend, adapter, "tcms", state_path=state_path, force=True)
assert result.exported == 1
# Claude's memory dir should have the file
files = list(claude_dir.glob("headroom_*.md"))
assert len(files) == 1
assert "TC" in files[0].read_text()
@pytest.mark.asyncio
async def test_claude_saves_codex_finds(self, backend, claude_dir, agents_md, state_path):
"""Memory saved in Claude's files appears in Codex AGENTS.md after sync."""
# Claude has a memory
fm = "---\nname: Linting\ndescription: use ruff\ntype: project\n---"
(claude_dir / "linting.md").write_text(f"{fm}\n\nAlways use ruff for linting\n")
# Sync Claude → DB
claude_adapter = ClaudeCodeAdapter(claude_dir)
await sync(backend, claude_adapter, "tcms", state_path=state_path, force=True)
# Sync DB → Codex AGENTS.md
codex_adapter = CodexAdapter(agents_md)
result = await sync(backend, codex_adapter, "tcms", state_path=state_path, force=True)
assert result.exported >= 1
assert "ruff" in agents_md.read_text()
@pytest.mark.asyncio
async def test_full_round_trip(self, backend, claude_dir, agents_md, state_path):
"""Full round trip: Claude → DB → Codex, Codex → DB → Claude."""
# Claude has a memory
fm = "---\nname: Framework\ntype: project\n---"
(claude_dir / "framework.md").write_text(f"{fm}\n\nUses FastAPI\n")
# Codex has a memory (in DB via MCP)
backend.add_memory("Port is 8787", metadata={"source_agent": "codex"})
# Sync both adapters
claude_adapter = ClaudeCodeAdapter(claude_dir)
codex_adapter = CodexAdapter(agents_md)
await sync(backend, claude_adapter, "tcms", state_path=state_path, force=True)
await sync(backend, codex_adapter, "tcms", state_path=state_path, force=True)
# DB has both memories
mems = await backend.get_user_memories("tcms")
contents = {m.content for m in mems}
assert "Uses FastAPI" in contents
assert "Port is 8787" in contents
# Claude files have Codex's memory
all_claude = " ".join(f.read_text() for f in claude_dir.glob("headroom_*.md"))
assert "8787" in all_claude
# AGENTS.md has both (from DB)
agents_content = agents_md.read_text()
assert "FastAPI" in agents_content or "8787" in agents_content
|