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

推荐订阅源

The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
L
LangChain Blog
WordPress大学
WordPress大学
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
MyScale Blog
MyScale Blog
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
博客园 - 【当耐特】
P
Proofpoint News Feed
D
DataBreaches.Net

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(ui): isolate browser ownership in e2e fixtures · ope...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main
11

// Control UI tests cover chat flow behavior.

2-

import { chromium, type Browser, type Page } from "playwright";

3-

import { afterAll, beforeAll, describe, expect, it } from "vitest";

2+

import { chromium, type Browser, type BrowserContext, type Page } from "playwright";

3+

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

44

import {

55

canRunPlaywrightChromium,

66

installMockGateway,

@@ -15,8 +15,9 @@ const chromiumAvailable = canRunPlaywrightChromium(chromiumExecutablePath);

1515

const allowMissingChromium = process.env.OPENCLAW_UI_E2E_ALLOW_MISSING_CHROMIUM === "1";

1616

const describeControlUiE2e = chromiumAvailable || !allowMissingChromium ? describe : describe.skip;

171718-

let browser: Browser;

1918

let server: ControlUiE2eServer;

19+

const contextBrowsers = new WeakMap<BrowserContext, Browser>();

20+

const openBrowserContexts = new Set<BrowserContext>();

20212122

function requireRecord(value: unknown): Record<string, unknown> {

2223

if (!value || typeof value !== "object" || Array.isArray(value)) {

@@ -89,6 +90,33 @@ async function scrollChatThreadToTop(page: Page): Promise<void> {

8990

});

9091

}

919293+

async function newBrowserContext(options: Parameters<Browser["newContext"]>[0]) {

94+

const browser = await chromium.launch({ executablePath: chromiumExecutablePath });

95+

let context: BrowserContext | undefined;

96+

try {

97+

context = await browser.newContext(options);

98+

contextBrowsers.set(context, browser);

99+

openBrowserContexts.add(context);

100+

return context;

101+

} catch (error) {

102+

await context?.close().catch(() => {});

103+

await browser.close().catch(() => {});

104+

throw error;

105+

}

106+

}

107+108+

async function closeBrowserContext(context: BrowserContext): Promise<void> {

109+

const browser = contextBrowsers.get(context);

110+

openBrowserContexts.delete(context);

111+

contextBrowsers.delete(context);

112+

await context.close().catch(() => {});

113+

await browser?.close().catch(() => {});

114+

}

115+116+

async function closeOpenBrowserContexts(): Promise<void> {

117+

await Promise.all([...openBrowserContexts].map((context) => closeBrowserContext(context)));

118+

}

119+92120

async function controlUiEventPayloads(

93121

page: Page,

94122

event: string,

@@ -173,16 +201,19 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

173201

);

174202

}

175203

server = await startControlUiE2eServer();

176-

browser = await chromium.launch({ executablePath: chromiumExecutablePath });

177204

});

178205179206

afterAll(async () => {

180-

await browser?.close();

207+

await closeOpenBrowserContexts();

181208

await server?.close();

182209

});

183210211+

afterEach(async () => {

212+

await closeOpenBrowserContexts();

213+

});

214+184215

