CI & Build / Python lint (push) Successful in 4s
CI & Build / Plugin hooks (push) Successful in 8s
CI & Build / integration (push) Successful in 29s
CI & Build / TypeScript typecheck (push) Successful in 38s
CI & Build / Python tests (push) Successful in 1m15s
CI & Build / Build & push image (push) Successful in 36s
CI caught the naming work reaching for Postgres from the unit lane, and the connection error was the symptom of a real design fault rather than a test gap: reading the title BEFORE the delete put a live query on the delete path, so a lookup that failed would have stopped the delete happening. That is a decoration breaking its payload — the same mistake just fixed in rules_etag, made again two commits later. Every title lookup now fails open: delete_task, delete_note, delete_milestone, delete_snippet and rule_history lose the name, never the operation. The five unit tests mock the lookup rather than reaching for a database, and delete_note gains one asserting the delete still happens when the lookup raises — the behaviour, not just the absence of a crash. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
341 lines
13 KiB
Python
341 lines
13 KiB
Python
"""Tests for fable_*_note tools."""
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
import pytest
|
|
|
|
from scribe.mcp.tools.notes import (
|
|
list_notes, get_note, create_note,
|
|
update_note, delete_note,
|
|
)
|
|
from tests.helpers import fake_note
|
|
|
|
|
|
pytestmark = pytest.mark.usefixtures("_bind_user")
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _no_supersession():
|
|
"""Every note read/write now asks for its supersession relations (#278).
|
|
|
|
These are unit tests of the TOOL layer and this job has no database — the
|
|
same hazard the `_fake_note` comment below records for note 2109. Stubbed
|
|
to "no relations", which is the state of essentially every note; the
|
|
relation's own behaviour is covered in test_services_supersession.py, and
|
|
the attachment is covered explicitly below.
|
|
"""
|
|
with patch("scribe.mcp.tools.notes.supersession_svc.get_relations",
|
|
AsyncMock(return_value={"supersedes": [], "superseded_by": []})):
|
|
yield
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_note_blocked_by_duplicate_gate():
|
|
from scribe.services.dedup import DuplicateMatch
|
|
dup = DuplicateMatch(id=88, title="Embeddings notes", similarity=0.94, reason="semantic")
|
|
create_mock = AsyncMock()
|
|
with patch("scribe.mcp.tools.notes.dedup_svc.find_duplicate_note",
|
|
AsyncMock(return_value=dup)), \
|
|
patch("scribe.mcp.tools.notes.notes_svc.create_note", create_mock):
|
|
out = await create_note(title="embeddings", body="notes about embeddings")
|
|
assert out["duplicate"] is True
|
|
assert out["existing_id"] == 88
|
|
assert out["match"] == "semantic"
|
|
create_mock.assert_not_called()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_note_force_bypasses_duplicate_gate():
|
|
find_mock = AsyncMock()
|
|
with patch("scribe.mcp.tools.notes.dedup_svc.find_duplicate_note", find_mock), \
|
|
patch("scribe.mcp.tools.notes.notes_svc.create_note",
|
|
AsyncMock(return_value=fake_note(id=3))):
|
|
out = await create_note(title="dup", force=True)
|
|
assert out["id"] == 3
|
|
find_mock.assert_not_called()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_notes_repackages_tuple_into_dict():
|
|
rows = [fake_note(id=1), fake_note(id=2)]
|
|
with patch(
|
|
"scribe.mcp.tools.notes.notes_svc.list_notes",
|
|
AsyncMock(return_value=(rows, 2)),
|
|
):
|
|
out = await list_notes()
|
|
assert out["total"] == 2
|
|
assert len(out["notes"]) == 2
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_notes_passes_is_task_false():
|
|
mock = AsyncMock(return_value=([], 0))
|
|
with patch("scribe.mcp.tools.notes.notes_svc.list_notes", mock):
|
|
await list_notes()
|
|
assert mock.call_args.kwargs["is_task"] is False
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_notes_tag_filter_maps_to_list():
|
|
"""The single-tag string param maps to a one-element list at the service layer."""
|
|
mock = AsyncMock(return_value=([], 0))
|
|
with patch("scribe.mcp.tools.notes.notes_svc.list_notes", mock):
|
|
await list_notes(tag="ops")
|
|
assert mock.call_args.kwargs["tags"] == ["ops"]
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_notes_empty_tag_means_no_filter():
|
|
mock = AsyncMock(return_value=([], 0))
|
|
with patch("scribe.mcp.tools.notes.notes_svc.list_notes", mock):
|
|
await list_notes(tag="")
|
|
assert mock.call_args.kwargs["tags"] is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_notes_search_text_maps_to_q():
|
|
mock = AsyncMock(return_value=([], 0))
|
|
with patch("scribe.mcp.tools.notes.notes_svc.list_notes", mock):
|
|
await list_notes(search_text="kafka")
|
|
assert mock.call_args.kwargs["q"] == "kafka"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_notes_limit_clamped():
|
|
mock = AsyncMock(return_value=([], 0))
|
|
with patch("scribe.mcp.tools.notes.notes_svc.list_notes", mock):
|
|
await list_notes(limit=9999)
|
|
assert mock.call_args.kwargs["limit"] == 100
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_note_returns_dict():
|
|
fake = fake_note(id=5, title="found")
|
|
with patch(
|
|
"scribe.mcp.tools.notes.notes_svc.get_note_for_user",
|
|
AsyncMock(return_value=(fake, "owner")),
|
|
):
|
|
out = await get_note(note_id=5)
|
|
assert out["id"] == 5
|
|
assert out["title"] == "found"
|
|
# Own record: no provenance noise.
|
|
assert "shared" not in out
|
|
# No supersession relations: both keys ABSENT, not present-and-empty. A
|
|
# field that always says nothing trains readers to skip fields (#2483).
|
|
assert "supersedes" not in out
|
|
assert "superseded_by" not in out
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_note_warns_in_words_when_a_later_note_overtook_it():
|
|
"""The label is the point, not the ids.
|
|
|
|
A superseded record still surfaces — supersession demotes, it never hides —
|
|
so an agent WILL read stale material. Handing it over with only a numeric
|
|
field to notice would be worse than not surfacing it, because the reader
|
|
acts on it confidently either way.
|
|
"""
|
|
fake = fake_note(id=5, title="June's answer")
|
|
with patch("scribe.mcp.tools.notes.notes_svc.get_note_for_user",
|
|
AsyncMock(return_value=(fake, "owner"))), \
|
|
patch("scribe.mcp.tools.notes.supersession_svc.get_relations",
|
|
AsyncMock(return_value={"supersedes": [], "superseded_by": [9]})):
|
|
out = await get_note(note_id=5)
|
|
assert out["superseded_by"] == [9]
|
|
assert "superseded_note" in out
|
|
assert "before acting" in out["superseded_note"]
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_note_opens_a_shared_record_and_says_whose_it_is():
|
|
"""The injected menu tells the agent to open any hit with get_note(id), and
|
|
that menu can list a collaborator's note reached through a shared project.
|
|
An owner-only fetch would answer "not found" for a record the agent was just
|
|
handed — and the web UI opens the same note fine."""
|
|
theirs = fake_note(id=5, title="Their note", user_id=9)
|
|
with patch(
|
|
"scribe.mcp.tools.notes.notes_svc.get_note_for_user",
|
|
AsyncMock(return_value=(theirs, "viewer")),
|
|
), patch(
|
|
"scribe.services.access.describe_provenance",
|
|
AsyncMock(return_value={"shared": True, "owner": "alex",
|
|
"permission": "viewer"}),
|
|
):
|
|
out = await get_note(note_id=5)
|
|
assert out["shared"] is True
|
|
assert out["owner"] == "alex"
|
|
assert out["permission"] == "viewer"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_note_raises_when_not_found():
|
|
with patch(
|
|
"scribe.mcp.tools.notes.notes_svc.get_note_for_user",
|
|
AsyncMock(return_value=None),
|
|
):
|
|
with pytest.raises(ValueError, match="note 999 not found"):
|
|
await get_note(note_id=999)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_note_treats_a_trashed_note_as_missing():
|
|
"""get_note_for_user resolves permission, not liveness — the trash filter is
|
|
the caller's to apply."""
|
|
trashed = fake_note(id=5)
|
|
trashed.deleted_at = "2026-07-01T00:00:00Z"
|
|
with patch(
|
|
"scribe.mcp.tools.notes.notes_svc.get_note_for_user",
|
|
AsyncMock(return_value=(trashed, "owner")),
|
|
):
|
|
with pytest.raises(ValueError, match="note 5 not found"):
|
|
await get_note(note_id=5)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_note_passes_through():
|
|
fake = fake_note(id=10, title="new")
|
|
mock = AsyncMock(return_value=fake)
|
|
with patch("scribe.mcp.tools.notes.notes_svc.create_note", mock):
|
|
out = await create_note(title="new", body="x", tags=["a"], project_id=5)
|
|
assert out["id"] == 10
|
|
assert mock.call_args.kwargs["title"] == "new"
|
|
assert mock.call_args.kwargs["project_id"] == 5
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_note_project_zero_becomes_none():
|
|
"""project_id=0 sentinel must become None at the service layer (orphan note)."""
|
|
fake = fake_note()
|
|
mock = AsyncMock(return_value=fake)
|
|
with patch("scribe.mcp.tools.notes.notes_svc.create_note", mock):
|
|
await create_note(title="t", project_id=0)
|
|
assert mock.call_args.kwargs["project_id"] is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_update_note_only_sends_non_default_fields():
|
|
"""Omitted (default) fields must NOT reach the service — otherwise they'd
|
|
overwrite real data with empty strings.
|
|
|
|
`clear` is always forwarded and is not a field: it is how this door says
|
|
"unset these", and an empty one says "unset nothing". Same shape the rules
|
|
door took in #3096, and the same test that had to learn about it there."""
|
|
fake = fake_note()
|
|
mock = AsyncMock(return_value=fake)
|
|
with patch("scribe.mcp.tools.notes.notes_svc.update_note", mock):
|
|
await update_note(note_id=1, title="new title")
|
|
args, kwargs = mock.call_args
|
|
assert args == (7, 1)
|
|
assert kwargs.pop("clear") == (), "nothing was asked to be cleared"
|
|
assert kwargs == {"title": "new title"}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_update_note_forwards_a_check_but_not_an_empty_one():
|
|
""""" means "leave this alone" at this door — an agent updating a body must
|
|
not wipe a check it was never asked about (milestone 317)."""
|
|
mock = AsyncMock(return_value=fake_note())
|
|
with patch("scribe.mcp.tools.notes.notes_svc.update_note", mock):
|
|
await update_note(note_id=1, verify_with="curl the docs")
|
|
assert mock.call_args.kwargs["verify_with"] == "curl the docs"
|
|
|
|
with patch("scribe.mcp.tools.notes.notes_svc.update_note", mock):
|
|
await update_note(note_id=1, title="t")
|
|
assert "verify_with" not in mock.call_args.kwargs
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_update_note_forwards_clear_so_a_check_can_be_removed():
|
|
"""The only way to unset a field at a door where "" means "leave alone"."""
|
|
mock = AsyncMock(return_value=fake_note())
|
|
with patch("scribe.mcp.tools.notes.notes_svc.update_note", mock):
|
|
await update_note(note_id=1, clear=["verify_with"])
|
|
assert mock.call_args.kwargs["clear"] == ["verify_with"]
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_note_forwards_the_check_fields():
|
|
mock = AsyncMock(return_value=fake_note())
|
|
with patch("scribe.mcp.tools.notes.notes_svc.create_note", mock):
|
|
await create_note(title="t", verify_with="curl", expires_when="AMO changes")
|
|
assert mock.call_args.kwargs["verify_with"] == "curl"
|
|
assert mock.call_args.kwargs["expires_when"] == "AMO changes"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_update_note_empty_tags_clears_explicitly():
|
|
"""tags=[] is an explicit clear, distinct from tags=None (omit)."""
|
|
fake = fake_note()
|
|
mock = AsyncMock(return_value=fake)
|
|
with patch("scribe.mcp.tools.notes.notes_svc.update_note", mock):
|
|
await update_note(note_id=1, tags=[])
|
|
kwargs = dict(mock.call_args.kwargs)
|
|
kwargs.pop("clear")
|
|
assert kwargs == {"tags": []}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_update_note_tags_none_means_omit():
|
|
fake = fake_note()
|
|
mock = AsyncMock(return_value=fake)
|
|
with patch("scribe.mcp.tools.notes.notes_svc.update_note", mock):
|
|
await update_note(note_id=1, tags=None)
|
|
assert "tags" not in mock.call_args.kwargs
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_update_note_raises_when_not_found():
|
|
with patch(
|
|
"scribe.mcp.tools.notes.notes_svc.update_note",
|
|
AsyncMock(return_value=None),
|
|
):
|
|
with pytest.raises(ValueError, match="note 999 not found"):
|
|
await update_note(note_id=999, title="x")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_delete_note_soft_deletes_and_returns_batch():
|
|
doomed = MagicMock()
|
|
doomed.title = "the note that went"
|
|
with patch(
|
|
"scribe.mcp.tools.notes.trash_svc.delete",
|
|
AsyncMock(return_value="batch-1"),
|
|
), patch(
|
|
"scribe.mcp.tools.notes.notes_svc.get_note_for_user",
|
|
AsyncMock(return_value=(doomed, "owner")),
|
|
):
|
|
result = await delete_note(note_id=7)
|
|
assert result["deleted_batch_id"] == "batch-1"
|
|
# The confirmation NAMES what went (#3273). After the delete the row is
|
|
# trashed, so this line is the last chance to say which note it was.
|
|
assert result["title"] == "the note that went"
|
|
assert "the note that went" in result["message"]
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_delete_note_still_deletes_when_the_title_lookup_fails():
|
|
"""The title is a courtesy on top of the delete, never a precondition for
|
|
it. A lookup that errors costs the name, not the operation."""
|
|
with patch(
|
|
"scribe.mcp.tools.notes.trash_svc.delete",
|
|
AsyncMock(return_value="batch-1"),
|
|
), patch(
|
|
"scribe.mcp.tools.notes.notes_svc.get_note_for_user",
|
|
AsyncMock(side_effect=RuntimeError("database down")),
|
|
):
|
|
result = await delete_note(note_id=7)
|
|
assert result["deleted_batch_id"] == "batch-1"
|
|
assert result["title"] == ""
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_delete_note_raises_when_not_found():
|
|
with patch(
|
|
"scribe.mcp.tools.notes.trash_svc.delete",
|
|
AsyncMock(return_value=None),
|
|
), patch(
|
|
"scribe.mcp.tools.notes.notes_svc.get_note_for_user",
|
|
AsyncMock(return_value=None),
|
|
):
|
|
with pytest.raises(ValueError, match="note 999 not found"):
|
|
await delete_note(note_id=999)
|