Files
microfish/backend/tests/test_local_graph_memory_updater.py
Kunthawat Greethong 8b84378fe1 feat: SaaS foundation for CrowdSight
Elevate MiroFish/CrowdSight from single-container dev to a SaaS foundation:

- Local memory backend (Zep-compatible): memory services/models, local graph
  builder + updater, AgentActivity seam, import-boundary isolation; Zep stays
  default, local is opt-in behind MEMORY_BACKEND. Semantic parity not yet proven.
- Durable product persistence: projects/simulations/reports schema (migration
  0007) + tenant/owner-scoped ProductRepository + dual-write + scoped_project
  read-first + ArtifactStore abstraction; durable JobQueue + worker.py.
- SaaS hardening: durable RateLimiter (wired to login), UsageService (LLM
  accounting), redacted AuditService, idempotency, CORS allowlist, safe API
  errors, single-use PasswordResetService + endpoints (covers invite-pending).
- Exactly 3 roles (super_admin/admin/user) with tenant authz policy.
- Admin UI: GET/POST/PATCH /api/admin/users + GET/PUT /api/admin/settings
  (super-admin only, encrypted/masked); AdminView.vue + SettingsView.vue with
  admin/super-admin route guards, th/en i18n.
- Production deploy topology: multi-stage Dockerfile (frontend build + gunicorn
  wsgi + nginx SPA-proxy + supervisord worker), backend/wsgi.py, gunicorn dep.

Backend 197 passed; frontend 10 tests + build green. ruff unavailable (gap).
No commit of credentials; secrets handled via env/.env.example.
Deferred: Zep semantic A/B parity, object storage cutover, mobile QA, EasyPanel
container build of deploy topology.
2026-08-31 13:05:21 +07:00

51 lines
1.6 KiB
Python

from datetime import datetime, timezone
from sqlalchemy import create_engine, select
from app.db import Base, create_session_factory
from app.models.memory import MemoryEpisode, MemoryGraph
from app.services.local_graph_memory_updater import LocalGraphMemoryUpdater
from app.services.memory_activity import AgentActivity
def test_local_graph_memory_updater_persists_scoped_activity_episode():
engine = create_engine("sqlite+pysqlite:///:memory:")
Base.metadata.create_all(engine)
session_factory = create_session_factory(engine)
try:
with session_factory() as session:
session.add(
MemoryGraph(
id="graph-runtime",
organization_id="org-a",
project_id="project-a",
)
)
session.commit()
updater = LocalGraphMemoryUpdater(
simulation_id="sim-runtime",
graph_id="graph-runtime",
organization_id="org-a",
session_factory=session_factory,
)
updater.start()
updater.add_activity(
AgentActivity(
platform="twitter",
agent_id=7,
agent_name="Alice",
action_type="CREATE_POST",
action_args={"content": "Local memory is durable."},
round_num=2,
timestamp=datetime.now(timezone.utc).isoformat(),
)
)
updater.stop()
with session_factory() as session:
episodes = list(session.scalars(select(MemoryEpisode)))
assert len(episodes) == 1
finally:
engine.dispose()