it("sends a chat turn through the GUI and renders the final Gateway event", async () => {

185-

const context = await browser.newContext({

216+

const context = await newBrowserContext({

186217

locale: "en-US",

187218

serviceWorkers: "block",

188219

viewport: { height: 900, width: 1280 },

@@ -217,12 +248,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

217248218249

await page.getByText("Harness verified.").waitFor({ timeout: 10_000 });

219250

} finally {

220-

await context.close();

251+

await closeBrowserContext(context);

221252

}

222253

});

223254224255

it("copies a code block over a non-secure context via the execCommand fallback", async () => {

225-

const context = await browser.newContext({

256+

const context = await newBrowserContext({

226257

locale: "en-US",

227258

serviceWorkers: "block",

228259

viewport: { height: 900, width: 1280 },

@@ -275,12 +306,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

275306

expect(copied).toContain(code);

276307

expect(await gateway.getRequests("chat.send")).toHaveLength(0);

277308

} finally {

278-

await context.close();

309+

await closeBrowserContext(context);

279310

}

280311

});

281312282313

it("starts the workspace files panel collapsed and toggles it open", async () => {

283-

const context = await browser.newContext({

314+

const context = await newBrowserContext({

284315

locale: "en-US",

285316

serviceWorkers: "block",

286317

viewport: { height: 900, width: 1280 },

@@ -372,12 +403,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

372403

await page.setViewportSize({ height: 900, width: 1000 });

373404

expect(await page.locator(".chat-workspace-rail").isHidden()).toBe(true);

374405

} finally {

375-

await context.close();

406+

await closeBrowserContext(context);

376407

}

377408

});

378409379410

it("renders stable markdown during a streaming chat turn and finalizes the tail", async () => {

380-

const context = await browser.newContext({

411+

const context = await newBrowserContext({

381412

locale: "en-US",

382413

serviceWorkers: "block",

383414

viewport: { height: 900, width: 1280 },

@@ -436,12 +467,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

436467

await page.locator(".chat-thread strong").getByText("tail").waitFor({ timeout: 10_000 });

437468

expect(await page.locator(".markdown-plain-text-fallback").count()).toBe(0);

438469

} finally {

439-

await context.close();

470+

await closeBrowserContext(context);

440471

}

441472

});

442473443474

it("keeps chat usable while sessions are still loading", async () => {

444-

const context = await browser.newContext({

475+

const context = await newBrowserContext({

445476

locale: "en-US",

446477

serviceWorkers: "block",

447478

viewport: { height: 900, width: 1280 },

@@ -483,12 +514,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

483514

timeout: 10_000,

484515

});

485516

} finally {

486-

await context.close();

517+

await closeBrowserContext(context);

487518

}

488519

});

489520490521

it("sends the first chat turn while agents startup loading is still pending", async () => {

491-

const context = await browser.newContext({

522+

const context = await newBrowserContext({

492523

locale: "en-US",

493524

serviceWorkers: "block",

494525

viewport: { height: 900, width: 1280 },

@@ -650,12 +681,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

650681

await gateway.waitForRequest("commands.list");

651682

expect(await gateway.getRequests("agents.list")).toHaveLength(0);

652683

} finally {

653-

await context.close();

684+

await closeBrowserContext(context);

654685

}

655686

});

656687657688

it("keeps streamed text visible when a chat error terminates the turn", async () => {

658-

const context = await browser.newContext({

689+

const context = await newBrowserContext({

659690

locale: "en-US",

660691

serviceWorkers: "block",

661692

viewport: { height: 900, width: 1280 },

@@ -697,12 +728,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

697728

await page.getByText(partialText).waitFor({ timeout: 10_000 });

698729

await page.getByText("Error: gateway disconnected").waitFor({ timeout: 10_000 });

699730

} finally {

700-

await context.close();

731+

await closeBrowserContext(context);

701732

}

702733

});

703734704735

it("keeps a delayed chat.send ACK visible as pending until the ACK resolves", async () => {

705-

const context = await browser.newContext({

736+

const context = await newBrowserContext({

706737

locale: "en-US",

707738

serviceWorkers: "block",

708739

viewport: { height: 900, width: 1280 },

@@ -736,12 +767,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

736767

await page.locator(".chat-queue").waitFor({ state: "detached", timeout: 10_000 });

737768

await page.locator(".chat-thread").getByText(prompt).waitFor({ timeout: 10_000 });

738769

} finally {

739-

await context.close();

770+

await closeBrowserContext(context);

740771

}

741772

});

742773743774

it("scrolls a delayed pending send into view before the ACK resolves", async () => {

744-

const context = await browser.newContext({

775+

const context = await newBrowserContext({

745776

locale: "en-US",

746777

serviceWorkers: "block",

747778

viewport: { height: 900, width: 1280 },

@@ -792,12 +823,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

792823793824

await gateway.resolveDeferred("chat.send", { runId, status: "started" });

794825

} finally {

795-

await context.close();

826+

await closeBrowserContext(context);

796827

}

797828

});

798829799830

it("keeps rejected pre-ACK sends visible and restores the draft", async () => {

800-

const context = await browser.newContext({

831+

const context = await newBrowserContext({

801832

locale: "en-US",

802833

serviceWorkers: "block",

803834

viewport: { height: 900, width: 1280 },

@@ -824,12 +855,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

824855

await page.locator(".chat-queue").getByText(prompt).waitFor({ timeout: 10_000 });

825856

expect(await composer.inputValue()).toBe(prompt);

826857

} finally {

827-

await context.close();

858+

await closeBrowserContext(context);

828859

}

829860

});

830861831862

it("retries an ACK-lost send after reconnect with the same idempotency key", async () => {

832-

const context = await browser.newContext({

863+

const context = await newBrowserContext({

833864

locale: "en-US",

834865

serviceWorkers: "block",

835866

viewport: { height: 900, width: 1280 },

@@ -857,12 +888,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

857888

expect(secondParams.message).toBe(prompt);

858889

await page.locator(".chat-queue").waitFor({ state: "detached", timeout: 10_000 });

859890

} finally {

860-

await context.close();

891+

await closeBrowserContext(context);

861892

}

862893

});

863894864895

it("keeps a session model override selected after switching away and back", async () => {

865-

const context = await browser.newContext({

896+

const context = await newBrowserContext({

866897

locale: "en-US",

867898

serviceWorkers: "block",

868899

viewport: { height: 900, width: 1280 },

@@ -929,12 +960,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

929960

"bedrock/claude-opus-4.5",

930961

);

931962

} finally {

932-

await context.close();

963+

await closeBrowserContext(context);

933964

}

934965

});

935966936967

it("shows a pending send while a model override save is still pending", async () => {

937-

const context = await browser.newContext({

968+

const context = await newBrowserContext({

938969

locale: "en-US",

939970

serviceWorkers: "block",

940971

viewport: { height: 900, width: 1280 },

@@ -976,12 +1007,12 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

9761007

expect(params.message).toBe(prompt);

9771008

expect(params.sessionKey).toBe("agent:main:session-a");

9781009

} finally {

979-

await context.close();

1010+

await closeBrowserContext(context);

9801011

}

9811012

});

98210139831014

it("refreshes history after a tool-call window disconnects and reconnects", async () => {

984-

const context = await browser.newContext({

1015+

const context = await newBrowserContext({

9851016

locale: "en-US",

9861017

serviceWorkers: "block",

9871018

viewport: { height: 900, width: 1280 },

@@ -1032,7 +1063,7 @@ describeControlUiE2e("Control UI mocked Gateway E2E", () => {

10321063

await page.getByText("Recovered from refreshed history.").waitFor({ timeout: 15_000 });

10331064

expect(await page.locator(".chat-queue").count()).toBe(0);

10341065

} finally {

1035-

await context.close();

1066+

await closeBrowserContext(context);

10361067

}

10371068

});

10381069

});