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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
Docker
GbyAI
GbyAI
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
F
Fortinet All Blogs
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
C
Check Point Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
博客园 - Franky
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Last Week in AI
Last Week in AI
L
LangChain Blog

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: tighten trajectory export assertions · openclaw/ope...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -174,6 +174,30 @@ function readEncodedRequestFromCommand(command: string): Record<string, unknown>

174174

return JSON.parse(Buffer.from(encoded, "base64url").toString("utf8")) as Record<string, unknown>;

175175

}

176176177+

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

178+

expect(value).toBeTruthy();

179+

expect(typeof value).toBe("object");

180+

expect(Array.isArray(value)).toBe(false);

181+

return value as Record<string, unknown>;

182+

}

183+184+

function exportBundleParams(): Record<string, unknown> {

185+

const calls = hoisted.exportTrajectoryBundleMock.mock.calls as unknown[][];

186+

return requireRecord(calls[0]?.[0]);

187+

}

188+189+

function execCallRecord(

190+

execCalls: Array<{ defaults: unknown; params: unknown }>,

191+

index = 0,

192+

): { defaults: Record<string, unknown>; params: Record<string, unknown> } {

193+

const call = execCalls[index];

194+

expect(call).toBeTruthy();

195+

return {

196+

defaults: requireRecord(call?.defaults),

197+

params: requireRecord(call?.params),

198+

};

199+

}

200+177201

