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

推荐订阅源

月光博客
月光博客
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
S
SegmentFault 最新的问题
Jina AI
Jina AI
美团技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
WordPress大学
WordPress大学
爱范儿
爱范儿
博客园 - Franky
量子位
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网

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
feat(browser): add one-shot headless start override · ope...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -91,6 +91,43 @@ async function callBasicRouteWithState(params: {

9191

return response;

9292

}

939394+

async function callStartRoute(params: {

95+

profile?: Record<string, unknown>;

96+

query?: Record<string, unknown>;

97+

}) {

98+

const ensureBrowserAvailable = vi.fn(async () => {});

99+

const profile = {

100+

name: "openclaw",

101+

driver: "openclaw",

102+

cdpPort: 18800,

103+

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

104+

cdpHost: "127.0.0.1",

105+

cdpIsLoopback: true,

106+

userDataDir: "/tmp/openclaw-profile",

107+

color: "#FF4500",

108+

headless: false,

109+

headlessSource: "default",

110+

attachOnly: false,

111+

...params.profile,

112+

};

113+

const { app, postHandlers } = createBrowserRouteApp();

114+

registerBrowserBasicRoutes(app, {

115+

state: () => ({ resolved: { enabled: true, headless: false }, profiles: new Map() }),

116+

forProfile: () =>

117+

({

118+

profile,

119+

ensureBrowserAvailable,

120+

}) as never,

121+

} as never);

122+123+

const handler = postHandlers.get("/start");

124+

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

125+126+

const response = createBrowserRouteResponse();

127+

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

128+

return { response, ensureBrowserAvailable };

129+

}

130+94131

describe("basic browser routes", () => {

95132

it("reports Linux no-display headless fallback for local managed profiles", async () => {

96133

const originalPlatform = process.platform;

@@ -126,6 +163,38 @@ describe("basic browser routes", () => {

126163

}

127164

});

128165166+

it("reports request-local headless source for tracked local launches", async () => {

167+

const state = createManagedProfileState();

168+

const profile = (state.forProfile() as { profile: unknown }).profile as never;

169+

state.profiles.set("openclaw", {

170+

profile,

171+

running: {

172+

pid: 222,

173+

exe: { kind: "chromium", path: "/usr/bin/chromium" },

174+

userDataDir: "/tmp/openclaw-profile",

175+

cdpPort: 18800,

176+

startedAt: Date.now(),

177+

proc: {} as never,

178+

headless: true,

179+

headlessSource: "request",

180+

},

181+

});

182+183+

const response = await callBasicRouteWithState({

184+

query: { profile: "openclaw" },

185+

state,

186+

});

187+188+

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

189+

expect(response.body).toMatchObject({

190+

profile: "openclaw",

191+

pid: 222,

192+

chosenBrowser: "chromium",

193+

headless: true,

194+

headlessSource: "request",

195+

});

196+

});

197+129198

it("maps existing-session status failures to JSON browser errors", async () => {

130199

const response = await callBasicRouteWithState({

131200

state: createExistingSessionProfileState({

@@ -158,6 +227,50 @@ describe("basic browser routes", () => {

158227

});

159228

});

160229230+

it("passes valid start headless override to local managed profiles", async () => {

231+

const { response, ensureBrowserAvailable } = await callStartRoute({

232+

query: { headless: "true" },

233+

});

234+235+

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

236+

expect(response.body).toEqual({ ok: true, profile: "openclaw" });

237+

expect(ensureBrowserAvailable).toHaveBeenCalledWith({ headless: true });

238+

});

239+240+

it("rejects invalid start headless values", async () => {

241+

const { response, ensureBrowserAvailable } = await callStartRoute({

242+

query: { headless: "maybe" },

243+

});

244+245+

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

246+

expect(response.body).toMatchObject({

247+

error: 'Invalid headless value. Use "true" or "false".',

248+

});

249+

expect(ensureBrowserAvailable).not.toHaveBeenCalled();

250+

});

251+252+

it("rejects start headless override for existing-session profiles", async () => {

253+

const { response, ensureBrowserAvailable } = await callStartRoute({

254+

profile: {

255+

name: "chrome-live",

256+

driver: "existing-session",

257+

cdpPort: 0,

258+

cdpUrl: "",

259+

cdpHost: "",

260+

cdpIsLoopback: true,

261+

attachOnly: true,

262+

},

263+

query: { headless: "true" },

264+

});

265+266+

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

267+

expect(response.body).toMatchObject({

268+

error:

269+

'Headless start override is only supported for locally launched openclaw profiles. Profile "chrome-live" is attach-only, remote, or existing-session.',

270+

});

271+

expect(ensureBrowserAvailable).not.toHaveBeenCalled();

272+

});

273+161274

it("treats attach-only profiles as running when transport is available even if page reachability is false", async () => {

162275

const response = await callBasicRouteWithState({

163276

state: createExistingSessionProfileState({