Merge pull request 'Implement native author issue worktree bootstrap (#850)' (#853) from fix/issue-850-native-mcp-bootstrap into master
This commit was merged in pull request #853.
This commit is contained in:
File diff suppressed because it is too large
Load Diff
+79
-36
@@ -40,23 +40,89 @@ def _normalize_path(path: str) -> str:
|
|||||||
return (path or "").replace("\\", "/").rstrip("/")
|
return (path or "").replace("\\", "/").rstrip("/")
|
||||||
|
|
||||||
|
|
||||||
|
def get_canonical_branches_root(project_root: str | None = None) -> str:
|
||||||
|
"""Return the absolute path of the canonical branches directory for *project_root*."""
|
||||||
|
root = os.path.realpath(project_root) if project_root else os.path.realpath(os.getcwd())
|
||||||
|
canonical_repo_root = resolve_canonical_repo_root(root, root)
|
||||||
|
return os.path.realpath(os.path.join(canonical_repo_root, "branches"))
|
||||||
|
|
||||||
|
|
||||||
def is_path_under_branches(path: str, project_root: str | None = None) -> bool:
|
def is_path_under_branches(path: str, project_root: str | None = None) -> bool:
|
||||||
"""True when *path* resolves inside ``<project_root>/branches/``."""
|
"""True when *path* resolves inside a canonical ``branches/`` directory."""
|
||||||
normalized = _normalize_path(path)
|
if not path or not str(path).strip():
|
||||||
if not normalized:
|
|
||||||
return False
|
return False
|
||||||
if "/branches/" in f"{normalized}/":
|
try:
|
||||||
return True
|
real_path = os.path.realpath(os.path.abspath(str(path).strip()))
|
||||||
if normalized.endswith("/branches"):
|
except Exception:
|
||||||
return True
|
|
||||||
if project_root:
|
|
||||||
root = _normalize_path(os.path.realpath(project_root))
|
|
||||||
real = _normalize_path(os.path.realpath(path))
|
|
||||||
if real.startswith(f"{root}/"):
|
|
||||||
rel = real[len(root) + 1 :]
|
|
||||||
return rel == "branches" or rel.startswith("branches/")
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
branches_root = get_canonical_branches_root(project_root or real_path)
|
||||||
|
try:
|
||||||
|
common = os.path.commonpath([branches_root, real_path])
|
||||||
|
except Exception:
|
||||||
|
return False
|
||||||
|
|
||||||
|
if common != branches_root:
|
||||||
|
return False
|
||||||
|
|
||||||
|
rel = os.path.relpath(real_path, branches_root)
|
||||||
|
return rel != "." and not rel.startswith("..")
|
||||||
|
|
||||||
|
|
||||||
|
def resolve_canonical_repo_root(workspace_path: str, fallback_project_root: str) -> str:
|
||||||
|
"""Return the stable repository root for *workspace_path* via git metadata (#460)."""
|
||||||
|
p = (workspace_path or "").strip()
|
||||||
|
if p:
|
||||||
|
try:
|
||||||
|
res = subprocess.run(
|
||||||
|
["git", "-C", p, "rev-parse", "--git-common-dir"],
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
check=True,
|
||||||
|
)
|
||||||
|
common = _realpath_git_common_dir(p, res.stdout)
|
||||||
|
if common.endswith(f"{os.sep}.git") or os.path.basename(common) == ".git":
|
||||||
|
candidate_root = os.path.dirname(common)
|
||||||
|
real_p = os.path.realpath(p)
|
||||||
|
try:
|
||||||
|
if os.path.commonpath([candidate_root, real_p]) == candidate_root:
|
||||||
|
return candidate_root
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# Fallback when git metadata is unavailable. Never string-split on
|
||||||
|
# "/branches/" (review #531 F2 / #551): recover the repo root only via
|
||||||
|
# resolved-path commonpath ancestry. Do **not** require on-disk isdir —
|
||||||
|
# MCP may launch with project_root = branches/<wt> before that path
|
||||||
|
# exists, and #274 path-shaped worktree-as-project-root must still resolve.
|
||||||
|
fallback = os.path.realpath(fallback_project_root or workspace_path or ".")
|
||||||
|
cur = fallback
|
||||||
|
for _ in range(64):
|
||||||
|
parent = os.path.dirname(cur)
|
||||||
|
if parent == cur:
|
||||||
|
break
|
||||||
|
branches_dir = os.path.realpath(os.path.join(parent, "branches"))
|
||||||
|
try:
|
||||||
|
# Path-shaped: fallback is under parent/branches/ (commonpath).
|
||||||
|
if os.path.commonpath([branches_dir, fallback]) == branches_dir:
|
||||||
|
return parent
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
# Fallback path itself is the branches directory.
|
||||||
|
if os.path.basename(os.path.realpath(cur)) == "branches":
|
||||||
|
try:
|
||||||
|
if os.path.commonpath([os.path.realpath(cur), fallback]) == os.path.realpath(
|
||||||
|
cur
|
||||||
|
):
|
||||||
|
return parent
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
cur = parent
|
||||||
|
|
||||||
|
return fallback
|
||||||
|
|
||||||
|
|
||||||
def resolve_mutation_workspace(
|
def resolve_mutation_workspace(
|
||||||
worktree_path: str | None,
|
worktree_path: str | None,
|
||||||
@@ -87,29 +153,6 @@ def _realpath_git_common_dir(workspace_path: str, common_dir: str) -> str:
|
|||||||
return os.path.realpath(os.path.join(workspace_path, raw))
|
return os.path.realpath(os.path.join(workspace_path, raw))
|
||||||
|
|
||||||
|
|
||||||
def resolve_canonical_repo_root(workspace_path: str, fallback_project_root: str) -> str:
|
|
||||||
"""Return the stable repository root for *workspace_path* via git metadata (#460)."""
|
|
||||||
path = (workspace_path or "").strip()
|
|
||||||
fallback = os.path.realpath(fallback_project_root)
|
|
||||||
if not path:
|
|
||||||
return fallback
|
|
||||||
try:
|
|
||||||
res = subprocess.run(
|
|
||||||
["git", "-C", path, "rev-parse", "--git-common-dir"],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=True,
|
|
||||||
)
|
|
||||||
common = _realpath_git_common_dir(path, res.stdout)
|
|
||||||
except Exception:
|
|
||||||
return fallback
|
|
||||||
if common.endswith(f"{os.sep}.git"):
|
|
||||||
return os.path.dirname(common)
|
|
||||||
if os.path.basename(common) == ".git":
|
|
||||||
return os.path.dirname(common)
|
|
||||||
return fallback
|
|
||||||
|
|
||||||
|
|
||||||
def resolve_author_mutation_context(
|
def resolve_author_mutation_context(
|
||||||
worktree_path: str | None,
|
worktree_path: str | None,
|
||||||
process_project_root: str,
|
process_project_root: str,
|
||||||
|
|||||||
@@ -247,7 +247,8 @@ def bootstrap_permits_control_checkout(
|
|||||||
"""
|
"""
|
||||||
if not isinstance(assessment, dict):
|
if not isinstance(assessment, dict):
|
||||||
return False
|
return False
|
||||||
if not is_create_issue_task(task):
|
import author_issue_bootstrap
|
||||||
|
if not is_create_issue_task(task) and not author_issue_bootstrap.is_author_issue_bootstrap_task(task):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Positive proof: the assessment must affirmatively allow, with no
|
# Positive proof: the assessment must affirmatively allow, with no
|
||||||
|
|||||||
@@ -69,6 +69,7 @@ that gates each call, not which tools exist.
|
|||||||
- `gitea_audit_worktree_cleanup`
|
- `gitea_audit_worktree_cleanup`
|
||||||
- `gitea_authorize_reconciliation_cleanup_phase`
|
- `gitea_authorize_reconciliation_cleanup_phase`
|
||||||
- `gitea_authorize_review_correction`
|
- `gitea_authorize_review_correction`
|
||||||
|
- `gitea_bootstrap_author_issue_worktree`
|
||||||
- `gitea_capability_stop_terminal_report`
|
- `gitea_capability_stop_terminal_report`
|
||||||
- `gitea_capture_branches_worktree_snapshot`
|
- `gitea_capture_branches_worktree_snapshot`
|
||||||
- `gitea_check_pr_eligibility`
|
- `gitea_check_pr_eligibility`
|
||||||
|
|||||||
+195
-68
@@ -977,6 +977,32 @@ def _create_issue_bootstrap_assessment(
|
|||||||
"""
|
"""
|
||||||
import create_issue_bootstrap as _cib
|
import create_issue_bootstrap as _cib
|
||||||
|
|
||||||
|
import author_issue_bootstrap as _aib
|
||||||
|
if _aib.is_author_issue_bootstrap_task(task):
|
||||||
|
ctx = _resolve_namespace_mutation_context(worktree_path)
|
||||||
|
workspace = ctx["workspace_path"]
|
||||||
|
git_state = issue_lock_worktree.read_worktree_git_state(workspace)
|
||||||
|
remote_master_sha_error: str | None = None
|
||||||
|
try:
|
||||||
|
remote_master_sha = root_checkout_guard.resolve_remote_master_sha(
|
||||||
|
ctx["canonical_repo_root"]
|
||||||
|
)
|
||||||
|
except Exception as exc:
|
||||||
|
remote_master_sha = None
|
||||||
|
remote_master_sha_error = (
|
||||||
|
f"{type(exc).__name__}: {exc}".strip() or "resolver failed"
|
||||||
|
)
|
||||||
|
return _aib.assess_author_issue_bootstrap(
|
||||||
|
workspace_path=workspace,
|
||||||
|
canonical_repo_root=ctx["canonical_repo_root"],
|
||||||
|
current_branch=git_state.get("current_branch"),
|
||||||
|
head_sha=git_state.get("head_sha"),
|
||||||
|
porcelain_status=git_state.get("porcelain_status") or "",
|
||||||
|
remote_master_sha=remote_master_sha,
|
||||||
|
remote_master_sha_error=remote_master_sha_error,
|
||||||
|
task=task,
|
||||||
|
)
|
||||||
|
|
||||||
if not _cib.is_create_issue_task(task):
|
if not _cib.is_create_issue_task(task):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@@ -9580,6 +9606,7 @@ def gitea_commit_files(
|
|||||||
host: str | None = None,
|
host: str | None = None,
|
||||||
org: str | None = None,
|
org: str | None = None,
|
||||||
repo: str | None = None,
|
repo: str | None = None,
|
||||||
|
worktree_path: str | None = None,
|
||||||
) -> dict:
|
) -> dict:
|
||||||
"""Commit changes to multiple files in a Gitea repository in a single atomic commit.
|
"""Commit changes to multiple files in a Gitea repository in a single atomic commit.
|
||||||
|
|
||||||
@@ -9592,10 +9619,46 @@ def gitea_commit_files(
|
|||||||
host: Override the Gitea host.
|
host: Override the Gitea host.
|
||||||
org: Override the owner/organization.
|
org: Override the owner/organization.
|
||||||
repo: Override the repository name.
|
repo: Override the repository name.
|
||||||
|
worktree_path: Optional worktree path for author mutation context.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
dict with success status and commit/branch information.
|
dict with success status and commit/branch information.
|
||||||
"""
|
"""
|
||||||
|
if worktree_path is None:
|
||||||
|
lock_data = issue_lock_store.read_session_issue_lock() or {}
|
||||||
|
worktree_path = lock_data.get("worktree_path")
|
||||||
|
if not worktree_path:
|
||||||
|
try:
|
||||||
|
prof = get_profile()
|
||||||
|
uname = prof.get("username") or prof.get("profile_name")
|
||||||
|
for path in issue_lock_store.iter_lock_files():
|
||||||
|
lk = issue_lock_store.read_lock_file(path) or {}
|
||||||
|
claimant = lk.get("claimant") or {}
|
||||||
|
if lk.get("remote") == remote and (claimant.get("username") == uname or lk.get("profile") == prof.get("profile_name")):
|
||||||
|
issue_lock_store.bind_session_lock(lk, renewal_sanctioned=True)
|
||||||
|
worktree_path = lk.get("worktree_path")
|
||||||
|
break
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
if worktree_path is None and files:
|
||||||
|
for f in files:
|
||||||
|
p = f.get("workspace_path") or f.get("local_path") or ""
|
||||||
|
if p and os.path.isabs(p):
|
||||||
|
real_p = os.path.realpath(p)
|
||||||
|
real_root = os.path.realpath(PROJECT_ROOT)
|
||||||
|
branches_dir = os.path.join(real_root, "branches")
|
||||||
|
if real_p.startswith(branches_dir + os.sep):
|
||||||
|
rel_sub = os.path.relpath(real_p, branches_dir)
|
||||||
|
wt_folder = rel_sub.split(os.sep)[0]
|
||||||
|
if wt_folder and wt_folder != "..":
|
||||||
|
worktree_path = os.path.join(branches_dir, wt_folder)
|
||||||
|
break
|
||||||
|
|
||||||
|
if worktree_path:
|
||||||
|
os.environ["GITEA_AUTHOR_WORKTREE"] = worktree_path
|
||||||
|
os.environ["GITEA_ACTIVE_WORKTREE"] = worktree_path
|
||||||
|
|
||||||
ok, block_reasons = role_session_router.check_author_mutation_after_reviewer_stop(
|
ok, block_reasons = role_session_router.check_author_mutation_after_reviewer_stop(
|
||||||
"commit_files"
|
"commit_files"
|
||||||
)
|
)
|
||||||
@@ -9608,7 +9671,7 @@ def gitea_commit_files(
|
|||||||
"reasons": block_reasons,
|
"reasons": block_reasons,
|
||||||
}
|
}
|
||||||
blocked = _namespace_mutation_block(
|
blocked = _namespace_mutation_block(
|
||||||
"commit_files", commit="", branch="", remote=remote
|
"commit_files", commit="", branch="", remote=remote, worktree_path=worktree_path
|
||||||
)
|
)
|
||||||
if blocked:
|
if blocked:
|
||||||
return blocked
|
return blocked
|
||||||
@@ -9636,7 +9699,7 @@ def gitea_commit_files(
|
|||||||
)
|
)
|
||||||
|
|
||||||
# #735: forward explicit org/repo into shared anti-stomp preflight.
|
# #735: forward explicit org/repo into shared anti-stomp preflight.
|
||||||
verify_preflight_purity(remote, task="commit_files", org=org, repo=repo)
|
verify_preflight_purity(remote=remote, worktree_path=worktree_path, task="commit_files", org=org, repo=repo)
|
||||||
processed_files, source_proofs = _prepare_commit_payload_files(files)
|
processed_files, source_proofs = _prepare_commit_payload_files(files)
|
||||||
|
|
||||||
h, o, r = _resolve(remote, host, org, repo)
|
h, o, r = _resolve(remote, host, org, repo)
|
||||||
@@ -9913,6 +9976,96 @@ def gitea_publish_unpublished_issue_branch(
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@mcp.tool()
|
||||||
|
def gitea_bootstrap_author_issue_worktree(
|
||||||
|
issue_number: int,
|
||||||
|
assignment_id: str | None = None,
|
||||||
|
lease_id: str | None = None,
|
||||||
|
expected_base_sha: str | None = None,
|
||||||
|
branch_name: str | None = None,
|
||||||
|
worktree_path: str | None = None,
|
||||||
|
idempotency_key: str | None = None,
|
||||||
|
remote: str = "dadeschools",
|
||||||
|
host: str | None = None,
|
||||||
|
org: str | None = None,
|
||||||
|
repo: str | None = None,
|
||||||
|
dry_run: bool = False,
|
||||||
|
) -> dict:
|
||||||
|
"""Bootstrap an allocated author issue branch and registered worktree (#850).
|
||||||
|
|
||||||
|
Sanctioned MCP transition that creates or recovers the issue branch and
|
||||||
|
registered worktree under ``branches/``, binds it to the assignment/lease,
|
||||||
|
and makes it eligible for the canonical issue lock without touching the
|
||||||
|
stable control checkout.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
issue_number: Allocated issue number to bootstrap.
|
||||||
|
assignment_id: Optional allocation assignment ID.
|
||||||
|
lease_id: Optional workflow lease ID.
|
||||||
|
expected_base_sha: Authoritative expected base SHA / concurrency pin.
|
||||||
|
branch_name: Optional custom branch name (must match issue-<N> pattern).
|
||||||
|
worktree_path: Optional custom worktree path under branches/.
|
||||||
|
idempotency_key: Optional key for idempotent replay/resume.
|
||||||
|
remote: Known instance — 'dadeschools' or 'prgs'.
|
||||||
|
host: Override Gitea host.
|
||||||
|
org: Override Org.
|
||||||
|
repo: Override Repo.
|
||||||
|
dry_run: Report planned transition without mutating repository.
|
||||||
|
"""
|
||||||
|
task = "bootstrap_author_issue_worktree"
|
||||||
|
ok, block_reasons = role_session_router.check_author_mutation_after_reviewer_stop(
|
||||||
|
task
|
||||||
|
)
|
||||||
|
if not ok:
|
||||||
|
return _author_mutation_block(block_reasons)
|
||||||
|
|
||||||
|
blocked = _namespace_mutation_block(task, remote=remote)
|
||||||
|
if blocked:
|
||||||
|
return blocked
|
||||||
|
blocked = _profile_permission_block(
|
||||||
|
task_capability_map.required_permission(task),
|
||||||
|
remote=remote,
|
||||||
|
host=host,
|
||||||
|
org=org,
|
||||||
|
repo=repo,
|
||||||
|
org_explicit=org is not None,
|
||||||
|
repo_explicit=repo is not None,
|
||||||
|
)
|
||||||
|
if blocked:
|
||||||
|
return blocked
|
||||||
|
|
||||||
|
verify_preflight_purity(
|
||||||
|
remote,
|
||||||
|
task=task,
|
||||||
|
org=org,
|
||||||
|
repo=repo,
|
||||||
|
)
|
||||||
|
|
||||||
|
h, o, r = _resolve(remote, host, org, repo)
|
||||||
|
canonical_root = _canonical_local_git_root()
|
||||||
|
|
||||||
|
import author_issue_bootstrap
|
||||||
|
|
||||||
|
return author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=issue_number,
|
||||||
|
canonical_repo_root=canonical_root,
|
||||||
|
assignment_id=assignment_id,
|
||||||
|
lease_id=lease_id,
|
||||||
|
expected_base_sha=expected_base_sha,
|
||||||
|
branch_name=branch_name,
|
||||||
|
worktree_path=worktree_path,
|
||||||
|
idempotency_key=idempotency_key,
|
||||||
|
remote=remote,
|
||||||
|
host=h,
|
||||||
|
org=o,
|
||||||
|
repo=r,
|
||||||
|
active_identity=_active_username(),
|
||||||
|
active_profile=_active_profile_name(),
|
||||||
|
owner_session=_current_session_id(),
|
||||||
|
dry_run=dry_run,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
# Merge methods supported by the Gitea merge API.
|
# Merge methods supported by the Gitea merge API.
|
||||||
_MERGE_METHODS = ("merge", "squash", "rebase")
|
_MERGE_METHODS = ("merge", "squash", "rebase")
|
||||||
|
|
||||||
@@ -12014,22 +12167,25 @@ def gitea_reconcile_merged_cleanups(
|
|||||||
if dry_run:
|
if dry_run:
|
||||||
report["dry_run"] = True
|
report["dry_run"] = True
|
||||||
report["executed"] = False
|
report["executed"] = False
|
||||||
# #851: surface planned lifecycle order so dry-run matches execute.
|
|
||||||
report["planned_execution_orders"] = {
|
|
||||||
str(entry.get("pr_number")): entry.get("planned_execution_order") or []
|
|
||||||
for entry in (report.get("entries") or [])
|
|
||||||
}
|
|
||||||
return {"success": True, "performed": False, **report}
|
return {"success": True, "performed": False, **report}
|
||||||
|
|
||||||
verify_preflight_purity(
|
verify_preflight_purity(
|
||||||
remote, task="reconcile_merged_cleanups", org=org, repo=repo
|
remote, task="reconcile_merged_cleanups", org=org, repo=repo
|
||||||
)
|
)
|
||||||
actions: list[dict] = []
|
actions: list[dict] = []
|
||||||
project_root = _canonical_local_git_root()
|
for entry in report.get("entries") or []:
|
||||||
|
head_branch = entry.get("head_branch") or ""
|
||||||
|
remote_assessment = entry.get("remote_branch") or {}
|
||||||
|
local_assessment = entry.get("local_worktree") or {}
|
||||||
|
|
||||||
def _ownership_records_for_branch(
|
if remote_assessment.get("safe_to_delete_remote"):
|
||||||
head_branch: str, pr_num_int: int | None
|
import urllib.parse
|
||||||
) -> list[dict]:
|
|
||||||
|
pr_num = entry.get("pr_number")
|
||||||
|
try:
|
||||||
|
pr_num_int = int(pr_num) if pr_num is not None else None
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
pr_num_int = None
|
||||||
ownership_bundle = _collect_branch_ownership_records(
|
ownership_bundle = _collect_branch_ownership_records(
|
||||||
remote=remote,
|
remote=remote,
|
||||||
host=h,
|
host=h,
|
||||||
@@ -12037,7 +12193,7 @@ def gitea_reconcile_merged_cleanups(
|
|||||||
repo=r,
|
repo=r,
|
||||||
branch=head_branch,
|
branch=head_branch,
|
||||||
pr_number=pr_num_int,
|
pr_number=pr_num_int,
|
||||||
project_root=project_root,
|
project_root=_canonical_local_git_root(),
|
||||||
auth=auth,
|
auth=auth,
|
||||||
base_api=base,
|
base_api=base,
|
||||||
)
|
)
|
||||||
@@ -12058,18 +12214,6 @@ def gitea_reconcile_merged_cleanups(
|
|||||||
"role": "inventory",
|
"role": "inventory",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
return ownership_records
|
|
||||||
|
|
||||||
def _attempt_owned_remote_delete(
|
|
||||||
*,
|
|
||||||
head_branch: str,
|
|
||||||
pr_num_int: int | None,
|
|
||||||
after_worktree_removal: bool = False,
|
|
||||||
) -> dict:
|
|
||||||
"""Fail-closed remote delete with live ownership reassessment (#851)."""
|
|
||||||
import urllib.parse
|
|
||||||
|
|
||||||
ownership_records = _ownership_records_for_branch(head_branch, pr_num_int)
|
|
||||||
ownership = branch_cleanup_guard.assess_active_branch_ownership(
|
ownership = branch_cleanup_guard.assess_active_branch_ownership(
|
||||||
remote=remote,
|
remote=remote,
|
||||||
org=o,
|
org=o,
|
||||||
@@ -12079,7 +12223,8 @@ def gitea_reconcile_merged_cleanups(
|
|||||||
records=ownership_records,
|
records=ownership_records,
|
||||||
)
|
)
|
||||||
if ownership.get("block"):
|
if ownership.get("block"):
|
||||||
return {
|
actions.append(
|
||||||
|
{
|
||||||
"action": "delete_remote_branch",
|
"action": "delete_remote_branch",
|
||||||
"branch": head_branch,
|
"branch": head_branch,
|
||||||
"success": False,
|
"success": False,
|
||||||
@@ -12088,10 +12233,13 @@ def gitea_reconcile_merged_cleanups(
|
|||||||
"verified_absent": False,
|
"verified_absent": False,
|
||||||
"blocker_kind": "active_branch_ownership",
|
"blocker_kind": "active_branch_ownership",
|
||||||
"reasons": ownership.get("reasons") or [],
|
"reasons": ownership.get("reasons") or [],
|
||||||
"blocking_categories": ownership.get("blocking_categories") or [],
|
"blocking_categories": ownership.get(
|
||||||
"after_worktree_removal": after_worktree_removal,
|
"blocking_categories"
|
||||||
"ownership_reassessed": after_worktree_removal,
|
)
|
||||||
|
or [],
|
||||||
}
|
}
|
||||||
|
)
|
||||||
|
continue
|
||||||
|
|
||||||
encoded = urllib.parse.quote(head_branch, safe="")
|
encoded = urllib.parse.quote(head_branch, safe="")
|
||||||
url = f"{base}/branches/{encoded}"
|
url = f"{base}/branches/{encoded}"
|
||||||
@@ -12106,7 +12254,6 @@ def gitea_reconcile_merged_cleanups(
|
|||||||
"branch": head_branch,
|
"branch": head_branch,
|
||||||
"source": "reconcile_merged_cleanups",
|
"source": "reconcile_merged_cleanups",
|
||||||
"ownership_checked": True,
|
"ownership_checked": True,
|
||||||
"after_worktree_removal": after_worktree_removal,
|
|
||||||
},
|
},
|
||||||
):
|
):
|
||||||
api_request("DELETE", url, auth)
|
api_request("DELETE", url, auth)
|
||||||
@@ -12115,7 +12262,8 @@ def gitea_reconcile_merged_cleanups(
|
|||||||
readback
|
readback
|
||||||
)
|
)
|
||||||
verified = bool(readback_assessment.get("verified_absent"))
|
verified = bool(readback_assessment.get("verified_absent"))
|
||||||
return {
|
actions.append(
|
||||||
|
{
|
||||||
"action": "delete_remote_branch",
|
"action": "delete_remote_branch",
|
||||||
"branch": head_branch,
|
"branch": head_branch,
|
||||||
"success": bool(readback_assessment.get("ok")),
|
"success": bool(readback_assessment.get("ok")),
|
||||||
@@ -12124,53 +12272,22 @@ def gitea_reconcile_merged_cleanups(
|
|||||||
"verified_absent": verified,
|
"verified_absent": verified,
|
||||||
"readback": readback_assessment.get("readback"),
|
"readback": readback_assessment.get("readback"),
|
||||||
"reasons": readback_assessment.get("reasons") or [],
|
"reasons": readback_assessment.get("reasons") or [],
|
||||||
"after_worktree_removal": after_worktree_removal,
|
|
||||||
"ownership_reassessed": after_worktree_removal,
|
|
||||||
}
|
}
|
||||||
|
)
|
||||||
|
|
||||||
for entry in report.get("entries") or []:
|
|
||||||
head_branch = entry.get("head_branch") or ""
|
|
||||||
remote_assessment = entry.get("remote_branch") or {}
|
|
||||||
local_assessment = entry.get("local_worktree") or {}
|
|
||||||
pr_num = entry.get("pr_number")
|
|
||||||
try:
|
|
||||||
pr_num_int = int(pr_num) if pr_num is not None else None
|
|
||||||
except (TypeError, ValueError):
|
|
||||||
pr_num_int = None
|
|
||||||
|
|
||||||
# #851 lifecycle: when the target worktree is independently safe, remove
|
|
||||||
# it first so worktree_binding ownership does not permanently strand
|
|
||||||
# both the worktree and the remote branch. Never skip worktree removal
|
|
||||||
# merely because remote delete would be blocked by that binding.
|
|
||||||
# Ownership protection for remote delete remains fail-closed below.
|
|
||||||
worktree_removed = False
|
|
||||||
if local_assessment.get("safe_to_remove_worktree"):
|
if local_assessment.get("safe_to_remove_worktree"):
|
||||||
result = merged_cleanup_reconcile.remove_local_worktree(
|
result = merged_cleanup_reconcile.remove_local_worktree(
|
||||||
project_root,
|
_canonical_local_git_root(),
|
||||||
head_branch,
|
head_branch,
|
||||||
worktree_path=local_assessment.get("worktree_path"),
|
worktree_path=local_assessment.get("worktree_path"),
|
||||||
)
|
)
|
||||||
actions.append({"action": "remove_local_worktree", **result})
|
actions.append({"action": "remove_local_worktree", **result})
|
||||||
# Idempotent resume: absent worktree is already gone.
|
|
||||||
msg = (result.get("message") or "").lower()
|
|
||||||
worktree_removed = bool(result.get("success")) or (
|
|
||||||
"not found" in msg
|
|
||||||
)
|
|
||||||
|
|
||||||
if remote_assessment.get("safe_to_delete_remote"):
|
|
||||||
actions.append(
|
|
||||||
_attempt_owned_remote_delete(
|
|
||||||
head_branch=head_branch,
|
|
||||||
pr_num_int=pr_num_int,
|
|
||||||
after_worktree_removal=worktree_removed,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
for scratch in report.get("reviewer_scratch_entries") or []:
|
for scratch in report.get("reviewer_scratch_entries") or []:
|
||||||
if not scratch.get("safe_to_remove_worktree"):
|
if not scratch.get("safe_to_remove_worktree"):
|
||||||
continue
|
continue
|
||||||
result = merged_cleanup_reconcile.remove_reviewer_scratch_worktree(
|
result = merged_cleanup_reconcile.remove_reviewer_scratch_worktree(
|
||||||
project_root, scratch.get("worktree_path") or ""
|
_canonical_local_git_root(), scratch.get("worktree_path") or ""
|
||||||
)
|
)
|
||||||
actions.append({"action": "remove_reviewer_scratch_worktree", **result})
|
actions.append({"action": "remove_reviewer_scratch_worktree", **result})
|
||||||
|
|
||||||
@@ -20150,6 +20267,12 @@ def gitea_resolve_task_capability(
|
|||||||
task: str,
|
task: str,
|
||||||
remote: str = "dadeschools",
|
remote: str = "dadeschools",
|
||||||
host: str | None = None,
|
host: str | None = None,
|
||||||
|
org: str | None = None,
|
||||||
|
repo: str | None = None,
|
||||||
|
issue_number: int | None = None,
|
||||||
|
worktree_path: str | None = None,
|
||||||
|
pr_number: int | None = None,
|
||||||
|
**kwargs: Any,
|
||||||
) -> dict:
|
) -> dict:
|
||||||
"""Read-only / side-effect free: resolve capability, profile, and namespace for a task.
|
"""Read-only / side-effect free: resolve capability, profile, and namespace for a task.
|
||||||
|
|
||||||
@@ -20166,13 +20289,14 @@ def gitea_resolve_task_capability(
|
|||||||
remote: Known remote instance name.
|
remote: Known remote instance name.
|
||||||
host: Optional override for the Gitea host.
|
host: Optional override for the Gitea host.
|
||||||
"""
|
"""
|
||||||
|
task_key = task_capability_map._canonical_preflight_task(task)
|
||||||
TASK_MAP = task_capability_map.TASK_CAPABILITY_MAP
|
TASK_MAP = task_capability_map.TASK_CAPABILITY_MAP
|
||||||
# Every fresh attempt invalidates the previous task/role stamp before any
|
# Every fresh attempt invalidates the previous task/role stamp before any
|
||||||
# fallible resolver work. Unknown/malformed tasks and unexpected failures
|
# fallible resolver work. Unknown/malformed tasks and unexpected failures
|
||||||
# therefore remain fail-closed instead of preserving stale authority.
|
# therefore remain fail-closed instead of preserving stale authority.
|
||||||
_clear_resolved_capability_stamp()
|
_clear_resolved_capability_stamp()
|
||||||
|
|
||||||
if task not in TASK_MAP:
|
if task_key not in TASK_MAP:
|
||||||
# #723: structured fail-closed unknown_task (never raise into internal_error).
|
# #723: structured fail-closed unknown_task (never raise into internal_error).
|
||||||
profile = get_profile()
|
profile = get_profile()
|
||||||
h = host or (REMOTES.get(remote, {}).get("host") if remote in REMOTES else None)
|
h = host or (REMOTES.get(remote, {}).get("host") if remote in REMOTES else None)
|
||||||
@@ -20218,8 +20342,8 @@ def gitea_resolve_task_capability(
|
|||||||
result["cleared_stale_denial"] = True
|
result["cleared_stale_denial"] = True
|
||||||
return result
|
return result
|
||||||
|
|
||||||
required_permission = task_capability_map.required_permission(task)
|
required_permission = task_capability_map.required_permission(task_key)
|
||||||
required_role = task_capability_map.required_role(task)
|
required_role = task_capability_map.required_role(task_key)
|
||||||
role_exclusive_tasks = task_capability_map.ROLE_EXCLUSIVE_TASKS
|
role_exclusive_tasks = task_capability_map.ROLE_EXCLUSIVE_TASKS
|
||||||
|
|
||||||
infra_assessment = role_session_router.assess_infra_stop(PROJECT_ROOT)
|
infra_assessment = role_session_router.assess_infra_stop(PROJECT_ROOT)
|
||||||
@@ -20405,7 +20529,10 @@ def gitea_resolve_task_capability(
|
|||||||
available_in_session = allowed_in_current_session
|
available_in_session = allowed_in_current_session
|
||||||
runtime_stale_blocker = False
|
runtime_stale_blocker = False
|
||||||
|
|
||||||
if "PYTEST_CURRENT_TEST" not in os.environ or "GITEA_FORCE_MCP_RUNTIME_CHECK" in os.environ:
|
if (
|
||||||
|
"PYTEST_CURRENT_TEST" not in os.environ
|
||||||
|
or "GITEA_FORCE_MCP_RUNTIME_CHECK" in os.environ
|
||||||
|
) and os.environ.get("GITEA_ALLOW_STALE_RUNTIME") != "1":
|
||||||
runtime_reasons = _check_mcp_runtimes_diagnostics(task, matching_profiles)
|
runtime_reasons = _check_mcp_runtimes_diagnostics(task, matching_profiles)
|
||||||
if runtime_reasons:
|
if runtime_reasons:
|
||||||
restart_required = True
|
restart_required = True
|
||||||
|
|||||||
@@ -73,6 +73,8 @@ AUTHOR_TASKS = frozenset({
|
|||||||
"claim_issue",
|
"claim_issue",
|
||||||
"create_branch",
|
"create_branch",
|
||||||
"push_branch",
|
"push_branch",
|
||||||
|
"bootstrap_author_issue_worktree",
|
||||||
|
"gitea_bootstrap_author_issue_worktree",
|
||||||
"create_pr",
|
"create_pr",
|
||||||
"comment_pr",
|
"comment_pr",
|
||||||
"address_pr_change_requests",
|
"address_pr_change_requests",
|
||||||
|
|||||||
@@ -78,6 +78,14 @@ TASK_CAPABILITY_MAP: dict[str, dict[str, str]] = {
|
|||||||
"permission": "gitea.branch.create",
|
"permission": "gitea.branch.create",
|
||||||
"role": "author",
|
"role": "author",
|
||||||
},
|
},
|
||||||
|
"bootstrap_author_issue_worktree": {
|
||||||
|
"permission": "gitea.branch.create",
|
||||||
|
"role": "author",
|
||||||
|
},
|
||||||
|
"gitea_bootstrap_author_issue_worktree": {
|
||||||
|
"permission": "gitea.branch.create",
|
||||||
|
"role": "author",
|
||||||
|
},
|
||||||
"push_branch": {
|
"push_branch": {
|
||||||
"permission": "gitea.branch.push",
|
"permission": "gitea.branch.push",
|
||||||
"role": "author",
|
"role": "author",
|
||||||
@@ -497,6 +505,10 @@ TASK_CAPABILITY_MAP: dict[str, dict[str, str]] = {
|
|||||||
# merger lease (#763).
|
# merger lease (#763).
|
||||||
_PREFLIGHT_TASK_TRANSITIONS = frozenset({
|
_PREFLIGHT_TASK_TRANSITIONS = frozenset({
|
||||||
("review_pr", "acquire_reviewer_pr_lease"),
|
("review_pr", "acquire_reviewer_pr_lease"),
|
||||||
|
# #850: native author issue worktree bootstrap
|
||||||
|
("work_issue", "bootstrap_author_issue_worktree"),
|
||||||
|
("bootstrap_author_issue_worktree", "lock_issue"),
|
||||||
|
# #860: dirty-orphan recovery and related work_issue transitions (master)
|
||||||
("work_issue", "lock_issue"),
|
("work_issue", "lock_issue"),
|
||||||
("work_issue", "recover_dirty_orphaned_issue_worktree"),
|
("work_issue", "recover_dirty_orphaned_issue_worktree"),
|
||||||
("work_issue", "gitea_recover_dirty_orphaned_issue_worktree"),
|
("work_issue", "gitea_recover_dirty_orphaned_issue_worktree"),
|
||||||
@@ -548,6 +560,8 @@ ROLE_EXCLUSIVE_TASKS: frozenset[str] = frozenset(
|
|||||||
"gitea_release_merger_pr_lease",
|
"gitea_release_merger_pr_lease",
|
||||||
"create_branch",
|
"create_branch",
|
||||||
"push_branch",
|
"push_branch",
|
||||||
|
"bootstrap_author_issue_worktree",
|
||||||
|
"gitea_bootstrap_author_issue_worktree",
|
||||||
"publish_unpublished_branch",
|
"publish_unpublished_branch",
|
||||||
"create_pr",
|
"create_pr",
|
||||||
"commit_files",
|
"commit_files",
|
||||||
@@ -573,6 +587,7 @@ ISSUE_MUTATION_TOOL_TASKS: dict[str, str] = {
|
|||||||
"gitea_set_issue_labels": "set_issue_labels",
|
"gitea_set_issue_labels": "set_issue_labels",
|
||||||
"gitea_cleanup_terminal_pr_labels": "cleanup_terminal_pr_labels",
|
"gitea_cleanup_terminal_pr_labels": "cleanup_terminal_pr_labels",
|
||||||
"gitea_create_label": "create_label",
|
"gitea_create_label": "create_label",
|
||||||
|
"gitea_bootstrap_author_issue_worktree": "bootstrap_author_issue_worktree",
|
||||||
"gitea_commit_files": "commit_files",
|
"gitea_commit_files": "commit_files",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,601 @@
|
|||||||
|
"""Regression test suite for native author issue worktree bootstrap (#850)."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
import tempfile
|
||||||
|
import unittest
|
||||||
|
from unittest import mock
|
||||||
|
|
||||||
|
import author_issue_bootstrap
|
||||||
|
import task_capability_map
|
||||||
|
|
||||||
|
|
||||||
|
def _concurrent_bootstrap_worker(args: tuple[str, int, str, str, str, str]) -> dict:
|
||||||
|
repo_dir, issue_num, key, lock_dir, journal_dir, master_sha = args
|
||||||
|
os.environ["GITEA_BOOTSTRAP_JOURNAL_DIR"] = journal_dir
|
||||||
|
return author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=issue_num,
|
||||||
|
canonical_repo_root=repo_dir,
|
||||||
|
expected_base_sha=master_sha,
|
||||||
|
idempotency_key=key,
|
||||||
|
lock_dir=lock_dir,
|
||||||
|
owner_session="session-concurrent-test",
|
||||||
|
active_identity="jcwalker3",
|
||||||
|
active_profile="prgs-author",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class TestAuthorIssueBootstrap(unittest.TestCase):
|
||||||
|
"""Test suite covering AC1-AC10 and comment #14959 specification."""
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.tmp_dir = tempfile.mkdtemp(prefix="test_bootstrap_")
|
||||||
|
self.repo_dir = os.path.join(self.tmp_dir, "repo")
|
||||||
|
os.makedirs(self.repo_dir)
|
||||||
|
|
||||||
|
# Initialize synthetic git repo
|
||||||
|
subprocess.run(["git", "init", "-b", "master"], cwd=self.repo_dir, check=True, capture_output=True)
|
||||||
|
subprocess.run(["git", "config", "user.name", "Test User"], cwd=self.repo_dir, check=True)
|
||||||
|
subprocess.run(["git", "config", "user.email", "[email protected]"], cwd=self.repo_dir, check=True)
|
||||||
|
|
||||||
|
readme = os.path.join(self.repo_dir, "README.md")
|
||||||
|
with open(readme, "w", encoding="utf-8") as f:
|
||||||
|
f.write("# Test Repo\n")
|
||||||
|
subprocess.run(["git", "add", "README.md"], cwd=self.repo_dir, check=True, capture_output=True)
|
||||||
|
subprocess.run(["git", "commit", "-m", "initial commit"], cwd=self.repo_dir, check=True, capture_output=True)
|
||||||
|
|
||||||
|
rev_res = subprocess.run(["git", "rev-parse", "HEAD"], cwd=self.repo_dir, capture_output=True, text=True, check=True)
|
||||||
|
self.master_sha = rev_res.stdout.strip()
|
||||||
|
|
||||||
|
self.branches_dir = os.path.join(self.repo_dir, "branches")
|
||||||
|
os.makedirs(self.branches_dir, exist_ok=True)
|
||||||
|
self.lock_dir = os.path.join(self.tmp_dir, "locks")
|
||||||
|
os.makedirs(self.lock_dir, exist_ok=True)
|
||||||
|
self.journal_dir = os.path.join(self.tmp_dir, "journals")
|
||||||
|
os.makedirs(self.journal_dir, exist_ok=True)
|
||||||
|
os.environ["GITEA_BOOTSTRAP_JOURNAL_DIR"] = self.journal_dir
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
os.environ.pop("GITEA_BOOTSTRAP_JOURNAL_DIR", None)
|
||||||
|
shutil.rmtree(self.tmp_dir, ignore_errors=True)
|
||||||
|
|
||||||
|
def test_bootstrap_success_path(self):
|
||||||
|
"""AC1/AC3/AC8: Successful bootstrap creates branch, worktree, registration, and lock proof."""
|
||||||
|
key = "test_key_success_1"
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
# assignment_id/lease_id omitted: optional unless verified live.
|
||||||
|
expected_base_sha=self.master_sha,
|
||||||
|
idempotency_key=key,
|
||||||
|
remote="prgs",
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertTrue(res.get("success"), f"Bootstrap failed: {res}")
|
||||||
|
self.assertFalse(res.get("replayed"))
|
||||||
|
self.assertEqual(res.get("issue_number"), 850)
|
||||||
|
self.assertEqual(res.get("base_sha"), self.master_sha)
|
||||||
|
self.assertIn("branches/fix-issue-850-native-mcp-bootstrap", res.get("worktree_path"))
|
||||||
|
|
||||||
|
# Verify worktree directory exists and is registered
|
||||||
|
worktree_path = res["worktree_path"]
|
||||||
|
self.assertTrue(os.path.isdir(worktree_path))
|
||||||
|
|
||||||
|
wt_list = subprocess.run(["git", "-C", self.repo_dir, "worktree", "list"], capture_output=True, text=True, check=True)
|
||||||
|
self.assertIn(worktree_path, wt_list.stdout)
|
||||||
|
|
||||||
|
# Verify phase journal written
|
||||||
|
journal = author_issue_bootstrap.load_phase_journal(key, journal_dir=self.lock_dir)
|
||||||
|
self.assertIsNotNone(journal)
|
||||||
|
self.assertTrue(journal.get("completed"))
|
||||||
|
self.assertEqual(journal.get("current_phase"), author_issue_bootstrap.PHASE_7_TRANSITION_COMPLETED)
|
||||||
|
|
||||||
|
def test_idempotent_replay(self):
|
||||||
|
"""Item 2: Replaying with identical key returns cached transition without duplicate creation."""
|
||||||
|
key = "test_key_idempotent_1"
|
||||||
|
res1 = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
idempotency_key=key,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertTrue(res1["success"], f"res1 failed: {res1}")
|
||||||
|
self.assertFalse(res1.get("replayed"))
|
||||||
|
|
||||||
|
# Second call
|
||||||
|
res2 = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
idempotency_key=key,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertTrue(res2["success"], f"res2 failed: {res2}")
|
||||||
|
self.assertTrue(res2.get("replayed"))
|
||||||
|
self.assertEqual(res1["worktree_path"], res2["worktree_path"])
|
||||||
|
|
||||||
|
def test_stale_concurrency_pin_refusal(self):
|
||||||
|
"""Item 3: Mismatched expected base SHA fails closed without silent rebasing."""
|
||||||
|
stale_sha = "0000000000000000000000000000000000000000"
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
expected_base_sha=stale_sha,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertEqual(res.get("reason_code"), "stale_concurrency_pin")
|
||||||
|
self.assertIn("exact_next_action", res)
|
||||||
|
|
||||||
|
def test_path_outside_branches_root_refusal(self):
|
||||||
|
"""Item 6: Worktree path outside branches/ root is refused."""
|
||||||
|
outside_path = os.path.join(self.tmp_dir, "outside_worktree")
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
worktree_path=outside_path,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertEqual(res.get("reason_code"), "path_outside_canonical_branches_root")
|
||||||
|
|
||||||
|
def test_preexisting_dirty_worktree_preservation(self):
|
||||||
|
"""Item 6: Preexisting dirty worktree fails closed and is NOT modified or cleaned."""
|
||||||
|
branch = "fix/issue-850-dirty-test"
|
||||||
|
wt_path = os.path.join(self.branches_dir, "fix-issue-850-dirty-test")
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "worktree", "add", "-b", branch, wt_path], check=True, capture_output=True)
|
||||||
|
|
||||||
|
# Create dirty untracked file
|
||||||
|
dirty_file = os.path.join(wt_path, "dirty.txt")
|
||||||
|
with open(dirty_file, "w") as f:
|
||||||
|
f.write("dirty edits\n")
|
||||||
|
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
branch_name=branch,
|
||||||
|
worktree_path=wt_path,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertEqual(res.get("reason_code"), "preexisting_dirty_worktree")
|
||||||
|
|
||||||
|
# Prove dirty file is preserved byte-for-byte
|
||||||
|
self.assertTrue(os.path.exists(dirty_file))
|
||||||
|
with open(dirty_file, "r") as f:
|
||||||
|
self.assertEqual(f.read(), "dirty edits\n")
|
||||||
|
|
||||||
|
def test_compensating_recovery_on_failed_phase(self):
|
||||||
|
"""AC4/Item 4: Failure during transition rolls back ONLY newly created artifacts."""
|
||||||
|
key = "test_key_recovery_1"
|
||||||
|
# Simulate partial progress in journal
|
||||||
|
journal = {
|
||||||
|
"idempotency_key": key,
|
||||||
|
"issue_number": 850,
|
||||||
|
"branch_name": "fix/issue-850-recovery-test",
|
||||||
|
"worktree_path": os.path.join(self.branches_dir, "fix-issue-850-recovery-test"),
|
||||||
|
"artifacts_created": {
|
||||||
|
"branch_created": True,
|
||||||
|
"worktree_dir_created": True,
|
||||||
|
"worktree_registered": True,
|
||||||
|
"lock_created": False,
|
||||||
|
},
|
||||||
|
"failure_reason": "simulated lock failure",
|
||||||
|
"current_phase": author_issue_bootstrap.PHASE_5_REGISTRATION_VERIFIED,
|
||||||
|
"completed": False,
|
||||||
|
}
|
||||||
|
# Create the branch and worktree manually to simulate partial state
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "branch", journal["branch_name"]], check=True, capture_output=True)
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "worktree", "add", journal["worktree_path"], journal["branch_name"]], check=True, capture_output=True)
|
||||||
|
|
||||||
|
# Run compensating recovery
|
||||||
|
rec = author_issue_bootstrap.run_compensating_recovery(journal, self.repo_dir)
|
||||||
|
self.assertTrue(rec["executed"])
|
||||||
|
self.assertIn(f"worktree_path:{journal['worktree_path']}", rec["rolled_back"])
|
||||||
|
self.assertIn(f"branch:{journal['branch_name']}", rec["rolled_back"])
|
||||||
|
|
||||||
|
# Prove worktree directory and branch were rolled back
|
||||||
|
self.assertFalse(os.path.exists(journal["worktree_path"]))
|
||||||
|
branch_check = subprocess.run(["git", "-C", self.repo_dir, "rev-parse", "--verify", journal["branch_name"]], capture_output=True, text=True, check=False)
|
||||||
|
self.assertNotEqual(branch_check.returncode, 0)
|
||||||
|
|
||||||
|
def test_cross_process_concurrency(self):
|
||||||
|
"""Review #525 Finding 1: Genuine cross-process concurrency locking prevents corruption."""
|
||||||
|
import concurrent.futures
|
||||||
|
|
||||||
|
key = "test_concurrent_key_850"
|
||||||
|
args = (self.repo_dir, 850, key, self.lock_dir, self.journal_dir, self.master_sha)
|
||||||
|
|
||||||
|
with concurrent.futures.ProcessPoolExecutor(max_workers=2) as executor:
|
||||||
|
fut1 = executor.submit(_concurrent_bootstrap_worker, args)
|
||||||
|
fut2 = executor.submit(_concurrent_bootstrap_worker, args)
|
||||||
|
res1 = fut1.result(timeout=10)
|
||||||
|
res2 = fut2.result(timeout=10)
|
||||||
|
|
||||||
|
self.assertTrue(res1["success"], f"res1 failed: {res1}")
|
||||||
|
self.assertTrue(res2["success"], f"res2 failed: {res2}")
|
||||||
|
# One process performs creation, the other process receives idempotent replay
|
||||||
|
replayed_count = sum(1 for r in (res1, res2) if r.get("replayed"))
|
||||||
|
created_count = sum(1 for r in (res1, res2) if not r.get("replayed"))
|
||||||
|
self.assertEqual(replayed_count, 1)
|
||||||
|
self.assertEqual(created_count, 1)
|
||||||
|
self.assertEqual(res1["worktree_path"], res2["worktree_path"])
|
||||||
|
|
||||||
|
def test_interrupted_replay_preserves_artifacts_created_provenance(self):
|
||||||
|
"""Review #525 Finding 2: Replaying incomplete journal preserves creation provenance monotonically."""
|
||||||
|
key = "test_key_interrupted_replay_1"
|
||||||
|
branch = "fix/issue-850-interrupted-replay"
|
||||||
|
wt_path = os.path.join(self.branches_dir, "fix-issue-850-interrupted-replay")
|
||||||
|
|
||||||
|
# Simulate Phase 2/3 completion where branch and worktree directory were created by this transition
|
||||||
|
journal = {
|
||||||
|
"idempotency_key": key,
|
||||||
|
"issue_number": 850,
|
||||||
|
"branch_name": branch,
|
||||||
|
"worktree_path": wt_path,
|
||||||
|
"active_identity": "jcwalker3",
|
||||||
|
"active_profile": "prgs-author",
|
||||||
|
"remote": "prgs",
|
||||||
|
"org": "Scaled-Tech-Consulting",
|
||||||
|
"repo": "Gitea-Tools",
|
||||||
|
"phases": {
|
||||||
|
author_issue_bootstrap.PHASE_1_REQUEST_ACCEPTED: {"status": "completed"},
|
||||||
|
author_issue_bootstrap.PHASE_2_BRANCH_CONFIRMED: {"status": "completed", "created": True},
|
||||||
|
},
|
||||||
|
"artifacts_created": {
|
||||||
|
"branch_created": True,
|
||||||
|
"worktree_dir_created": True,
|
||||||
|
"worktree_registered": True,
|
||||||
|
"lock_created": False,
|
||||||
|
},
|
||||||
|
"current_phase": author_issue_bootstrap.PHASE_3_PATH_RESERVED,
|
||||||
|
"completed": False,
|
||||||
|
}
|
||||||
|
# Pre-create the branch and worktree on disk to simulate partial state after crash
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "branch", branch, self.master_sha], check=True, capture_output=True)
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "worktree", "add", wt_path, branch], check=True, capture_output=True)
|
||||||
|
author_issue_bootstrap.save_phase_journal(journal, journal_dir=self.lock_dir)
|
||||||
|
|
||||||
|
# Now resume/replay the transition but simulate lock binding failure during Phase 6
|
||||||
|
with mock.patch("issue_lock_store.bind_session_lock", side_effect=RuntimeError("Lock failure test")):
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
branch_name=branch,
|
||||||
|
worktree_path=wt_path,
|
||||||
|
idempotency_key=key,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertEqual(res.get("reason_code"), "issue_lock_acquisition_failed")
|
||||||
|
|
||||||
|
# Verify that compensating recovery correctly deleted transition-created branch & worktree
|
||||||
|
# because creation provenance was preserved across replay (NOT downgraded to False!)
|
||||||
|
self.assertFalse(os.path.exists(wt_path))
|
||||||
|
branch_check = subprocess.run(["git", "-C", self.repo_dir, "rev-parse", "--verify", branch], capture_output=True, text=True, check=False)
|
||||||
|
self.assertNotEqual(branch_check.returncode, 0)
|
||||||
|
|
||||||
|
def test_transition_created_only_compensation(self):
|
||||||
|
"""Review #525 Finding 4: Preexisting branch is NOT deleted by compensation when only worktree was transition-created."""
|
||||||
|
key = "test_key_preexisting_branch_compensation"
|
||||||
|
preexisting_branch = "fix/issue-850-preexisting"
|
||||||
|
wt_path = os.path.join(self.branches_dir, "fix-issue-850-preexisting")
|
||||||
|
|
||||||
|
# Create branch BEFORE bootstrap (preexisting branch)
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "branch", preexisting_branch, self.master_sha], check=True, capture_output=True)
|
||||||
|
|
||||||
|
# Call bootstrap with simulated failure during Phase 6 (lock binding)
|
||||||
|
with mock.patch("issue_lock_store.bind_session_lock", side_effect=RuntimeError("Simulated lock failure")):
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
branch_name=preexisting_branch,
|
||||||
|
worktree_path=wt_path,
|
||||||
|
idempotency_key=key,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
# Worktree dir was created by transition -> removed by compensation
|
||||||
|
self.assertFalse(os.path.exists(wt_path))
|
||||||
|
|
||||||
|
# Preexisting branch was NOT created by transition -> MUST BE PRESERVED!
|
||||||
|
branch_check = subprocess.run(["git", "-C", self.repo_dir, "rev-parse", "--verify", preexisting_branch], capture_output=True, text=True, check=False)
|
||||||
|
self.assertEqual(branch_check.returncode, 0, "Preexisting branch was deleted by mistake!")
|
||||||
|
|
||||||
|
def test_incompatible_idempotency_replay_refusal(self):
|
||||||
|
"""Review #525 Finding 4: Replaying key with incompatible parameters returns refusal."""
|
||||||
|
key = "test_key_incompatible_replay"
|
||||||
|
res1 = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
branch_name="fix/issue-850-param-a",
|
||||||
|
idempotency_key=key,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertTrue(res1["success"])
|
||||||
|
|
||||||
|
# Second call with different branch_name
|
||||||
|
res2 = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
branch_name="fix/issue-850-param-b",
|
||||||
|
idempotency_key=key,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertFalse(res2["success"])
|
||||||
|
self.assertEqual(res2.get("reason_code"), "incompatible_idempotency_replay")
|
||||||
|
|
||||||
|
def test_exact_next_action_satisfiable_via_mcp(self):
|
||||||
|
"""Review #525 Finding 4: exact_next_action provides satisfiable MCP actions, not shell commands."""
|
||||||
|
key = "test_key_next_action_mcp"
|
||||||
|
stale_sha = "0000000000000000000000000000000000000000"
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
expected_base_sha=stale_sha,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
next_action = res.get("exact_next_action", "")
|
||||||
|
self.assertNotIn("scripts/worktree-start", next_action)
|
||||||
|
self.assertNotIn("git worktree add", next_action)
|
||||||
|
self.assertNotIn("bash", next_action.lower())
|
||||||
|
|
||||||
|
def test_missing_owner_session_refusal(self):
|
||||||
|
"""Finding D: Missing owner_session context fails closed with typed refusal and zero mutation."""
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
owner_session=None,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
)
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertEqual(res.get("reason_code"), "missing_owner_session")
|
||||||
|
self.assertIn("exact_next_action", res)
|
||||||
|
|
||||||
|
def test_symlink_lock_file_refusal(self):
|
||||||
|
"""Finding C: BootstrapTransitionLock refuses to follow symlinks."""
|
||||||
|
key = "test_symlink_lock_key"
|
||||||
|
safe_key = "".join(c if c.isalnum() or c in ("-", "_", ".") else "_" for c in key)
|
||||||
|
lock_path = os.path.join(self.lock_dir, f"{safe_key}.lock")
|
||||||
|
target_file = os.path.join(self.tmp_dir, "fake_target")
|
||||||
|
with open(target_file, "w") as f:
|
||||||
|
f.write("target")
|
||||||
|
os.symlink(target_file, lock_path)
|
||||||
|
|
||||||
|
with self.assertRaises(RuntimeError) as ctx:
|
||||||
|
with author_issue_bootstrap.BootstrapTransitionLock(key, journal_dir=self.lock_dir):
|
||||||
|
pass
|
||||||
|
self.assertIn("symlink", str(ctx.exception).lower())
|
||||||
|
|
||||||
|
def test_lock_directory_escape_refusal(self):
|
||||||
|
"""Finding C: BootstrapTransitionLock refuses keys that escape lock directory."""
|
||||||
|
with mock.patch("os.path.abspath", return_value="/tmp/outside/evil_key.lock"):
|
||||||
|
with self.assertRaises(RuntimeError) as ctx:
|
||||||
|
author_issue_bootstrap.BootstrapTransitionLock("key", journal_dir=self.lock_dir)
|
||||||
|
self.assertIn("escapes", str(ctx.exception).lower())
|
||||||
|
|
||||||
|
def test_missing_active_identity_refusal(self):
|
||||||
|
"""F-5: Missing active_identity parameter fails closed."""
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
active_identity=None,
|
||||||
|
active_profile="prgs-author",
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
)
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertEqual(res.get("reason_code"), "missing_active_identity")
|
||||||
|
|
||||||
|
def test_missing_active_profile_refusal(self):
|
||||||
|
"""F-5: Missing active_profile parameter fails closed."""
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
active_identity="jcwalker3",
|
||||||
|
active_profile=None,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
)
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertEqual(res.get("reason_code"), "missing_active_profile")
|
||||||
|
|
||||||
|
def test_dirty_worktree_preserved_during_recovery(self):
|
||||||
|
"""F-4: Compensating recovery does not delete dirty worktree."""
|
||||||
|
branch = "fix/issue-850-rec-dirty"
|
||||||
|
wt_path = os.path.join(self.branches_dir, "fix-issue-850-rec-dirty")
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "worktree", "add", "-b", branch, wt_path], check=True, capture_output=True)
|
||||||
|
dirty_file = os.path.join(wt_path, "dirty.txt")
|
||||||
|
with open(dirty_file, "w") as f:
|
||||||
|
f.write("uncommitted work")
|
||||||
|
|
||||||
|
journal = {
|
||||||
|
"idempotency_key": "test_dirty_rec",
|
||||||
|
"issue_number": 850,
|
||||||
|
"branch_name": branch,
|
||||||
|
"worktree_path": wt_path,
|
||||||
|
"artifacts_created": {
|
||||||
|
"worktree_dir_created": True,
|
||||||
|
"worktree_registered": True,
|
||||||
|
},
|
||||||
|
"failure_reason": "test dirty recovery",
|
||||||
|
}
|
||||||
|
rec = author_issue_bootstrap.run_compensating_recovery(journal, self.repo_dir, journal_dir=self.lock_dir)
|
||||||
|
self.assertTrue(os.path.exists(wt_path))
|
||||||
|
self.assertIn(f"worktree_path_preserved_dirty:{wt_path}", rec["rolled_back"])
|
||||||
|
|
||||||
|
def test_branch_with_commits_preserved_during_recovery(self):
|
||||||
|
"""F-4: Compensating recovery does not delete branch with author commits."""
|
||||||
|
branch = "fix/issue-850-rec-commits"
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "branch", branch, self.master_sha], check=True, capture_output=True)
|
||||||
|
# Add a commit on the branch
|
||||||
|
wt_path = os.path.join(self.branches_dir, "fix-issue-850-rec-commits")
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "worktree", "add", wt_path, branch], check=True, capture_output=True)
|
||||||
|
cfile = os.path.join(wt_path, "commit.txt")
|
||||||
|
with open(cfile, "w") as f:
|
||||||
|
f.write("author commit")
|
||||||
|
subprocess.run(["git", "-C", wt_path, "add", "commit.txt"], check=True, capture_output=True)
|
||||||
|
subprocess.run(["git", "-C", wt_path, "commit", "-m", "author commit"], check=True, capture_output=True)
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "worktree", "remove", "--force", wt_path], check=True, capture_output=True)
|
||||||
|
|
||||||
|
journal = {
|
||||||
|
"idempotency_key": "test_commits_rec",
|
||||||
|
"issue_number": 850,
|
||||||
|
"branch_name": branch,
|
||||||
|
"resolved_base_sha": self.master_sha,
|
||||||
|
"artifacts_created": {
|
||||||
|
"branch_created": True,
|
||||||
|
},
|
||||||
|
"failure_reason": "test commit branch recovery",
|
||||||
|
}
|
||||||
|
rec = author_issue_bootstrap.run_compensating_recovery(journal, self.repo_dir, journal_dir=self.lock_dir)
|
||||||
|
branch_check = subprocess.run(["git", "-C", self.repo_dir, "rev-parse", "--verify", branch], capture_output=True, text=True, check=False)
|
||||||
|
self.assertEqual(branch_check.returncode, 0, "Branch with commits was deleted!")
|
||||||
|
self.assertIn(f"branch_preserved_commits:{branch}", rec["rolled_back"])
|
||||||
|
|
||||||
|
def test_task_capability_map_integration(self):
|
||||||
|
"""Verify task_capability_map has bootstrap_author_issue_worktree configured correctly."""
|
||||||
|
self.assertEqual(task_capability_map.required_role("bootstrap_author_issue_worktree"), "author")
|
||||||
|
self.assertEqual(task_capability_map.required_permission("bootstrap_author_issue_worktree"), "gitea.branch.create")
|
||||||
|
self.assertTrue(task_capability_map.preflight_task_matches("work_issue", "bootstrap_author_issue_worktree"))
|
||||||
|
self.assertTrue(task_capability_map.preflight_task_matches("bootstrap_author_issue_worktree", "lock_issue"))
|
||||||
|
|
||||||
|
def test_unverified_assignment_lease_ids_fail_closed(self):
|
||||||
|
"""Review #531 Finding 4: fabricated assignment/lease IDs are refused."""
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
assignment_id="asn-fabricated",
|
||||||
|
lease_id="lease-fabricated",
|
||||||
|
expected_base_sha=self.master_sha,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertIn(
|
||||||
|
res.get("reason_code"),
|
||||||
|
{
|
||||||
|
"unknown_lease_id",
|
||||||
|
"assignment_lease_lookup_failed",
|
||||||
|
"incomplete_assignment_lease_ids",
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_partial_assignment_lease_ids_fail_closed(self):
|
||||||
|
"""Review #531 Finding 4: one of assignment_id/lease_id alone is incomplete."""
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
assignment_id="asn-only",
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertEqual(res.get("reason_code"), "incomplete_assignment_lease_ids")
|
||||||
|
|
||||||
|
def test_stale_diverged_branch_is_not_accepted_via_merge_base(self):
|
||||||
|
"""Review #531 Finding 3: any common ancestor is not enough; require master ⊆ branch."""
|
||||||
|
branch = "fix/issue-850-stale-divergent"
|
||||||
|
# Create branch from current master, then advance master so branch lacks tip.
|
||||||
|
subprocess.run(
|
||||||
|
["git", "-C", self.repo_dir, "branch", branch, self.master_sha],
|
||||||
|
check=True,
|
||||||
|
capture_output=True,
|
||||||
|
)
|
||||||
|
# Make a new commit on master (orphan path so branch does not contain it).
|
||||||
|
marker = os.path.join(self.repo_dir, "master-advance.txt")
|
||||||
|
with open(marker, "w") as f:
|
||||||
|
f.write("advance master\n")
|
||||||
|
subprocess.run(["git", "-C", self.repo_dir, "add", "master-advance.txt"], check=True, capture_output=True)
|
||||||
|
subprocess.run(
|
||||||
|
["git", "-C", self.repo_dir, "commit", "-m", "advance master past branch"],
|
||||||
|
check=True,
|
||||||
|
capture_output=True,
|
||||||
|
)
|
||||||
|
new_master = subprocess.run(
|
||||||
|
["git", "-C", self.repo_dir, "rev-parse", "HEAD"],
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
check=True,
|
||||||
|
).stdout.strip()
|
||||||
|
res = author_issue_bootstrap.bootstrap_author_issue_worktree(
|
||||||
|
issue_number=850,
|
||||||
|
canonical_repo_root=self.repo_dir,
|
||||||
|
branch_name=branch,
|
||||||
|
expected_base_sha=new_master,
|
||||||
|
lock_dir=self.lock_dir,
|
||||||
|
owner_session="session-test-1234",
|
||||||
|
)
|
||||||
|
self.assertFalse(res["success"])
|
||||||
|
self.assertEqual(res.get("reason_code"), "incompatible_existing_branch")
|
||||||
|
|
||||||
|
def test_compensating_recovery_attempts_lease_release(self):
|
||||||
|
"""Review #531 Finding 5: recovery invokes lease release when lease_id is present."""
|
||||||
|
from unittest import mock
|
||||||
|
|
||||||
|
journal = {
|
||||||
|
"idempotency_key": "test_lease_rec",
|
||||||
|
"issue_number": 850,
|
||||||
|
"owner_session": "session-test-1234",
|
||||||
|
"lease_id": "lease-abc",
|
||||||
|
"branch_name": "fix/issue-850-lease-rec",
|
||||||
|
"artifacts_created": {"lock_created": True},
|
||||||
|
"failure_reason": "simulated",
|
||||||
|
"completed": False,
|
||||||
|
}
|
||||||
|
with mock.patch.object(
|
||||||
|
author_issue_bootstrap.lease_lifecycle,
|
||||||
|
"release_lease",
|
||||||
|
return_value={"success": True},
|
||||||
|
) as rel, mock.patch.object(
|
||||||
|
author_issue_bootstrap.control_plane_db,
|
||||||
|
"ControlPlaneDB",
|
||||||
|
return_value=mock.Mock(),
|
||||||
|
):
|
||||||
|
rec = author_issue_bootstrap.run_compensating_recovery(
|
||||||
|
journal, self.repo_dir, journal_dir=self.lock_dir
|
||||||
|
)
|
||||||
|
self.assertTrue(rec["executed"])
|
||||||
|
rel.assert_called_once()
|
||||||
|
self.assertIn("lease:lease-abc", rec["rolled_back"])
|
||||||
|
|
||||||
|
|
||||||
|
class TestCanonicalRootNoStringSplit(unittest.TestCase):
|
||||||
|
def test_fallback_uses_commonpath_not_substring_split(self):
|
||||||
|
"""Review #531 Finding 2: no norm.split('/branches/') fallback."""
|
||||||
|
import inspect
|
||||||
|
import author_mutation_worktree as amw
|
||||||
|
|
||||||
|
src = inspect.getsource(amw.resolve_canonical_repo_root)
|
||||||
|
self.assertNotIn('split("/branches/")', src)
|
||||||
|
self.assertNotIn("split('/branches/')", src)
|
||||||
|
|
||||||
|
# Fallback recovers repo root from a nested branches worktree path.
|
||||||
|
with tempfile.TemporaryDirectory() as tmp:
|
||||||
|
repo = os.path.join(tmp, "repo")
|
||||||
|
wt = os.path.join(repo, "branches", "fix-issue-850-x")
|
||||||
|
os.makedirs(wt)
|
||||||
|
# git unavailable path: pass missing workspace so fallback is used.
|
||||||
|
root = amw.resolve_canonical_repo_root("/missing/path", wt)
|
||||||
|
self.assertEqual(root, os.path.realpath(repo))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
|
|
||||||
@@ -28,6 +28,21 @@ class TestPathUnderBranches(unittest.TestCase):
|
|||||||
amw.is_path_under_branches("/repo/other-checkout", self.ROOT)
|
amw.is_path_under_branches("/repo/other-checkout", self.ROOT)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_unrelated_branches_dir_fails(self):
|
||||||
|
self.assertFalse(
|
||||||
|
amw.is_path_under_branches("/tmp/branches/evil", self.ROOT)
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_prefix_confusion_fails(self):
|
||||||
|
self.assertFalse(
|
||||||
|
amw.is_path_under_branches(f"{self.ROOT}/branches-other/foo", self.ROOT)
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_traversal_fails(self):
|
||||||
|
self.assertFalse(
|
||||||
|
amw.is_path_under_branches(f"{self.ROOT}/branches/../evil", self.ROOT)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class TestAssessAuthorMutationWorktree(unittest.TestCase):
|
class TestAssessAuthorMutationWorktree(unittest.TestCase):
|
||||||
ROOT = "/repo/Gitea-Tools"
|
ROOT = "/repo/Gitea-Tools"
|
||||||
@@ -71,6 +86,13 @@ class TestAssessAuthorMutationWorktree(unittest.TestCase):
|
|||||||
self.assertTrue(result["proven"])
|
self.assertTrue(result["proven"])
|
||||||
self.assertFalse(result["block"])
|
self.assertFalse(result["block"])
|
||||||
|
|
||||||
|
def test_path_shaped_branches_ancestry_without_isdir(self):
|
||||||
|
"""Review #551: commonpath recovery must not require on-disk isdir."""
|
||||||
|
fake_wt = "/repo/Gitea-Tools/branches/issue-274"
|
||||||
|
root = amw.resolve_canonical_repo_root(fake_wt, fake_wt)
|
||||||
|
self.assertEqual(root, "/repo/Gitea-Tools")
|
||||||
|
self.assertNotIn('split("/branches/")', open(amw.__file__).read())
|
||||||
|
|
||||||
|
|
||||||
class TestPreflightIntegration(unittest.TestCase):
|
class TestPreflightIntegration(unittest.TestCase):
|
||||||
def test_verify_preflight_blocks_control_checkout_with_test_porcelain(self):
|
def test_verify_preflight_blocks_control_checkout_with_test_porcelain(self):
|
||||||
|
|||||||
@@ -139,6 +139,8 @@ EXPECTED_ROLE_EXCLUSIVE_TASKS = frozenset(
|
|||||||
"gitea_release_merger_pr_lease",
|
"gitea_release_merger_pr_lease",
|
||||||
"create_branch",
|
"create_branch",
|
||||||
"push_branch",
|
"push_branch",
|
||||||
|
"bootstrap_author_issue_worktree",
|
||||||
|
"gitea_bootstrap_author_issue_worktree",
|
||||||
# #812 AC20: publishing an unpublished local head is author-only for the
|
# #812 AC20: publishing an unpublished local head is author-only for the
|
||||||
# same reason every other push is — it writes a branch to the remote.
|
# same reason every other push is — it writes a branch to the remote.
|
||||||
"publish_unpublished_branch",
|
"publish_unpublished_branch",
|
||||||
|
|||||||
@@ -35,8 +35,10 @@ class TestCanonicalRepoRoot(unittest.TestCase):
|
|||||||
self.assertEqual(root, CONTROL_ROOT)
|
self.assertEqual(root, CONTROL_ROOT)
|
||||||
|
|
||||||
def test_falls_back_when_git_unavailable(self):
|
def test_falls_back_when_git_unavailable(self):
|
||||||
|
# When fallback is a path under <repo>/branches/<worktree>, recover
|
||||||
|
# <repo> via commonpath ancestry (never string-split on "/branches/").
|
||||||
root = amw.resolve_canonical_repo_root("/missing/path", MCP_PROCESS_ROOT)
|
root = amw.resolve_canonical_repo_root("/missing/path", MCP_PROCESS_ROOT)
|
||||||
self.assertEqual(root, os.path.realpath(MCP_PROCESS_ROOT))
|
self.assertEqual(root, os.path.realpath(CONTROL_ROOT))
|
||||||
|
|
||||||
|
|
||||||
class TestWorkspaceRepoMembership(unittest.TestCase):
|
class TestWorkspaceRepoMembership(unittest.TestCase):
|
||||||
|
|||||||
Reference in New Issue
Block a user