mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 09:30:43 +00:00
244 lines
11 KiB
Bash
Executable File
244 lines
11 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Installs the packed OpenClaw tarball over dirty old-user state. When
|
|
# OPENCLAW_UPGRADE_SURVIVOR_BASELINE_SPEC is set, installs that published
|
|
# baseline first and upgrades it to the selected candidate.
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
source "$ROOT_DIR/scripts/lib/docker-e2e-image.sh"
|
|
source "$ROOT_DIR/scripts/lib/docker-e2e-package.sh"
|
|
|
|
IMAGE_NAME="$(docker_e2e_resolve_image "openclaw-upgrade-survivor-e2e" OPENCLAW_UPGRADE_SURVIVOR_E2E_IMAGE)"
|
|
SKIP_BUILD="${OPENCLAW_UPGRADE_SURVIVOR_E2E_SKIP_BUILD:-0}"
|
|
DOCKER_RUN_TIMEOUT="${OPENCLAW_UPGRADE_SURVIVOR_DOCKER_RUN_TIMEOUT:-900s}"
|
|
BASELINE_SPEC="${OPENCLAW_UPGRADE_SURVIVOR_BASELINE_SPEC:-}"
|
|
SCENARIO="${OPENCLAW_UPGRADE_SURVIVOR_SCENARIO:-base}"
|
|
LANE_ARTIFACT_SUFFIX="${OPENCLAW_DOCKER_ALL_LANE_NAME:-default}"
|
|
LANE_ARTIFACT_SUFFIX="${LANE_ARTIFACT_SUFFIX//[^A-Za-z0-9_.-]/_}"
|
|
ARTIFACT_DIR="${OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_DIR:-$ROOT_DIR/.artifacts/upgrade-survivor/$LANE_ARTIFACT_SUFFIX}"
|
|
|
|
normalize_npm_candidate() {
|
|
local raw="$1"
|
|
case "$raw" in
|
|
latest | beta)
|
|
printf 'openclaw@%s\n' "$raw"
|
|
;;
|
|
openclaw@*)
|
|
printf '%s\n' "$raw"
|
|
;;
|
|
*@*)
|
|
echo "OPENCLAW_UPGRADE_SURVIVOR_CANDIDATE must be current, latest, beta, openclaw@<version>, a bare version, or a .tgz path." >&2
|
|
return 1
|
|
;;
|
|
*)
|
|
printf 'openclaw@%s\n' "$raw"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
if [ "${OPENCLAW_UPGRADE_SURVIVOR_PUBLISHED_BASELINE:-0}" = "1" ]; then
|
|
if [ -z "${BASELINE_SPEC// }" ]; then
|
|
echo "OPENCLAW_UPGRADE_SURVIVOR_BASELINE_SPEC is required for published upgrade survivor" >&2
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p "$ARTIFACT_DIR"
|
|
chmod -R a+rwX "$ARTIFACT_DIR" || true
|
|
|
|
DOCKER_E2E_PACKAGE_ARGS=()
|
|
CANDIDATE_RAW="${OPENCLAW_UPGRADE_SURVIVOR_CANDIDATE:-current}"
|
|
CANDIDATE_KIND="npm"
|
|
CANDIDATE_SPEC=""
|
|
|
|
if [ -n "${OPENCLAW_CURRENT_PACKAGE_TGZ:-}" ]; then
|
|
PACKAGE_TGZ="$(docker_e2e_prepare_package_tgz upgrade-survivor "$OPENCLAW_CURRENT_PACKAGE_TGZ")"
|
|
docker_e2e_package_mount_args "$PACKAGE_TGZ"
|
|
CANDIDATE_KIND="tarball"
|
|
CANDIDATE_SPEC="/tmp/openclaw-current.tgz"
|
|
elif [ "$CANDIDATE_RAW" = "current" ]; then
|
|
PACKAGE_TGZ="$(docker_e2e_prepare_package_tgz upgrade-survivor)"
|
|
docker_e2e_package_mount_args "$PACKAGE_TGZ"
|
|
CANDIDATE_KIND="tarball"
|
|
CANDIDATE_SPEC="/tmp/openclaw-current.tgz"
|
|
elif [[ "$CANDIDATE_RAW" == *.tgz ]]; then
|
|
if [ ! -f "$CANDIDATE_RAW" ]; then
|
|
echo "OpenClaw candidate tarball does not exist: $CANDIDATE_RAW" >&2
|
|
exit 1
|
|
fi
|
|
PACKAGE_TGZ="$(docker_e2e_prepare_package_tgz upgrade-survivor "$CANDIDATE_RAW")"
|
|
docker_e2e_package_mount_args "$PACKAGE_TGZ"
|
|
CANDIDATE_KIND="tarball"
|
|
CANDIDATE_SPEC="/tmp/openclaw-current.tgz"
|
|
else
|
|
CANDIDATE_KIND="npm"
|
|
CANDIDATE_SPEC="$(normalize_npm_candidate "$CANDIDATE_RAW")"
|
|
fi
|
|
|
|
OPENCLAW_TEST_STATE_FUNCTION_B64="$(docker_e2e_test_state_function_b64)"
|
|
|
|
docker_e2e_build_or_reuse "$IMAGE_NAME" upgrade-survivor "$ROOT_DIR/scripts/e2e/Dockerfile" "$ROOT_DIR" "bare" "$SKIP_BUILD"
|
|
|
|
echo "Running published upgrade survivor Docker E2E..."
|
|
docker_e2e_run_with_harness \
|
|
-e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \
|
|
-e OPENCLAW_TEST_STATE_FUNCTION_B64="$OPENCLAW_TEST_STATE_FUNCTION_B64" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_BASELINE="$BASELINE_SPEC" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_CANDIDATE_KIND="$CANDIDATE_KIND" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_CANDIDATE_SPEC="$CANDIDATE_SPEC" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_SCENARIO="$SCENARIO" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_LEGACY_RUNTIME_DEPS_SYMLINK="${OPENCLAW_UPGRADE_SURVIVOR_LEGACY_RUNTIME_DEPS_SYMLINK:-}" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_SUMMARY_JSON=/tmp/openclaw-upgrade-survivor-artifacts/summary.json \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_START_BUDGET_SECONDS="${OPENCLAW_UPGRADE_SURVIVOR_START_BUDGET_SECONDS:-90}" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_STATUS_BUDGET_SECONDS="${OPENCLAW_UPGRADE_SURVIVOR_STATUS_BUDGET_SECONDS:-30}" \
|
|
-v "$ARTIFACT_DIR:/tmp/openclaw-upgrade-survivor-artifacts" \
|
|
"${DOCKER_E2E_PACKAGE_ARGS[@]}" \
|
|
"$IMAGE_NAME" \
|
|
timeout "$DOCKER_RUN_TIMEOUT" bash scripts/e2e/lib/upgrade-survivor/run.sh
|
|
exit 0
|
|
fi
|
|
|
|
PACKAGE_TGZ="$(docker_e2e_prepare_package_tgz upgrade-survivor "${OPENCLAW_CURRENT_PACKAGE_TGZ:-}")"
|
|
docker_e2e_package_mount_args "$PACKAGE_TGZ"
|
|
OPENCLAW_TEST_STATE_SCRIPT_B64="$(docker_e2e_test_state_shell_b64 upgrade-survivor upgrade-survivor)"
|
|
mkdir -p "$ARTIFACT_DIR"
|
|
chmod -R a+rwX "$ARTIFACT_DIR" || true
|
|
|
|
docker_e2e_build_or_reuse "$IMAGE_NAME" upgrade-survivor "$ROOT_DIR/scripts/e2e/Dockerfile" "$ROOT_DIR" "bare" "$SKIP_BUILD"
|
|
|
|
echo "Running upgrade survivor Docker E2E..."
|
|
docker_e2e_run_with_harness \
|
|
-e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \
|
|
-e OPENCLAW_TEST_STATE_SCRIPT_B64="$OPENCLAW_TEST_STATE_SCRIPT_B64" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_ROOT=/tmp/openclaw-upgrade-survivor-artifacts \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_SCENARIO="$SCENARIO" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_START_BUDGET_SECONDS="${OPENCLAW_UPGRADE_SURVIVOR_START_BUDGET_SECONDS:-90}" \
|
|
-e OPENCLAW_UPGRADE_SURVIVOR_STATUS_BUDGET_SECONDS="${OPENCLAW_UPGRADE_SURVIVOR_STATUS_BUDGET_SECONDS:-30}" \
|
|
-v "$ARTIFACT_DIR:/tmp/openclaw-upgrade-survivor-artifacts" \
|
|
"${DOCKER_E2E_PACKAGE_ARGS[@]}" \
|
|
"$IMAGE_NAME" \
|
|
timeout "$DOCKER_RUN_TIMEOUT" bash -lc 'set -euo pipefail
|
|
source scripts/lib/openclaw-e2e-instance.sh
|
|
|
|
export npm_config_loglevel=error
|
|
export npm_config_fund=false
|
|
export npm_config_audit=false
|
|
export OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_ROOT="${OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_ROOT:-/tmp/openclaw-upgrade-survivor-artifacts}"
|
|
mkdir -p "$OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_ROOT"
|
|
export TMPDIR="$OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_ROOT/tmp"
|
|
export OPENCLAW_TEST_STATE_TMPDIR="$OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_ROOT/state-tmp"
|
|
export npm_config_prefix="$OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_ROOT/npm-prefix"
|
|
export NPM_CONFIG_PREFIX="$npm_config_prefix"
|
|
export npm_config_cache="$OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_ROOT/npm-cache"
|
|
export npm_config_tmp="$TMPDIR"
|
|
mkdir -p "$TMPDIR" "$OPENCLAW_TEST_STATE_TMPDIR" "$npm_config_prefix" "$npm_config_cache"
|
|
export PATH="$npm_config_prefix/bin:$PATH"
|
|
export CI=true
|
|
export OPENCLAW_NO_ONBOARD=1
|
|
export OPENCLAW_NO_PROMPT=1
|
|
export OPENCLAW_SKIP_PROVIDERS=1
|
|
export OPENCLAW_SKIP_CHANNELS=1
|
|
export OPENCLAW_DISABLE_BONJOUR=1
|
|
export GATEWAY_AUTH_TOKEN_REF="upgrade-survivor-token"
|
|
export OPENAI_API_KEY="sk-openclaw-upgrade-survivor"
|
|
export DISCORD_BOT_TOKEN="upgrade-survivor-discord-token"
|
|
export TELEGRAM_BOT_TOKEN="123456:upgrade-survivor-telegram-token"
|
|
export FEISHU_APP_SECRET="upgrade-survivor-feishu-secret"
|
|
|
|
gateway_pid=""
|
|
cleanup() {
|
|
openclaw_e2e_terminate_gateways "${gateway_pid:-}"
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
openclaw_e2e_eval_test_state_from_b64 "${OPENCLAW_TEST_STATE_SCRIPT_B64:?missing OPENCLAW_TEST_STATE_SCRIPT_B64}"
|
|
node scripts/e2e/lib/upgrade-survivor/assertions.mjs seed
|
|
|
|
openclaw_e2e_install_package "$OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_ROOT/install.log" "upgrade survivor package" "$npm_config_prefix"
|
|
command -v openclaw >/dev/null
|
|
package_version="$(node -p "JSON.parse(require(\"node:fs\").readFileSync(process.argv[1] + \"/lib/node_modules/openclaw/package.json\", \"utf8\")).version" "$npm_config_prefix")"
|
|
OPENCLAW_PACKAGE_ACCEPTANCE_LEGACY_COMPAT="$(
|
|
node scripts/e2e/lib/package-compat.mjs "$package_version"
|
|
)"
|
|
export OPENCLAW_PACKAGE_ACCEPTANCE_LEGACY_COMPAT
|
|
|
|
echo "Checking dirty-state config before update..."
|
|
OPENCLAW_UPGRADE_SURVIVOR_ASSERT_STAGE=baseline node scripts/e2e/lib/upgrade-survivor/assertions.mjs assert-config
|
|
OPENCLAW_UPGRADE_SURVIVOR_ASSERT_STAGE=baseline node scripts/e2e/lib/upgrade-survivor/assertions.mjs assert-state
|
|
|
|
echo "Running package update against the mounted tarball..."
|
|
set +e
|
|
openclaw update --tag "${OPENCLAW_CURRENT_PACKAGE_TGZ:?missing OPENCLAW_CURRENT_PACKAGE_TGZ}" --yes --json --no-restart >/tmp/openclaw-upgrade-survivor-update.json 2>/tmp/openclaw-upgrade-survivor-update.err
|
|
update_status=$?
|
|
set -e
|
|
if [ "$update_status" -ne 0 ]; then
|
|
echo "openclaw update failed" >&2
|
|
cat /tmp/openclaw-upgrade-survivor-update.err >&2 || true
|
|
cat /tmp/openclaw-upgrade-survivor-update.json >&2 || true
|
|
exit "$update_status"
|
|
fi
|
|
|
|
echo "Running non-interactive doctor repair..."
|
|
if ! openclaw doctor --fix --non-interactive >/tmp/openclaw-upgrade-survivor-doctor.log 2>&1; then
|
|
echo "openclaw doctor failed" >&2
|
|
cat /tmp/openclaw-upgrade-survivor-doctor.log >&2 || true
|
|
exit 1
|
|
fi
|
|
if ! openclaw config validate >>/tmp/openclaw-upgrade-survivor-doctor.log 2>&1; then
|
|
echo "post-doctor config validation failed" >&2
|
|
cat /tmp/openclaw-upgrade-survivor-doctor.log >&2 || true
|
|
exit 1
|
|
fi
|
|
|
|
echo "Verifying config and state survived update/doctor..."
|
|
node scripts/e2e/lib/upgrade-survivor/assertions.mjs assert-config
|
|
node scripts/e2e/lib/upgrade-survivor/assertions.mjs assert-state
|
|
|
|
PORT=18789
|
|
START_BUDGET="${OPENCLAW_UPGRADE_SURVIVOR_START_BUDGET_SECONDS:-90}"
|
|
STATUS_BUDGET="${OPENCLAW_UPGRADE_SURVIVOR_STATUS_BUDGET_SECONDS:-30}"
|
|
|
|
echo "Starting gateway from upgraded state..."
|
|
start_epoch="$(node -e "process.stdout.write(String(Date.now()))")"
|
|
openclaw gateway --port "$PORT" --bind loopback --allow-unconfigured >/tmp/openclaw-upgrade-survivor-gateway.log 2>&1 &
|
|
gateway_pid="$!"
|
|
openclaw_e2e_wait_gateway_ready "$gateway_pid" /tmp/openclaw-upgrade-survivor-gateway.log 360
|
|
ready_epoch="$(node -e "process.stdout.write(String(Date.now()))")"
|
|
start_seconds=$(((ready_epoch - start_epoch + 999) / 1000))
|
|
if [ "$start_seconds" -gt "$START_BUDGET" ]; then
|
|
echo "gateway startup exceeded survivor budget: ${start_seconds}s > ${START_BUDGET}s" >&2
|
|
cat /tmp/openclaw-upgrade-survivor-gateway.log >&2 || true
|
|
exit 1
|
|
fi
|
|
|
|
echo "Checking gateway HTTP probes..."
|
|
node scripts/e2e/lib/upgrade-survivor/probe-gateway.mjs \
|
|
--base-url "http://127.0.0.1:$PORT" \
|
|
--path /healthz \
|
|
--expect live \
|
|
--out /tmp/openclaw-upgrade-survivor-healthz.json
|
|
node scripts/e2e/lib/upgrade-survivor/probe-gateway.mjs \
|
|
--base-url "http://127.0.0.1:$PORT" \
|
|
--path /readyz \
|
|
--expect ready \
|
|
--out /tmp/openclaw-upgrade-survivor-readyz.json
|
|
|
|
echo "Checking gateway RPC status..."
|
|
status_start="$(node -e "process.stdout.write(String(Date.now()))")"
|
|
if ! openclaw gateway status --url "ws://127.0.0.1:$PORT" --token "$GATEWAY_AUTH_TOKEN_REF" --require-rpc --timeout 30000 --json >/tmp/openclaw-upgrade-survivor-status.json 2>/tmp/openclaw-upgrade-survivor-status.err; then
|
|
echo "gateway status failed" >&2
|
|
cat /tmp/openclaw-upgrade-survivor-status.err >&2 || true
|
|
cat /tmp/openclaw-upgrade-survivor-gateway.log >&2 || true
|
|
exit 1
|
|
fi
|
|
status_end="$(node -e "process.stdout.write(String(Date.now()))")"
|
|
status_seconds=$(((status_end - status_start + 999) / 1000))
|
|
if [ "$status_seconds" -gt "$STATUS_BUDGET" ]; then
|
|
echo "gateway status exceeded survivor budget: ${status_seconds}s > ${STATUS_BUDGET}s" >&2
|
|
cat /tmp/openclaw-upgrade-survivor-status.json >&2 || true
|
|
exit 1
|
|
fi
|
|
node scripts/e2e/lib/upgrade-survivor/assertions.mjs assert-status-json /tmp/openclaw-upgrade-survivor-status.json
|
|
|
|
echo "Upgrade survivor Docker E2E passed scenario=${OPENCLAW_UPGRADE_SURVIVOR_SCENARIO:-base} startup=${start_seconds}s status=${status_seconds}s."
|
|
'
|