refactor: extract shared python source config test helper

This commit is contained in:
lda
2026-06-15 04:45:50 +07:00 Verified
parent 47f9e0ee01
commit bd5cfee443
3 changed files with 75 additions and 111 deletions
+69
View File
@@ -0,0 +1,69 @@
from __future__ import annotations
import json
from pathlib import Path
def write_python_source_config(
root: Path,
*,
target: dict[str, object] | None = None,
) -> Path:
"""Write a temporary Python source config with a ``local.ops`` source.
Returns the path to the written ``wf.json`` config file.
"""
if target is None:
target = {
"kind": "rpc_http",
"url": "http://127.0.0.1:8765/rpc",
}
source_root = root / "source"
source_root.mkdir()
(source_root / "ops.py").write_text(
"""
from pydantic import BaseModel
from wf_authoring import node
class EchoInput(BaseModel):
text: str
class EchoOutput(BaseModel):
text: str
@node(name="echo")
def echo(payload: EchoInput) -> EchoOutput:
return EchoOutput(text=payload.text)
registry = [echo]
""".lstrip(),
encoding="utf-8",
)
config_path = root / "wf.json"
config_path.write_text(
json.dumps(
{
"version": 1,
"client": {"target": target},
"server": {
"store": {"kind": "filesystem", "root": ".wf_store"},
"sources": [
{
"kind": "python",
"id": "local.ops",
"path": "source",
"module": "ops",
"registry": "registry",
}
],
},
}
),
encoding="utf-8",
)
return config_path
+3 -53
View File
@@ -18,6 +18,8 @@ from wf_cli.context import (
)
from wf_server.config import build_workflow_server_from_workflow_config
from .conftest import write_python_source_config
def _typer_context(obj: object | None) -> typer.Context:
ctx = typer.Context(click.Command("wf"))
@@ -25,58 +27,6 @@ def _typer_context(obj: object | None) -> typer.Context:
return ctx
def _write_python_source_config(root: Path, *, target: dict[str, object]) -> Path:
source_root = root / "source"
source_root.mkdir()
(source_root / "ops.py").write_text(
"""
from pydantic import BaseModel
from wf_authoring import node
class EchoInput(BaseModel):
text: str
class EchoOutput(BaseModel):
text: str
@node(name="echo")
def echo(payload: EchoInput) -> EchoOutput:
return EchoOutput(text=payload.text)
registry = [echo]
""".lstrip(),
encoding="utf-8",
)
config_path = root / "wf.json"
config_path.write_text(
json.dumps(
{
"version": 1,
"client": {"target": target},
"server": {
"store": {"kind": "filesystem", "root": ".wf_store"},
"sources": [
{
"kind": "python",
"id": "local.ops",
"path": "source",
"module": "ops",
"registry": "registry",
}
],
},
}
),
encoding="utf-8",
)
return config_path
def test_cli_typer_state_reads_typed_context_object() -> None:
ctx = _typer_context(
CliTyperState(
@@ -196,7 +146,7 @@ def test_load_cli_context_local_uses_workflow_store_override(
async def test_load_cli_context_local_composes_configured_python_sources(
tmp_path: Path,
) -> None:
config_path = _write_python_source_config(
config_path = write_python_source_config(
tmp_path,
target={
"kind": "rpc_http",
+3 -58
View File
@@ -17,6 +17,8 @@ from wf_server import build_local_static_workflow_server
from wf_transport_rpc_http import RpcWorkflowApiClient, create_rpc_app
from wf_transport_rpc_http.client.sources import RpcSourceAdminClientMixin
from .conftest import write_python_source_config
class BrokenSourceAdmin:
async def list_sources(
@@ -220,63 +222,6 @@ def test_local_cli_context_rejects_rpc_target_for_local_only_commands(tmp_path)
assert "not available for rpc_http targets yet" in message
def _write_python_source_cli_config(root: Path) -> Path:
source_root = root / "source"
source_root.mkdir()
(source_root / "ops.py").write_text(
"""
from pydantic import BaseModel
from wf_authoring import node
class EchoInput(BaseModel):
text: str
class EchoOutput(BaseModel):
text: str
@node(name="echo")
def echo(payload: EchoInput) -> EchoOutput:
return EchoOutput(text=payload.text)
registry = [echo]
""".lstrip(),
encoding="utf-8",
)
config_path = root / "wf.json"
config_path.write_text(
json.dumps(
{
"version": 1,
"client": {
"target": {
"kind": "rpc_http",
"url": "http://127.0.0.1:8765/rpc",
}
},
"server": {
"store": {"kind": "filesystem", "root": ".wf_store"},
"sources": [
{
"kind": "python",
"id": "local.ops",
"path": "source",
"module": "ops",
"registry": "registry",
}
],
},
}
),
encoding="utf-8",
)
return config_path
def _constant_plan() -> RawWorkflowPlan:
return RawWorkflowPlan.model_validate(
{
@@ -976,7 +921,7 @@ def test_wf_source_diagnose_uses_rpc_url_override(monkeypatch, tmp_path) -> None
def test_wf_local_uses_selected_config_sources(tmp_path: Path) -> None:
config_path = _write_python_source_cli_config(tmp_path)
config_path = write_python_source_config(tmp_path)
result = CliRunner().invoke(
app,