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

推荐订阅源

N
Netflix TechBlog - Medium
J
Java Code Geeks
爱范儿
爱范儿
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
I
InfoQ
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research

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(gateway): capture trajectory export command events ·...
vincentkoc · 2026-06-14 · via Recent Commits to openclaw:main

@@ -3,6 +3,7 @@ import { randomBytes, randomUUID } from "node:crypto";

33

import fs from "node:fs/promises";

44

import path from "node:path";

55

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

6+

import type { EventFrame } from "../../packages/gateway-protocol/src/index.js";

67

import { isLiveTestEnabled } from "../agents/live-test-helpers.js";

78

import type { OpenClawConfig } from "../config/config.js";

89

import { extractFirstTextBlock } from "../shared/chat-message-content.js";

@@ -43,6 +44,27 @@ function restoreEnv(snapshot: LiveEnvSnapshot): void {

4344

restoreLiveEnv(snapshot);

4445

}

454647+

async function removeLiveTempDir(dir: string): Promise<void> {

48+

let lastError: unknown;

49+

for (let attempt = 0; attempt < 100; attempt += 1) {

50+

try {

51+

await fs.rm(dir, { recursive: true, force: true });

52+

return;

53+

} catch (error) {

54+

lastError = error;

55+

const code = (error as { code?: unknown } | null)?.code;

56+

if (code !== "EBUSY" && code !== "ENOTEMPTY" && code !== "EPERM" && code !== "EACCES") {

57+

throw error;

58+

}

59+

await new Promise((resolve) => {

60+

setTimeout(resolve, 100);

61+

});

62+

}

63+

}

64+

await fs.rm(dir, { recursive: true, force: true });

65+

void lastError;

66+

}

67+4668

