4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
116 lines
3.6 KiB
Python
116 lines
3.6 KiB
Python
from __future__ import annotations
|
|
|
|
import subprocess
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
from config.constants.paths import REPO_ROOT
|
|
from surfaces.cli.tests.catalog import TestCatalogItem
|
|
from surfaces.cli.tests.discover import load_test_catalog
|
|
|
|
|
|
def format_command(item: TestCatalogItem) -> str:
|
|
return item.command_display
|
|
|
|
|
|
def find_test_item(item_id: str) -> TestCatalogItem | None:
|
|
return load_test_catalog().find(item_id)
|
|
|
|
|
|
def get_preflight_messages(item: TestCatalogItem) -> tuple[str, ...]:
|
|
"""Return user-facing preflight messages for a catalog item."""
|
|
if "openclaw" not in item.tags:
|
|
return ()
|
|
|
|
try:
|
|
from integrations.openclaw import build_openclaw_config, validate_openclaw_config
|
|
from integrations.verify import resolve_effective_integrations
|
|
except Exception:
|
|
return ()
|
|
|
|
effective_integrations = resolve_effective_integrations()
|
|
integration = effective_integrations.get("openclaw")
|
|
if not isinstance(integration, dict):
|
|
return (
|
|
"OpenClaw preflight: no local OpenClaw integration is configured. "
|
|
"This test will not use live OpenClaw context.",
|
|
"Run `uv run opensre integrations setup openclaw` first if you want live OpenClaw data.",
|
|
)
|
|
|
|
config_payload = integration.get("config")
|
|
if not isinstance(config_payload, dict):
|
|
return (
|
|
"OpenClaw preflight: local OpenClaw config is unreadable. "
|
|
"This test will not use live OpenClaw context.",
|
|
)
|
|
|
|
try:
|
|
config = build_openclaw_config(config_payload)
|
|
except Exception as err:
|
|
return (
|
|
"OpenClaw preflight: local OpenClaw config is invalid. "
|
|
"This test will not use live OpenClaw context.",
|
|
f"Reason: {err}",
|
|
)
|
|
|
|
result = validate_openclaw_config(config)
|
|
if result.ok:
|
|
endpoint = config.command if config.mode == "stdio" else config.url
|
|
return (
|
|
"OpenClaw preflight: live OpenClaw context is ready for this test.",
|
|
f"Bridge: {config.mode} ({endpoint})",
|
|
)
|
|
|
|
first_line = next(
|
|
(line.strip() for line in result.detail.splitlines() if line.strip()), result.detail
|
|
)
|
|
return (
|
|
"OpenClaw preflight: live OpenClaw context is unavailable, so OpenClaw actions may be skipped.",
|
|
f"Reason: {first_line}",
|
|
"Fix: run `uv run opensre integrations verify openclaw` and make it pass before rerunning this test.",
|
|
)
|
|
|
|
|
|
def run_catalog_item(
|
|
item: TestCatalogItem,
|
|
*,
|
|
dry_run: bool = False,
|
|
working_directory: Path | None = None,
|
|
) -> int:
|
|
if not item.command:
|
|
raise ValueError(f"Test item '{item.id}' does not define a runnable command")
|
|
|
|
if dry_run:
|
|
print(format_command(item))
|
|
return 0
|
|
|
|
for message in get_preflight_messages(item):
|
|
print(message, file=sys.stderr)
|
|
|
|
result = subprocess.run(
|
|
list(item.command),
|
|
cwd=working_directory or REPO_ROOT,
|
|
check=False,
|
|
)
|
|
return int(result.returncode)
|
|
|
|
|
|
def run_catalog_items(
|
|
items: list[TestCatalogItem],
|
|
*,
|
|
dry_run: bool = False,
|
|
working_directory: Path | None = None,
|
|
) -> int:
|
|
"""Run multiple catalog items sequentially. Returns worst (max) exit code.
|
|
|
|
Non-runnable items are skipped so callers can safely pass mixed selections.
|
|
"""
|
|
worst = 0
|
|
for item in items:
|
|
if not item.is_runnable:
|
|
print(f"Skipping '{item.id}' — no runnable command defined.", file=sys.stderr)
|
|
continue
|
|
code = run_catalog_item(item, dry_run=dry_run, working_directory=working_directory)
|
|
worst = max(worst, code)
|
|
return worst
|