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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
Y
Y Combinator Blog
V
V2EX
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
博客园 - 叶小钗
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
B
Blog
G
Google Developers Blog
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
N
Netflix TechBlog - Medium
腾讯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
test: tighten browser profile assertions · openclaw/openc...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -66,6 +66,12 @@ async function createWorkProfileWithConfig(params: {

6666

return { result, state };

6767

}

686869+

function writtenBrowserConfig(): Record<string, unknown> {

70+

const cfg = writeConfigFile.mock.calls[0]?.[0] as { browser?: Record<string, unknown> };

71+

expect(cfg?.browser).toBeDefined();

72+

return cfg.browser ?? {};

73+

}

74+6975

describe("BrowserProfilesService", () => {

7076

beforeEach(() => {

7177

vi.clearAllMocks();

@@ -135,17 +141,8 @@ describe("BrowserProfilesService", () => {

135141

expect(result.cdpUrl).toBe("http://10.0.0.42:9222");

136142

expect(result.cdpPort).toBe(9222);

137143

expect(result.isRemote).toBe(true);

138-

expect(writeConfigFile).toHaveBeenCalledWith(

139-

expect.objectContaining({

140-

browser: expect.objectContaining({

141-

profiles: expect.objectContaining({

142-

remote: expect.objectContaining({

143-

cdpUrl: "http://10.0.0.42:9222",

144-

}),

145-

}),

146-

}),

147-

}),

148-

);

144+

const profiles = writtenBrowserConfig().profiles as Record<string, { cdpUrl?: string }>;

145+

expect(profiles.remote?.cdpUrl).toBe("http://10.0.0.42:9222");

149146

});

150147151148

it("rejects private-network cdpUrl when strict SSRF mode is enabled", async () => {

@@ -188,23 +185,16 @@ describe("BrowserProfilesService", () => {

188185

expect(result.cdpUrl).toBeNull();

189186

expect(result.userDataDir).toBeNull();

190187

expect(result.isRemote).toBe(false);

191-

expect(state.resolved.profiles["chrome-live"]).toEqual({

192-

driver: "existing-session",

193-

attachOnly: true,

194-

color: expect.any(String),

195-

});

196-

expect(writeConfigFile).toHaveBeenCalledWith(

197-

expect.objectContaining({

198-

browser: expect.objectContaining({

199-

profiles: expect.objectContaining({

200-

"chrome-live": expect.objectContaining({

201-

driver: "existing-session",

202-

attachOnly: true,

203-

}),

204-

}),

205-

}),

206-

}),

207-

);

188+

const resolvedProfile = state.resolved.profiles["chrome-live"];

189+

expect(resolvedProfile?.driver).toBe("existing-session");

190+

expect(resolvedProfile?.attachOnly).toBe(true);

191+

expect(typeof resolvedProfile?.color).toBe("string");

192+

const profiles = writtenBrowserConfig().profiles as Record<

193+

string,

194+

{ attachOnly?: boolean; driver?: string }

195+

>;

196+

expect(profiles["chrome-live"]?.driver).toBe("existing-session");

197+

expect(profiles["chrome-live"]?.attachOnly).toBe(true);

208198

});

209199210200

it("rejects driver=existing-session when cdpUrl is provided", async () => {

@@ -241,12 +231,11 @@ describe("BrowserProfilesService", () => {

241231242232

expect(result.transport).toBe("chrome-mcp");

243233

expect(result.userDataDir).toBe(userDataDir);

244-

expect(state.resolved.profiles["brave-live"]).toEqual({

245-

driver: "existing-session",

246-

attachOnly: true,

247-

userDataDir,

248-

color: expect.any(String),

249-

});

234+

const resolvedProfile = state.resolved.profiles["brave-live"];

235+

expect(resolvedProfile?.driver).toBe("existing-session");

236+

expect(resolvedProfile?.attachOnly).toBe(true);

237+

expect(resolvedProfile?.userDataDir).toBe(userDataDir);

238+

expect(typeof resolvedProfile?.color).toBe("string");

250239

});

251240252241

it("rejects userDataDir for non-existing-session profiles", async () => {