async function writeLiveGatewayConfig(params: {

4769

configPath: string;

4870

modelKey: string;

@@ -72,6 +94,7 @@ async function writeLiveGatewayConfig(params: {

7294

}

73957496

async function connectGatewayClient(params: {

97+

onEvent?: (event: EventFrame) => void;

7598

url: string;

7699

token: string;

77100

}): Promise<GatewayClient> {

@@ -86,6 +109,7 @@ async function connectGatewayClient(params: {

86109

requestTimeoutMs: 60_000,

87110

tickWatchTimeoutMs: AGENT_REQUEST_TIMEOUT_MS + 120_000,

88111

clientDisplayName: "trajectory-live",

112+

onEvent: params.onEvent,

89113

});

90114

return client;

91115

}

@@ -141,79 +165,87 @@ async function waitForPath(filePath: string, timeoutMs = 60_000): Promise<void>

141165

throw new Error(`timed out waiting for ${filePath}`);

142166

}

143167144-

function extractAssistantTexts(messages: unknown[]): string[] {

145-

const texts: string[] = [];

146-

for (const entry of messages) {

147-

if (!entry || typeof entry !== "object") {

148-

continue;

149-

}

150-

if ((entry as { role?: unknown }).role !== "assistant") {

151-

continue;

152-

}

153-

const text = extractFirstTextBlock(entry);

154-

if (typeof text === "string" && text.trim().length > 0) {

155-

texts.push(text);

168+

async function waitForChatFinalText(params: {

169+

events: EventFrame[];

170+

runId: string;

171+

timeoutMs: number;

172+

}): Promise<string> {

173+

const deadline = Date.now() + params.timeoutMs;

174+

while (Date.now() < deadline) {

175+

const text = params.events

176+

.map((event) => extractChatFinalText(event, params.runId))

177+

.find(Boolean);

178+

if (text) {

179+

return text;

156180

}

181+

await new Promise((resolve) => {

182+

setTimeout(resolve, 50);

183+

});

157184

}

158-

return texts;

185+

throw new Error(`timed out waiting for chat final for ${params.runId}`);

159186

}

160187161-

function formatAssistantTextPreview(texts: string[], maxChars = 800): string {

162-

const combined = texts.join("\n\n").trim();

163-

if (!combined) {

164-

return "<none>";

188+

function extractChatFinalText(event: EventFrame, runId: string): string | undefined {

189+

if (event.event !== "chat") {

190+

return undefined;

191+

}

192+

const payload = event.payload;

193+

if (!payload || typeof payload !== "object") {

194+

return undefined;

165195

}

166-

return combined.length > maxChars ? `${combined.slice(0, maxChars)}...` : combined;

196+

const record = payload as Record<string, unknown>;

197+

if (record.runId !== runId || record.state !== "final") {

198+

return undefined;

199+

}

200+

const message = record.message;

201+

if (!message || typeof message !== "object") {

202+

return undefined;

203+

}

204+

const messageRecord = message as Record<string, unknown>;

205+

if (typeof messageRecord.text === "string" && messageRecord.text.trim()) {

206+

return messageRecord.text;

207+

}

208+

const content = Array.isArray(messageRecord.content) ? messageRecord.content : [];

209+

return content

210+

.map((entry) =>

211+

entry && typeof entry === "object" ? (entry as Record<string, unknown>).text : undefined,

212+

)

213+

.filter((entry): entry is string => typeof entry === "string" && entry.trim().length > 0)

214+

.join("\n")

215+

.trim();

167216

}

168217169-

async function waitForAssistantText(params: {

170-

client: GatewayClient;

171-

contains: string;

172-

sessionKey: string;

173-

timeoutMs?: number;

174-

}): Promise<string> {

175-

const timeoutMs = params.timeoutMs ?? 60_000;

218+

async function approveTrajectoryExport(client: GatewayClient): Promise<string> {

176219

const startedAt = Date.now();

177-

while (Date.now() - startedAt < timeoutMs) {

178-

const history: { messages?: unknown[] } = await params.client.request("chat.history", {

179-

sessionKey: params.sessionKey,

180-

limit: 24,

181-

});

182-

const assistantTexts = extractAssistantTexts(history.messages ?? []);

183-

const matched = assistantTexts.find((text) => text.includes(params.contains));

184-

if (matched) {

185-

return matched;

220+

let approval:

221+

| {

222+

id?: string;

223+

request?: {

224+

command?: string;

225+

};

226+

}

227+

| undefined;

228+

while (Date.now() - startedAt < 60_000) {

229+

const approvals = (await client.request(

230+

"exec.approval.list",

231+

{},

232+

{ timeoutMs: 10_000 },

233+

)) as Array<{

234+

id?: string;

235+

request?: {

236+

command?: string;

237+

};

238+

}>;

239+

approval = approvals.find((entry) =>

240+

entry.request?.command?.includes("sessions export-trajectory"),

241+

);

242+

if (approval) {

243+

break;

186244

}

187245

await new Promise((resolve) => {

188246

setTimeout(resolve, 500);

189247

});

190248

}

191-192-

const finalHistory: { messages?: unknown[] } = await params.client.request("chat.history", {

193-

sessionKey: params.sessionKey,

194-

limit: 24,

195-

});

196-

throw new Error(

197-

`timed out waiting for assistant text containing ${params.contains}: ${formatAssistantTextPreview(

198-

extractAssistantTexts(finalHistory.messages ?? []),

199-

)}`,

200-

);

201-

}

202-203-

async function approveTrajectoryExport(client: GatewayClient): Promise<string> {

204-

const approvals = (await client.request(

205-

"exec.approval.list",

206-

{},

207-

{ timeoutMs: 10_000 },

208-

)) as Array<{

209-

id?: string;

210-

request?: {

211-

command?: string;

212-

};

213-

}>;

214-

const approval = approvals.find((entry) =>

215-

entry.request?.command?.includes("sessions export-trajectory"),

216-

);

217249

expect(typeof approval?.id).toBe("string");

218250

expect(approval?.request?.command).toContain("sessions export-trajectory");

219251

if (!approval?.id) {

@@ -247,7 +279,7 @@ describeLive("gateway live trajectory export", () => {

247279

cleanup.push(async () => {

248280

restoreEnv(previousEnv);

249281

clearRuntimeConfigSnapshot();

250-

await fs.rm(tempDir, { recursive: true, force: true });

282+

await removeLiveTempDir(tempDir);

251283

});

252284253285

const stateDir = path.join(tempDir, "state");

@@ -294,9 +326,13 @@ describeLive("gateway live trajectory export", () => {

294326

await server.close();

295327

});

296328329+

const gatewayEvents: EventFrame[] = [];

297330

const client = await connectGatewayClient({

298331

url: `ws://127.0.0.1:${port}`,

299332

token,

333+

onEvent: (event) => {

334+

gatewayEvents.push(event);

335+

},

300336

});

301337

logLiveStep("client-connected");

302338

cleanup.push(async () => {

@@ -341,10 +377,9 @@ describeLive("gateway live trajectory export", () => {

341377

const finalText =

342378

typeof exportResponse?.message === "object"

343379

? extractFirstTextBlock(exportResponse.message)

344-

: await waitForAssistantText({

345-

client,

346-

sessionKey,

347-

contains: "Trajectory exports can include",

380+

: await waitForChatFinalText({

381+

events: gatewayEvents,

382+

runId: exportRunId,

348383

timeoutMs: 60_000,

349384

});

350385

expect(finalText).toContain("Trajectory exports can include");

@@ -353,9 +388,7 @@ describeLive("gateway live trajectory export", () => {

353388

logLiveStep("export:approved", { approvalId });

354389

await waitForPath(path.join(bundleDir, "events.jsonl"), 60_000);

355390

logLiveStep("export:done", { finalText });

356-

if (finalText) {

357-

expect(finalText).toContain("Approve once");

358-

}

391+

expect(finalText).toContain("Approve once");

359392

const bundleNames = await listDirectoryNames(bundleDir);

360393

for (const expectedName of [

361394

"artifacts.json",