- 将 api 测试重组为 integration 测试 - 新增 unit 和 e2e 测试目录分类 - 新增 testing-guidelines.md 测试指南文档 - 更新 pyproject.toml 和 run_tests.sh 以适配新结构 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
from yuxi.agents.backends import skills_backend
|
|
|
|
|
|
def _prepare_skills_dir(root: Path) -> None:
|
|
(root / "alpha").mkdir(parents=True, exist_ok=True)
|
|
(root / "alpha" / "SKILL.md").write_text(
|
|
"---\nname: alpha\ndescription: alpha\n---\n# alpha\n",
|
|
encoding="utf-8",
|
|
)
|
|
(root / "beta").mkdir(parents=True, exist_ok=True)
|
|
(root / "beta" / "SKILL.md").write_text(
|
|
"---\nname: beta\ndescription: beta\n---\n# beta\n",
|
|
encoding="utf-8",
|
|
)
|
|
|
|
|
|
def test_selected_skills_backend_readonly_and_visible_only_selected(tmp_path, monkeypatch):
|
|
_prepare_skills_dir(tmp_path)
|
|
monkeypatch.setattr(skills_backend, "get_skills_root_dir", lambda: tmp_path)
|
|
|
|
backend = skills_backend.SelectedSkillsReadonlyBackend(selected_slugs=["alpha"])
|
|
|
|
root_entries = backend.ls_info("/")
|
|
paths = sorted(entry.get("path") for entry in root_entries)
|
|
assert paths == ["/alpha/"]
|
|
|
|
ok_read = backend.read("/alpha/SKILL.md")
|
|
assert "alpha" in ok_read
|
|
|
|
denied_read = backend.read("/beta/SKILL.md")
|
|
assert "Access denied" in denied_read
|
|
|
|
write_result = backend.write("/alpha/new.md", "x")
|
|
assert write_result.error and "read-only" in write_result.error
|
|
|
|
edit_result = backend.edit("/alpha/SKILL.md", "alpha", "changed")
|
|
assert edit_result.error and "read-only" in edit_result.error
|
|
|
|
upload_result = backend.upload_files([("/alpha/a.txt", b"a")])
|
|
assert len(upload_result) == 1
|
|
assert upload_result[0].error == "permission_denied"
|