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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
博客园 - 叶小钗
雷峰网
雷峰网
量子位

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
browser: route existing-session user profile through brow...
mbelinky · 2026-04-19 · via Recent Commits to openclaw:main

@@ -113,7 +113,12 @@ const gatewayMocks = vi.hoisted(() => ({

113113

vi.mock("../../../src/agents/tools/gateway.js", () => gatewayMocks);

114114115115

const configMocks = vi.hoisted(() => ({

116-

loadConfig: vi.fn(() => ({ browser: {} })),

116+

loadConfig: vi.fn<

117+

() => {

118+

browser: Record<string, unknown>;

119+

gateway?: { nodes?: { browser?: { node?: string } } };

120+

}

121+

>(() => ({ browser: {} })),

117122

}));

118123

vi.mock("openclaw/plugin-sdk/config-runtime", async () => {

119124

const actual = await vi.importActual<typeof import("openclaw/plugin-sdk/config-runtime")>(

@@ -340,7 +345,7 @@ describe("browser tool snapshot maxChars", () => {

340345

expect(opts?.mode).toBeUndefined();

341346

});

342347343-

it("defaults to host when using profile=user (even in sandboxed sessions)", async () => {

348+

it("keeps profile=user off the sandbox browser when no node is selected", async () => {

344349

setResolvedBrowserProfiles({

345350

user: { driver: "existing-session", attachOnly: true, color: "#00AA00" },

346351

});

@@ -360,7 +365,7 @@ describe("browser tool snapshot maxChars", () => {

360365

);

361366

});

362367363-

it("defaults to host for custom existing-session profiles too", async () => {

368+

it("keeps custom existing-session profiles off the sandbox browser too", async () => {

364369

setResolvedBrowserProfiles({

365370

"chrome-live": { driver: "existing-session", attachOnly: true, color: "#00AA00" },

366371

});

@@ -470,14 +475,121 @@ describe("browser tool snapshot maxChars", () => {

470475

expect(gatewayMocks.callGatewayTool).not.toHaveBeenCalled();

471476

});

472477473-

it("keeps user profile on host when node proxy is available", async () => {

478+

it("routes profile=user through the node proxy when one is available", async () => {

474479

mockSingleBrowserProxyNode();

475480

setResolvedBrowserProfiles({

476481

user: { driver: "existing-session", attachOnly: true, color: "#00AA00" },

477482

});

478483

const tool = createBrowserTool();

479484

await tool.execute?.("call-1", { action: "status", profile: "user" });

480485486+

expect(gatewayMocks.callGatewayTool).toHaveBeenCalledWith(

487+

"node.invoke",

488+

{ timeoutMs: 25000 },

489+

expect.objectContaining({

490+

nodeId: "node-1",

491+

command: "browser.proxy",

492+

params: expect.objectContaining({

493+

profile: "user",

494+

path: "/",

495+

method: "GET",

496+

timeoutMs: 20000,

497+

}),

498+

}),

499+

);

500+

expect(browserClientMocks.browserStatus).not.toHaveBeenCalled();

501+

});

502+503+

it("falls back to the host for profile=user when node discovery errors", async () => {

504+

nodesUtilsMocks.listNodes.mockRejectedValueOnce(new Error("gateway unavailable"));

505+

setResolvedBrowserProfiles({

506+

user: { driver: "existing-session", attachOnly: true, color: "#00AA00" },

507+

});

508+

const tool = createBrowserTool();

509+

await tool.execute?.("call-1", { action: "status", profile: "user" });

510+511+

expect(browserClientMocks.browserStatus).toHaveBeenCalledWith(

512+

undefined,

513+

expect.objectContaining({ profile: "user" }),

514+

);

515+

expect(gatewayMocks.callGatewayTool).not.toHaveBeenCalled();

516+

});

517+518+

it("preserves configured node pins when profile=user node discovery errors", async () => {

519+

nodesUtilsMocks.listNodes.mockRejectedValueOnce(new Error("gateway unavailable"));

520+

configMocks.loadConfig.mockReturnValue({

521+

browser: {},

522+

gateway: { nodes: { browser: { node: "node-1" } } },

523+

});

524+

setResolvedBrowserProfiles({

525+

user: { driver: "existing-session", attachOnly: true, color: "#00AA00" },

526+

});

527+

const tool = createBrowserTool();

528+529+

await expect(tool.execute?.("call-1", { action: "status", profile: "user" })).rejects.toThrow(

530+

/gateway unavailable/i,

531+

);

532+533+

expect(browserClientMocks.browserStatus).not.toHaveBeenCalled();

534+

expect(gatewayMocks.callGatewayTool).not.toHaveBeenCalled();

535+

});

536+537+

it('allows profile="user" with target="node"', async () => {

538+

mockSingleBrowserProxyNode();

539+

setResolvedBrowserProfiles({

540+

user: { driver: "existing-session", attachOnly: true, color: "#00AA00" },

541+

});

542+

const tool = createBrowserTool();

543+

await tool.execute?.("call-1", { action: "status", profile: "user", target: "node" });

544+545+

expect(gatewayMocks.callGatewayTool).toHaveBeenCalledWith(

546+

"node.invoke",

547+

{ timeoutMs: 25000 },

548+

expect.objectContaining({

549+

nodeId: "node-1",

550+

command: "browser.proxy",

551+

params: expect.objectContaining({

552+

profile: "user",

553+

path: "/",

554+

method: "GET",

555+

}),

556+

}),

557+

);

558+

expect(browserClientMocks.browserStatus).not.toHaveBeenCalled();

559+

});

560+561+

it('allows profile="user" with an explicit node pin', async () => {

562+

mockSingleBrowserProxyNode();

563+

setResolvedBrowserProfiles({

564+

user: { driver: "existing-session", attachOnly: true, color: "#00AA00" },

565+

});

566+

const tool = createBrowserTool();

567+

await tool.execute?.("call-1", { action: "status", profile: "user", node: "node-1" });

568+569+

expect(gatewayMocks.callGatewayTool).toHaveBeenCalledWith(

570+

"node.invoke",

571+

{ timeoutMs: 25000 },

572+

expect.objectContaining({

573+

nodeId: "node-1",

574+

command: "browser.proxy",

575+

params: expect.objectContaining({

576+

profile: "user",

577+

path: "/",

578+

method: "GET",

579+

}),

580+

}),

581+

);

582+

expect(browserClientMocks.browserStatus).not.toHaveBeenCalled();

583+

});

584+585+

it('keeps profile="user" on the host when target="host" is explicit', async () => {

586+

mockSingleBrowserProxyNode();

587+

setResolvedBrowserProfiles({

588+

user: { driver: "existing-session", attachOnly: true, color: "#00AA00" },

589+

});

590+

const tool = createBrowserTool();

591+

await tool.execute?.("call-1", { action: "status", profile: "user", target: "host" });

592+481593

expect(browserClientMocks.browserStatus).toHaveBeenCalledWith(

482594

undefined,

483595

expect.objectContaining({ profile: "user" }),