- Created 19 AI-discoverable skills in .github/skills/ for GitHub Copilot - Updated 13 VS Code tasks to use skill-runner.sh - Added validation and helper infrastructure scripts - Maintained backward compatibility with deprecation notices - All tests pass with 85%+ coverage, zero security issues Benefits: - Skills are auto-discovered by GitHub Copilot - Consistent execution interface across all tools - Self-documenting with comprehensive SKILL.md files - Progressive disclosure reduces context usage - CI/CD workflows can use standardized skill-runner Closes: (add issue number if applicable) BREAKING CHANGE: None - backward compatible with 1 release cycle deprecation period
56 lines
2.0 KiB
Bash
Executable File
56 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Test Backend Coverage - Execution Script
|
|
#
|
|
# This script wraps the legacy go-test-coverage.sh script while providing
|
|
# the Agent Skills interface and logging.
|
|
|
|
set -euo pipefail
|
|
|
|
# Source helper scripts
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
# Helper scripts are in .github/skills/scripts/
|
|
SKILLS_SCRIPTS_DIR="$(cd "${SCRIPT_DIR}/../scripts" && pwd)"
|
|
|
|
# shellcheck source=../scripts/_logging_helpers.sh
|
|
source "${SKILLS_SCRIPTS_DIR}/_logging_helpers.sh"
|
|
# shellcheck source=../scripts/_error_handling_helpers.sh
|
|
source "${SKILLS_SCRIPTS_DIR}/_error_handling_helpers.sh"
|
|
# shellcheck source=../scripts/_environment_helpers.sh
|
|
source "${SKILLS_SCRIPTS_DIR}/_environment_helpers.sh"
|
|
|
|
# Project root is 3 levels up from this script (skills/skill-name-scripts/run.sh -> project root)
|
|
PROJECT_ROOT="$(cd "${SCRIPT_DIR}/../../.." && pwd)"
|
|
|
|
# Validate environment
|
|
log_step "ENVIRONMENT" "Validating prerequisites"
|
|
validate_go_environment "1.23" || error_exit "Go 1.23+ is required"
|
|
validate_python_environment "3.8" || error_exit "Python 3.8+ is required"
|
|
|
|
# Validate project structure
|
|
log_step "VALIDATION" "Checking project structure"
|
|
cd "${PROJECT_ROOT}"
|
|
validate_project_structure "backend" "scripts/go-test-coverage.sh" || error_exit "Invalid project structure"
|
|
|
|
# Set default environment variables
|
|
set_default_env "CHARON_MIN_COVERAGE" "85"
|
|
set_default_env "PERF_MAX_MS_GETSTATUS_P95" "25ms"
|
|
set_default_env "PERF_MAX_MS_GETSTATUS_P95_PARALLEL" "50ms"
|
|
set_default_env "PERF_MAX_MS_LISTDECISIONS_P95" "75ms"
|
|
|
|
# Execute the legacy script
|
|
log_step "EXECUTION" "Running backend tests with coverage"
|
|
log_info "Minimum coverage: ${CHARON_MIN_COVERAGE}%"
|
|
|
|
LEGACY_SCRIPT="${PROJECT_ROOT}/scripts/go-test-coverage.sh"
|
|
check_file_exists "${LEGACY_SCRIPT}"
|
|
|
|
# Execute with proper error handling
|
|
if "${LEGACY_SCRIPT}" "$@"; then
|
|
log_success "Backend coverage tests passed"
|
|
exit 0
|
|
else
|
|
exit_code=$?
|
|
log_error "Backend coverage tests failed (exit code: ${exit_code})"
|
|
exit "${exit_code}"
|
|
fi
|