mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-04-25 11:18:22 +00:00
* feat(smoke-test): add end-to-end smoke test skill * Update .agent/skills/smoke-test/SKILL.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update .agent/skills/smoke-test/SKILL.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update .agent/skills/smoke-test/references/SOP.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update .agent/skills/smoke-test/scripts/check_local_env.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update .agent/skills/smoke-test/scripts/check_docker.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update .agent/skills/smoke-test/scripts/deploy_docker.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * refactor(smoke-test): optimize health check scripts and update document structure --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
71 lines
2.0 KiB
Bash
71 lines
2.0 KiB
Bash
#!/usr/bin/env bash
|
|
set +e
|
|
|
|
echo "=========================================="
|
|
echo " Frontend Page Smoke Check"
|
|
echo "=========================================="
|
|
echo ""
|
|
|
|
BASE_URL="${BASE_URL:-http://localhost:2026}"
|
|
DOC_PATH="${DOC_PATH:-/en/docs}"
|
|
|
|
all_passed=true
|
|
|
|
check_status() {
|
|
local name="$1"
|
|
local url="$2"
|
|
local expected_re="$3"
|
|
|
|
local status
|
|
status="$(curl -s -o /dev/null -w "%{http_code}" -L "$url")"
|
|
if echo "$status" | grep -Eq "$expected_re"; then
|
|
echo "✓ $name ($url) -> $status"
|
|
else
|
|
echo "✗ $name ($url) -> $status (expected: $expected_re)"
|
|
all_passed=false
|
|
fi
|
|
}
|
|
|
|
check_final_url() {
|
|
local name="$1"
|
|
local url="$2"
|
|
local expected_path_re="$3"
|
|
|
|
local effective
|
|
effective="$(curl -s -o /dev/null -w "%{url_effective}" -L "$url")"
|
|
if echo "$effective" | grep -Eq "$expected_path_re"; then
|
|
echo "✓ $name redirect target -> $effective"
|
|
else
|
|
echo "✗ $name redirect target -> $effective (expected path: $expected_path_re)"
|
|
all_passed=false
|
|
fi
|
|
}
|
|
|
|
echo "1. Checking entry pages..."
|
|
check_status "Landing page" "${BASE_URL}/" "200"
|
|
check_status "Workspace redirect" "${BASE_URL}/workspace" "200|301|302|307|308"
|
|
check_final_url "Workspace redirect" "${BASE_URL}/workspace" "/workspace/chats/"
|
|
echo ""
|
|
|
|
echo "2. Checking key workspace routes..."
|
|
check_status "New chat page" "${BASE_URL}/workspace/chats/new" "200"
|
|
check_status "Chats list page" "${BASE_URL}/workspace/chats" "200"
|
|
check_status "Agents gallery page" "${BASE_URL}/workspace/agents" "200"
|
|
echo ""
|
|
|
|
echo "3. Checking docs route (optional)..."
|
|
check_status "Docs page" "${BASE_URL}${DOC_PATH}" "200|404"
|
|
echo ""
|
|
|
|
echo "=========================================="
|
|
echo " Frontend Smoke Check Summary"
|
|
echo "=========================================="
|
|
echo ""
|
|
if [ "$all_passed" = true ]; then
|
|
echo "✅ Frontend smoke checks passed!"
|
|
exit 0
|
|
else
|
|
echo "❌ Frontend smoke checks failed"
|
|
exit 1
|
|
fi
|