Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license
This commit is contained in:
@@ -0,0 +1,130 @@
|
||||
"""Tests for the github merged skill (formerly six github-* skills).
|
||||
|
||||
The issue-to-pr workflow (originally the github-issue-to-pr skill,
|
||||
author benbarclay) now lives complete in references/issue-to-pr.md of the
|
||||
merged software-development/github skill. Frontmatter contracts apply to
|
||||
the merged SKILL.md; the content pins that guarded the issue-to-pr
|
||||
disciplines now check the reference body.
|
||||
"""
|
||||
import re
|
||||
from pathlib import Path
|
||||
|
||||
import yaml
|
||||
|
||||
SKILL_DIR = (
|
||||
Path(__file__).resolve().parents[2]
|
||||
/ "skills"
|
||||
/ "software-development"
|
||||
/ "github"
|
||||
)
|
||||
SKILL_PATH = SKILL_DIR / "SKILL.md"
|
||||
ISSUE_TO_PR_REF = SKILL_DIR / "references" / "issue-to-pr.md"
|
||||
|
||||
|
||||
def _frontmatter_and_body():
|
||||
content = SKILL_PATH.read_text(encoding="utf-8")
|
||||
assert content.startswith("---")
|
||||
m = re.search(r"\n---\s*\n", content[3:])
|
||||
assert m, "frontmatter must close with ---"
|
||||
fm = yaml.safe_load(content[3 : m.start() + 3])
|
||||
body = content[m.end() + 3 :]
|
||||
return fm, body
|
||||
|
||||
|
||||
def test_skill_file_exists():
|
||||
assert SKILL_PATH.is_file()
|
||||
|
||||
|
||||
def test_all_workflow_references_exist():
|
||||
for ref in (
|
||||
"auth.md",
|
||||
"issues.md",
|
||||
"pr-workflow.md",
|
||||
"issue-to-pr.md",
|
||||
"code-review.md",
|
||||
"repo-management.md",
|
||||
):
|
||||
assert (SKILL_DIR / "references" / ref).is_file(), f"missing reference: {ref}"
|
||||
|
||||
|
||||
def test_frontmatter_required_fields():
|
||||
fm, _ = _frontmatter_and_body()
|
||||
for field in ("name", "description", "version", "author", "license", "platforms"):
|
||||
assert field in fm, f"missing frontmatter field: {field}"
|
||||
assert fm["name"] == "github"
|
||||
hermes = fm["metadata"]["hermes"]
|
||||
assert hermes["tags"]
|
||||
assert "related_skills" in hermes
|
||||
|
||||
|
||||
def test_description_hardline():
|
||||
fm, _ = _frontmatter_and_body()
|
||||
desc = fm["description"]
|
||||
assert len(desc) <= 60, f"description is {len(desc)} chars; hardline is 60"
|
||||
assert desc.endswith(".")
|
||||
|
||||
|
||||
def test_author_credits_human_first():
|
||||
fm, _ = _frontmatter_and_body()
|
||||
assert not fm["author"].startswith("Hermes Agent"), "human contributor must be credited first"
|
||||
assert "benbarclay" in fm["author"]
|
||||
|
||||
|
||||
def test_related_skills_resolve_in_repo():
|
||||
fm, _ = _frontmatter_and_body()
|
||||
repo_root = SKILL_PATH.parents[3]
|
||||
for name in fm["metadata"]["hermes"]["related_skills"]:
|
||||
hits = (
|
||||
list(repo_root.glob(f"skills/*/{name}/SKILL.md"))
|
||||
+ list(repo_root.glob(f"optional-skills/*/{name}/SKILL.md"))
|
||||
+ list(repo_root.glob(f"skills/*/*/{name}/SKILL.md"))
|
||||
)
|
||||
assert hits, f"related_skills entry does not resolve in-repo: {name}"
|
||||
|
||||
|
||||
def test_body_routes_every_workflow():
|
||||
_, body = _frontmatter_and_body()
|
||||
for ref in (
|
||||
"references/auth.md",
|
||||
"references/issues.md",
|
||||
"references/pr-workflow.md",
|
||||
"references/issue-to-pr.md",
|
||||
"references/code-review.md",
|
||||
"references/repo-management.md",
|
||||
):
|
||||
assert ref in body, f"routing table missing: {ref}"
|
||||
assert len(SKILL_PATH.read_text(encoding="utf-8")) <= 100_000
|
||||
|
||||
|
||||
def test_no_machine_local_paths():
|
||||
for p in (SKILL_PATH, ISSUE_TO_PR_REF):
|
||||
content = p.read_text(encoding="utf-8")
|
||||
assert "/home/" not in content
|
||||
assert not re.search(r"[A-Z]:\\\\Users", content)
|
||||
|
||||
|
||||
def test_issue_to_pr_steps_have_completion_criteria():
|
||||
body = ISSUE_TO_PR_REF.read_text(encoding="utf-8")
|
||||
steps = re.findall(r"^### \d+\..*?(?=^### \d+\.|^## |\Z)", body, re.MULTILINE | re.DOTALL)
|
||||
assert len(steps) >= 6
|
||||
for step in steps:
|
||||
assert "Done when" in step, f"step missing completion criterion: {step[:60]!r}"
|
||||
|
||||
|
||||
def test_issue_to_pr_core_disciplines_present():
|
||||
"""The learnings folded in from maintainer practice must survive edits."""
|
||||
body = ISSUE_TO_PR_REF.read_text(encoding="utf-8")
|
||||
assert "--comments" in body, "must read the full issue thread"
|
||||
assert "pr list --search" in body, "must sweep for duplicate PRs before coding"
|
||||
assert re.search(r"git log -p -S", body), "must check design intent via history"
|
||||
assert "sabotage" in body.lower() or "FAILS" in body, "must prove the regression test bites"
|
||||
assert "sibling" in body, "must fix the class, not the site"
|
||||
assert "dispatches CI" in body, "must open the PR immediately after work exists"
|
||||
|
||||
|
||||
def test_issue_to_pr_not_a_router():
|
||||
"""Reference steps must carry their own procedure, not route elsewhere."""
|
||||
body = ISSUE_TO_PR_REF.read_text(encoding="utf-8")
|
||||
steps = re.findall(r"^### \d+\..*?(?=^### \d+\.|^## |\Z)", body, re.MULTILINE | re.DOTALL)
|
||||
routing = [s for s in steps if re.match(r"^### \d+\.[^\n]*\n+Load `", s)]
|
||||
assert len(routing) == 0, "steps must not open by delegating to another skill"
|
||||
Reference in New Issue
Block a user