Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
294 lines
10 KiB
Bash
294 lines
10 KiB
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
source scripts/lib/openclaw-e2e-instance.sh
|
|
openclaw_e2e_eval_test_state_from_b64 "${OPENCLAW_TEST_STATE_FUNCTION_B64:?missing OPENCLAW_TEST_STATE_FUNCTION_B64}"
|
|
|
|
# Keep logs focused; the npm global install step can emit noisy deprecation warnings.
|
|
export npm_config_loglevel=error
|
|
export npm_config_fund=false
|
|
export npm_config_audit=false
|
|
export OPENCLAW_DISABLE_BUNDLED_PLUGINS=1
|
|
|
|
# Stub systemd/loginctl so doctor + daemon flows work in Docker.
|
|
export PATH="/tmp/openclaw-bin:$PATH"
|
|
mkdir -p /tmp/openclaw-bin
|
|
cp scripts/e2e/lib/doctor-install-switch/shims/systemctl /tmp/openclaw-bin/systemctl
|
|
cp scripts/e2e/lib/doctor-install-switch/shims/loginctl /tmp/openclaw-bin/loginctl
|
|
chmod +x /tmp/openclaw-bin/systemctl /tmp/openclaw-bin/loginctl
|
|
|
|
package_tgz="${OPENCLAW_CURRENT_PACKAGE_TGZ:?missing OPENCLAW_CURRENT_PACKAGE_TGZ}"
|
|
git_root="/tmp/openclaw-git"
|
|
mkdir -p "$git_root"
|
|
# The git-style install fixture is unpacked from the tarball so this lane does
|
|
# not depend on checkout source files being present in the Docker image.
|
|
tar -xzf "$package_tgz" -C "$git_root" --strip-components=1
|
|
(
|
|
cd "$git_root"
|
|
openclaw_e2e_maybe_timeout "${OPENCLAW_E2E_NPM_INSTALL_TIMEOUT:-600s}" npm install --omit=optional --no-fund --no-audit >/tmp/openclaw-git-install.log 2>&1
|
|
git init -q
|
|
git config user.email "docker-e2e@openclaw.local"
|
|
git config user.name "OpenClaw Docker E2E"
|
|
git add -A --
|
|
git commit -qm "test fixture"
|
|
)
|
|
npm_log="/tmp/openclaw-doctor-switch-npm-install.log"
|
|
if ! openclaw_e2e_maybe_timeout "${OPENCLAW_E2E_NPM_INSTALL_TIMEOUT:-600s}" npm install -g --prefix /tmp/npm-prefix --omit=optional "$package_tgz" >"$npm_log" 2>&1; then
|
|
openclaw_e2e_print_log "$npm_log"
|
|
exit 1
|
|
fi
|
|
|
|
npm_bin="/tmp/npm-prefix/bin/openclaw"
|
|
npm_root="/tmp/npm-prefix/lib/node_modules/openclaw"
|
|
if [ -f "$npm_root/dist/index.mjs" ]; then
|
|
npm_entry="$npm_root/dist/index.mjs"
|
|
else
|
|
npm_entry="$npm_root/dist/index.js"
|
|
fi
|
|
|
|
if [ -f "$git_root/dist/index.mjs" ]; then
|
|
git_entry="$git_root/dist/index.mjs"
|
|
else
|
|
git_entry="$git_root/dist/index.js"
|
|
fi
|
|
git_cli="$git_root/openclaw.mjs"
|
|
|
|
package_version="$(node -p "require(\"$npm_root/package.json\").version")"
|
|
is_legacy_package_acceptance_compat() {
|
|
[ "$(node scripts/e2e/lib/package-compat.mjs "$1")" = "1" ]
|
|
}
|
|
|
|
assert_entrypoint() {
|
|
local unit_path="$1"
|
|
local expected="$2"
|
|
local exec_line=""
|
|
exec_line=$(grep -m1 "^ExecStart=" "$unit_path" || true)
|
|
if [ -z "$exec_line" ]; then
|
|
echo "Missing ExecStart in $unit_path"
|
|
exit 1
|
|
fi
|
|
exec_line="${exec_line#ExecStart=}"
|
|
entrypoint=$(echo "$exec_line" | awk "{print \$2}")
|
|
entrypoint="${entrypoint%\"}"
|
|
entrypoint="${entrypoint#\"}"
|
|
if [ "$entrypoint" != "$expected" ]; then
|
|
echo "Expected entrypoint $expected, got $entrypoint"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
assert_exec_arg() {
|
|
local unit_path="$1"
|
|
local index="$2"
|
|
local expected="$3"
|
|
local exec_line=""
|
|
local actual=""
|
|
exec_line=$(grep -m1 "^ExecStart=" "$unit_path" || true)
|
|
if [ -z "$exec_line" ]; then
|
|
echo "Missing ExecStart in $unit_path"
|
|
exit 1
|
|
fi
|
|
exec_line="${exec_line#ExecStart=}"
|
|
actual=$(echo "$exec_line" | awk -v field="$index" "{print \$field}")
|
|
actual="${actual%\"}"
|
|
actual="${actual#\"}"
|
|
if [ "$actual" != "$expected" ]; then
|
|
echo "Expected ExecStart arg $index to be $expected, got $actual"
|
|
cat "$unit_path"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
assert_env_value() {
|
|
local unit_path="$1"
|
|
local key="$2"
|
|
local expected="$3"
|
|
if ! grep -Fxq "Environment=${key}=${expected}" "$unit_path"; then
|
|
echo "Expected Environment=${key}=${expected} in $unit_path"
|
|
cat "$unit_path"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
assert_no_env_key() {
|
|
local unit_path="$1"
|
|
local key="$2"
|
|
if grep -q "^Environment=${key}=" "$unit_path"; then
|
|
echo "Expected no Environment=${key}= line in $unit_path"
|
|
cat "$unit_path"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# Each flow: install service with one variant, run doctor from the other,
|
|
# and verify ExecStart entrypoint switches accordingly.
|
|
run_flow() {
|
|
local name="$1"
|
|
local install_cmd="$2"
|
|
local install_expected="$3"
|
|
local doctor_cmd="$4"
|
|
local doctor_expected="$5"
|
|
local install_log="/tmp/openclaw-doctor-switch-${name}-install.log"
|
|
local doctor_log="/tmp/openclaw-doctor-switch-${name}-doctor.log"
|
|
local command_timeout="${OPENCLAW_DOCKER_DOCTOR_SWITCH_COMMAND_TIMEOUT:-900s}"
|
|
|
|
echo "== Flow: $name =="
|
|
openclaw_test_state_create "switch-${name}" empty
|
|
export USER="testuser"
|
|
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" bash -c "$install_cmd" >"$install_log" 2>&1; then
|
|
openclaw_e2e_print_log "$install_log"
|
|
exit 1
|
|
fi
|
|
rm -f "$HOME/.zshrc" "$HOME/.bashrc" "$HOME/.bash_profile"
|
|
rm -rf "$HOME/.config/fish" "$HOME/.config/powershell"
|
|
|
|
unit_path="$HOME/.config/systemd/user/openclaw-gateway.service"
|
|
if [ ! -f "$unit_path" ]; then
|
|
echo "Missing unit file: $unit_path"
|
|
exit 1
|
|
fi
|
|
assert_entrypoint "$unit_path" "$install_expected"
|
|
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" bash -c "$doctor_cmd" >"$doctor_log" 2>&1; then
|
|
openclaw_e2e_print_log "$doctor_log"
|
|
exit 1
|
|
fi
|
|
|
|
assert_entrypoint "$unit_path" "$doctor_expected"
|
|
}
|
|
|
|
run_flow \
|
|
"npm-to-git" \
|
|
"$npm_bin daemon install --force" \
|
|
"$npm_entry" \
|
|
"OPENCLAW_UPDATE_IN_PROGRESS=1 node $git_cli doctor --repair --force --yes --non-interactive" \
|
|
"$git_entry"
|
|
|
|
run_flow \
|
|
"git-to-npm" \
|
|
"node $git_cli daemon install --force" \
|
|
"$git_entry" \
|
|
"OPENCLAW_UPDATE_IN_PROGRESS=1 $npm_bin doctor --repair --force --yes --non-interactive" \
|
|
"$npm_entry"
|
|
|
|
run_proxy_env_flow() {
|
|
local name="proxy-env-cleanup"
|
|
local install_log="/tmp/openclaw-doctor-switch-${name}-install.log"
|
|
local doctor_log="/tmp/openclaw-doctor-switch-${name}-doctor.log"
|
|
local command_timeout="${OPENCLAW_DOCKER_DOCTOR_SWITCH_COMMAND_TIMEOUT:-900s}"
|
|
|
|
echo "== Flow: $name =="
|
|
openclaw_test_state_create "switch-${name}" empty
|
|
export USER="testuser"
|
|
|
|
unit_path="$HOME/.config/systemd/user/openclaw-gateway.service"
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" env \
|
|
HTTP_PROXY="http://proxy.local:7890" \
|
|
HTTPS_PROXY="https://proxy.local:7890" \
|
|
NO_PROXY="localhost,127.0.0.1" \
|
|
"$npm_bin" gateway install --force >"$install_log" 2>&1; then
|
|
openclaw_e2e_print_log "$install_log"
|
|
exit 1
|
|
fi
|
|
assert_no_env_key "$unit_path" "HTTP_PROXY"
|
|
assert_no_env_key "$unit_path" "HTTPS_PROXY"
|
|
assert_no_env_key "$unit_path" "NO_PROXY"
|
|
|
|
{
|
|
printf "%s\n" "Environment=HTTP_PROXY=http://stale-proxy.local:7890"
|
|
printf "%s\n" "Environment=HTTPS_PROXY=https://stale-proxy.local:7890"
|
|
} >>"$unit_path"
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" env OPENCLAW_UPDATE_IN_PROGRESS=1 \
|
|
node "$git_cli" doctor --repair --force --yes --non-interactive >"$doctor_log" 2>&1; then
|
|
openclaw_e2e_print_log "$doctor_log"
|
|
exit 1
|
|
fi
|
|
assert_no_env_key "$unit_path" "HTTP_PROXY"
|
|
assert_no_env_key "$unit_path" "HTTPS_PROXY"
|
|
}
|
|
|
|
run_proxy_env_flow
|
|
|
|
run_wrapper_flow() {
|
|
local name="wrapper-persistence"
|
|
local install_log="/tmp/openclaw-doctor-switch-${name}-install.log"
|
|
local reinstall_log="/tmp/openclaw-doctor-switch-${name}-reinstall.log"
|
|
local env_repair_log="/tmp/openclaw-doctor-switch-${name}-env-repair.log"
|
|
local doctor_log="/tmp/openclaw-doctor-switch-${name}-doctor.log"
|
|
local clear_log="/tmp/openclaw-doctor-switch-${name}-clear.log"
|
|
local command_timeout="${OPENCLAW_DOCKER_DOCTOR_SWITCH_COMMAND_TIMEOUT:-900s}"
|
|
|
|
echo "== Flow: $name =="
|
|
openclaw_test_state_create "switch-${name}" empty
|
|
export USER="testuser"
|
|
mkdir -p "$HOME/.local/bin"
|
|
local wrapper="$HOME/.local/bin/openclaw-wrapper"
|
|
node scripts/e2e/lib/doctor-install-switch/write-wrapper.mjs \
|
|
"$wrapper" \
|
|
"$npm_bin" \
|
|
"$HOME/openclaw-wrapper-argv.log"
|
|
|
|
local unit_path="$HOME/.config/systemd/user/openclaw-gateway.service"
|
|
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" "$npm_bin" gateway install --wrapper "$wrapper" --force >"$install_log" 2>&1; then
|
|
openclaw_e2e_print_log "$install_log"
|
|
exit 1
|
|
fi
|
|
assert_exec_arg "$unit_path" 1 "$wrapper"
|
|
assert_exec_arg "$unit_path" 2 "gateway"
|
|
assert_env_value "$unit_path" "OPENCLAW_WRAPPER" "$wrapper"
|
|
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" "$npm_bin" gateway install --force >"$reinstall_log" 2>&1; then
|
|
openclaw_e2e_print_log "$reinstall_log"
|
|
exit 1
|
|
fi
|
|
assert_exec_arg "$unit_path" 1 "$wrapper"
|
|
assert_exec_arg "$unit_path" 2 "gateway"
|
|
assert_env_value "$unit_path" "OPENCLAW_WRAPPER" "$wrapper"
|
|
|
|
sed -i "/^Environment=OPENCLAW_WRAPPER=/d" "$unit_path"
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" "$npm_bin" gateway install --wrapper "$wrapper" >"$env_repair_log" 2>&1; then
|
|
openclaw_e2e_print_log "$env_repair_log"
|
|
exit 1
|
|
fi
|
|
assert_exec_arg "$unit_path" 1 "$wrapper"
|
|
assert_env_value "$unit_path" "OPENCLAW_WRAPPER" "$wrapper"
|
|
|
|
sed -i "s#^Environment=OPENCLAW_WRAPPER=.*#Environment=OPENCLAW_WRAPPER=/tmp/stale-openclaw-wrapper#" "$unit_path"
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" "$npm_bin" gateway install --wrapper "$wrapper" >"$env_repair_log" 2>&1; then
|
|
openclaw_e2e_print_log "$env_repair_log"
|
|
exit 1
|
|
fi
|
|
assert_exec_arg "$unit_path" 1 "$wrapper"
|
|
assert_env_value "$unit_path" "OPENCLAW_WRAPPER" "$wrapper"
|
|
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" node "$git_cli" doctor --repair --force --yes >"$doctor_log" 2>&1; then
|
|
openclaw_e2e_print_log "$doctor_log"
|
|
exit 1
|
|
fi
|
|
if ! grep -Fq "Gateway service invokes OPENCLAW_WRAPPER:" "$doctor_log"; then
|
|
echo "Expected doctor to report active wrapper"
|
|
openclaw_e2e_print_log "$doctor_log"
|
|
exit 1
|
|
fi
|
|
assert_exec_arg "$unit_path" 1 "$wrapper"
|
|
assert_env_value "$unit_path" "OPENCLAW_WRAPPER" "$wrapper"
|
|
|
|
if ! openclaw_e2e_maybe_timeout "$command_timeout" env OPENCLAW_WRAPPER= "$npm_bin" gateway install --force >"$clear_log" 2>&1; then
|
|
openclaw_e2e_print_log "$clear_log"
|
|
exit 1
|
|
fi
|
|
assert_no_env_key "$unit_path" "OPENCLAW_WRAPPER"
|
|
assert_entrypoint "$unit_path" "$npm_entry"
|
|
}
|
|
|
|
if "$npm_bin" gateway install --help 2>&1 | grep -q -- "--wrapper"; then
|
|
run_wrapper_flow
|
|
elif is_legacy_package_acceptance_compat "$package_version"; then
|
|
# Legacy compatibility: 2026.4.25 and older did not ship gateway install --wrapper.
|
|
echo "Skipping wrapper persistence; package gateway install does not support --wrapper."
|
|
else
|
|
echo "Package $package_version must support gateway install --wrapper." >&2
|
|
exit 1
|
|
fi
|