a
This commit is contained in:
+169
-85
@@ -8,7 +8,7 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
BASE_URL="${BASE_URL:-http://127.0.0.1:4099}"
|
||||
TEST_EMAIL="${TEST_EMAIL:-admin@example.com}"
|
||||
TEST_PASSWORD="${TEST_PASSWORD:-password}"
|
||||
START_SERVER=false
|
||||
SPECIFIC_SUITE=""
|
||||
SERVER_PID=""
|
||||
|
||||
# Colors
|
||||
@@ -20,14 +20,15 @@ YELLOW='\033[0;33m'
|
||||
NC='\033[0m'
|
||||
|
||||
# Parse command line arguments
|
||||
while getopts "s" opt; do
|
||||
while getopts "s:" opt; do
|
||||
case $opt in
|
||||
s)
|
||||
START_SERVER=true
|
||||
SPECIFIC_SUITE="$OPTARG"
|
||||
;;
|
||||
\?)
|
||||
echo "Usage: $0 [-s]"
|
||||
echo " -s: Start the API server before running tests"
|
||||
echo "Usage: $0 [-s suite_name]"
|
||||
echo " -s suite_name: Run only a specific test suite"
|
||||
echo " Available suites: auth, users, roles, teams, mentors, cms, gacha, hackathon"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
@@ -48,76 +49,79 @@ echo -e "${NC}"
|
||||
echo -e "${BLUE}Configuration:${NC}"
|
||||
echo -e " Base URL: ${GREEN}$BASE_URL${NC}"
|
||||
echo -e " Test User: ${GREEN}$TEST_EMAIL${NC}"
|
||||
if [ -n "$SPECIFIC_SUITE" ]; then
|
||||
echo -e " Mode: ${YELLOW}Single Suite ($SPECIFIC_SUITE)${NC}"
|
||||
else
|
||||
echo -e " Mode: ${YELLOW}All Suites${NC}"
|
||||
fi
|
||||
echo ""
|
||||
|
||||
# ==============================================================================
|
||||
# Start Server if requested
|
||||
# Start Server (ALWAYS)
|
||||
# ==============================================================================
|
||||
|
||||
if [ "$START_SERVER" = true ]; then
|
||||
echo -e "${YELLOW}Starting API server...${NC}"
|
||||
echo -e "${YELLOW}Starting API server...${NC}"
|
||||
|
||||
# Force kill any existing api processes first
|
||||
echo -e "${CYAN}Cleaning up any existing API processes...${NC}"
|
||||
ps aux | grep "target/release/api" | grep -v grep | awk '{print $1}' | xargs kill -9 2>/dev/null || true
|
||||
ps aux | grep "cargo run --bin api" | grep -v grep | awk '{print $1}' | xargs kill -9 2>/dev/null || true
|
||||
sleep 2
|
||||
|
||||
echo -e "${CYAN}Building server in release mode...${NC}"
|
||||
cargo build --bin api --release
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
echo -e "${RED}Failed to compile server${NC}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Force kill any existing api processes first
|
||||
echo -e "${CYAN}Cleaning up any existing API processes...${NC}"
|
||||
ps aux | grep "target/release/api" | grep -v grep | awk '{print $1}' | xargs kill -9 2>/dev/null || true
|
||||
ps aux | grep "cargo run --bin api" | grep -v grep | awk '{print $1}' | xargs kill -9 2>/dev/null || true
|
||||
sleep 2
|
||||
echo -e "${CYAN}Starting server in background...${NC}"
|
||||
|
||||
# Start server directly from binary in background
|
||||
nohup ./target/release/api > server.log 2>&1 &
|
||||
SERVER_PID=$!
|
||||
|
||||
echo -e "${CYAN}Server started with PID: $SERVER_PID${NC}"
|
||||
|
||||
echo -e "${CYAN}Building server in release mode...${NC}"
|
||||
cargo build --bin api --release
|
||||
# Wait for server to be ready
|
||||
echo -e "${CYAN}Waiting for server to be ready...${NC}"
|
||||
MAX_WAIT=30
|
||||
WAIT_COUNT=0
|
||||
while true; do
|
||||
# Check if any HTTP status code is returned (even 404/405 means server is up)
|
||||
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" "$BASE_URL/v1/auth/login" 2>/dev/null || echo "000")
|
||||
if [ "$HTTP_CODE" != "000" ] && [ "$HTTP_CODE" != "" ]; then
|
||||
break
|
||||
fi
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
echo -e "${RED}Failed to compile server${NC}"
|
||||
sleep 1
|
||||
((WAIT_COUNT++))
|
||||
if [ $WAIT_COUNT -ge $MAX_WAIT ]; then
|
||||
echo -e "${RED}Server failed to start within $MAX_WAIT seconds${NC}"
|
||||
echo -e "${RED}Server log:${NC}"
|
||||
tail -20 server.log
|
||||
if [ -n "$SERVER_PID" ]; then
|
||||
kill $SERVER_PID 2>/dev/null
|
||||
fi
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo -e "${CYAN}Starting server in background...${NC}"
|
||||
|
||||
# Start server directly from binary in background
|
||||
nohup ./target/release/api > server.log 2>&1 &
|
||||
SERVER_PID=$!
|
||||
|
||||
echo -e "${CYAN}Server started with PID: $SERVER_PID${NC}"
|
||||
|
||||
# Wait for server to be ready
|
||||
echo -e "${CYAN}Waiting for server to be ready...${NC}"
|
||||
MAX_WAIT=30
|
||||
WAIT_COUNT=0
|
||||
while true; do
|
||||
# Check if any HTTP status code is returned (even 404/405 means server is up)
|
||||
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" "$BASE_URL/v1/auth/login" 2>/dev/null || echo "000")
|
||||
if [ "$HTTP_CODE" != "000" ] && [ "$HTTP_CODE" != "" ]; then
|
||||
break
|
||||
fi
|
||||
|
||||
sleep 1
|
||||
((WAIT_COUNT++))
|
||||
if [ $WAIT_COUNT -ge $MAX_WAIT ]; then
|
||||
echo -e "${RED}Server failed to start within $MAX_WAIT seconds${NC}"
|
||||
echo -e "${RED}Server log:${NC}"
|
||||
tail -20 server.log
|
||||
if [ -n "$SERVER_PID" ]; then
|
||||
kill $SERVER_PID 2>/dev/null
|
||||
fi
|
||||
exit 1
|
||||
fi
|
||||
printf "."
|
||||
done
|
||||
echo ""
|
||||
echo -e "${GREEN}✓ Server is ready!${NC}"
|
||||
|
||||
# Run seeder to populate test data
|
||||
echo -e "${CYAN}Running database seeder...${NC}"
|
||||
cargo run --bin seeder --release > /dev/null 2>&1 || {
|
||||
echo -e "${YELLOW}⚠ Seeder failed or already populated${NC}"
|
||||
}
|
||||
echo -e "${GREEN}✓ Database seeded${NC}"
|
||||
echo ""
|
||||
fi
|
||||
printf "."
|
||||
done
|
||||
echo ""
|
||||
echo -e "${GREEN}✓ Server is ready!${NC}"
|
||||
|
||||
# Run seeder to populate test data
|
||||
echo -e "${CYAN}Running database seeder...${NC}"
|
||||
cargo run --bin seeder --release > /dev/null 2>&1 || {
|
||||
echo -e "${YELLOW}⚠ Seeder failed or already populated${NC}"
|
||||
}
|
||||
echo -e "${GREEN}✓ Database seeded${NC}"
|
||||
echo ""
|
||||
|
||||
# Cleanup function
|
||||
cleanup() {
|
||||
if [ -n "$SERVER_PID" ] && [ "$START_SERVER" = true ]; then
|
||||
if [ -n "$SERVER_PID" ]; then
|
||||
echo -e "\n${YELLOW}Stopping server (PID: $SERVER_PID)...${NC}"
|
||||
kill $SERVER_PID 2>/dev/null
|
||||
sleep 1
|
||||
@@ -134,9 +138,13 @@ trap cleanup EXIT INT TERM
|
||||
|
||||
# Test suite tracking
|
||||
declare -A SUITE_RESULTS
|
||||
declare -A SUITE_TEST_COUNTS
|
||||
TOTAL_SUITES=0
|
||||
PASSED_SUITES=0
|
||||
FAILED_SUITES=0
|
||||
TOTAL_TESTS=0
|
||||
PASSED_TESTS=0
|
||||
FAILED_TESTS=0
|
||||
|
||||
run_test_suite() {
|
||||
local suite_name=$1
|
||||
@@ -151,6 +159,7 @@ run_test_suite() {
|
||||
if [ ! -f "$test_script" ]; then
|
||||
printf "${RED}✗ Test script not found: %s${NC}\n" "$test_script"
|
||||
SUITE_RESULTS["$suite_name"]="NOT_FOUND"
|
||||
SUITE_TEST_COUNTS["$suite_name"]="0:0:0"
|
||||
((FAILED_SUITES++))
|
||||
return 1
|
||||
fi
|
||||
@@ -158,16 +167,46 @@ run_test_suite() {
|
||||
# Make script executable
|
||||
chmod +x "$test_script"
|
||||
|
||||
# Capture test output to extract test counts
|
||||
local output_file=$(mktemp)
|
||||
|
||||
# Run test suite
|
||||
if bash "$test_script"; then
|
||||
if bash "$test_script" 2>&1 | tee "$output_file"; then
|
||||
SUITE_RESULTS["$suite_name"]="PASSED"
|
||||
((PASSED_SUITES++))
|
||||
printf "${GREEN}✓ Suite '%s' completed successfully${NC}\n" "$suite_name"
|
||||
local suite_exit=0
|
||||
else
|
||||
SUITE_RESULTS["$suite_name"]="FAILED"
|
||||
((FAILED_SUITES++))
|
||||
printf "${RED}✗ Suite '%s' failed${NC}\n" "$suite_name"
|
||||
local suite_exit=1
|
||||
fi
|
||||
|
||||
# Extract test counts from output (use API Requests line for accurate count)
|
||||
local api_line=$(grep -oP "API Requests: \K\d+ \(Passed: \d+, Failed: \d+\)" "$output_file" | tail -1 || echo "0 (Passed: 0, Failed: 0)")
|
||||
local suite_total=$(echo "$api_line" | grep -oP "^\d+" || echo "0")
|
||||
local suite_passed=$(echo "$api_line" | grep -oP "Passed: \K\d+" || echo "0")
|
||||
local suite_failed=$(echo "$api_line" | grep -oP "Failed: \K\d+" || echo "0")
|
||||
|
||||
# If no API line found, try Total Tests line as fallback
|
||||
if [ "$suite_total" = "0" ]; then
|
||||
suite_total=$(grep -oP "Total Tests: \K\d+" "$output_file" | tail -1 || echo "0")
|
||||
suite_passed=$(grep -oP "^Passed: \K\d+" "$output_file" | tail -1 || echo "0")
|
||||
suite_failed=$(grep -oP "^Failed: \K\d+" "$output_file" | tail -1 || echo "0")
|
||||
fi
|
||||
|
||||
# Store suite test counts
|
||||
SUITE_TEST_COUNTS["$suite_name"]="$suite_total:$suite_passed:$suite_failed"
|
||||
|
||||
# Accumulate totals
|
||||
((TOTAL_TESTS += suite_total))
|
||||
((PASSED_TESTS += suite_passed))
|
||||
((FAILED_TESTS += suite_failed))
|
||||
|
||||
rm -f "$output_file"
|
||||
|
||||
return $suite_exit
|
||||
}
|
||||
|
||||
# ==============================================================================
|
||||
@@ -176,23 +215,52 @@ run_test_suite() {
|
||||
|
||||
START_TIME=$(date +%s)
|
||||
|
||||
# IAM Tests
|
||||
run_test_suite "IAM - Authentication" "$SCRIPT_DIR/tests/iam/test-auth.sh"
|
||||
run_test_suite "IAM - Users" "$SCRIPT_DIR/tests/iam/test-users.sh"
|
||||
run_test_suite "IAM - Roles & Permissions" "$SCRIPT_DIR/tests/iam/test-roles-permissions.sh"
|
||||
run_test_suite "IAM - Teams" "$SCRIPT_DIR/tests/iam/test-teams.sh"
|
||||
|
||||
# Dimentorin Tests
|
||||
run_test_suite "Dimentorin - Mentors" "$SCRIPT_DIR/tests/dimentorin/test-mentors.sh"
|
||||
|
||||
# CMS Tests
|
||||
run_test_suite "CMS - Events & Testimonials" "$SCRIPT_DIR/tests/cms/test-cms.sh"
|
||||
|
||||
# Gacha Tests
|
||||
run_test_suite "Gacha - Items & Rolls" "$SCRIPT_DIR/tests/gacha/test-gacha.sh"
|
||||
|
||||
# Hackathon Tests
|
||||
run_test_suite "Hackathon - Full Suite" "$SCRIPT_DIR/tests/hackathon/test-hackathon.sh"
|
||||
# Determine which suites to run
|
||||
if [ -n "$SPECIFIC_SUITE" ]; then
|
||||
# Run only the specified suite
|
||||
case "$SPECIFIC_SUITE" in
|
||||
auth)
|
||||
run_test_suite "IAM - Authentication" "$SCRIPT_DIR/tests/iam/test-auth.sh"
|
||||
;;
|
||||
users)
|
||||
run_test_suite "IAM - Users" "$SCRIPT_DIR/tests/iam/test-users.sh"
|
||||
;;
|
||||
roles)
|
||||
run_test_suite "IAM - Roles & Permissions" "$SCRIPT_DIR/tests/iam/test-roles-permissions.sh"
|
||||
;;
|
||||
teams)
|
||||
run_test_suite "IAM - Teams" "$SCRIPT_DIR/tests/iam/test-teams.sh"
|
||||
;;
|
||||
mentors)
|
||||
run_test_suite "Dimentorin - Mentors" "$SCRIPT_DIR/tests/dimentorin/test-mentors.sh"
|
||||
;;
|
||||
cms)
|
||||
run_test_suite "CMS - Events & Testimonials" "$SCRIPT_DIR/tests/cms/test-cms.sh"
|
||||
;;
|
||||
gacha)
|
||||
run_test_suite "Gacha - Items & Rolls" "$SCRIPT_DIR/tests/gacha/test-gacha.sh"
|
||||
;;
|
||||
hackathon)
|
||||
run_test_suite "Hackathon - Full Suite" "$SCRIPT_DIR/tests/hackathon/test-hackathon.sh"
|
||||
;;
|
||||
*)
|
||||
echo -e "${RED}Unknown suite: $SPECIFIC_SUITE${NC}"
|
||||
echo -e "${YELLOW}Available suites: auth, users, roles, teams, mentors, cms, gacha, hackathon${NC}"
|
||||
cleanup
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
else
|
||||
# Run all suites
|
||||
run_test_suite "IAM - Authentication" "$SCRIPT_DIR/tests/iam/test-auth.sh"
|
||||
run_test_suite "IAM - Users" "$SCRIPT_DIR/tests/iam/test-users.sh"
|
||||
run_test_suite "IAM - Roles & Permissions" "$SCRIPT_DIR/tests/iam/test-roles-permissions.sh"
|
||||
run_test_suite "IAM - Teams" "$SCRIPT_DIR/tests/iam/test-teams.sh"
|
||||
run_test_suite "Dimentorin - Mentors" "$SCRIPT_DIR/tests/dimentorin/test-mentors.sh"
|
||||
run_test_suite "CMS - Events & Testimonials" "$SCRIPT_DIR/tests/cms/test-cms.sh"
|
||||
run_test_suite "Gacha - Items & Rolls" "$SCRIPT_DIR/tests/gacha/test-gacha.sh"
|
||||
run_test_suite "Hackathon - Full Suite" "$SCRIPT_DIR/tests/hackathon/test-hackathon.sh"
|
||||
fi
|
||||
|
||||
END_TIME=$(date +%s)
|
||||
DURATION=$((END_TIME - START_TIME))
|
||||
@@ -205,16 +273,32 @@ printf "\n${CYAN}═════════════════════
|
||||
printf "${BLUE} FINAL TEST SUMMARY ${NC}\n"
|
||||
printf "${CYAN}════════════════════════════════════════════════════════════════${NC}\n\n"
|
||||
|
||||
printf "Total Test Suites: ${BLUE}%d${NC}\n" "$TOTAL_SUITES"
|
||||
printf "${GREEN}Passed Suites: %d${NC}\n" "$PASSED_SUITES"
|
||||
printf "${RED}Failed Suites: %d${NC}\n" "$FAILED_SUITES"
|
||||
printf "\n"
|
||||
# Test Suites Summary
|
||||
printf "${BLUE}Test Suites:${NC}\n"
|
||||
printf " Total Suites: ${BLUE}%d${NC}\n" "$TOTAL_SUITES"
|
||||
printf " ${GREEN}Passed Suites: %d${NC}\n" "$PASSED_SUITES"
|
||||
printf " ${RED}Failed Suites: %d${NC}\n" "$FAILED_SUITES"
|
||||
|
||||
if [ "$TOTAL_SUITES" -gt 0 ]; then
|
||||
SUCCESS_RATE=$(( (PASSED_SUITES * 100) / TOTAL_SUITES ))
|
||||
printf "Success Rate: ${BLUE}%d%%${NC}\n" "$SUCCESS_RATE"
|
||||
printf " Suite Success Rate: ${BLUE}%d%%${NC}\n" "$SUCCESS_RATE"
|
||||
fi
|
||||
|
||||
printf "\n"
|
||||
|
||||
# Individual Tests Summary
|
||||
printf "${BLUE}Individual Tests:${NC}\n"
|
||||
printf " Total Tests: ${BLUE}%d${NC}\n" "$TOTAL_TESTS"
|
||||
printf " ${GREEN}Passed Tests: %d${NC}\n" "$PASSED_TESTS"
|
||||
printf " ${RED}Failed Tests: %d${NC}\n" "$FAILED_TESTS"
|
||||
|
||||
if [ "$TOTAL_TESTS" -gt 0 ]; then
|
||||
TEST_SUCCESS_RATE=$(( (PASSED_TESTS * 100) / TOTAL_TESTS ))
|
||||
printf " Test Success Rate: ${BLUE}%d%%${NC}\n" "$TEST_SUCCESS_RATE"
|
||||
fi
|
||||
|
||||
printf "\n"
|
||||
|
||||
printf "Total Duration: ${BLUE}%d seconds${NC}\n\n" "$DURATION"
|
||||
|
||||
# Print individual suite results
|
||||
|
||||
Reference in New Issue
Block a user