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

推荐订阅源

V
Visual Studio Blog
量子位
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell

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
fix(browser): validate current tab before snapshots (#785...
eleqtrizit · 2026-05-27 · via Recent Commits to openclaw:main
1+

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

2+

import { createBrowserRouteApp, createBrowserRouteResponse } from "./test-helpers.js";

3+

import type { BrowserRequest } from "./types.js";

4+5+

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

6+

profileCtx: {

7+

profile: {

8+

driver: "openclaw" as const,

9+

name: "openclaw",

10+

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

11+

cdpIsLoopback: true,

12+

},

13+

ensureTabAvailable: vi.fn(async () => ({

14+

targetId: "7",

15+

url: "http://127.0.0.1:8080/admin",

16+

wsUrl: "ws://127.0.0.1/devtools/page/7",

17+

})),

18+

},

19+

}));

20+21+

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

22+

snapshotAria: vi.fn(async () => ({

23+

nodes: [{ ref: "1", role: "link", name: "private", depth: 0 }],

24+

})),

25+

snapshotRoleViaCdp: vi.fn(async () => ({

26+

snapshot: '- link "private" [ref=e1]',

27+

refs: { e1: { role: "link", name: "private" } },

28+

stats: { lines: 1, chars: 25, refs: 1, interactive: 1 },

29+

})),

30+

}));

31+32+

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

33+

assertBrowserNavigationAllowed: vi.fn(async () => {}),

34+

assertBrowserNavigationResultAllowed: vi.fn(async () => {

35+

throw new Error("browser navigation blocked by policy");

36+

}),

37+

withBrowserNavigationPolicy: vi.fn((ssrfPolicy?: unknown) => (ssrfPolicy ? { ssrfPolicy } : {})),

38+

}));

39+40+

vi.mock("../cdp.js", () => ({

41+

captureScreenshot: vi.fn(),

42+

snapshotAria: cdpMocks.snapshotAria,

43+

snapshotRoleViaCdp: cdpMocks.snapshotRoleViaCdp,

44+

}));

45+46+

vi.mock("../chrome-mcp.js", () => ({

47+

evaluateChromeMcpScript: vi.fn(),

48+

navigateChromeMcpPage: vi.fn(),

49+

takeChromeMcpScreenshot: vi.fn(),

50+

takeChromeMcpSnapshot: vi.fn(),

51+

}));

52+53+

vi.mock("../navigation-guard.js", () => ({

54+

assertBrowserNavigationAllowed: navigationGuardMocks.assertBrowserNavigationAllowed,

55+

assertBrowserNavigationResultAllowed: navigationGuardMocks.assertBrowserNavigationResultAllowed,

56+

withBrowserNavigationPolicy: navigationGuardMocks.withBrowserNavigationPolicy,

57+

}));

58+59+

vi.mock("../screenshot.js", () => ({

60+

DEFAULT_BROWSER_SCREENSHOT_MAX_BYTES: 128,

61+

DEFAULT_BROWSER_SCREENSHOT_MAX_SIDE: 64,

62+

normalizeBrowserScreenshot: vi.fn(async (buffer: Buffer) => ({

63+

buffer,

64+

contentType: "image/png",

65+

})),

66+

}));

67+68+

vi.mock("../../media/store.js", () => ({

69+

ensureMediaDir: vi.fn(async () => {}),

70+

saveMediaBuffer: vi.fn(async () => ({ path: "/tmp/fake.png" })),

71+

}));

72+73+

vi.mock("./agent.shared.js", () => ({

74+

getPwAiModule: vi.fn(async () => null),

75+

handleRouteError: vi.fn(

76+

(

77+

_ctx: unknown,

78+

res: { status: (code: number) => unknown; json: (body: unknown) => void },

79+

err: unknown,

80+

) => {

81+

const message = err instanceof Error ? err.message : String(err);

82+

res.status(400);

83+

res.json({ error: message });

84+

},

85+

),

86+

readBody: vi.fn((req: BrowserRequest) => req.body ?? {}),

87+

requirePwAi: vi.fn(async () => null),

88+

resolveProfileContext: vi.fn(() => routeState.profileCtx),

89+

withPlaywrightRouteContext: vi.fn(),

90+

withRouteTabContext: vi.fn(),

91+

}));

92+93+

const { registerBrowserAgentSnapshotRoutes } = await import("./agent.snapshot.js");

94+95+

function getSnapshotGetHandler() {

96+

const { app, getHandlers } = createBrowserRouteApp();

97+

registerBrowserAgentSnapshotRoutes(app, {

98+

state: () => ({

99+

resolved: {

100+

extraArgs: [],

101+

ssrfPolicy: { dangerouslyAllowPrivateNetwork: false },

102+

},

103+

}),

104+

} as never);

105+

const handler = getHandlers.get("/snapshot");

106+

expect(handler).toBeTypeOf("function");

107+

return handler;

108+

}

109+110+

describe("local-managed browser snapshot routes", () => {

111+

beforeEach(() => {

112+

routeState.profileCtx.ensureTabAvailable.mockClear();

113+

cdpMocks.snapshotAria.mockClear();

114+

cdpMocks.snapshotRoleViaCdp.mockClear();

115+

navigationGuardMocks.assertBrowserNavigationResultAllowed.mockClear();

116+

navigationGuardMocks.withBrowserNavigationPolicy.mockClear();

117+

});

118+119+

it("blocks ARIA CDP snapshots when the current tab violates browser navigation policy", async () => {

120+

const handler = getSnapshotGetHandler();

121+

const response = createBrowserRouteResponse();

122+123+

await handler?.({ params: {}, query: { format: "aria" } }, response.res);

124+125+

expect(response.statusCode).toBe(400);

126+

expect(response.body).toEqual({ error: "browser navigation blocked by policy" });

127+

expect(navigationGuardMocks.assertBrowserNavigationResultAllowed).toHaveBeenCalledWith({

128+

url: "http://127.0.0.1:8080/admin",

129+

ssrfPolicy: { dangerouslyAllowPrivateNetwork: false },

130+

});

131+

expect(cdpMocks.snapshotAria).not.toHaveBeenCalled();

132+

});

133+134+

it("blocks AI CDP role snapshots when the current tab violates browser navigation policy", async () => {

135+

const handler = getSnapshotGetHandler();

136+

const response = createBrowserRouteResponse();

137+138+

await handler?.({ params: {}, query: { format: "ai", interactive: "true" } }, response.res);

139+140+

expect(response.statusCode).toBe(400);

141+

expect(response.body).toEqual({ error: "browser navigation blocked by policy" });

142+

expect(navigationGuardMocks.assertBrowserNavigationResultAllowed).toHaveBeenCalledWith({

143+

url: "http://127.0.0.1:8080/admin",

144+

ssrfPolicy: { dangerouslyAllowPrivateNetwork: false },

145+

});

146+

expect(cdpMocks.snapshotRoleViaCdp).not.toHaveBeenCalled();

147+

});

148+

});