docs: add thesis report workflow evidence

This commit is contained in:
lda
2026-06-14 17:16:40 +07:00 Verified
parent 03762b1aa9
commit 1aa40285b1
10 changed files with 328 additions and 3 deletions
@@ -0,0 +1,116 @@
from __future__ import annotations
from pathlib import Path
import pytest
from wf_config import load_workflow_config
from wf_server.config import build_workflow_server_from_workflow_config
EXAMPLE_DIR = Path(__file__).resolve().parents[2] / "examples" / "report_workflow"
@pytest.mark.asyncio
async def test_report_workflow_python_source_loads_and_calls_capability(
tmp_path,
) -> None:
config = load_workflow_config(EXAMPLE_DIR / "wf.config.json")
config.server.store.root = tmp_path / "store"
server = build_workflow_server_from_workflow_config(config)
listed = await server.api.list_capabilities(source_id="local.report")
names = {capability["name"] for capability in listed["capabilities"]}
assert "local.report.extract_report" in names
result = await server.api.call_capability(
qualified_name="local.report.extract_report",
payload={"text": (EXAMPLE_DIR / "input.md").read_text(encoding="utf-8")},
)
assert result["outcome"] == "ok"
assert result["output"]["title"] == "Weekly Project Update"
assert result["output"]["action_items"][0] == {
"owner": "Alice",
"task": "Prepare demo config",
"due": "Friday",
}
assert "Google Drive MCP quota" in result["output"]["risks"][0]
@pytest.mark.asyncio
async def test_report_workflow_artifact_deployment_run_path(tmp_path) -> None:
config = load_workflow_config(EXAMPLE_DIR / "wf.config.json")
config.server.store.root = tmp_path / "store"
server = build_workflow_server_from_workflow_config(config)
plan = {
"name": "report_case_study",
"input_schema": {
"type": "object",
"properties": {"text": {"type": "string"}},
"required": ["text"],
},
"state_schema": {
"type": "object",
"properties": {"report": {"type": "object", "reducer": "wf.std.replace"}},
},
"output_schema": {
"type": "object",
"properties": {"report": {"type": "object"}},
"required": ["report"],
},
"outcomes": ["ok"],
"start": "extract",
"nodes": [
{
"id": "extract",
"type": "node",
"node": "local.report.extract_report",
"input": [
{
"path": {"root": "input", "parts": ["text"]},
"target": {"root": "local", "parts": ["text"]},
}
],
"output": [
{
"source": {"root": "local", "parts": []},
"target": {"root": "state", "parts": ["report"]},
}
],
}
],
"edges": [{"from": "extract", "outcome": "ok", "to": "__end__"}],
"output": [
{
"path": {"root": "state", "parts": ["report"]},
"target": {"root": "local", "parts": ["report"]},
}
],
}
await server.api.create_artifact_from_plan(
artifact_id="report_case_study",
version=1,
title="Report Case Study",
plan=plan,
outcomes=["ok"],
source_bindings={"local.report": "local.report"},
)
await server.api.save_deployment(
{
"id": "report_case_study.default",
"artifact_id": "report_case_study",
"artifact_version": 1,
"bindings": {"local.report": "local.report"},
}
)
run = await server.api.run_deployment(
deployment_id="report_case_study.default",
workflow_input={"text": (EXAMPLE_DIR / "input.md").read_text(encoding="utf-8")},
)
assert run["status"] == "completed"
assert run["output"]["report"]["title"] == "Weekly Project Update"
assert len(run["output"]["report"]["action_items"]) == 3