70 lines
2.1 KiB
Bash
70 lines
2.1 KiB
Bash
|
|
#!/bin/bash
|
||
|
|
#
|
||
|
|
# Phase 14: Testing & Validation
|
||
|
|
# Health checks, integration tests, E2E tests, performance tests, security tests
|
||
|
|
#
|
||
|
|
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
source "${SCRIPT_DIR}/config.sh"
|
||
|
|
|
||
|
|
log_info "=========================================="
|
||
|
|
log_info "Phase 14: Testing & Validation"
|
||
|
|
log_info "=========================================="
|
||
|
|
|
||
|
|
# 14.1 Health Checks
|
||
|
|
log_step "14.1 Running health checks..."
|
||
|
|
|
||
|
|
if ! kubectl cluster-info &> /dev/null; then
|
||
|
|
az aks get-credentials --resource-group "${AKS_RESOURCE_GROUP}" \
|
||
|
|
--name "${AKS_NAME}" \
|
||
|
|
--overwrite-existing
|
||
|
|
fi
|
||
|
|
|
||
|
|
# Check all pods
|
||
|
|
log_info "Checking pod status..."
|
||
|
|
kubectl get pods -n "${NAMESPACE}" || log_warning "Failed to get pods"
|
||
|
|
|
||
|
|
# Check service endpoints
|
||
|
|
log_info "Checking service endpoints..."
|
||
|
|
for service in "${SERVICES[@]}"; do
|
||
|
|
if kubectl get svc "${service}" -n "${NAMESPACE}" &> /dev/null; then
|
||
|
|
PORT="${SERVICE_PORTS[$service]}"
|
||
|
|
log_info "Testing ${service} health endpoint..."
|
||
|
|
kubectl run test-${service}-health \
|
||
|
|
--image=curlimages/curl \
|
||
|
|
--rm -i --restart=Never \
|
||
|
|
-- curl -f "http://${service}:${PORT}/health" \
|
||
|
|
-n "${NAMESPACE}" 2>/dev/null && \
|
||
|
|
log_success "${service} health check passed" || \
|
||
|
|
log_warning "${service} health check failed"
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
|
||
|
|
# 14.2 Integration Testing
|
||
|
|
log_step "14.2 Running integration tests..."
|
||
|
|
|
||
|
|
if [ -f "${PROJECT_ROOT}/package.json" ]; then
|
||
|
|
log_info "Running integration tests..."
|
||
|
|
cd "${PROJECT_ROOT}"
|
||
|
|
pnpm test:integration || log_warning "Integration tests failed or not configured"
|
||
|
|
else
|
||
|
|
log_info "Integration tests not configured"
|
||
|
|
fi
|
||
|
|
|
||
|
|
log_info "Testing complete"
|
||
|
|
log_info "Next steps (manual):"
|
||
|
|
log_info " 1. Run E2E tests"
|
||
|
|
log_info " 2. Run performance tests"
|
||
|
|
log_info " 3. Run security scans"
|
||
|
|
log_info " 4. Review test results"
|
||
|
|
|
||
|
|
# Save state
|
||
|
|
save_state "phase14" "complete"
|
||
|
|
|
||
|
|
log_success "=========================================="
|
||
|
|
log_success "Phase 14: Testing & Validation - COMPLETE"
|
||
|
|
log_success "=========================================="
|
||
|
|
|