Spaces:
Sleeping
Sleeping
File size: 20,366 Bytes
aef804e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 | """
Integration test fixtures for LLM service coverage tests.
Provides BYOK handler fixtures for testing provider routing,
cognitive tier classification, and token counting.
"""
import os
import pytest
from unittest.mock import Mock, patch
from sqlalchemy import create_engine
from sqlalchemy.orm import Session, sessionmaker
from sqlalchemy import pool
import tempfile
# Set TESTING environment variable BEFORE any imports
os.environ["TESTING"] = "1"
# Phase 171: SQLAlchemy conflicts resolved (duplicate models removed from core/models.py)
# No need to mock accounting module anymore
# Add parent directory to path for imports
from pathlib import Path
import sys
sys.path.insert(0, str(Path(__file__).parent.parent.parent.parent))
from core.llm.byok_handler import BYOKHandler
@pytest.fixture(scope="function")
def db_session():
"""
Create a fresh in-memory database for each test.
Simplified version that avoids sorted_tables to prevent NoReferencedTableError
when running multiple tests in sequence.
Uses singleton connection with thread-safe locking for SQLite.
"""
# Use file-based temp SQLite for tests
fd, db_path = tempfile.mkstemp(suffix='.db')
os.close(fd)
# Use pooled connections with check_same_thread=False for SQLite
engine = create_engine(
f"sqlite:///{db_path}",
connect_args={"check_same_thread": False},
poolclass=pool.StaticPool,
echo=False,
pool_pre_ping=True # Verify connections before using
)
# Store path for cleanup
engine._test_db_path = db_path
# Create ONLY the tables we need for governance testing
# This avoids SQLAlchemy mapper configuration issues with unrelated models
from core.database import Base
tables_to_create = [
'users',
'agent_registry',
'agent_feedback',
'hitl_actions',
'chat_sessions',
'chat_messages',
'agent_executions',
'canvas_audit',
'agent_episodes',
'episode_segments',
'episode_access_logs', # Added for episode retrieval tests
'blocked_triggers', # Fixed: was blocked_trigger_contexts
'user_activities',
'agent_proposals',
'supervision_sessions',
'training_sessions',
'supervised_execution_queue', # Added for trigger interceptor tests
]
for table_name in tables_to_create:
if table_name in Base.metadata.tables:
try:
Base.metadata.tables[table_name].create(engine, checkfirst=True)
except Exception as e:
print(f"Warning: Could not create table {table_name}: {e}")
# Create session with expire_on_commit=False to prevent detached instance issues
TestingSessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine, expire_on_commit=False)
session = TestingSessionLocal()
yield session
# Cleanup
session.close()
engine.dispose()
# Delete temp database file
if hasattr(engine, '_test_db_path'):
try:
os.unlink(engine._test_db_path)
except Exception:
pass
@pytest.fixture(scope="function")
def byok_handler(db_session: Session):
"""
Create BYOKHandler instance for testing.
Mocks environment variables for API keys to avoid external dependencies.
Returns handler instance with test workspace_id.
"""
# Mock environment variables for API keys (not actually used in tests)
with patch.dict(os.environ, {
'OPENAI_API_KEY': 'sk-test-openai',
'ANTHROPIC_API_KEY': 'sk-test-anthropic',
'DEEPSEEK_API_KEY': 'sk-test-deepseek',
}):
# Create handler instance
handler = BYOKHandler(workspace_id="test")
yield handler
# Cleanup if needed
if hasattr(handler, 'db_session') and handler.db_session:
try:
handler.db_session.close()
except Exception:
pass
@pytest.fixture(scope="function")
def sample_prompt():
"""Sample prompt for testing."""
return "What is the capital of France?"
@pytest.fixture(scope="function")
def sample_code_prompt():
"""Sample code prompt for testing."""
return "Write a Python function to calculate fibonacci numbers"
@pytest.fixture(scope="function")
def sample_complex_prompt():
"""Sample complex prompt for testing."""
return "Analyze the economic implications of quantum computing on cryptocurrency markets"
# =============================================================================
# Episode Service Fixtures
# =============================================================================
from datetime import datetime, timezone, timedelta
from uuid import uuid4
from core.database import SessionLocal
from core.episode_segmentation_service import EpisodeSegmentationService
from core.episode_retrieval_service import EpisodeRetrievalService
from core.episode_lifecycle_service import EpisodeLifecycleService
from core.models import (
AgentEpisode, # Use AgentEpisode instead of Episode
EpisodeSegment,
ChatSession,
ChatMessage,
CanvasAudit,
AgentFeedback,
AgentRegistry,
User,
)
# Alias for compatibility with service code that imports Episode
Episode = AgentEpisode
@pytest.fixture(scope="function")
def episode_db_session():
"""
Create fresh database session for episode tests.
Uses SessionLocal with automatic rollback to ensure test isolation.
"""
db = SessionLocal()
try:
yield db
finally:
db.rollback()
db.close()
@pytest.fixture(scope="function")
def segmentation_service_mocked(db_session, mock_lancedb_embeddings):
"""
Create EpisodeSegmentationService instance with mocked LanceDB.
Mocks embed_text to return test vectors for semantic similarity testing.
Uses mock_lancedb_embeddings fixture to provide semantic-aware embeddings.
"""
# Mock LLMService and CanvasSummaryService
with patch('core.episode_segmentation_service.LLMService') as mock_llm:
with patch('core.episode_segmentation_service.CanvasSummaryService') as mock_canvas:
with patch('core.episode_segmentation_service.get_lancedb_handler', return_value=mock_lancedb_embeddings):
service = EpisodeSegmentationService(db_session)
service.lancedb = mock_lancedb_embeddings
yield service
@pytest.fixture(scope="function")
def retrieval_service_mocked(db_session):
"""
Create EpisodeRetrievalService instance with mocked LanceDB.
Mocks search to return test episodes for semantic retrieval testing.
"""
# Mock LanceDB handler
mock_lancedb = Mock()
mock_lancedb.search.return_value = [] # Default empty search results
with patch('core.episode_retrieval_service.get_lancedb_handler', return_value=mock_lancedb):
service = EpisodeRetrievalService(db_session)
service.lancedb = mock_lancedb
yield service
@pytest.fixture(scope="function")
def lifecycle_service_mocked(db_session):
"""
Create EpisodeLifecycleService instance with mocked LanceDB.
Mocks archival operations for lifecycle testing.
"""
# Mock LanceDB handler
mock_lancedb = Mock()
mock_lancedb.search.return_value = []
with patch('core.episode_lifecycle_service.get_lancedb_handler', return_value=mock_lancedb):
service = EpisodeLifecycleService(db_session)
service.lancedb = mock_lancedb
yield service
@pytest.fixture(scope="function")
def test_episode(episode_db_session):
"""
Create test episode with segments for integration tests.
Returns Episode instance with:
- user_id, agent_id, started_at
- 3-5 test segments with different types
- Configured metadata for retrieval tests
"""
episode_id = f"test_episode_{uuid4().hex[:8]}"
episode = Episode(
id=episode_id,
agent_id=f"test_agent_{uuid4().hex[:8]}",
tenant_id="default",
task_description="Test episode for integration testing",
maturity_at_time="AUTONOMOUS",
started_at=datetime.now(timezone.utc) - timedelta(hours=2),
completed_at=datetime.now(timezone.utc) - timedelta(hours=1),
topics=["test", "integration"],
entities=["test_entity"],
human_intervention_count=0,
importance_score=0.8,
decay_score=0.0,
access_count=5,
outcome="success",
success=True
)
episode_db_session.add(episode)
episode_db_session.flush()
# Create 3-5 segments
segments_data = [
{
"segment_type": "conversation",
"content": "User: Hello\nAgent: Hi there!",
"content_summary": "Greeting exchange",
},
{
"segment_type": "execution",
"content": "Task: Test execution\nStatus: completed",
"content_summary": "Test task completed",
},
{
"segment_type": "conversation",
"content": "User: Goodbye\nAgent: See you!",
"content_summary": "Closing exchange",
},
{
"segment_type": "reflection",
"content": "Session completed successfully",
"content_summary": "Session reflection",
},
{
"segment_type": "intervention",
"content": "No human interventions needed",
"content_summary": "Autonomous execution",
},
]
for i, segment_data in enumerate(segments_data):
segment = EpisodeSegment(
id=f"segment_{uuid4().hex[:8]}",
episode_id=episode.id,
segment_type=segment_data["segment_type"],
sequence_order=i,
content=segment_data["content"],
content_summary=segment_data["content_summary"],
source_type="test",
source_id=f"source_{i}"
)
episode_db_session.add(segment)
episode_db_session.commit()
episode_db_session.refresh(episode)
return episode
@pytest.fixture(scope="function")
def test_messages(episode_db_session):
"""
Create test ChatMessage instances with timestamps for segmentation testing.
Includes:
- Time gaps (>30min) for time-based segmentation
- Topic changes for semantic segmentation
- Various message types (user, assistant, system)
"""
session_id = f"test_session_{uuid4().hex[:8]}"
base_time = datetime.now(timezone.utc) - timedelta(hours=3)
messages = []
# Messages in first segment (no gaps)
messages.append(ChatMessage(
id=f"msg_{uuid4().hex[:8]}",
conversation_id=session_id,
role="user",
content="Let's discuss Python programming",
created_at=base_time
))
messages.append(ChatMessage(
id=f"msg_{uuid4().hex[:8]}",
conversation_id=session_id,
role="assistant",
content="Python is great for web development",
created_at=base_time + timedelta(minutes=10)
))
# Time gap > 30 minutes (triggers segmentation)
messages.append(ChatMessage(
id=f"msg_{uuid4().hex[:8]}",
conversation_id=session_id,
role="user",
content="Now let's talk about cooking recipes",
created_at=base_time + timedelta(minutes=45) # 35-min gap
))
messages.append(ChatMessage(
id=f"msg_{uuid4().hex[:8]}",
conversation_id=session_id,
role="assistant",
content="I love Italian pasta dishes",
created_at=base_time + timedelta(minutes=50)
))
# Another time gap
messages.append(ChatMessage(
id=f"msg_{uuid4().hex[:8]}",
conversation_id=session_id,
role="system",
content="Session summary generated",
created_at=base_time + timedelta(minutes=90) # 40-min gap
))
# Add all messages to database
for msg in messages:
episode_db_session.add(msg)
episode_db_session.commit()
return messages
@pytest.fixture(scope="function")
def episode_test_user(episode_db_session):
"""Create test user for episode tests."""
user_id = f"test_user_{uuid4().hex[:8]}"
user = User(
id=user_id,
email=f"test_{uuid4().hex[:8]}@example.com",
role="member"
)
episode_db_session.add(user)
episode_db_session.commit()
return user
@pytest.fixture(scope="function")
def episode_test_agent(episode_db_session):
"""Create test agent for episode tests."""
agent_id = f"test_agent_{uuid4().hex[:8]}"
agent = AgentRegistry(
id=agent_id,
name="Test Agent",
status="AUTONOMOUS",
category="testing",
module_path="test.module",
class_name="TestAgent",
description="Test agent for episode service tests",
confidence_score=0.9
)
episode_db_session.add(agent)
episode_db_session.commit()
return agent
@pytest.fixture(scope="function")
def episode_test_session(episode_db_session, episode_test_user):
"""Create test chat session for episode tests."""
session_id = f"test_session_{uuid4().hex[:8]}"
session = ChatSession(
id=session_id,
user_id=episode_test_user.id,
created_at=datetime.now(timezone.utc)
)
episode_db_session.add(session)
episode_db_session.commit()
return session
# =============================================================================
# Governance Service Fixtures
# =============================================================================
from core.agent_governance_service import AgentGovernanceService
from core.governance_cache import GovernanceCache
from core.models import (
AgentRegistry,
AgentStatus,
User,
UserRole,
UserStatus,
Workspace,
)
@pytest.fixture(scope="function")
def governance_cache():
"""
Create a GovernanceCache instance with short TTL for testing.
Uses 1-second TTL to test expiration behavior without long waits.
Yields:
GovernanceCache: Cache instance with short TTL
"""
cache = GovernanceCache(max_size=100, ttl_seconds=1)
yield cache
cache.clear()
@pytest.fixture(scope="function")
def governance_service(db_session: Session):
"""
Create an AgentGovernanceService instance with test database session.
Yields:
AgentGovernanceService: Service instance for testing
"""
service = AgentGovernanceService(db_session)
yield service
@pytest.fixture(scope="function")
def governance_test_agent(db_session: Session):
"""
Factory fixture for creating test agents for governance tests.
Usage:
agent = governance_test_agent(name="Test Agent", status=AgentStatus.INTERN)
agent = governance_test_agent(confidence_score=0.8)
Yields:
callable: Factory function that creates and returns an AgentRegistry
"""
created_agents = []
def _create_agent(
name: str = "Test Agent",
category: str = "Testing",
module_path: str = "test.module",
class_name: str = "TestAgent",
status: AgentStatus = AgentStatus.STUDENT,
confidence_score: float = 0.5,
enabled: bool = True
) -> AgentRegistry:
"""Create a test agent in the database."""
agent = AgentRegistry(
name=name,
description=f"Test agent for {name}",
category=category,
module_path=module_path,
class_name=class_name,
status=status.value if isinstance(status, AgentStatus) else status,
confidence_score=confidence_score,
enabled=enabled,
created_at=datetime.now(timezone.utc)
)
db_session.add(agent)
db_session.commit()
db_session.refresh(agent)
created_agents.append(agent)
return agent
yield _create_agent
# Cleanup is handled by db_session rollback
@pytest.fixture(scope="function")
def governance_test_user(db_session: Session):
"""
Factory fixture for creating test users for governance tests.
Usage:
user = governance_test_user(email="test@example.com")
user = governance_test_user(role=UserRole.ADMIN)
Yields:
callable: Factory function that creates and returns a User
"""
created_users = []
def _create_user(
email: str = "test@example.com",
role: UserRole = UserRole.MEMBER,
specialty: str = None,
reputation: float = 0.5
) -> User:
"""Create a test user in the database."""
user = User(
email=email,
name="Test User",
role=role.value if isinstance(role, UserRole) else role,
status=UserStatus.ACTIVE.value,
specialty=specialty,
reputation_score=reputation,
created_at=datetime.now(timezone.utc)
)
db_session.add(user)
db_session.commit()
db_session.refresh(user)
created_users.append(user)
return user
yield _create_user
# Cleanup is handled by db_session rollback
# =============================================================================
# Fixtures for Backend Gap Closure Tests (Phase 159 Plan 02)
# =============================================================================
@pytest.fixture(scope="function")
def governance_service(db_session: Session):
"""
Create AgentGovernanceService instance for testing.
Provides fresh service instance with database session for
governance, permission checking, and lifecycle tests.
"""
from core.agent_governance_service import AgentGovernanceService
return AgentGovernanceService(db_session)
@pytest.fixture(scope="function")
def mock_lancedb_embeddings():
"""
Mock LanceDB embedding generation with semantic similarity vectors.
Returns vectors that produce predictable similarity scores:
- Same topic: [0.9, 0.1, 0.0] (high similarity)
- Different topic: [0.1, 0.9, 0.0] (low similarity <0.75)
Used for testing topic change detection in episode segmentation.
"""
mock_db = Mock()
mock_db.embed_text = Mock(side_effect=lambda text: (
[0.9, 0.1, 0.0] if "python" in text.lower() or "web" in text.lower()
else [0.1, 0.9, 0.0] # Cooking/topic change
))
mock_db.search = Mock(return_value=[])
mock_db.db = Mock()
mock_db.table_names = Mock(return_value=[])
return mock_db
@pytest.fixture(scope="function")
def retrieval_service(db_session):
"""
Create EpisodeRetrievalService instance with mocked LanceDB.
Mocks vector search operations for testing temporal, semantic,
and contextual retrieval modes.
Uses db_session (same session as test data) to ensure proper isolation.
"""
from core.episode_retrieval_service import EpisodeRetrievalService
mock_lancedb = Mock()
mock_lancedb.search = Mock(return_value=[])
mock_lancedb.db = Mock()
mock_lancedb.table_names = Mock(return_value=[])
with patch('core.episode_retrieval_service.get_lancedb_handler', return_value=mock_lancedb):
service = EpisodeRetrievalService(db_session)
service.lancedb = mock_lancedb
yield service
@pytest.fixture(scope="function")
def lifecycle_service(db_session):
"""
Create EpisodeLifecycleService instance with mocked LanceDB.
Mocks archival and consolidation operations for testing
episode decay, consolidation, and cold storage transitions.
"""
from core.episode_lifecycle_service import EpisodeLifecycleService
mock_lancedb = Mock()
mock_lancedb.search = Mock(return_value=[])
mock_lancedb.db = Mock()
with patch('core.episode_lifecycle_service.get_lancedb_handler', return_value=mock_lancedb):
service = EpisodeLifecycleService(db_session)
service.lancedb = mock_lancedb
yield service
@pytest.fixture(scope="function")
def context_resolver(db_session):
"""
Create AgentContextResolver instance for testing.
Tests cache consistency, concurrent resolution, and
race condition handling during agent context updates.
Uses db_session (same session as test data) to ensure proper isolation.
"""
from core.agent_context_resolver import AgentContextResolver
return AgentContextResolver(db_session)
|