Spaces:
Sleeping
Sleeping
File size: 19,107 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 | """
Browser action integration tests (INTG-17).
Tests cover:
- Browser form fill
- Browser click
- Browser scroll
- Browser wait
"""
import pytest
from fastapi.testclient import TestClient
from sqlalchemy.orm import Session
from tests.factories.agent_factory import InternAgentFactory, AutonomousAgentFactory
from unittest.mock import Mock, patch
import uuid
class TestBrowserFormFill:
"""Test browser form filling operations."""
def test_fill_text_input(self, client: TestClient, auth_token: str, db_session: Session):
"""Test filling text input field."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_fill') as mock_fill:
mock_fill.return_value = {
"success": True,
"selector": "#email",
"value": "test@example.com"
}
response = client.post(
f"/api/browser/{session_id}/fill",
json={
"selector": "#email",
"value": "test@example.com"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
# Form fill should succeed
assert response.status_code in [200, 201, 404, 405]
if response.status_code in [200, 201]:
data = response.json()
assert data.get("success") is True
def test_fill_multiple_fields(self, client: TestClient, auth_token: str, db_session: Session):
"""Test filling multiple form fields."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_fill') as mock_fill:
mock_fill.return_value = {
"success": True,
"fields_filled": 3
}
response = client.post(
f"/api/browser/{session_id}/fill",
json={
"fields": [
{"selector": "#name", "value": "Test User"},
{"selector": "#email", "value": "test@example.com"},
{"selector": "#phone", "value": "555-1234"}
]
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_fill_select_dropdown(self, client: TestClient, auth_token: str):
"""Test filling select dropdown."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_fill') as mock_fill:
mock_fill.return_value = {
"success": True,
"selector": "#country",
"value": "US"
}
response = client.post(
f"/api/browser/{session_id}/fill",
json={
"selector": "#country",
"value": "US"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_fill_checkbox(self, client: TestClient, auth_token: str):
"""Test filling checkbox."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_fill') as mock_fill:
mock_fill.return_value = {
"success": True,
"selector": "#agree",
"checked": True
}
response = client.post(
f"/api/browser/{session_id}/fill",
json={
"selector": "#agree",
"checked": True
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_fill_nonexistent_element(self, client: TestClient, auth_token: str):
"""Test filling nonexistent element."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_fill') as mock_fill:
mock_fill.return_value = {
"success": False,
"error": "Element not found"
}
response = client.post(
f"/api/browser/{session_id}/fill",
json={
"selector": "#nonexistent",
"value": "test"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
# Should handle element not found
assert response.status_code in [200, 400, 404, 405]
class TestBrowserClick:
"""Test browser click operations."""
def test_click_element(self, client: TestClient, auth_token: str, db_session: Session):
"""Test clicking element."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_click') as mock_click:
mock_click.return_value = {
"success": True,
"selector": "#submit-button"
}
response = client.post(
f"/api/browser/{session_id}/click",
json={
"selector": "#submit-button"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
# Click should succeed
assert response.status_code in [200, 201, 404, 405]
if response.status_code in [200, 201]:
data = response.json()
assert data.get("success") is True
def test_click_link(self, client: TestClient, auth_token: str):
"""Test clicking link."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_click') as mock_click:
mock_click.return_value = {
"success": True,
"selector": "a[href='/next']",
"navigated": True
}
response = client.post(
f"/api/browser/{session_id}/click",
json={
"selector": "a[href='/next']"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_click_button(self, client: TestClient, auth_token: str):
"""Test clicking button."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_click') as mock_click:
mock_click.return_value = {
"success": True,
"selector": "button[type='submit']"
}
response = client.post(
f"/api/browser/{session_id}/click",
json={
"selector": "button[type='submit']"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_click_with_wait(self, client: TestClient, auth_token: str):
"""Test clicking with wait for navigation."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_click') as mock_click:
mock_click.return_value = {
"success": True,
"waited_for_navigation": True
}
response = client.post(
f"/api/browser/{session_id}/click",
json={
"selector": "#next-button",
"wait_for_navigation": True
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_click_nonexistent_element(self, client: TestClient, auth_token: str):
"""Test clicking nonexistent element."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_click') as mock_click:
mock_click.return_value = {
"success": False,
"error": "Element not found"
}
response = client.post(
f"/api/browser/{session_id}/click",
json={
"selector": "#nonexistent"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
# Should handle element not found
assert response.status_code in [200, 400, 404, 405]
class TestBrowserScroll:
"""Test browser scroll operations."""
def test_scroll_to_element(self, client: TestClient, auth_token: str, db_session: Session):
"""Test scrolling to element."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_scroll') as mock_scroll:
mock_scroll.return_value = {
"success": True,
"selector": "#footer"
}
response = client.post(
f"/api/browser/{session_id}/scroll",
json={
"selector": "#footer"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
# Scroll should succeed
assert response.status_code in [200, 201, 404, 405]
if response.status_code in [200, 201]:
data = response.json()
assert data.get("success") is True
def test_scroll_by_pixels(self, client: TestClient, auth_token: str):
"""Test scrolling by pixels."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_scroll') as mock_scroll:
mock_scroll.return_value = {
"success": True,
"pixels": 500
}
response = client.post(
f"/api/browser/{session_id}/scroll",
json={
"direction": "down",
"pixels": 500
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_scroll_to_top(self, client: TestClient, auth_token: str):
"""Test scrolling to top of page."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_scroll') as mock_scroll:
mock_scroll.return_value = {
"success": True,
"position": "top"
}
response = client.post(
f"/api/browser/{session_id}/scroll",
json={
"position": "top"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_scroll_to_bottom(self, client: TestClient, auth_token: str):
"""Test scrolling to bottom of page."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_scroll') as mock_scroll:
mock_scroll.return_value = {
"success": True,
"position": "bottom"
}
response = client.post(
f"/api/browser/{session_id}/scroll",
json={
"position": "bottom"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
class TestBrowserWait:
"""Test browser wait operations."""
def test_wait_for_element(self, client: TestClient, auth_token: str, db_session: Session):
"""Test waiting for element to appear."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_wait') as mock_wait:
mock_wait.return_value = {
"success": True,
"selector": "#dynamic-content",
"timeout": 5000
}
response = client.post(
f"/api/browser/{session_id}/wait",
json={
"selector": "#dynamic-content",
"timeout": 5000
},
headers={"Authorization": f"Bearer {auth_token}"}
)
# Wait should succeed
assert response.status_code in [200, 201, 404, 405]
if response.status_code in [200, 201]:
data = response.json()
assert data.get("success") is True
def test_wait_for_navigation(self, client: TestClient, auth_token: str):
"""Test waiting for navigation."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_wait') as mock_wait:
mock_wait.return_value = {
"success": True,
"event": "navigation",
"url": "https://example.com/next"
}
response = client.post(
f"/api/browser/{session_id}/wait",
json={
"event": "navigation",
"timeout": 10000
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_wait_for_timeout(self, client: TestClient, auth_token: str):
"""Test fixed timeout wait."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_wait') as mock_wait:
mock_wait.return_value = {
"success": True,
"waited_ms": 3000
}
response = client.post(
f"/api/browser/{session_id}/wait",
json={
"duration_ms": 3000
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert response.status_code in [200, 201, 404, 405]
def test_wait_element_not_found(self, client: TestClient, auth_token: str):
"""Test wait when element doesn't appear."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_wait') as mock_wait:
mock_wait.return_value = {
"success": False,
"error": "Element not found within timeout"
}
response = client.post(
f"/api/browser/{session_id}/wait",
json={
"selector": "#never-appears",
"timeout": 5000
},
headers={"Authorization": f"Bearer {auth_token}"}
)
# Should handle timeout
assert response.status_code in [200, 400, 404, 405]
class TestBrowserComplexActions:
"""Test complex browser action sequences."""
def test_fill_and_submit_form(self, client: TestClient, auth_token: str, db_session: Session):
"""Test filling and submitting form."""
session_id = str(uuid.uuid4())
# Fill form
with patch('api.browser_routes.browser_fill') as mock_fill:
mock_fill.return_value = {"success": True}
fill_response = client.post(
f"/api/browser/{session_id}/fill",
json={
"selector": "#email",
"value": "test@example.com"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert fill_response.status_code in [200, 201, 404, 405]
# Submit form
with patch('api.browser_routes.browser_click') as mock_click:
mock_click.return_value = {"success": True}
click_response = client.post(
f"/api/browser/{session_id}/click",
json={
"selector": "#submit-button"
},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert click_response.status_code in [200, 201, 404, 405]
def test_navigate_scroll_screenshot(self, client: TestClient, auth_token: str, db_session: Session):
"""Test navigate, scroll, and screenshot sequence."""
session_id = str(uuid.uuid4())
# Navigate
with patch('api.browser_routes.browser_navigate') as mock_navigate:
mock_navigate.return_value = {"success": True}
nav_response = client.post(
f"/api/browser/{session_id}/navigate",
json={"url": "https://example.com"},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert nav_response.status_code in [200, 404, 405]
# Scroll
with patch('api.browser_routes.browser_scroll') as mock_scroll:
mock_scroll.return_value = {"success": True}
scroll_response = client.post(
f"/api/browser/{session_id}/scroll",
json={"position": "bottom"},
headers={"Authorization": f"Bearer {auth_token}"}
)
assert scroll_response.status_code in [200, 201, 404, 405]
# Screenshot
with patch('api.browser_routes.browser_screenshot') as mock_screenshot:
mock_screenshot.return_value = {"success": True, "screenshot": "base64"}
screenshot_response = client.post(
f"/api/browser/{session_id}/screenshot",
headers={"Authorization": f"Bearer {auth_token}"}
)
assert screenshot_response.status_code in [200, 201, 404, 405]
class TestBrowserActionErrors:
"""Test browser action error handling."""
def test_action_with_invalid_session(self, client: TestClient, auth_token: str):
"""Test action with invalid session ID."""
fake_session_id = str(uuid.uuid4())
response = client.post(
f"/api/browser/{fake_session_id}/click",
json={"selector": "#button"},
headers={"Authorization": f"Bearer {auth_token}"}
)
# Should return error for invalid session
assert response.status_code in [404, 400, 405]
def test_action_timeout(self, client: TestClient, auth_token: str):
"""Test action timeout handling."""
session_id = str(uuid.uuid4())
with patch('api.browser_routes.browser_wait') as mock_wait:
mock_wait.side_effect = TimeoutError("Action timeout")
response = client.post(
f"/api/browser/{session_id}/wait",
json={"selector": "#slow-element", "timeout": 1000},
headers={"Authorization": f"Bearer {auth_token}"}
)
# Should handle timeout gracefully
assert response.status_code in [200, 408, 500, 404, 405]
def test_action_with_missing_selector(self, client: TestClient, auth_token: str):
"""Test action without required selector."""
session_id = str(uuid.uuid4())
response = client.post(
f"/api/browser/{session_id}/click",
json={}, # Missing selector
headers={"Authorization": f"Bearer {auth_token}"}
)
# Should validate required parameters
assert response.status_code in [400, 422, 404, 405]
|