1
0

cleanup: delete dead modules — ~7,900 lines removed

Closes #22, Closes #23

Deleted: brain/, swarm/, openfang/, paperclip/, cascade_adapter,
memory_migrate, agents/timmy.py, dead routes + all corresponding tests.

Updated pyproject.toml, app.py, loop_qa.py for removed imports.
This commit is contained in:
2026-03-14 09:49:24 -04:00
parent dc13b368a5
commit 2f623826bd
56 changed files with 1254 additions and 8182 deletions

View File

@@ -1,145 +0,0 @@
"""Tests for the Paperclip API routes."""
from unittest.mock import AsyncMock, MagicMock, patch
# ── GET /api/paperclip/status ────────────────────────────────────────────────
def test_status_disabled(client):
"""When paperclip_enabled is False, status returns disabled."""
response = client.get("/api/paperclip/status")
assert response.status_code == 200
data = response.json()
assert data["enabled"] is False
def test_status_enabled(client):
mock_status = MagicMock()
mock_status.model_dump.return_value = {
"enabled": True,
"connected": True,
"paperclip_url": "http://vps:3100",
"company_id": "comp-1",
"agent_count": 3,
"issue_count": 5,
"error": None,
}
mock_bridge = MagicMock()
mock_bridge.get_status = AsyncMock(return_value=mock_status)
with patch("dashboard.routes.paperclip.settings") as mock_settings:
mock_settings.paperclip_enabled = True
with patch.dict("sys.modules", {}):
with patch("integrations.paperclip.bridge.bridge", mock_bridge):
response = client.get("/api/paperclip/status")
assert response.status_code == 200
assert response.json()["connected"] is True
# ── GET /api/paperclip/issues ────────────────────────────────────────────────
def test_list_issues_disabled(client):
response = client.get("/api/paperclip/issues")
assert response.status_code == 200
assert response.json()["enabled"] is False
# ── POST /api/paperclip/issues ───────────────────────────────────────────────
def test_create_issue_disabled(client):
response = client.post(
"/api/paperclip/issues",
json={"title": "Test"},
)
assert response.status_code == 200
assert response.json()["enabled"] is False
def test_create_issue_missing_title(client):
with patch("dashboard.routes.paperclip.settings") as mock_settings:
mock_settings.paperclip_enabled = True
response = client.post(
"/api/paperclip/issues",
json={"description": "No title"},
)
assert response.status_code == 400
assert "title" in response.json()["error"]
# ── POST /api/paperclip/issues/{id}/delegate ─────────────────────────────────
def test_delegate_issue_missing_agent_id(client):
with patch("dashboard.routes.paperclip.settings") as mock_settings:
mock_settings.paperclip_enabled = True
response = client.post(
"/api/paperclip/issues/i1/delegate",
json={"message": "Do this"},
)
assert response.status_code == 400
assert "agent_id" in response.json()["error"]
# ── POST /api/paperclip/issues/{id}/comment ──────────────────────────────────
def test_add_comment_missing_content(client):
with patch("dashboard.routes.paperclip.settings") as mock_settings:
mock_settings.paperclip_enabled = True
response = client.post(
"/api/paperclip/issues/i1/comment",
json={},
)
assert response.status_code == 400
assert "content" in response.json()["error"]
# ── GET /api/paperclip/agents ────────────────────────────────────────────────
def test_list_agents_disabled(client):
response = client.get("/api/paperclip/agents")
assert response.status_code == 200
assert response.json()["enabled"] is False
# ── GET /api/paperclip/goals ─────────────────────────────────────────────────
def test_list_goals_disabled(client):
response = client.get("/api/paperclip/goals")
assert response.status_code == 200
assert response.json()["enabled"] is False
# ── POST /api/paperclip/goals ────────────────────────────────────────────────
def test_create_goal_missing_title(client):
with patch("dashboard.routes.paperclip.settings") as mock_settings:
mock_settings.paperclip_enabled = True
response = client.post(
"/api/paperclip/goals",
json={"description": "No title"},
)
assert response.status_code == 400
assert "title" in response.json()["error"]
# ── GET /api/paperclip/approvals ─────────────────────────────────────────────
def test_list_approvals_disabled(client):
response = client.get("/api/paperclip/approvals")
assert response.status_code == 200
assert response.json()["enabled"] is False
# ── GET /api/paperclip/runs ──────────────────────────────────────────────────
def test_list_runs_disabled(client):
response = client.get("/api/paperclip/runs")
assert response.status_code == 200
assert response.json()["enabled"] is False

View File

@@ -94,23 +94,7 @@ def test_creative_page_returns_200(client):
# ---------------------------------------------------------------------------
def test_swarm_live_page_returns_200(client):
"""GET /swarm/live renders the live dashboard page."""
response = client.get("/swarm/live")
assert response.status_code == 200
def test_swarm_live_websocket_sends_initial_state(client):
"""WebSocket at /swarm/live sends initial_state on connect."""
with client.websocket_connect("/swarm/live") as ws:
data = ws.receive_json()
# First message should be initial_state with swarm data
assert data.get("type") == "initial_state", f"Unexpected WS message: {data}"
payload = data.get("data", {})
assert "agents" in payload
assert "tasks" in payload
assert "auctions" in payload
# Swarm live page tests removed — swarm module deleted.
# ---------------------------------------------------------------------------
@@ -262,9 +246,6 @@ def test_all_dashboard_pages_return_200(client):
"/tasks",
"/briefing",
"/thinking",
"/swarm/mission-control",
"/swarm/live",
"/swarm/events",
"/bugs",
"/tools",
"/lightning/ledger",