Clears cc-ci self-test lint failures: - ruff format: 9 files reformatted (all gtea test files + test_discovery.py) - ruff check --fix: bridge.py UP017 (datetime.UTC alias) + 6 gtea check errors - manifest.py B007: rename unused loop variable path → _path (no auto-fix available) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
125 lines
4.6 KiB
Python
125 lines
4.6 KiB
Python
"""gitea — parity port of recipe-info/gitea/tests/git_push.py (phase gtea).
|
|
|
|
SOURCE: references/recipe-maintainer/recipe-info/gitea/tests/git_push.py
|
|
|
|
Original: create repo via API → clone → commit → push over HTTPS → verify commit via API → delete.
|
|
cc-ci port: same flow, adapted to the per-run domain and the harness admin creds from ops.py.
|
|
Non-vacuous: a broken SCM fails the push or the API verification.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import base64
|
|
import json
|
|
import os
|
|
import shutil
|
|
import subprocess
|
|
import sys
|
|
import tempfile
|
|
import urllib.error
|
|
import urllib.request
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..", "..", "runner"))
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
|
|
import ssl
|
|
|
|
from ops import admin_creds # noqa: E402
|
|
|
|
_CTX = ssl.create_default_context()
|
|
_CTX.check_hostname = False
|
|
_CTX.verify_mode = ssl.CERT_NONE
|
|
|
|
|
|
def _api(domain, path, method="GET", body=None, user="", password=""):
|
|
data = json.dumps(body).encode() if body is not None else None
|
|
auth = base64.b64encode(f"{user}:{password}".encode()).decode()
|
|
headers = {"Authorization": f"Basic {auth}"}
|
|
if data:
|
|
headers["Content-Type"] = "application/json"
|
|
req = urllib.request.Request(
|
|
f"https://{domain}/api/v1{path}", data=data, headers=headers, method=method
|
|
)
|
|
try:
|
|
with urllib.request.urlopen(req, timeout=20, context=_CTX) as r:
|
|
raw = r.read()
|
|
return r.status, (json.loads(raw) if raw else {})
|
|
except urllib.error.HTTPError as e:
|
|
raw = e.read()
|
|
try:
|
|
return e.code, json.loads(raw)
|
|
except (ValueError, json.JSONDecodeError):
|
|
return e.code, {}
|
|
|
|
|
|
def _run_git(args, cwd, env=None):
|
|
result = subprocess.run(
|
|
["git"] + args,
|
|
cwd=cwd,
|
|
capture_output=True,
|
|
text=True,
|
|
env={**os.environ, **(env or {})},
|
|
timeout=60,
|
|
)
|
|
if result.returncode != 0:
|
|
raise RuntimeError(f"git {' '.join(args)} failed:\n{result.stderr}")
|
|
return result.stdout.strip()
|
|
|
|
|
|
def test_git_push(live_app):
|
|
"""Parity with recipe-info/gitea/tests/git_push.py: create repo → clone → push → verify."""
|
|
user, password = admin_creds(live_app)
|
|
repo_name = "ci-test-push"
|
|
|
|
# 1. Create test repo (auto_init adds an initial commit so the branch exists)
|
|
status, body = _api(
|
|
live_app,
|
|
"/user/repos",
|
|
method="POST",
|
|
body={"name": repo_name, "private": False, "auto_init": True, "default_branch": "main"},
|
|
user=user,
|
|
password=password,
|
|
)
|
|
assert status == 201, f"repo create HTTP {status}: {body}"
|
|
# Embed credentials directly in the URL (password is 32-char hex, URL-safe).
|
|
cred_url = f"https://{user}:{password}@{live_app}/{user}/{repo_name}.git"
|
|
|
|
tmpdir = tempfile.mkdtemp(prefix="ccci-gitea-push-parent-")
|
|
repo_dir = os.path.join(tmpdir, "repo")
|
|
try:
|
|
git_env = {
|
|
"GIT_AUTHOR_NAME": "CI Test Bot",
|
|
"GIT_AUTHOR_EMAIL": "ci@ci.local",
|
|
"GIT_COMMITTER_NAME": "CI Test Bot",
|
|
"GIT_COMMITTER_EMAIL": "ci@ci.local",
|
|
"GIT_SSL_NO_VERIFY": "true",
|
|
"GIT_TERMINAL_PROMPT": "0",
|
|
}
|
|
|
|
# 2. Clone into a fresh subdirectory (git clone must target a non-existing path)
|
|
_run_git(["clone", cred_url, repo_dir], cwd="/tmp", env=git_env)
|
|
|
|
# 3. Commit a new file on top of the initial commit
|
|
readme = os.path.join(repo_dir, "ci-test.txt")
|
|
with open(readme, "w") as f:
|
|
f.write(f"# {repo_name}\n\nAutomated ci push test.\n")
|
|
_run_git(["add", "ci-test.txt"], cwd=repo_dir, env=git_env)
|
|
_run_git(["commit", "-m", "test: automated push test"], cwd=repo_dir, env=git_env)
|
|
|
|
# 4. Push via explicit URL so credentials are applied regardless of remote config
|
|
_run_git(["push", cred_url, "HEAD:refs/heads/main"], cwd=repo_dir, env=git_env)
|
|
|
|
# 5. Verify commit landed via API
|
|
status, commits = _api(
|
|
live_app,
|
|
f"/repos/{user}/{repo_name}/commits?limit=1",
|
|
user=user,
|
|
password=password,
|
|
)
|
|
assert status == 200 and commits, f"commit list HTTP {status}: {commits}"
|
|
commit_msg = commits[0].get("commit", {}).get("message", "").strip()
|
|
assert "automated push test" in commit_msg, f"Unexpected commit message: {commit_msg!r}"
|
|
finally:
|
|
shutil.rmtree(tmpdir, ignore_errors=True) # removes parent + repo subdir
|
|
# 6. Cleanup — delete the test repo
|
|
_api(live_app, f"/repos/{user}/{repo_name}", method="DELETE", user=user, password=password)
|