File size: 13,490 Bytes
cc036ff | 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 | """
Integration Tests for API Routes
Comprehensive tests for API endpoints to ensure 80%+ coverage.
Focuses on high-value endpoints, critical workflows, and governance validation.
"""
import pytest
from fastapi.testclient import TestClient
from sqlalchemy.orm import Session
from unittest.mock import Mock, AsyncMock, patch
from datetime import datetime, timedelta
from main_api_app import app
from core.models import AgentRegistry, AgentExecution, User
from tests.factories import AgentFactory
class TestAgentExecutionEndpoints:
"""Test agent execution API endpoints."""
@pytest.fixture
def client(self):
"""Create test client."""
return TestClient(app)
@pytest.fixture
def agent(self, db_session):
"""Create test agent."""
agent = AgentFactory(
name="TestAgent",
status="autonomous"
)
db_session.commit()
return agent
def test_execute_agent_success(self, client, agent):
"""Test successful agent execution."""
response = client.post(
f"/agents/{agent.id}/execute",
json={"message": "Test message"}
)
assert response.status_code in [200, 202]
data = response.json()
assert "execution_id" in data or "status" in data
def test_execute_agent_not_found(self, client):
"""Test execution with non-existent agent."""
response = client.post(
"/agents/nonexistent/execute",
json={"message": "Test"}
)
assert response.status_code == 404
def test_get_agent_status(self, client, agent):
"""Test retrieving agent status."""
response = client.get(f"/agents/{agent.id}")
assert response.status_code == 200
data = response.json()
assert data["id"] == agent.id
assert data["name"] == "TestAgent"
def test_list_agents(self, client):
"""Test listing all agents."""
response = client.get("/agents")
assert response.status_code == 200
data = response.json()
assert isinstance(data, list)
class TestEpisodeEndpoints:
"""Test episode API endpoints."""
@pytest.fixture
def client(self):
"""Create test client."""
return TestClient(app)
@pytest.fixture
def agent(self, db_session):
"""Create test agent."""
agent = AgentFactory(
name="TestAgent",
status="autonomous"
)
db_session.commit()
return agent
def test_create_episode(self, client, agent):
"""Test episode creation."""
response = client.post(
f"/agents/{agent.id}/episodes",
json={
"content": "Test episode content",
"operation_type": "test_operation",
"outcome": "success"
}
)
assert response.status_code in [200, 201]
data = response.json()
assert "episode_id" in data or "id" in data
def test_get_episodes(self, client, agent):
"""Test retrieving episodes."""
response = client.get(f"/agents/{agent.id}/episodes")
assert response.status_code == 200
data = response.json()
assert isinstance(data, list)
def test_search_episodes(self, client, agent):
"""Test semantic episode search."""
response = client.post(
f"/agents/{agent.id}/episodes/search",
json={"query": "test query", "top_k": 10}
)
assert response.status_code in [200, 202]
data = response.json()
assert "results" in data or "episodes" in data
class TestCanvasEndpoints:
"""Test canvas API endpoints."""
@pytest.fixture
def client(self):
"""Create test client."""
return TestClient(app)
@pytest.fixture
def agent(self, db_session):
"""Create test agent."""
agent = AgentFactory(
name="TestAgent",
status="autonomous"
)
db_session.commit()
return agent
def test_create_canvas(self, client, agent):
"""Test canvas creation."""
response = client.post(
f"/agents/{agent.id}/canvas",
json={
"type": "generic",
"title": "Test Canvas",
"content": [{"type": "text", "content": "Test content"}]
}
)
assert response.status_code in [200, 201]
data = response.json()
assert "canvas_id" in data or "id" in data
def test_update_canvas(self, client, agent):
"""Test canvas update."""
# First create a canvas
create_response = client.post(
f"/agents/{agent.id}/canvas",
json={
"type": "generic",
"title": "Test Canvas",
"content": [{"type": "text", "content": "Test content"}]
}
)
canvas_id = create_response.json().get("canvas_id") or create_response.json().get("id")
# Update the canvas
response = client.put(
f"/agents/{agent.id}/canvas/{canvas_id}",
json={"content": [{"type": "text", "content": "Updated content"}]}
)
assert response.status_code == 200
def test_submit_canvas_form(self, client, agent):
"""Test canvas form submission."""
# First create a canvas with a form
create_response = client.post(
f"/agents/{agent.id}/canvas",
json={
"type": "form",
"title": "Test Form",
"content": [{
"type": "form",
"fields": [
{"name": "email", "type": "email", "label": "Email"},
{"name": "message", "type": "text", "label": "Message"}
]
}]
}
)
canvas_id = create_response.json().get("canvas_id") or create_response.json().get("id")
# Submit the form
response = client.post(
f"/agents/{agent.id}/canvas/{canvas_id}/submit",
json={"email": "test@example.com", "message": "Test message"}
)
assert response.status_code in [200, 202]
data = response.json()
assert "submission_id" in data or "success" in data
class TestWorkflowEndpoints:
"""Test workflow API endpoints."""
@pytest.fixture
def client(self):
"""Create test client."""
return TestClient(app)
def test_list_workflows(self, client):
"""Test listing workflows."""
response = client.get("/workflows")
assert response.status_code == 200
data = response.json()
assert isinstance(data, list)
def test_create_workflow(self, client):
"""Test workflow creation."""
response = client.post(
"/workflows",
json={
"name": "Test Workflow",
"description": "Test description",
"steps": [
{"action": "test_action", "params": {}}
]
}
)
assert response.status_code in [200, 201]
data = response.json()
assert "workflow_id" in data or "id" in data
def test_execute_workflow(self, client):
"""Test workflow execution."""
# First create a workflow
create_response = client.post(
"/workflows",
json={
"name": "Test Workflow",
"steps": [
{"action": "test_action", "params": {}}
]
}
)
workflow_id = create_response.json().get("workflow_id") or create_response.json().get("id")
# Execute the workflow
response = client.post(
f"/workflows/{workflow_id}/execute",
json={"inputs": {}}
)
assert response.status_code in [200, 202]
data = response.json()
assert "execution_id" in data or "status" in data
class TestGovernanceEndpoints:
"""Test governance API endpoints."""
@pytest.fixture
def client(self):
"""Create test client."""
return TestClient(app)
@pytest.fixture
def agent(self, db_session):
"""Create test agent."""
agent = AgentFactory(
name="TestAgent",
status="autonomous"
)
db_session.commit()
return agent
def test_check_governance(self, client, agent):
"""Test governance check."""
response = client.post(
f"/agents/{agent.id}/governance/check",
json={
"action": "execute",
"complexity": 3
}
)
assert response.status_code == 200
data = response.json()
assert "allowed" in data or "permitted" in data
def test_get_governance_status(self, client, agent):
"""Test retrieving governance status."""
response = client.get(f"/agents/{agent.id}/governance")
assert response.status_code == 200
data = response.json()
assert "maturity_level" in data or "permissions" in data
class TestHealthEndpoints:
"""Test health check API endpoints."""
@pytest.fixture
def client(self):
"""Create test client."""
return TestClient(app)
def test_health_live(self, client):
"""Test liveness probe endpoint."""
response = client.get("/health/live")
assert response.status_code == 200
data = response.json()
assert "status" in data
assert data["status"] in ["healthy", "alive"] # Accept both values
def test_health_ready(self, client):
"""Test readiness probe endpoint."""
response = client.get("/health/ready")
assert response.status_code in [200, 503]
data = response.json()
assert "status" in data
assert "checks" in data
class TestFeedbackEndpoints:
"""Test feedback API endpoints."""
@pytest.fixture
def client(self):
"""Create test client."""
return TestClient(app)
@pytest.fixture
def agent(self, db_session):
"""Create test agent."""
agent = AgentFactory(
name="TestAgent",
status="autonomous"
)
db_session.commit()
return agent
def test_submit_feedback(self, client, agent):
"""Test feedback submission."""
response = client.post(
f"/agents/{agent.id}/feedback",
json={
"rating": 5,
"comment": "Great job!"
}
)
assert response.status_code in [200, 201]
data = response.json()
assert "feedback_id" in data or "id" in data
def test_get_feedback_analytics(self, client, agent):
"""Test retrieving feedback analytics."""
response = client.get(f"/agents/{agent.id}/feedback/analytics")
assert response.status_code == 200
data = response.json()
assert "analytics" in data or "summary" in data
class TestDeviceCapabilitiesEndpoints:
"""Test device capabilities API endpoints."""
@pytest.fixture
def client(self):
"""Create test client."""
return TestClient(app)
@pytest.fixture
def agent(self, db_session):
"""Create test agent."""
agent = AgentFactory(
name="TestAgent",
status="autonomous"
)
db_session.commit()
return agent
def test_get_device_capabilities(self, client, agent):
"""Test retrieving device capabilities."""
response = client.get(f"/agents/{agent.id}/capabilities")
assert response.status_code == 200
data = response.json()
assert "capabilities" in data or "features" in data
def test_request_camera_access(self, client, agent):
"""Test camera access request."""
response = client.post(
f"/agents/{agent.id}/capabilities/camera",
json={"reason": "Need to capture screenshot"}
)
assert response.status_code in [200, 403] # 403 if not permitted
data = response.json()
assert "permitted" in data or "allowed" in data
class TestBrowserAutomationEndpoints:
"""Test browser automation API endpoints."""
@pytest.fixture
def client(self):
"""Create test client."""
return TestClient(app)
@pytest.fixture
def agent(self, db_session):
"""Create test agent."""
agent = AgentFactory(
name="TestAgent",
status="autonomous"
)
db_session.commit()
return agent
def test_navigate_to_url(self, client, agent):
"""Test browser navigation."""
response = client.post(
f"/agents/{agent.id}/browser/navigate",
json={"url": "https://example.com"}
)
assert response.status_code in [200, 202]
data = response.json()
assert "session_id" in data or "success" in data
def test_take_screenshot(self, client, agent):
"""Test taking screenshot."""
response = client.post(
f"/agents/{agent.id}/browser/screenshot",
json={}
)
assert response.status_code in [200, 202, 403] # 403 if not permitted
data = response.json()
assert "screenshot_id" in data or "success" in data or "error" in data
|