playbook/.gitea/workflows/test.yml

127 lines
3.9 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
name: 🧪 Playbook 测试套件
"on":
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: # 允许手动触发
concurrency:
group: test-${{ github.repository }}-${{ github.ref }}
cancel-in-progress: true
# ==========================================
# 🔧 配置区域 - 测试参数
# ==========================================
env:
# 测试工作目录
WORKSPACE_DIR: "/home/workspace"
jobs:
# ==========================================
# Job: 全量测试
# ==========================================
test:
name: 🧪 全量测试
runs-on: ubuntu-22.04
steps:
- name: 📥 准备仓库
run: |
set -euo pipefail
echo "========================================"
echo "📦 准备仓库到 WORKSPACE_DIR"
echo "========================================"
REPO_NAME="${{ github.event.repository.name }}"
TOKEN="${{ secrets.WORKFLOW }}"
TARGET_SHA="${{ github.sha }}"
TARGET_REF="${{ github.ref }}"
TARGET_REF_NAME="${{ github.ref_name }}"
mkdir -p "$WORKSPACE_DIR"
REPO_DIR="$(mktemp -d "$WORKSPACE_DIR/${REPO_NAME}.XXXXXX")"
if [ -n "$TOKEN" ]; then
REPO_URL="https://oauth2:${TOKEN}@${GITHUB_SERVER_URL#https://}/${GITHUB_REPOSITORY}.git"
else
REPO_URL="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git"
fi
git clone "$REPO_URL" "$REPO_DIR"
if git -C "$REPO_DIR" cat-file -e \
"${TARGET_SHA}^{commit}" 2>/dev/null; then
git -C "$REPO_DIR" checkout -f "$TARGET_SHA"
else
if [ -n "$TARGET_REF" ]; then
git -C "$REPO_DIR" fetch origin "$TARGET_REF"
git -C "$REPO_DIR" checkout -f FETCH_HEAD
else
git -C "$REPO_DIR" checkout -f "$TARGET_REF_NAME"
fi
fi
git config --global --add safe.directory "$REPO_DIR"
echo "REPO_DIR=$REPO_DIR" >> "$GITHUB_ENV"
echo "✅ 仓库准备完成"
- name: 🔧 安装测试依赖
run: |
echo "========================================"
echo "📦 安装测试依赖"
echo "========================================"
apt-get update
apt-get install -y python3-pip
python3 -m pip install --upgrade pip
python3 -m pip install yamllint tomli
echo ""
echo "✅ Python 版本: $(python3 --version)"
echo "✅ 依赖安装完成"
echo "========================================"
- name: 🧪 运行全量测试并生成报告
shell: bash
run: |
set -euo pipefail
echo "========================================"
echo "🐍 Python 测试"
echo "========================================"
cd "$REPO_DIR"
echo "📋 覆盖CLI、subtree/snapshot 部署路线、模板同步、文档一致性"
python3 -m unittest discover -s test -p "test_*.py" -v
echo "✅ Python 测试通过"
echo "========================================"
echo "📝 模板验证测试"
echo "========================================"
sh test/templates/validate_python_templates.sh
sh test/templates/validate_cpp_templates.sh
sh test/templates/validate_ci_templates.sh
sh test/templates/validate_project_templates.sh
echo "✅ 模板验证通过"
echo "========================================"
echo "🔗 文档链接检查"
echo "========================================"
sh test/integration/check_doc_links.sh
echo "✅ 文档链接检查通过"
echo "🎉 所有测试完成"
- name: 🧹 清理临时仓库
if: always()
run: |
rm -rf "$REPO_DIR"