Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
"""Malformed apply_edits JSON must not abort customize with JSONDecodeError."""
|
|
import types
|
|
|
|
import agent
|
|
|
|
|
|
def _fake_client(arguments):
|
|
fn = types.SimpleNamespace(name="apply_edits", arguments=arguments)
|
|
tc = types.SimpleNamespace(id="c1", type="function", function=fn)
|
|
msg = types.SimpleNamespace(tool_calls=[tc], content=None)
|
|
resp = types.SimpleNamespace(choices=[types.SimpleNamespace(message=msg)])
|
|
completions = types.SimpleNamespace(create=lambda **kw: resp)
|
|
return types.SimpleNamespace(chat=types.SimpleNamespace(completions=completions))
|
|
|
|
|
|
def test_malformed_json_degrades_to_empty_files(tmp_path):
|
|
(tmp_path / "src").mkdir()
|
|
(tmp_path / "src" / "App.jsx").write_text("// app", encoding="utf-8")
|
|
(tmp_path / "src" / "theme.css").write_text("/* css */", encoding="utf-8")
|
|
args = agent.customize(
|
|
_fake_client('{"files": [{"path": "src/theme.css",}],'), # trailing junk
|
|
"model",
|
|
tmp_path,
|
|
"把按钮改成蓝色",
|
|
)
|
|
assert args["files"] == []
|
|
|
|
|
|
def test_valid_json_still_returns_files(tmp_path):
|
|
(tmp_path / "src").mkdir()
|
|
(tmp_path / "src" / "App.jsx").write_text("// app", encoding="utf-8")
|
|
(tmp_path / "src" / "theme.css").write_text("/* css */", encoding="utf-8")
|
|
files = [{"path": "src/theme.css", "content": "body { color: red; }"}]
|
|
import json
|
|
args = agent.customize(
|
|
_fake_client(json.dumps({"summary": "s", "files": files})),
|
|
"model",
|
|
tmp_path,
|
|
"把文字改成红色",
|
|
)
|
|
assert args["files"] == files
|