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

推荐订阅源

H
Help Net Security
腾讯CDC
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
V
V2EX
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
量子位
F
Fortinet All Blogs
G
Google Developers Blog
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
D
Docker
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
M
MIT News - Artificial intelligence
博客园 - 【当耐特】

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
refactor: share gateway e2e test setup · openclaw/opencla...
vincentkoc · 2026-06-02 · via Recent Commits to openclaw:main

@@ -47,6 +47,31 @@ async function createEmptyBundledPluginsDir(tempHome: string): Promise<string> {

4747

return bundledPluginsDir;

4848

}

494950+

async function createGatewayConfigPath(tempHome: string): Promise<string> {

51+

const configPath = path.join(tempHome, ".openclaw", "openclaw.json");

52+

await fs.mkdir(path.dirname(configPath), { recursive: true });

53+

return configPath;

54+

}

55+56+

async function removeGatewayTempHome(tempHome: string): Promise<void> {

57+

await fs.rm(tempHome, {

58+

recursive: true,

59+

force: true,

60+

maxRetries: 10,

61+

retryDelay: 50,

62+

});

63+

}

64+65+

async function startLoopbackTokenGateway(token: string) {

66+

const port = await getFreeGatewayPort();

67+

const server = await startGatewayServer(port, {

68+

bind: "loopback",

69+

auth: { mode: "token", token },

70+

controlUiEnabled: false,

71+

});

72+

return { port, server };

73+

}

74+5075

