mirror of
https://github.com/dnlbauer/cordra-mcp.git
synced 2026-09-11 06:05:29 +00:00
Add new MCP resource cordra://design to retrieve Cordra's central design object containing repository configuration, type definitions, and system settings. - Add CordraClient.get_design() method using /api/objects/design endpoint - Add get_cordra_design() resource handler with proper MCP annotations - Include comprehensive error handling for authentication failures - Document administrative privilege requirements in descriptions - Add complete test coverage for both client and server functionality The design object provides AI systems access to understand the complete data model and configuration structure of a Cordra repository.
486 lines
19 KiB
Python
486 lines
19 KiB
Python
"""Unit tests for the MCP server."""
|
|
|
|
import json
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
import pytest
|
|
|
|
from cordra_mcp.client import (
|
|
CordraAuthenticationError,
|
|
CordraClientError,
|
|
CordraNotFoundError,
|
|
DigitalObject,
|
|
)
|
|
from cordra_mcp.server import get_cordra_design, get_cordra_object, search_objects
|
|
|
|
|
|
@pytest.fixture
|
|
def sample_digital_object():
|
|
"""Create a sample DigitalObject for testing."""
|
|
return DigitalObject(
|
|
id="people/john-doe-123",
|
|
type="Person",
|
|
content={
|
|
"name": "John Doe",
|
|
"birthday": "1990-05-15",
|
|
"email": "john.doe@example.com",
|
|
},
|
|
metadata={"created": "2023-01-01", "modified": "2023-06-15"},
|
|
acl={"read": ["public"], "write": ["admin"]},
|
|
payloads=[
|
|
{
|
|
"name": "profile_photo",
|
|
"filename": "john_doe_profile.jpg",
|
|
"size": 125440,
|
|
"mediaType": "image/jpeg"
|
|
}
|
|
]
|
|
)
|
|
|
|
|
|
class TestGetCordraObject:
|
|
"""Test the get_cordra_object resource handler."""
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_get_object_success(self, mock_client, sample_digital_object):
|
|
"""Test successful object retrieval."""
|
|
mock_client.get_object = AsyncMock(return_value=sample_digital_object)
|
|
|
|
result = await get_cordra_object("people", "john-doe-123")
|
|
|
|
# Verify the result is valid JSON
|
|
parsed_result = json.loads(result)
|
|
assert parsed_result["id"] == "people/john-doe-123"
|
|
assert parsed_result["type"] == "Person"
|
|
assert parsed_result["content"]["name"] == "John Doe"
|
|
assert parsed_result["content"]["birthday"] == "1990-05-15"
|
|
assert parsed_result["metadata"]["created"] == "2023-01-01"
|
|
assert len(parsed_result["payloads"]) == 1
|
|
assert parsed_result["payloads"][0]["name"] == "profile_photo"
|
|
|
|
# Verify the client was called with the correct object ID
|
|
mock_client.get_object.assert_called_once_with("people/john-doe-123")
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_get_object_not_found(self, mock_client):
|
|
"""Test object not found exception."""
|
|
mock_client.get_object = AsyncMock(
|
|
side_effect=CordraNotFoundError("Object not found: people/nonexistent")
|
|
)
|
|
|
|
with pytest.raises(RuntimeError) as exc_info:
|
|
await get_cordra_object("people", "nonexistent")
|
|
|
|
assert "Object not found: people/nonexistent" in str(exc_info.value)
|
|
mock_client.get_object.assert_called_once_with("people/nonexistent")
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_get_object_client_error(self, mock_client):
|
|
"""Test general client error handling."""
|
|
mock_client.get_object = AsyncMock(
|
|
side_effect=CordraClientError("Connection failed")
|
|
)
|
|
|
|
with pytest.raises(RuntimeError) as exc_info:
|
|
await get_cordra_object("people", "john-doe-123")
|
|
|
|
assert "Failed to retrieve object people/john-doe-123" in str(exc_info.value)
|
|
assert "Connection failed" in str(exc_info.value)
|
|
mock_client.get_object.assert_called_once_with("people/john-doe-123")
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_object_id_construction(self, mock_client, sample_digital_object):
|
|
"""Test that object ID is correctly constructed from prefix and suffix."""
|
|
mock_client.get_object = AsyncMock(return_value=sample_digital_object)
|
|
|
|
# Test various prefix/suffix combinations
|
|
test_cases = [
|
|
("people", "john-doe-123", "people/john-doe-123"),
|
|
("documents", "report-2023", "documents/report-2023"),
|
|
("items", "item_with_underscores", "items/item_with_underscores"),
|
|
]
|
|
|
|
for prefix, suffix, expected_id in test_cases:
|
|
await get_cordra_object(prefix, suffix)
|
|
mock_client.get_object.assert_called_with(expected_id)
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_json_formatting(self, mock_client, sample_digital_object):
|
|
"""Test that the returned JSON is properly formatted."""
|
|
mock_client.get_object = AsyncMock(return_value=sample_digital_object)
|
|
|
|
result = await get_cordra_object("people", "john-doe-123")
|
|
|
|
# Verify it's valid JSON with proper indentation
|
|
parsed_result = json.loads(result)
|
|
assert isinstance(parsed_result, dict)
|
|
|
|
# Check that the result contains indentation (pretty-printed)
|
|
assert " " in result # Should have 2-space indentation
|
|
|
|
# Verify all expected fields are present
|
|
assert "id" in parsed_result
|
|
assert "type" in parsed_result
|
|
assert "content" in parsed_result
|
|
assert "metadata" in parsed_result
|
|
assert "acl" in parsed_result
|
|
assert "payloads" in parsed_result
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_minimal_object(self, mock_client):
|
|
"""Test handling of object with minimal data."""
|
|
minimal_object = DigitalObject(
|
|
id="test/minimal",
|
|
type="",
|
|
content={"id": "test/minimal"},
|
|
metadata=None,
|
|
acl=None,
|
|
payloads=None
|
|
)
|
|
mock_client.get_object = AsyncMock(return_value=minimal_object)
|
|
|
|
result = await get_cordra_object("test", "minimal")
|
|
parsed_result = json.loads(result)
|
|
|
|
assert parsed_result["id"] == "test/minimal"
|
|
assert parsed_result["type"] == ""
|
|
assert parsed_result["content"]["id"] == "test/minimal"
|
|
assert parsed_result["metadata"] is None
|
|
assert parsed_result["acl"] is None
|
|
assert parsed_result["payloads"] is None
|
|
|
|
|
|
class TestSchemaResourceFunctions:
|
|
"""Test the schema resource functions."""
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_create_schema_resource_success(self, mock_client):
|
|
"""Test successful schema resource creation."""
|
|
mock_schema = DigitalObject(
|
|
id="test/user-schema",
|
|
type="Schema",
|
|
content={"name": "User", "type": "object", "properties": {}}
|
|
)
|
|
mock_client.get_schema = AsyncMock(return_value=mock_schema)
|
|
|
|
from cordra_mcp.server import create_schema_resource
|
|
result = await create_schema_resource("User")
|
|
|
|
# Verify the result is valid JSON
|
|
parsed_result = json.loads(result)
|
|
assert parsed_result["id"] == "test/user-schema"
|
|
assert parsed_result["type"] == "Schema"
|
|
assert parsed_result["content"]["name"] == "User"
|
|
|
|
# Verify the client was called with correct schema name
|
|
mock_client.get_schema.assert_called_once_with("User")
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_create_schema_resource_not_found(self, mock_client):
|
|
"""Test schema resource creation with schema not found."""
|
|
mock_client.get_schema = AsyncMock(side_effect=CordraNotFoundError("Schema not found"))
|
|
|
|
from cordra_mcp.server import create_schema_resource
|
|
with pytest.raises(RuntimeError) as exc_info:
|
|
await create_schema_resource("NonExistent")
|
|
|
|
assert "Schema not found: NonExistent" in str(exc_info.value)
|
|
mock_client.get_schema.assert_called_once_with("NonExistent")
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_register_schema_resources_success(self, mock_client):
|
|
"""Test successful schema resource registration."""
|
|
mock_schemas = [
|
|
{"content": {"name": "User"}, "id": "test/user-schema"},
|
|
{"content": {"name": "Project"}, "id": "test/project-schema"},
|
|
{"content": {"name": "Document"}, "id": "test/doc-schema"}
|
|
]
|
|
mock_client.find = AsyncMock(return_value=mock_schemas)
|
|
|
|
# Mock the mcp.add_resource method
|
|
with patch('cordra_mcp.server.mcp') as mock_mcp:
|
|
from cordra_mcp.server import register_schema_resources
|
|
await register_schema_resources()
|
|
|
|
# Verify the client was called with correct query
|
|
mock_client.find.assert_called_once_with("type:Schema")
|
|
|
|
# Verify add_resource was called for each schema
|
|
assert mock_mcp.add_resource.call_count == 3
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_register_schema_resources_missing_name(self, mock_client):
|
|
"""Test schema resource registration with objects missing name field."""
|
|
mock_schemas = [
|
|
{"content": {"name": "User"}, "id": "test/user-schema"},
|
|
{"content": {}, "id": "test/no-name-schema"}, # Missing name field
|
|
{"content": {"name": "Project"}, "id": "test/project-schema"}
|
|
]
|
|
mock_client.find = AsyncMock(return_value=mock_schemas)
|
|
|
|
with patch('cordra_mcp.server.mcp') as mock_mcp:
|
|
from cordra_mcp.server import register_schema_resources
|
|
await register_schema_resources()
|
|
|
|
# Only 2 schemas should be registered (those with name field)
|
|
assert mock_mcp.add_resource.call_count == 2
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_register_schema_resources_client_error(self, mock_client):
|
|
"""Test schema resource registration with client error."""
|
|
mock_client.find = AsyncMock(side_effect=CordraClientError("Search failed"))
|
|
|
|
# Should not raise an exception, just log a warning
|
|
from cordra_mcp.server import register_schema_resources
|
|
await register_schema_resources() # Should complete without raising
|
|
|
|
mock_client.find.assert_called_once_with("type:Schema")
|
|
|
|
|
|
class TestSearchObjects:
|
|
"""Test the search_objects tool."""
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
@patch('cordra_mcp.server.config')
|
|
async def test_search_objects_success(self, mock_config, mock_client):
|
|
"""Test successful object search."""
|
|
mock_config.max_search_results = 1000
|
|
mock_results = [
|
|
{"id": "people/john-doe", "type": "Person", "content": {"name": "John Doe"}},
|
|
{"id": "people/jane-smith", "type": "Person", "content": {"name": "Jane Smith"}},
|
|
]
|
|
mock_client.find = AsyncMock(return_value=mock_results)
|
|
|
|
result = await search_objects("name:John")
|
|
|
|
# Verify the result is valid JSON
|
|
parsed_result = json.loads(result)
|
|
assert len(parsed_result) == 2
|
|
assert parsed_result[0]["id"] == "people/john-doe"
|
|
assert parsed_result[1]["id"] == "people/jane-smith"
|
|
|
|
# Verify the client was called with correct parameters
|
|
mock_client.find.assert_called_once_with("name:John", object_type=None, limit=1000)
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
@patch('cordra_mcp.server.config')
|
|
async def test_search_objects_with_type_filter(self, mock_config, mock_client):
|
|
"""Test object search with type filter."""
|
|
mock_config.max_search_results = 1000
|
|
mock_results = [
|
|
{"id": "people/john-doe", "type": "Person", "content": {"name": "John Doe"}},
|
|
]
|
|
mock_client.find = AsyncMock(return_value=mock_results)
|
|
|
|
result = await search_objects("name:John", type="Person")
|
|
|
|
# Verify the result is valid JSON
|
|
parsed_result = json.loads(result)
|
|
assert len(parsed_result) == 1
|
|
assert parsed_result[0]["type"] == "Person"
|
|
|
|
# Verify the client was called with type filter
|
|
mock_client.find.assert_called_once_with("name:John", object_type="Person", limit=1000)
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
@patch('cordra_mcp.server.config')
|
|
async def test_search_objects_with_limit(self, mock_config, mock_client):
|
|
"""Test object search with custom limit."""
|
|
mock_config.max_search_results = 1000
|
|
mock_results = [
|
|
{"id": "people/john-doe", "type": "Person", "content": {"name": "John Doe"}},
|
|
]
|
|
mock_client.find = AsyncMock(return_value=mock_results)
|
|
|
|
result = await search_objects("name:John", limit=50)
|
|
|
|
# Verify the result is valid JSON
|
|
parsed_result = json.loads(result)
|
|
assert len(parsed_result) == 1
|
|
|
|
# Verify the client was called with custom limit
|
|
mock_client.find.assert_called_once_with("name:John", object_type=None, limit=50)
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
@patch('cordra_mcp.server.config')
|
|
async def test_search_objects_with_all_parameters(self, mock_config, mock_client):
|
|
"""Test object search with all parameters."""
|
|
mock_config.max_search_results = 1000
|
|
mock_results = [
|
|
{"id": "documents/report-123", "type": "Document", "content": {"title": "Report"}},
|
|
]
|
|
mock_client.find = AsyncMock(return_value=mock_results)
|
|
|
|
result = await search_objects("title:Report", type="Document", limit=25)
|
|
|
|
# Verify the result is valid JSON
|
|
parsed_result = json.loads(result)
|
|
assert len(parsed_result) == 1
|
|
assert parsed_result[0]["type"] == "Document"
|
|
|
|
# Verify the client was called with all parameters
|
|
mock_client.find.assert_called_once_with("title:Report", object_type="Document", limit=25)
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
@patch('cordra_mcp.server.config')
|
|
async def test_search_objects_empty_results(self, mock_config, mock_client):
|
|
"""Test object search with no results."""
|
|
mock_config.max_search_results = 1000
|
|
mock_client.find = AsyncMock(return_value=[])
|
|
|
|
result = await search_objects("nonexistent:data")
|
|
|
|
# Verify the result is valid JSON with empty array
|
|
parsed_result = json.loads(result)
|
|
assert parsed_result == []
|
|
|
|
mock_client.find.assert_called_once_with("nonexistent:data", object_type=None, limit=1000)
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
@patch('cordra_mcp.server.config')
|
|
async def test_search_objects_client_error(self, mock_config, mock_client):
|
|
"""Test object search with client error."""
|
|
mock_config.max_search_results = 1000
|
|
mock_client.find = AsyncMock(side_effect=CordraClientError("Search failed"))
|
|
|
|
with pytest.raises(RuntimeError) as exc_info:
|
|
await search_objects("test:query")
|
|
|
|
assert "Search failed:" in str(exc_info.value)
|
|
mock_client.find.assert_called_once_with("test:query", object_type=None, limit=1000)
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
@patch('cordra_mcp.server.config')
|
|
async def test_search_objects_value_error(self, mock_config, mock_client):
|
|
"""Test object search with value error."""
|
|
mock_config.max_search_results = 1000
|
|
mock_client.find = AsyncMock(side_effect=ValueError("Invalid query"))
|
|
|
|
with pytest.raises(RuntimeError) as exc_info:
|
|
await search_objects("invalid:query")
|
|
|
|
assert "Invalid search parameters:" in str(exc_info.value)
|
|
mock_client.find.assert_called_once_with("invalid:query", object_type=None, limit=1000)
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
@patch('cordra_mcp.server.config')
|
|
async def test_search_objects_json_formatting(self, mock_config, mock_client):
|
|
"""Test that search results are properly formatted as JSON."""
|
|
mock_config.max_search_results = 1000
|
|
mock_results = [
|
|
{"id": "test/object", "type": "Test", "content": {"data": "value"}},
|
|
]
|
|
mock_client.find = AsyncMock(return_value=mock_results)
|
|
|
|
result = await search_objects("test:query")
|
|
|
|
# Verify it's valid JSON with proper indentation
|
|
parsed_result = json.loads(result)
|
|
assert isinstance(parsed_result, list)
|
|
|
|
# Check that the result contains indentation (pretty-printed)
|
|
assert " " in result # Should have 2-space indentation
|
|
|
|
# Verify the content is correctly formatted
|
|
assert parsed_result[0]["id"] == "test/object"
|
|
assert parsed_result[0]["type"] == "Test"
|
|
assert parsed_result[0]["content"]["data"] == "value"
|
|
|
|
|
|
class TestGetCordraDesign:
|
|
"""Test the get_cordra_design resource handler."""
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_get_design_success(self, mock_client):
|
|
"""Test successful design object retrieval."""
|
|
mock_design = DigitalObject(
|
|
id="design",
|
|
type="CordraDesign",
|
|
content={
|
|
"types": {"User": {}, "Project": {}},
|
|
"workflows": {},
|
|
"systemConfig": {"serverName": "test-cordra"}
|
|
},
|
|
metadata={"created": "2023-01-01", "modified": "2023-06-15"}
|
|
)
|
|
mock_client.get_design = AsyncMock(return_value=mock_design)
|
|
|
|
result = await get_cordra_design()
|
|
|
|
# Verify the result is valid JSON
|
|
parsed_result = json.loads(result)
|
|
assert parsed_result["id"] == "design"
|
|
assert parsed_result["type"] == "CordraDesign"
|
|
assert parsed_result["content"]["systemConfig"]["serverName"] == "test-cordra"
|
|
assert "types" in parsed_result["content"]
|
|
assert "workflows" in parsed_result["content"]
|
|
|
|
# Verify the client was called
|
|
mock_client.get_design.assert_called_once()
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_get_design_not_found(self, mock_client):
|
|
"""Test design object not found exception."""
|
|
mock_client.get_design = AsyncMock(
|
|
side_effect=CordraNotFoundError("Design object not found")
|
|
)
|
|
|
|
with pytest.raises(RuntimeError) as exc_info:
|
|
await get_cordra_design()
|
|
|
|
assert "Design object not found" in str(exc_info.value)
|
|
mock_client.get_design.assert_called_once()
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_get_design_authentication_error(self, mock_client):
|
|
"""Test design object authentication error."""
|
|
mock_client.get_design = AsyncMock(
|
|
side_effect=CordraAuthenticationError("Authentication failed")
|
|
)
|
|
|
|
with pytest.raises(RuntimeError) as exc_info:
|
|
await get_cordra_design()
|
|
|
|
assert "Authentication failed" in str(exc_info.value)
|
|
mock_client.get_design.assert_called_once()
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_get_design_client_error(self, mock_client):
|
|
"""Test design object general client error."""
|
|
mock_client.get_design = AsyncMock(
|
|
side_effect=CordraClientError("Connection failed")
|
|
)
|
|
|
|
with pytest.raises(RuntimeError) as exc_info:
|
|
await get_cordra_design()
|
|
|
|
assert "Failed to retrieve design object" in str(exc_info.value)
|
|
assert "Connection failed" in str(exc_info.value)
|
|
mock_client.get_design.assert_called_once()
|
|
|
|
@patch('cordra_mcp.server.cordra_client')
|
|
async def test_get_design_json_formatting(self, mock_client):
|
|
"""Test that the design object is properly formatted as JSON."""
|
|
mock_design = DigitalObject(
|
|
id="design",
|
|
type="CordraDesign",
|
|
content={"data": "value"},
|
|
metadata={"created": "2023-01-01"}
|
|
)
|
|
mock_client.get_design = AsyncMock(return_value=mock_design)
|
|
|
|
result = await get_cordra_design()
|
|
|
|
# Verify it's valid JSON with proper indentation
|
|
parsed_result = json.loads(result)
|
|
assert isinstance(parsed_result, dict)
|
|
|
|
# Check that the result contains indentation (pretty-printed)
|
|
assert " " in result # Should have 2-space indentation
|
|
|
|
# Verify all expected fields are present
|
|
assert "id" in parsed_result
|
|
assert "type" in parsed_result
|
|
assert "content" in parsed_result
|
|
assert "metadata" in parsed_result
|