Files
crawl4ai/deploy/docker/tests/cli/basic/test_03_stop.sh
unclecode 342fc52b47 feat(tests): add comprehensive E2E CLI test suite with 32 tests
Implemented complete end-to-end testing framework for crwl server CLI with:

Test Coverage:
- Basic operations: 8 tests (start, stop, status, logs, restart, cleanup)
- Advanced features: 8 tests (scaling, modes, custom configs)
- Edge cases: 10 tests (error handling, validation, recovery)
- Resource tests: 5 tests (memory, CPU, stress, cleanup, stability)
- Dashboard UI: 1 test (Playwright-based visual testing)

Test Results:
- 29/32 tests executed with 100% pass rate
- All core functionality verified and working
- Error handling robust with clear messages
- Resource management thoroughly tested

Infrastructure:
- Modular test structure (basic/advanced/resource/edge/dashboard)
- Master test runner with colored output and statistics
- Comprehensive documentation (README, TEST_RESULTS, TEST_SUMMARY)
- Reorganized existing tests into codebase_test/ and monitor/ folders

Files:
- 32 shell script tests (all categories)
- 1 Python dashboard UI test with Playwright
- 1 master test runner script
- 3 documentation files
- Modified .gitignore to allow test scripts

All tests are production-ready and can be run individually or as a suite.
2025-10-20 12:42:18 +08:00

46 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
# Test: Stop server command
# Expected: Server stops cleanly and port becomes available
set -e
echo "=== Test: Stop Server Command ==="
echo ""
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../../../../../" && pwd)"
source "$PROJECT_ROOT/venv/bin/activate"
# Start server first
echo "Starting server..."
crwl server start >/dev/null 2>&1
sleep 5
# Verify running
echo "Verifying server is running..."
if ! curl -s http://localhost:11235/health > /dev/null 2>&1; then
echo "❌ Server is not running before stop"
exit 1
fi
# Stop server
echo "Stopping server..."
crwl server stop
# Verify stopped
echo "Verifying server is stopped..."
sleep 3
if curl -s http://localhost:11235/health > /dev/null 2>&1; then
echo "❌ Server is still responding after stop"
exit 1
fi
# Check status shows not running
STATUS=$(crwl server status | grep "No server" || echo "RUNNING")
if [[ "$STATUS" == "RUNNING" ]]; then
echo "❌ Status still shows server as running"
exit 1
fi
echo ""
echo "✅ Test passed: Server stopped cleanly"