async function writeWorkspacePlugin(params: {

5176

workspaceDir: string;

5277

id: string;

@@ -130,24 +155,19 @@ async function setupGatewayTempHome(params: { prefix: string; minimalGateway?: b

130155

return { envSnapshot, tempHome, workspaceDir };

131156

}

132157158+

function resetGatewayTestState(): void {

159+

clearRuntimeConfigSnapshot();

160+

clearConfigCache();

161+

clearSessionStoreCacheForTest();

162+

resetAgentRunContextForTest();

163+

clearAllBootstrapSnapshots();

164+

clearGatewaySubagentRuntime();

165+

}

166+133167

describe("gateway e2e", () => {

134-

beforeEach(() => {

135-

clearRuntimeConfigSnapshot();

136-

clearConfigCache();

137-

clearSessionStoreCacheForTest();

138-

resetAgentRunContextForTest();

139-

clearAllBootstrapSnapshots();

140-

clearGatewaySubagentRuntime();

141-

});

168+

beforeEach(resetGatewayTestState);

142169143-

afterEach(() => {

144-

clearRuntimeConfigSnapshot();

145-

clearConfigCache();

146-

clearSessionStoreCacheForTest();

147-

resetAgentRunContextForTest();

148-

clearAllBootstrapSnapshots();

149-

clearGatewaySubagentRuntime();

150-

});

170+

afterEach(resetGatewayTestState);

151171152172

beforeAll(async () => {

153173

({ createConfigIO } = await import("../config/config.js"));

@@ -166,9 +186,7 @@ describe("gateway e2e", () => {

166186

const token = nextGatewayId("test-token");

167187

process.env.OPENCLAW_GATEWAY_TOKEN = token;

168188169-

const configDir = path.join(tempHome, ".openclaw");

170-

await fs.mkdir(configDir, { recursive: true });

171-

const configPath = path.join(configDir, "openclaw.json");

189+

const configPath = await createGatewayConfigPath(tempHome);

172190

const mockProvider = buildMockOpenAiResponsesProvider(openaiBaseUrl);

173191174192

const cfg = {

@@ -222,12 +240,7 @@ describe("gateway e2e", () => {

222240

} finally {

223241

await disconnectGatewayClient(client);

224242

await server.close({ reason: "mock openai test complete" });

225-

await fs.rm(tempHome, {

226-

recursive: true,

227-

force: true,

228-

maxRetries: 10,

229-

retryDelay: 50,

230-

});

243+

await removeGatewayTempHome(tempHome);

231244

restore();

232245

envSnapshot.restore();

233246

}

@@ -264,9 +277,7 @@ module.exports = {

264277

`.trimStart(),

265278

});

266279267-

const configDir = path.join(tempHome, ".openclaw");

268-

await fs.mkdir(configDir, { recursive: true });

269-

const configPath = path.join(configDir, "openclaw.json");

280+

const configPath = await createGatewayConfigPath(tempHome);

270281

const cfg = {

271282

agents: {

272283

defaults: { workspace: workspaceDir },

@@ -280,12 +291,7 @@ module.exports = {

280291

await fs.writeFile(configPath, `${JSON.stringify(cfg, null, 2)}\n`);

281292

process.env.OPENCLAW_CONFIG_PATH = configPath;

282293283-

const port = await getFreeGatewayPort();

284-

const server = await startGatewayServer(port, {

285-

bind: "loopback",

286-

auth: { mode: "token", token },

287-

controlUiEnabled: false,

288-

});

294+

const { port, server } = await startLoopbackTokenGateway(token);

289295290296

try {

291297

const beforeCount = await readCounterWithRetry(registerCountPath);

@@ -314,12 +320,7 @@ module.exports = {

314320

expect(afterCount).toBe(beforeCount);

315321

} finally {

316322

await server.close({ reason: "http tools workspace test complete" });

317-

await fs.rm(tempHome, {

318-

recursive: true,

319-

force: true,

320-

maxRetries: 10,

321-

retryDelay: 50,

322-

});

323+

await removeGatewayTempHome(tempHome);

323324

envSnapshot.restore();

324325

}

325326

},

@@ -329,38 +330,14 @@ module.exports = {

329330

"runs wizard over ws and writes auth token config",

330331

{ timeout: GATEWAY_E2E_TIMEOUT_MS },

331332

async () => {

332-

const envSnapshot = captureEnv([

333-

"HOME",

334-

"OPENCLAW_STATE_DIR",

335-

"OPENCLAW_CONFIG_PATH",

336-

"OPENCLAW_GATEWAY_TOKEN",

337-

"OPENCLAW_SKIP_CHANNELS",

338-

"OPENCLAW_SKIP_GMAIL_WATCHER",

339-

"OPENCLAW_SKIP_CRON",

340-

"OPENCLAW_SKIP_CANVAS_HOST",

341-

"OPENCLAW_SKIP_BROWSER_CONTROL_SERVER",

342-

"OPENCLAW_SKIP_PROVIDERS",

343-

"OPENCLAW_BUNDLED_PLUGINS_DIR",

344-

"OPENCLAW_DISABLE_BUNDLED_PLUGINS",

345-

"OPENCLAW_TEST_MINIMAL_GATEWAY",

346-

]);

347-348-

process.env.OPENCLAW_SKIP_CHANNELS = "1";

349-

process.env.OPENCLAW_SKIP_GMAIL_WATCHER = "1";

350-

process.env.OPENCLAW_SKIP_CRON = "1";

351-

process.env.OPENCLAW_SKIP_CANVAS_HOST = "1";

352-

process.env.OPENCLAW_SKIP_BROWSER_CONTROL_SERVER = "1";

353-

process.env.OPENCLAW_SKIP_PROVIDERS = "1";

354-

process.env.OPENCLAW_TEST_MINIMAL_GATEWAY = "1";

333+

const { envSnapshot, tempHome } = await setupGatewayTempHome({

334+

prefix: "openclaw-wizard-home-",

335+

minimalGateway: true,

336+

});

355337

delete process.env.OPENCLAW_GATEWAY_TOKEN;

356338357-

const tempHome = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-wizard-home-"));

358-

const configPath = path.join(tempHome, ".openclaw", "openclaw.json");

359-

process.env.HOME = tempHome;

360-

process.env.OPENCLAW_STATE_DIR = path.join(tempHome, ".openclaw");

339+

const configPath = await createGatewayConfigPath(tempHome);

361340

process.env.OPENCLAW_CONFIG_PATH = configPath;

362-

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = await createEmptyBundledPluginsDir(tempHome);

363-

process.env.OPENCLAW_DISABLE_BUNDLED_PLUGINS = "1";

364341

clearRuntimeConfigSnapshot();

365342

clearConfigCache();

366343

@@ -465,12 +442,7 @@ module.exports = {

465442

expect(resToken.ok).toBe(true);

466443

} finally {

467444

await server2.close({ reason: "wizard auth verify" });

468-

await fs.rm(tempHome, {

469-

recursive: true,

470-

force: true,

471-

maxRetries: 10,

472-

retryDelay: 50,

473-

});

445+

await removeGatewayTempHome(tempHome);

474446

envSnapshot.restore();

475447

}

476448

},

@@ -497,7 +469,7 @@ module.exports = {

497469

]);

498470499471

const tempHome = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-minimal-gateway-home-"));

500-

const configPath = path.join(tempHome, ".openclaw", "openclaw.json");

472+

const configPath = await createGatewayConfigPath(tempHome);

501473

const bundledPluginsDir = path.join(tempHome, "openclaw-test-no-bundled-extensions");

502474

process.env.HOME = tempHome;

503475

process.env.OPENCLAW_STATE_DIR = path.join(tempHome, ".openclaw");

@@ -514,19 +486,13 @@ module.exports = {

514486515487

const token = nextGatewayId("minimal-token");

516488

process.env.OPENCLAW_GATEWAY_TOKEN = token;

517-

await fs.mkdir(path.dirname(configPath), { recursive: true });

518489

await fs.mkdir(bundledPluginsDir, { recursive: true });

519490

await fs.writeFile(

520491

configPath,

521492

`${JSON.stringify({ gateway: { auth: { mode: "token", token } } }, null, 2)}\n`,

522493

);

523494524-

const port = await getFreeGatewayPort();

525-

const server = await startGatewayServer(port, {

526-

bind: "loopback",

527-

auth: { mode: "token", token },

528-

controlUiEnabled: false,

529-

});

495+

const { server } = await startLoopbackTokenGateway(token);

530496531497

try {

532498

const parsed = JSON.parse(await fs.readFile(configPath, "utf8")) as {

@@ -536,12 +502,7 @@ module.exports = {

536502

expect(parsed.plugins?.entries?.discord).toBeUndefined();

537503

} finally {

538504

await server.close({ reason: "minimal gateway auto-enable verify" });

539-

await fs.rm(tempHome, {

540-

recursive: true,

541-

force: true,

542-

maxRetries: 10,

543-

retryDelay: 50,

544-

});

505+

await removeGatewayTempHome(tempHome);

545506

envSnapshot.restore();

546507

}

547508

},