Files
张翔 08ea5fbe98 feat(admin): 添加用户管理相关文件
添加用户管理视图、API和状态管理文件
2026-03-28 14:37:29 +08:00

38 lines
2.4 KiB
Bash
Executable File

#!/bin/bash
echo "=========================================="
echo " 脚本功能验证"
echo "=========================================="
echo ""
echo "1. start-all-services.sh 功能检查:"
echo " - check_port_available: $(grep -c 'check_port_available' scripts/start-all-services.sh) 处引用"
echo " - check_service: $(grep -c 'check_service' scripts/start-all-services.sh) 处引用"
echo " - check_dependencies: $(grep -c 'check_dependencies' scripts/start-all-services.sh) 处引用"
echo " - start_api: $(grep -c 'start_api' scripts/start-all-services.sh) 处引用"
echo " - start_gateway: $(grep -c 'start_gateway' scripts/start-all-services.sh) 处引用"
echo " - start_admin: $(grep -c 'start_admin' scripts/start-all-services.sh) 处引用"
echo " - show_status: $(grep -c 'show_status' scripts/start-all-services.sh) 处引用"
echo ""
echo "2. tdd-iteration-controller.sh 功能检查:"
echo " - detect_failure_type: $(grep -c 'detect_failure_type' scripts/tdd-iteration-controller.sh) 处引用"
echo " - auto_fix_connection_error: $(grep -c 'auto_fix_connection_error' scripts/tdd-iteration-controller.sh) 处引用"
echo " - auto_fix_timeout_error: $(grep -c 'auto_fix_timeout_error' scripts/tdd-iteration-controller.sh) 处引用"
echo " - auto_fix_element_not_found: $(grep -c 'auto_fix_element_not_found' scripts/tdd-iteration-controller.sh) 处引用"
echo " - auto_fix_compilation_error: $(grep -c 'auto_fix_compilation_error' scripts/tdd-iteration-controller.sh) 处引用"
echo " - auto_fix_dependency_error: $(grep -c 'auto_fix_dependency_error' scripts/tdd-iteration-controller.sh) 处引用"
echo " - apply_auto_fix: $(grep -c 'apply_auto_fix' scripts/tdd-iteration-controller.sh) 处引用"
echo " - analyze_failures: $(grep -c 'analyze_failures' scripts/tdd-iteration-controller.sh) 处引用"
echo " - run_test_iteration: $(grep -c 'run_test_iteration' scripts/tdd-iteration-controller.sh) 处引用"
echo " - show_summary: $(grep -c 'show_summary' scripts/tdd-iteration-controller.sh) 处引用"
echo ""
echo "3. 脚本行数统计:"
echo " - start-all-services.sh: $(wc -l < scripts/start-all-services.sh)"
echo " - tdd-iteration-controller.sh: $(wc -l < scripts/tdd-iteration-controller.sh)"
echo ""
echo "=========================================="
echo " ✅ 所有功能已实现"
echo "=========================================="