惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

A
About on SuperTechFans
小众软件
小众软件
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
博客园 - 三生石上(FineUI控件)
博客园_首页
N
Netflix TechBlog - Medium
IT之家
IT之家
H
Help Net Security
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
罗磊的独立博客
T
Tailwind CSS Blog
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
MongoDB | Blog
MongoDB | Blog
V
V2EX
量子位
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
博客园 - 司徒正美
The Cloudflare Blog
Engineering at Meta
Engineering at Meta

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor: simplify docker e2e helpers · openclaw/openclaw...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -14,18 +14,14 @@ TOKEN="browser-cdp-e2e-token"

1414

CONTAINER_NAME="openclaw-browser-cdp-e2e-$$"

1515

DOCKER_COMMAND_TIMEOUT="${OPENCLAW_BROWSER_CDP_SNAPSHOT_DOCKER_COMMAND_TIMEOUT:-900s}"

161617-

docker_cmd() {

18-

timeout "$DOCKER_COMMAND_TIMEOUT" "$@"

19-

}

20-2117

cleanup() {

22-

docker_cmd docker rm -f "$CONTAINER_NAME" >/dev/null 2>&1 || true

18+

docker_e2e_docker_cmd rm -f "$CONTAINER_NAME" >/dev/null 2>&1 || true

2319

}

2420

trap cleanup EXIT

25212622

if [ "${OPENCLAW_SKIP_DOCKER_BUILD:-0}" = "1" ] || [ "$SKIP_BUILD" = "1" ]; then

2723

echo "Reusing Docker image: $IMAGE_NAME"

28-

docker_cmd docker image inspect "$IMAGE_NAME" >/dev/null

24+

docker_e2e_docker_cmd image inspect "$IMAGE_NAME" >/dev/null

2925

else

3026

docker_e2e_build_or_reuse "$BASE_IMAGE" browser-cdp-base "$ROOT_DIR/scripts/e2e/Dockerfile" "$ROOT_DIR" "" "0"

3127

build_dir="$(mktemp -d "${TMPDIR:-/tmp}/openclaw-browser-cdp-build.XXXXXX")"

@@ -45,7 +41,7 @@ OPENCLAW_TEST_STATE_SCRIPT_B64="$(docker_e2e_test_state_shell_b64 browser-cdp-sn

45414642

echo "Starting browser CDP snapshot container..."

4743

docker_e2e_harness_mount_args

48-

docker_cmd docker run -d \

44+

docker_e2e_docker_cmd run -d \

4945

"${DOCKER_E2E_HARNESS_ARGS[@]}" \

5046

--name "$CONTAINER_NAME" \

5147

-e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \

@@ -95,26 +91,7 @@ chromium --headless=new --no-sandbox --disable-gpu --disable-dev-shm-usage \\

9591

--remote-debugging-port=$CDP_PORT \\

9692

--user-data-dir=/tmp/openclaw-browser-cdp/chrome \\

9793

about:blank >/tmp/browser-cdp-chromium.log 2>&1 &

98-

node --input-type=module - <<'NODE' >/tmp/browser-cdp-fixture.log 2>&1 &

99-

import http from 'node:http';

100-

const html = \`<!doctype html>

101-

<html>

102-

<body>

103-

<main>

104-

<button>Save</button>

105-

<a href=\"https://docs.openclaw.ai/browser-cdp-live\">Docs</a>

106-

<div id=\"card\" onclick=\"window.__clicked = true\" style=\"cursor: pointer\">Clickable Card</div>

107-

<iframe title=\"Child\" srcdoc='<button>Inside</button>'></iframe>

108-

</main>

109-

</body>

110-

</html>\`;

111-

http

112-

.createServer((_req, res) => {

113-

res.writeHead(200, { 'content-type': 'text/html; charset=utf-8' });

114-

res.end(html);

115-

})

116-

.listen($FIXTURE_PORT, '127.0.0.1');

117-

NODE

94+

FIXTURE_PORT=$FIXTURE_PORT node scripts/e2e/lib/browser-cdp-snapshot/fixture-server.mjs >/tmp/browser-cdp-fixture.log 2>&1 &

11895

openclaw_e2e_exec_gateway \"\$entry\" $PORT loopback /tmp/browser-cdp-gateway.log" >/dev/null

1199612097

echo "Waiting for Chromium and Gateway..."

@@ -129,7 +106,7 @@ if ! docker_e2e_wait_container_bash "$CONTAINER_NAME" 180 0.5 "

129106

fi

130107131108

echo "Running browser CDP snapshot smoke..."

132-

docker_cmd docker exec "$CONTAINER_NAME" bash -lc "

109+

docker_e2e_docker_cmd exec "$CONTAINER_NAME" bash -lc "

133110

set -euo pipefail

134111

source /tmp/openclaw-test-state-env

135112

source scripts/lib/openclaw-e2e-instance.sh

@@ -139,25 +116,7 @@ node \"\$entry\" browser \"\${base_args[@]}\" --browser-profile docker-cdp docto

139116

grep -q 'OK live-snapshot' /tmp/browser-cdp-doctor.txt

140117

node \"\$entry\" browser \"\${base_args[@]}\" --browser-profile docker-cdp open http://127.0.0.1:$FIXTURE_PORT/ >/tmp/browser-cdp-open.txt

141118

node \"\$entry\" browser \"\${base_args[@]}\" --browser-profile docker-cdp snapshot --interactive --urls --out /tmp/browser-cdp-snapshot.txt >/tmp/browser-cdp-snapshot.out

142-

node --input-type=module - <<'NODE'

143-

import fs from 'node:fs';

144-

const snapshot = fs.readFileSync('/tmp/browser-cdp-snapshot.txt', 'utf8');

145-

for (const needle of [

146-

'button \"Save\"',

147-

'link \"Docs\"',

148-

'https://docs.openclaw.ai/browser-cdp-live',

149-

'generic \"Clickable Card\"',

150-

'cursor:pointer',

151-

'Iframe \"Child\"',

152-

'button \"Inside\"',

153-

]) {

154-

if (!snapshot.includes(needle)) {

155-

console.error(snapshot);

156-

throw new Error('missing snapshot needle: ' + needle);

157-

}

158-

}

159-

console.log('ok');

160-

NODE

119+

node scripts/e2e/lib/browser-cdp-snapshot/assert-snapshot.mjs /tmp/browser-cdp-snapshot.txt

161120

"

162121163122

echo "Browser CDP snapshot Docker E2E passed."