first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled

This commit is contained in:
2026-03-17 16:22:57 +03:30
commit 3d5eaf9445
15349 changed files with 2847338 additions and 0 deletions
@@ -0,0 +1,190 @@
import asyncio
import json
from collections.abc import Callable
from dataclasses import dataclass
from typing import Any
from aiohttp import web, web_ws
from src.nanoid import nanoid
from tests.fixtures.test_constants import (
TASK_RESPONSE_WAIT,
LOCAL_TASK_BROKER_WS_PATH,
)
TaskId = str
TaskSettings = dict[str, Any]
WebsocketMessage = dict[str, Any]
@dataclass
class ActiveTask:
settings: TaskSettings
class LocalTaskBroker:
def __init__(self):
self.port: int | None = None
self.app = web.Application()
self.runner: web.AppRunner | None = None
self.site: web.TCPSite | None = None
self.connections: dict[str, web_ws.WebSocketResponse] = {}
self.pending_messages: dict[str, asyncio.Queue[WebsocketMessage]] = {}
self.received_messages: list[WebsocketMessage] = []
self.active_tasks: dict[TaskId, ActiveTask] = {}
self.task_settings: dict[TaskId, TaskSettings] = {}
self.rpc_messages: dict[TaskId, list[dict]] = {}
self.app.router.add_get(LOCAL_TASK_BROKER_WS_PATH, self.websocket_handler)
async def start(self) -> None:
self.runner = web.AppRunner(self.app)
await self.runner.setup()
self.site = web.TCPSite(self.runner, "localhost", 0)
await self.site.start()
assert self.site._server is not None
self.port = self.site._server.sockets[0].getsockname()[1]
print(f"Local task broker started on port {self.port}")
def get_url(self) -> str:
return f"http://localhost:{self.port}"
async def stop(self) -> None:
for ws in self.connections.values():
await ws.close()
self.connections.clear()
if self.site:
await self.site.stop()
if self.runner:
await self.runner.cleanup()
async def websocket_handler(self, request: web.Request) -> web_ws.WebSocketResponse:
print(f"WebSocket connection request from {request.remote}")
ws = web_ws.WebSocketResponse()
await ws.prepare(request)
connection_id = nanoid()
self.connections[connection_id] = ws
self.pending_messages[connection_id] = asyncio.Queue()
sender_coroutine = asyncio.create_task(self._message_sender(connection_id, ws))
try:
await self.send_to_connection(connection_id, {"type": "broker:inforequest"})
async for message in ws:
if message.type == web_ws.WSMsgType.TEXT:
json_message = json.loads(message.data)
self.received_messages.append(json_message)
await self._handle_message(connection_id, json_message)
finally:
sender_coroutine.cancel()
try:
await sender_coroutine
except asyncio.CancelledError:
pass
del self.connections[connection_id]
del self.pending_messages[connection_id]
return ws
async def _message_sender(self, connection_id: str, ws: web_ws.WebSocketResponse):
while True:
message = await self.pending_messages[connection_id].get()
await ws.send_str(json.dumps(message))
async def _handle_message(self, connection_id: str, message: WebsocketMessage):
match message.get("type"):
case "runner:info":
await self.send_to_connection(
connection_id, {"type": "broker:runnerregistered"}
)
case "runner:taskoffer":
pass # Handled by send_task() which waits for them
case "runner:taskaccepted":
task_id = message.get("taskId")
if task_id in self.task_settings:
await self.send_to_connection(
connection_id,
{
"type": "broker:tasksettings",
"taskId": task_id,
"settings": self.task_settings[task_id],
},
)
case "runner:taskdone" | "runner:taskerror":
task_id = message.get("taskId")
if task_id in self.active_tasks:
del self.active_tasks[task_id]
case "runner:rpc":
task_id = message.get("taskId")
if task_id:
if task_id not in self.rpc_messages:
self.rpc_messages[task_id] = []
self.rpc_messages[task_id].append(
{"method": message.get("name"), "params": message.get("params")}
)
async def send_to_connection(self, connection_id: str, message: WebsocketMessage):
if connection_id in self.pending_messages:
await self.pending_messages[connection_id].put(message)
async def send_task(
self,
task_id: TaskId,
task_settings: TaskSettings,
):
self.active_tasks[task_id] = ActiveTask(task_settings)
self.task_settings[task_id] = task_settings
offer = await self.wait_for_msg("runner:taskoffer", timeout=2.0)
if offer:
accept = {
"type": "broker:taskofferaccept",
"taskId": task_id,
"offerId": offer.get("offerId"),
}
if self.connections:
connection = next(iter(self.connections.keys()))
await self.send_to_connection(connection, accept)
async def cancel_task(self, task_id: TaskId, reason: str):
cancel_message = {
"type": "broker:taskcancel",
"taskId": task_id,
"reason": reason,
}
for connection_id in self.connections:
await self.send_to_connection(connection_id, cancel_message)
async def wait_for_msg(
self,
msg_type: str,
timeout: float = TASK_RESPONSE_WAIT,
predicate: Callable[[WebsocketMessage], bool] | None = None,
) -> WebsocketMessage | None:
start_time = asyncio.get_running_loop().time()
while asyncio.get_running_loop().time() - start_time < timeout:
for msg in self.received_messages:
if msg.get("type") == msg_type:
if predicate is None or predicate(msg):
return msg
await asyncio.sleep(0.1)
return None
def get_messages_of_type(self, msg_type: str) -> list[WebsocketMessage]:
return [msg for msg in self.received_messages if msg.get("type") == msg_type]
def get_task_rpc_messages(self, task_id: TaskId) -> list[dict]:
return self.rpc_messages.get(task_id, [])
@@ -0,0 +1,127 @@
import asyncio
import os
import re
import sys
from pathlib import Path
from src.constants import (
ENV_GRACEFUL_SHUTDOWN_TIMEOUT,
ENV_GRANT_TOKEN,
ENV_HEALTH_CHECK_SERVER_ENABLED,
ENV_HEALTH_CHECK_SERVER_PORT,
ENV_LAUNCHER_LOG_LEVEL,
ENV_TASK_BROKER_URI,
ENV_TASK_TIMEOUT,
)
from tests.fixtures.test_constants import (
GRACEFUL_SHUTDOWN_TIMEOUT,
TASK_TIMEOUT,
)
class TaskRunnerManager:
"""Responsible for managing the lifecycle of a task runner subprocess."""
def __init__(
self,
task_broker_url: str | None = None,
graceful_shutdown_timeout: float | None = None,
custom_env: dict[str, str] | None = None,
):
self.task_broker_url = task_broker_url
self.graceful_shutdown_timeout = graceful_shutdown_timeout
self.custom_env = custom_env or {}
self.subprocess: asyncio.subprocess.Process | None = None
self.stdout_buffer: list[str] = []
self.stderr_buffer: list[str] = []
self.health_check_port: int | None = None
async def start(self):
project_root = Path(__file__).parent.parent.parent
runner_path = project_root / "src" / "main.py"
env_vars = os.environ.copy()
env_vars[ENV_GRANT_TOKEN] = "test_token"
env_vars[ENV_TASK_BROKER_URI] = self.task_broker_url
env_vars[ENV_TASK_TIMEOUT] = str(TASK_TIMEOUT)
env_vars[ENV_HEALTH_CHECK_SERVER_ENABLED] = "true"
env_vars[ENV_HEALTH_CHECK_SERVER_PORT] = "0"
env_vars[ENV_LAUNCHER_LOG_LEVEL] = "INFO"
if self.graceful_shutdown_timeout is not None:
env_vars[ENV_GRACEFUL_SHUTDOWN_TIMEOUT] = str(
self.graceful_shutdown_timeout
)
env_vars["PYTHONPATH"] = str(project_root)
env_vars.update(self.custom_env)
self.subprocess = await asyncio.create_subprocess_exec(
sys.executable,
str(runner_path),
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
env=env_vars,
cwd=str(project_root),
)
asyncio.create_task(self._read_stdout())
asyncio.create_task(self._read_stderr())
await self._wait_for_health_check_port()
def is_running(self) -> bool:
return self.subprocess is not None and self.subprocess.returncode is None
def get_health_check_url(self) -> str:
return f"http://localhost:{self.health_check_port}"
async def stop(self) -> None:
if not self.subprocess or self.subprocess.returncode is not None:
return
self.subprocess.terminate()
try:
await asyncio.wait_for(
self.subprocess.wait(), timeout=GRACEFUL_SHUTDOWN_TIMEOUT
)
except asyncio.TimeoutError:
self.subprocess.kill()
await self.subprocess.wait()
async def _read_stdout(self):
if not self.subprocess or not self.subprocess.stdout:
return
while True:
line = await self.subprocess.stdout.readline()
if not line:
break
self.stdout_buffer.append(line.decode().strip())
async def _read_stderr(self):
if not self.subprocess or not self.subprocess.stderr:
return
while True:
line = await self.subprocess.stderr.readline()
if not line:
break
self.stderr_buffer.append(line.decode().strip())
async def _wait_for_health_check_port(self, timeout: float = 5.0):
pattern = re.compile(r"Health check server listening on .+, port (\d+)")
start_time = asyncio.get_running_loop().time()
while asyncio.get_running_loop().time() - start_time < timeout:
for line in self.stdout_buffer:
match = pattern.search(line)
if match:
self.health_check_port = int(match.group(1))
return
await asyncio.sleep(0.1)
raise TimeoutError(
f"Failed to detect health check port within {timeout}s. "
f"Stdout: {self.stdout_buffer}"
)
@@ -0,0 +1,7 @@
# Local task broker
LOCAL_TASK_BROKER_WS_PATH = "/runners/_ws"
# Timing
TASK_RESPONSE_WAIT = 3
TASK_TIMEOUT = 2
GRACEFUL_SHUTDOWN_TIMEOUT = 1