Files
basicmachines-co-basic-memory/tests/mcp/test_tool_view_note.py
2026-04-28 23:05:14 -05:00

225 lines
7.6 KiB
Python

"""Tests for view_note tool that exercise the full stack with SQLite."""
from textwrap import dedent
import pytest
from basic_memory.mcp.tools import write_note, view_note
@pytest.mark.asyncio
async def test_view_note_basic_functionality(app, test_project):
"""Test viewing a note creates an artifact."""
# First create a note
await write_note(
project=test_project.name,
title="Test View Note",
directory="test",
content="# Test View Note\n\nThis is test content for viewing.",
)
# View the note
result = await view_note("Test View Note", project=test_project.name)
# Should contain note retrieval message
assert 'Note retrieved: "Test View Note"' in result
assert "Display this note as a markdown artifact for the user" in result
assert "Content:" in result
assert "---" in result
# Should contain the note content
assert "# Test View Note" in result
assert "This is test content for viewing." in result
@pytest.mark.asyncio
async def test_view_note_with_frontmatter_title(app, test_project):
"""Test viewing a note extracts title from frontmatter."""
# Create note with frontmatter
content = dedent("""
---
title: "Frontmatter Title"
tags: [test]
---
# Frontmatter Title
Content with frontmatter title.
""").strip()
await write_note(
project=test_project.name, title="Frontmatter Title", directory="test", content=content
)
# View the note
result = await view_note("Frontmatter Title", project=test_project.name)
# Should show title in retrieval message
assert 'Note retrieved: "Frontmatter Title"' in result
assert "Display this note as a markdown artifact for the user" in result
@pytest.mark.asyncio
async def test_view_note_with_heading_title(app, test_project):
"""Test viewing a note extracts title from first heading when no frontmatter."""
# Create note with heading but no frontmatter title
content = "# Heading Title\n\nContent with heading title."
await write_note(
project=test_project.name, title="Heading Title", directory="test", content=content
)
# View the note
result = await view_note("Heading Title", project=test_project.name)
# Should show title in retrieval message
assert 'Note retrieved: "Heading Title"' in result
assert "Display this note as a markdown artifact for the user" in result
@pytest.mark.asyncio
async def test_view_note_unicode_content(app, test_project):
"""Test viewing a note with Unicode content."""
content = "# Unicode Test 🚀\n\nThis note has emoji 🎉 and unicode ♠♣♥♦"
await write_note(
project=test_project.name, title="Unicode Test 🚀", directory="test", content=content
)
# View the note
result = await view_note("Unicode Test 🚀", project=test_project.name)
# Should handle Unicode properly
assert "🚀" in result
assert "🎉" in result
assert "♠♣♥♦" in result
assert 'Note retrieved: "Unicode Test 🚀"' in result
@pytest.mark.asyncio
async def test_view_note_by_permalink(app, test_project):
"""Test viewing a note by its permalink."""
await write_note(
project=test_project.name,
title="Permalink Test",
directory="test",
content="Content for permalink test.",
)
# View by permalink
result = await view_note("test/permalink-test", project=test_project.name)
# Should work with permalink
assert 'Note retrieved: "test/permalink-test"' in result
assert "Content for permalink test." in result
assert "Display this note as a markdown artifact for the user" in result
@pytest.mark.asyncio
async def test_view_note_with_memory_url(app, test_project):
"""Test viewing a note using a memory:// URL."""
await write_note(
project=test_project.name,
title="Memory URL Test",
directory="test",
content="Testing memory:// URL handling in view_note",
)
# View with memory:// URL
result = await view_note("memory://test/memory-url-test", project=test_project.name)
# Should work with memory:// URL
assert 'Note retrieved: "memory://test/memory-url-test"' in result
assert "Testing memory:// URL handling in view_note" in result
assert "Display this note as a markdown artifact for the user" in result
@pytest.mark.asyncio
async def test_view_note_not_found(app, test_project):
"""Test viewing a non-existent note returns error without artifact."""
# Try to view non-existent note
result = await view_note("NonExistent Note", project=test_project.name)
# Should return error message without artifact instructions
assert "# Note Not Found" in result
assert "NonExistent Note" in result
assert "Display this note as a markdown artifact" not in result # No artifact for errors
assert "Check Identifier Type" in result
assert "Search Instead" in result
@pytest.mark.asyncio
async def test_view_note_project_parameter(app, test_project):
"""Test viewing a note with project parameter."""
await write_note(
project=test_project.name,
title="Project Test",
directory="test",
content="Content for project test.",
)
# View with explicit project
result = await view_note("Project Test", project=test_project.name)
# Should work with project parameter
assert 'Note retrieved: "Project Test"' in result
assert "Content for project test." in result
assert "Display this note as a markdown artifact for the user" in result
@pytest.mark.asyncio
async def test_view_note_artifact_identifier_unique(app, test_project):
"""Test that different notes are retrieved correctly with unique identifiers."""
# Create two notes
await write_note(
project=test_project.name, title="Note One", directory="test", content="Content one"
)
await write_note(
project=test_project.name, title="Note Two", directory="test", content="Content two"
)
# View both notes
result1 = await view_note("Note One", project=test_project.name)
result2 = await view_note("Note Two", project=test_project.name)
# Should have different note identifiers in retrieval messages
assert 'Note retrieved: "Note One"' in result1
assert 'Note retrieved: "Note Two"' in result2
assert "Content one" in result1
assert "Content two" in result2
@pytest.mark.asyncio
async def test_view_note_fallback_identifier_as_title(app, test_project):
"""Test that view_note uses identifier as title when no title is extractable."""
# Create a note with no clear title structure
await write_note(
project=test_project.name,
title="Simple Note",
directory="test",
content="Just plain content with no headings or frontmatter title",
)
# View the note
result = await view_note("Simple Note", project=test_project.name)
# Should use identifier as title in retrieval message
assert 'Note retrieved: "Simple Note"' in result
assert "Display this note as a markdown artifact for the user" in result
@pytest.mark.asyncio
async def test_view_note_direct_success(app, test_project):
"""Direct permalink lookup should succeed without mocks via the full integration path."""
await write_note(
project=test_project.name,
title="Test Note",
directory="test",
content="# Test Note\n\nThis is a test note.",
)
# This should take the direct permalink path (no title search needed).
result = await view_note("test/test-note", project=test_project.name)
assert 'Note retrieved: "test/test-note"' in result
assert "This is a test note." in result