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

推荐订阅源

Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
爱范儿
爱范儿
博客园_首页
博客园 - 聂微东
量子位
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
N
Netflix TechBlog - Medium
F
Fortinet All Blogs
The Cloudflare Blog
T
Tailwind CSS Blog
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
腾讯CDC

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
perf: consolidate browser test entrypoints · openclaw/ope...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -1,4 +1,13 @@

11

import { afterEach, describe, expect, it, vi } from "vitest";

2+

import { resolveCdpReachabilityPolicy } from "./cdp-reachability-policy.js";

3+

import {

4+

PROFILE_HTTP_REACHABILITY_TIMEOUT_MS,

5+

PROFILE_WS_REACHABILITY_MAX_TIMEOUT_MS,

6+

PROFILE_WS_REACHABILITY_MIN_TIMEOUT_MS,

7+

resolveCdpReachabilityTimeouts,

8+

} from "./cdp-timeouts.js";

9+

import type { ResolvedBrowserProfile } from "./config.js";

10+

import { assertBrowserNavigationAllowed } from "./navigation-guard.js";

211312

const fetchWithSsrFGuardMock = vi.hoisted(() => vi.fn());

413

@@ -138,3 +147,119 @@ describe("cdp helpers", () => {

138147

expect(release).toHaveBeenCalledTimes(1);

139148

});

140149

});

150+151+

function createProfile(overrides: Partial<ResolvedBrowserProfile>): ResolvedBrowserProfile {

152+

return {

153+

name: "remote",

154+

cdpPort: 9223,

155+

cdpUrl: "http://172.29.128.1:9223",

156+

cdpHost: "172.29.128.1",

157+

cdpIsLoopback: false,

158+

color: "#123456",

159+

driver: "openclaw",

160+

attachOnly: false,

161+

...overrides,

162+

};

163+

}

164+165+

describe("resolveCdpReachabilityTimeouts", () => {

166+

it("uses loopback defaults when timeout is omitted", () => {

167+

expect(

168+

resolveCdpReachabilityTimeouts({

169+

profileIsLoopback: true,

170+

timeoutMs: undefined,

171+

remoteHttpTimeoutMs: 1500,

172+

remoteHandshakeTimeoutMs: 3000,

173+

}),

174+

).toEqual({

175+

httpTimeoutMs: PROFILE_HTTP_REACHABILITY_TIMEOUT_MS,

176+

wsTimeoutMs: PROFILE_HTTP_REACHABILITY_TIMEOUT_MS * 2,

177+

});

178+

});

179+180+

it("clamps loopback websocket timeout range", () => {

181+

const low = resolveCdpReachabilityTimeouts({

182+

profileIsLoopback: true,

183+

timeoutMs: 1,

184+

remoteHttpTimeoutMs: 1500,

185+

remoteHandshakeTimeoutMs: 3000,

186+

});

187+

const high = resolveCdpReachabilityTimeouts({

188+

profileIsLoopback: true,

189+

timeoutMs: 5000,

190+

remoteHttpTimeoutMs: 1500,

191+

remoteHandshakeTimeoutMs: 3000,

192+

});

193+194+

expect(low.wsTimeoutMs).toBe(PROFILE_WS_REACHABILITY_MIN_TIMEOUT_MS);

195+

expect(high.wsTimeoutMs).toBe(PROFILE_WS_REACHABILITY_MAX_TIMEOUT_MS);

196+

});

197+198+

it("enforces remote minimums even when caller passes lower timeout", () => {

199+

expect(

200+

resolveCdpReachabilityTimeouts({

201+

profileIsLoopback: false,

202+

timeoutMs: 200,

203+

remoteHttpTimeoutMs: 1500,

204+

remoteHandshakeTimeoutMs: 3000,

205+

}),

206+

).toEqual({

207+

httpTimeoutMs: 1500,

208+

wsTimeoutMs: 3000,

209+

});

210+

});

211+212+

it("uses remote defaults when timeout is omitted", () => {

213+

expect(

214+

resolveCdpReachabilityTimeouts({

215+

profileIsLoopback: false,

216+

timeoutMs: undefined,

217+

remoteHttpTimeoutMs: 1750,

218+

remoteHandshakeTimeoutMs: 3250,

219+

}),

220+

).toEqual({

221+

httpTimeoutMs: 1750,

222+

wsTimeoutMs: 3250,

223+

});

224+

});

225+

});

226+227+

describe("CDP reachability policy", () => {

228+

it("allows the selected remote profile CDP host without widening browser navigation policy", async () => {

229+

const browserPolicy = {};

230+

const profile = createProfile({});

231+232+

expect(resolveCdpReachabilityPolicy(profile, browserPolicy)).toEqual({

233+

allowedHostnames: ["172.29.128.1"],

234+

});

235+

expect(browserPolicy).toEqual({});

236+

await expect(

237+

assertBrowserNavigationAllowed({

238+

url: "http://172.29.128.1/",

239+

ssrfPolicy: browserPolicy,

240+

}),

241+

).rejects.toThrow(/private\/internal\/special-use ip address/i);

242+

});

243+244+

it("merges the selected remote profile CDP host with existing CDP policy hostnames", () => {

245+

const profile = createProfile({});

246+247+

expect(

248+

resolveCdpReachabilityPolicy(profile, {

249+

allowedHostnames: ["metadata.internal"],

250+

}),

251+

).toEqual({

252+

allowedHostnames: ["metadata.internal", "172.29.128.1"],

253+

});

254+

});

255+256+

it("keeps local managed loopback CDP control outside browser SSRF policy", () => {

257+

const profile = createProfile({

258+

cdpUrl: "http://127.0.0.1:18800",

259+

cdpHost: "127.0.0.1",

260+

cdpIsLoopback: true,

261+

});

262+263+

expect(resolveCdpReachabilityPolicy(profile, {})).toBeUndefined();

264+

});

265+

});