describe("buildExportTrajectoryReply", () => {

178202

beforeEach(() => {

179203

vi.clearAllMocks();

@@ -205,20 +229,19 @@ describe("buildExportTrajectoryReply", () => {

205229

});

206230207231

it("builds a trajectory bundle from the target session", async () => {

208-

const reply = await buildExportTrajectoryReply(makeParams());

232+

const params = makeParams();

233+

const reply = await buildExportTrajectoryReply(params);

209234210235

expect(reply.text).toContain("✅ Trajectory exported!");

211236

expect(reply.text).toContain("session-branch.json");

212237

expect(reply.text).not.toContain("session.jsonl");

213238

expect(reply.text).not.toContain("runtime.jsonl");

214239

expect(hoisted.resolveDefaultSessionStorePathMock).toHaveBeenCalledWith("target");

215-

expect(hoisted.exportTrajectoryBundleMock).toHaveBeenCalledWith(

216-

expect.objectContaining({

217-

sessionId: "session-1",

218-

sessionKey: "agent:target:session",

219-

workspaceDir: expect.stringContaining("openclaw-export-command-"),

220-

}),

221-

);

240+

const exportParams = exportBundleParams();

241+

expect(exportParams.sessionId).toBe("session-1");

242+

expect(exportParams.sessionKey).toBe("agent:target:session");

243+

expect(exportParams.workspaceDir).toBe(params.workspaceDir);

244+

expect(String(exportParams.workspaceDir)).toContain("openclaw-export-command-");

222245

});

223246224247

it("keeps user-named output paths inside the workspace trajectory export directory", async () => {

@@ -227,10 +250,8 @@ describe("buildExportTrajectoryReply", () => {

227250228251

await buildExportTrajectoryReply(params);

229252230-

expect(hoisted.exportTrajectoryBundleMock).toHaveBeenCalledWith(

231-

expect.objectContaining({

232-

outputDir: path.join(params.workspaceDir, ".openclaw", "trajectory-exports", "my-bundle"),

233-

}),

253+

expect(exportBundleParams().outputDir).toBe(

254+

path.join(params.workspaceDir, ".openclaw", "trajectory-exports", "my-bundle"),

234255

);

235256

});

236257

@@ -328,8 +349,9 @@ describe("buildExportTrajectoryCommandReply", () => {

328349329350

it("requests per-run exec approval for trajectory exports", async () => {

330351

const { execCalls, deps } = createExecDeps();

352+

const params = makeParams();

331353332-

const reply = await buildExportTrajectoryCommandReply(makeParams(), deps);

354+

const reply = await buildExportTrajectoryCommandReply(params, deps);

333355334356

expect(reply.text).toContain(

335357

"Trajectory exports can include prompts, model messages, tool schemas",

@@ -338,31 +360,27 @@ describe("buildExportTrajectoryCommandReply", () => {

338360

expect(reply.text).toContain("do not use allow-all");

339361

expect(reply.text).toContain("Allowed decisions: allow-once, deny");

340362

expect(execCalls).toHaveLength(1);

341-

expect(execCalls[0]?.defaults).toMatchObject({

342-

host: "gateway",

343-

security: "allowlist",

344-

ask: "always",

345-

trigger: "export-trajectory",

346-

currentChannelId: "bot",

347-

accountId: "account-1",

348-

});

349-

expect(execCalls[0]?.params).toMatchObject({

350-

security: "allowlist",

351-

ask: "always",

352-

background: true,

353-

});

354-

const command = (execCalls[0]?.params as { command?: string }).command ?? "";

363+

const execCall = execCallRecord(execCalls);

364+

expect(execCall.defaults.host).toBe("gateway");

365+

expect(execCall.defaults.security).toBe("allowlist");

366+

expect(execCall.defaults.ask).toBe("always");

367+

expect(execCall.defaults.trigger).toBe("export-trajectory");

368+

expect(execCall.defaults.currentChannelId).toBe("bot");

369+

expect(execCall.defaults.accountId).toBe("account-1");

370+

expect(execCall.params.security).toBe("allowlist");

371+

expect(execCall.params.ask).toBe("always");

372+

expect(execCall.params.background).toBe(true);

373+

const command = typeof execCall.params.command === "string" ? execCall.params.command : "";

355374

expect(command).toContain("sessions");

356375

expect(command).toContain("export-trajectory");

357376

expect(command).toContain("--request-json-base64");

358377

expect(command).toContain("--json");

359378

expect(command).not.toContain("--session-key");

360379

expect(command).not.toContain("openclaw sessions export-trajectory");

361380

const request = readEncodedRequestFromCommand(command);

362-

expect(request).toMatchObject({

363-

sessionKey: "agent:target:session",

364-

workspace: expect.stringContaining("openclaw-export-command-"),

365-

});

381+

expect(request.sessionKey).toBe("agent:target:session");

382+

expect(request.workspace).toBe(params.workspaceDir);

383+

expect(String(request.workspace)).toContain("openclaw-export-command-");

366384

});

367385368386

it("uses the originating Telegram route for native trajectory export followups", async () => {

@@ -389,11 +407,10 @@ describe("buildExportTrajectoryCommandReply", () => {

389407

await buildExportTrajectoryCommandReply(params, deps);

390408391409

expect(execCalls).toHaveLength(1);

392-

expect(execCalls[0]?.defaults).toMatchObject({

393-

messageProvider: "telegram",

394-

currentChannelId: "telegram:8460800771",

395-

accountId: "account-1",

396-

});

410+

const execCall = execCallRecord(execCalls);

411+

expect(execCall.defaults.messageProvider).toBe("telegram");

412+

expect(execCall.defaults.currentChannelId).toBe("telegram:8460800771");

413+

expect(execCall.defaults.accountId).toBe("account-1");

397414

});

398415399416

it("keeps user-controlled export values out of the shell command", async () => {

@@ -403,14 +420,13 @@ describe("buildExportTrajectoryCommandReply", () => {

403420404421

await buildExportTrajectoryCommandReply(params, deps);

405422406-

const command = (execCalls[0]?.params as { command?: string }).command ?? "";

423+

const commandValue = execCallRecord(execCalls).params.command;

424+

const command = typeof commandValue === "string" ? commandValue : "";

407425

expect(command).toMatch(/'?sessions'?\s+'?export-trajectory'?/u);

408426

expect(command).toMatch(/'?--request-json-base64'?\s+'?[A-Za-z0-9_-]+'?/u);

409427

expect(command).toMatch(/'?--json'?$/u);

410428

expect(command).not.toContain("Invoke-Expression");

411-

expect(readEncodedRequestFromCommand(command)).toMatchObject({

412-

output: "bad';",

413-

});

429+

expect(readEncodedRequestFromCommand(command).output).toBe("bad';");

414430

});

415431416432

it("rejects oversized output paths before requesting exec approval", async () => {

@@ -460,11 +476,10 @@ describe("buildExportTrajectoryCommandReply", () => {

460476

expect(privateReplies[0]?.text).toContain("openclaw sessions export-trajectory");

461477

expect(privateReplies[0]?.text).toContain("Session: agent:target:session");

462478

expect(execCalls).toHaveLength(1);

463-

expect(execCalls[0]?.defaults).toMatchObject({

464-

messageProvider: "telegram",

465-

currentChannelId: "owner-dm",

466-

accountId: "account-1",

467-

});

479+

const execCall = execCallRecord(execCalls);

480+

expect(execCall.defaults.messageProvider).toBe("telegram");

481+

expect(execCall.defaults.currentChannelId).toBe("owner-dm");

482+

expect(execCall.defaults.accountId).toBe("account-1");

468483

});

469484470485

it("fails closed in groups when no private owner route is available", async () => {