cloud
This commit is contained in:
@@ -0,0 +1,194 @@
|
||||
"""Composition guard: TaskDispatcher composes a real runtime.task.TaskRunner (task 9.2).
|
||||
|
||||
Runs a non-mocked, stub-driver-backed TaskRunner instance inside
|
||||
TaskDispatcher.dispatch()'s goal-based path. Guards against silent drift in
|
||||
agent-runtime's public ``run(task) -> Task`` contract this change composes over.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import UTC, datetime
|
||||
|
||||
from cloud.config import CloudConfig
|
||||
from cloud.dispatch import Assignment, TaskDispatcher
|
||||
from cloud.scheduler import ScheduledTask, TaskConstraints
|
||||
from cloud.store import CloudStore
|
||||
from core.models import Bounds, Scene, SceneElement, Task
|
||||
from runtime.executor import Executor, ExecutorConfig
|
||||
from runtime.planner import PlannedStep, Planner
|
||||
from runtime.task import TaskRunner, TaskRunnerConfig
|
||||
from storage.artifact_store import ArtifactStore
|
||||
from storage.task_metadata import TaskMetadataStore
|
||||
from storage.timeline import Timeline
|
||||
from tests.fakes import PNG_10X20
|
||||
|
||||
|
||||
class _ScriptedPlanner(Planner):
|
||||
def __init__(self, steps: list[PlannedStep]) -> None:
|
||||
self.steps = steps
|
||||
|
||||
def plan(self, *, goal, scene, context): # type: ignore[override]
|
||||
if len(context.step_results) >= len(self.steps):
|
||||
return []
|
||||
return [self.steps[len(context.step_results)]]
|
||||
|
||||
def goal_reached(self, *, goal, scene, context): # type: ignore[override]
|
||||
return len(context.step_results) >= len(self.steps) and all(
|
||||
result.success for result in context.step_results
|
||||
)
|
||||
|
||||
|
||||
def _scene() -> Scene:
|
||||
return Scene(
|
||||
width=10,
|
||||
height=20,
|
||||
elements=[
|
||||
SceneElement(
|
||||
id="search",
|
||||
type="input",
|
||||
text="Search",
|
||||
bounds=Bounds(1, 2, 4, 4),
|
||||
)
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
def _real_task_runner(tmp_path) -> TaskRunner:
|
||||
planner = _ScriptedPlanner(
|
||||
[
|
||||
PlannedStep(action="tap", description="tap search", args={"x": 3, "y": 4}),
|
||||
]
|
||||
)
|
||||
executor = Executor(
|
||||
tools={"tap": lambda **kwargs: {"ok": True, **kwargs}},
|
||||
config=ExecutorConfig(max_retries=1, backoff_seconds=0),
|
||||
)
|
||||
metadata = TaskMetadataStore(tmp_path / "tasks.sqlite3")
|
||||
timeline = Timeline(ArtifactStore(tmp_path / "history"))
|
||||
|
||||
return TaskRunner(
|
||||
planner=planner,
|
||||
executor=executor,
|
||||
metadata_store=metadata,
|
||||
timeline=timeline,
|
||||
config=TaskRunnerConfig(max_steps=3),
|
||||
observer=lambda device_id: _scene(),
|
||||
screenshot_provider=lambda device_id: PNG_10X20,
|
||||
)
|
||||
|
||||
|
||||
def _config() -> CloudConfig:
|
||||
return CloudConfig(
|
||||
sync_interval_seconds=30,
|
||||
stale_after_seconds=60,
|
||||
max_queue_depth=100,
|
||||
default_assignment_strategy="fifo_match",
|
||||
api_version_prefix="/v1",
|
||||
db_path="cloud/cloud.sqlite3",
|
||||
)
|
||||
|
||||
|
||||
def test_dispatcher_runs_real_task_runner_to_completion(tmp_path) -> None:
|
||||
store = CloudStore(tmp_path / "cloud.sqlite3")
|
||||
runner = _real_task_runner(tmp_path)
|
||||
dispatcher = TaskDispatcher(
|
||||
local_host_id="host-local",
|
||||
task_runner_factory=lambda: runner,
|
||||
workflow_runner_factory=lambda: None,
|
||||
store=store,
|
||||
)
|
||||
|
||||
# Enqueue a ScheduledTask in 'assigned' state (the precondition for dispatch).
|
||||
task_id = "task-real"
|
||||
store.enqueue_task(
|
||||
ScheduledTask(
|
||||
id=task_id,
|
||||
goal="tap the search field",
|
||||
workflow_definition_id=None,
|
||||
constraints=TaskConstraints(),
|
||||
status="assigned",
|
||||
created_at=datetime.now(UTC),
|
||||
)
|
||||
)
|
||||
|
||||
dispatcher.dispatch(
|
||||
Assignment(
|
||||
task_id=task_id,
|
||||
device_id="dev-1",
|
||||
host_id="host-local",
|
||||
goal="tap the search field",
|
||||
workflow_definition_id=None,
|
||||
)
|
||||
)
|
||||
|
||||
task = store.get_task(task_id)
|
||||
assert task is not None
|
||||
assert task.status == "done"
|
||||
# The TaskRunner must have observed the assignment's device_id.
|
||||
# We assert via the executor's recorded outcomes indirectly by confirming
|
||||
# the loop drove at least one step (metadata store now has the task as completed).
|
||||
|
||||
|
||||
def test_dispatcher_propagates_real_failure(tmp_path) -> None:
|
||||
"""If the real TaskRunner reports failure, dispatcher records ``failed``."""
|
||||
|
||||
class _AlwaysFailingPlanner(Planner):
|
||||
def plan(self, *, goal, scene, context): # type: ignore[override]
|
||||
return [
|
||||
PlannedStep(action="boom", description="will fail", args={}),
|
||||
]
|
||||
|
||||
def goal_reached(self, *, goal, scene, context): # type: ignore[override]
|
||||
return False
|
||||
|
||||
executor = Executor(
|
||||
tools={
|
||||
"boom": lambda **kwargs: (_ for _ in ()).throw(RuntimeError("boom")),
|
||||
},
|
||||
config=ExecutorConfig(max_retries=1, backoff_seconds=0),
|
||||
)
|
||||
metadata = TaskMetadataStore(tmp_path / "tasks.sqlite3")
|
||||
timeline = Timeline(ArtifactStore(tmp_path / "history"))
|
||||
runner = TaskRunner(
|
||||
planner=_AlwaysFailingPlanner(),
|
||||
executor=executor,
|
||||
metadata_store=metadata,
|
||||
timeline=timeline,
|
||||
config=TaskRunnerConfig(max_steps=1),
|
||||
observer=lambda device_id: _scene(),
|
||||
screenshot_provider=lambda device_id: PNG_10X20,
|
||||
)
|
||||
|
||||
store = CloudStore(tmp_path / "cloud.sqlite3")
|
||||
dispatcher = TaskDispatcher(
|
||||
local_host_id="host-local",
|
||||
task_runner_factory=lambda: runner,
|
||||
workflow_runner_factory=lambda: None,
|
||||
store=store,
|
||||
)
|
||||
|
||||
task_id = "task-fail"
|
||||
store.enqueue_task(
|
||||
ScheduledTask(
|
||||
id=task_id,
|
||||
goal="doomed",
|
||||
workflow_definition_id=None,
|
||||
constraints=TaskConstraints(),
|
||||
status="assigned",
|
||||
created_at=datetime.now(UTC),
|
||||
)
|
||||
)
|
||||
|
||||
dispatcher.dispatch(
|
||||
Assignment(
|
||||
task_id=task_id,
|
||||
device_id="dev-1",
|
||||
host_id="host-local",
|
||||
goal="doomed",
|
||||
workflow_definition_id=None,
|
||||
)
|
||||
)
|
||||
|
||||
task = store.get_task(task_id)
|
||||
assert task is not None
|
||||
assert task.status == "failed"
|
||||
Reference in New Issue
Block a user