Files
wehub-resource-sync c889a57b6b
Test Suites / Build CI Environment (push) Has been cancelled
Test Suites / Basic Tests (push) Has been cancelled
Test Suites / End-to-End Tests (push) Has been cancelled
Test Suites / CLI Tests (push) Has been cancelled
Test Suites / Slow End-to-End Tests (push) Has been cancelled
Test Suites / Graph Database Tests (push) Has been cancelled
Test Suites / Vector DB Tests (push) Has been cancelled
Test Suites / Temporal Graph Test (push) Has been cancelled
Test Suites / Search Test on Different DBs (push) Has been cancelled
Test Suites / Example Tests (push) Has been cancelled
Test Suites / Notebook Tests (push) Has been cancelled
Test Suites / OS and Python Tests Ubuntu (push) Has been cancelled
Test Suites / OS and Python Tests Extended (push) Has been cancelled
Test Suites / LLM Test Suite (push) Has been cancelled
Test Suites / S3 File Storage Test (push) Has been cancelled
Test Suites / Run Integration Tests (push) Has been cancelled
Test Suites / MCP Tests (push) Has been cancelled
Test Suites / Docker Compose Test (push) Has been cancelled
Test Suites / Docker CI test (push) Has been cancelled
Test Suites / Relational DB Migration Tests (push) Has been cancelled
Test Suites / Distributed Cognee Test (push) Has been cancelled
Test Suites / DB Examples Tests (push) Has been cancelled
Test Suites / Test Completion Status (push) Has been cancelled
Test Suites / Claude Code Review (push) Has been cancelled
Test Suites / basic checks (push) Has been cancelled
build | Build and Push Cognee MCP Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
build | Build and Push Docker Image to dockerhub / docker-build-and-push (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.11) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Core Functionality (3.12) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (kuzu, kuzu) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges with Different Graph Databases (neo4j, neo4j) (push) Has been cancelled
Weighted Edges Tests / Test Weighted Edges Examples (push) Has been cancelled
Weighted Edges Tests / Code Quality for Weighted Edges (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:02:24 +08:00

141 lines
4.7 KiB
Python

import pytest
from unittest.mock import AsyncMock, patch
from cognee.tasks.memify.cognify_session import cognify_session
from cognee.exceptions import CogneeValidationError, CogneeSystemError
@pytest.mark.asyncio
async def test_cognify_session_success():
"""Test successful cognification of session data."""
session_data = (
"Session ID: test_session\n\nQuestion: What is AI?\n\nAnswer: AI is artificial intelligence"
)
with (
patch("cognee.add", new_callable=AsyncMock) as mock_add,
patch("cognee.cognify", new_callable=AsyncMock) as mock_cognify,
):
await cognify_session(session_data, dataset_id="123")
mock_add.assert_called_once_with(
session_data,
dataset_id="123",
node_set=["user_sessions_from_cache"],
user=None,
)
mock_cognify.assert_called_once_with(datasets=["123"], user=None)
@pytest.mark.asyncio
async def test_cognify_session_empty_string():
"""Test cognification fails with empty string."""
with pytest.raises(CogneeValidationError) as exc_info:
await cognify_session("")
assert "Session data cannot be empty" in str(exc_info.value)
@pytest.mark.asyncio
async def test_cognify_session_whitespace_string():
"""Test cognification fails with whitespace-only string."""
with pytest.raises(CogneeValidationError) as exc_info:
await cognify_session(" \n\t ")
assert "Session data cannot be empty" in str(exc_info.value)
@pytest.mark.asyncio
async def test_cognify_session_none_data():
"""Test cognification fails with None data."""
with pytest.raises(CogneeValidationError) as exc_info:
await cognify_session(None)
assert "Session data cannot be empty" in str(exc_info.value)
@pytest.mark.asyncio
async def test_cognify_session_add_failure():
"""Test cognification handles cognee.add failure."""
session_data = "Session ID: test\n\nQuestion: test?"
with (
patch("cognee.add", new_callable=AsyncMock) as mock_add,
patch("cognee.cognify", new_callable=AsyncMock),
):
mock_add.side_effect = Exception("Add operation failed")
with pytest.raises(CogneeSystemError) as exc_info:
await cognify_session(session_data)
assert "Failed to cognify session data" in str(exc_info.value)
assert "Add operation failed" in str(exc_info.value)
@pytest.mark.asyncio
async def test_cognify_session_cognify_failure():
"""Test cognification handles cognify failure."""
session_data = "Session ID: test\n\nQuestion: test?"
with (
patch("cognee.add", new_callable=AsyncMock),
patch("cognee.cognify", new_callable=AsyncMock) as mock_cognify,
):
mock_cognify.side_effect = Exception("Cognify operation failed")
with pytest.raises(CogneeSystemError) as exc_info:
await cognify_session(session_data)
assert "Failed to cognify session data" in str(exc_info.value)
assert "Cognify operation failed" in str(exc_info.value)
@pytest.mark.asyncio
async def test_cognify_session_re_raises_validation_error():
"""Test that CogneeValidationError is re-raised as-is."""
with pytest.raises(CogneeValidationError):
await cognify_session("")
@pytest.mark.asyncio
async def test_cognify_session_with_special_characters():
"""Test cognification with special characters."""
session_data = "Session: test™ © Question: What's special? Answer: Cognee is special!"
with (
patch("cognee.add", new_callable=AsyncMock) as mock_add,
patch("cognee.cognify", new_callable=AsyncMock) as mock_cognify,
):
await cognify_session(session_data, dataset_id="123")
mock_add.assert_called_once_with(
session_data,
dataset_id="123",
node_set=["user_sessions_from_cache"],
user=None,
)
mock_cognify.assert_called_once_with(datasets=["123"], user=None)
@pytest.mark.asyncio
async def test_cognify_session_passes_user_to_add_and_cognify():
"""Test user is forwarded to cognee.add/cognee.cognify."""
session_data = (
"Session ID: test_session\n\nQuestion: What is AI?\n\nAnswer: AI is artificial intelligence"
)
user = object()
with (
patch("cognee.add", new_callable=AsyncMock) as mock_add,
patch("cognee.cognify", new_callable=AsyncMock) as mock_cognify,
):
await cognify_session(session_data, dataset_id="123", user=user)
mock_add.assert_called_once_with(
session_data,
dataset_id="123",
node_set=["user_sessions_from_cache"],
user=user,
)
mock_cognify.assert_called_once_with(datasets=["123"], user=user)