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

推荐订阅源

S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
有赞技术团队
有赞技术团队
美团技术团队
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
I
InfoQ
小众软件
小众软件
MongoDB | Blog
MongoDB | 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: seal crestodian rescue stores · openclaw/openclaw@6...
shakkernerd · 2026-06-05 · via Recent Commits to openclaw:main

@@ -5,9 +5,9 @@ import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, vi }

55

import type { CommandContext } from "../auto-reply/reply/commands-types.js";

66

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

77

import type { RuntimeEnv } from "../runtime.js";

8+

import { withEnvAsync } from "../test-utils/env.js";

89

import { extractCrestodianRescueMessage, runCrestodianRescueMessage } from "./rescue-message.js";

91010-

const originalStateDir = process.env.OPENCLAW_STATE_DIR;

1111

let tempRoot = "";

1212

let tempDirId = 0;

1313

@@ -111,6 +111,14 @@ async function makeStateDir(prefix: string): Promise<string> {

111111

return dir;

112112

}

113113114+

async function withRescueStateDir(

115+

prefix: string,

116+

run: (stateDir: string) => Promise<void>,

117+

): Promise<void> {

118+

const stateDir = await makeStateDir(prefix);

119+

await withEnvAsync({ OPENCLAW_STATE_DIR: stateDir }, async () => await run(stateDir));

120+

}

121+114122

function commandContext(overrides: Partial<CommandContext> = {}): CommandContext {

115123

return {

116124

surface: "whatsapp",

@@ -160,14 +168,6 @@ describe("Crestodian rescue message", () => {

160168

mockConfig.reset();

161169

});

162170163-

afterEach(() => {

164-

if (originalStateDir === undefined) {

165-

delete process.env.OPENCLAW_STATE_DIR;

166-

} else {

167-

process.env.OPENCLAW_STATE_DIR = originalStateDir;

168-

}

169-

});

170-171171

afterAll(async () => {

172172

if (tempRoot) {

173173

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

@@ -248,148 +248,147 @@ describe("Crestodian rescue message", () => {

248248

});

249249250250

it("queues and applies persistent writes through conversational approval", async () => {

251-

const tempDir = await makeStateDir("models-");

252-

vi.stubEnv("OPENCLAW_STATE_DIR", tempDir);

253-254-

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

255-

await expect(runRescue("/crestodian set default model openai/gpt-5.2", cfg)).resolves.toContain(

256-

"Reply /crestodian yes to apply",

257-

);

258-

await expect(runRescue("/crestodian yes", cfg)).resolves.toContain(

259-

"Default model: openai/gpt-5.2",

260-

);

251+

await withRescueStateDir("models-", async (tempDir) => {

252+

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

253+

await expect(

254+

runRescue("/crestodian set default model openai/gpt-5.2", cfg),

255+

).resolves.toContain("Reply /crestodian yes to apply");

256+

await expect(runRescue("/crestodian yes", cfg)).resolves.toContain(

257+

"Default model: openai/gpt-5.2",

258+

);

261259262-

const currentConfig = mockConfig.currentConfig() as {

263-

agents?: { defaults?: { model?: { primary?: string } } };

264-

};

265-

expect(currentConfig.agents?.defaults?.model?.primary).toBe("openai/gpt-5.2");

266-

const auditPath = path.join(tempDir, "audit", "crestodian.jsonl");

267-

const audit = JSON.parse((await fs.readFile(auditPath, "utf8")).trim()) as {

268-

details?: { rescue?: boolean; channel?: string; senderId?: string };

269-

};

270-

expect(audit.details?.rescue).toBe(true);

271-

expect(audit.details?.channel).toBe("whatsapp");

272-

expect(audit.details?.senderId).toBe("user:owner");

260+

const currentConfig = mockConfig.currentConfig() as {

261+

agents?: { defaults?: { model?: { primary?: string } } };

262+

};

263+

expect(currentConfig.agents?.defaults?.model?.primary).toBe("openai/gpt-5.2");

264+

const auditPath = path.join(tempDir, "audit", "crestodian.jsonl");

265+

const audit = JSON.parse((await fs.readFile(auditPath, "utf8")).trim()) as {

266+

details?: { rescue?: boolean; channel?: string; senderId?: string };

267+

};

268+

expect(audit.details?.rescue).toBe(true);

269+

expect(audit.details?.channel).toBe("whatsapp");

270+

expect(audit.details?.senderId).toBe("user:owner");

271+

});

273272

});

274273275274

it("queues and applies gateway restart through conversational approval", async () => {

276-

const tempDir = await makeStateDir("gateway-");

277-

vi.stubEnv("OPENCLAW_STATE_DIR", tempDir);

278-

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

279-

const deps = { runGatewayRestart: vi.fn(async () => {}) };

275+

await withRescueStateDir("gateway-", async (tempDir) => {

276+

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

277+

const deps = { runGatewayRestart: vi.fn(async () => {}) };

280278281-

await expect(

282-

runRescue("/crestodian restart gateway", cfg, commandContext(), deps),

283-

).resolves.toBe("Plan: restart the Gateway. Reply /crestodian yes to apply.");

284-

await expect(runRescue("/crestodian yes", cfg, commandContext(), deps)).resolves.toContain(

285-

"[crestodian] done: gateway.restart",

286-

);

279+

await expect(

280+

runRescue("/crestodian restart gateway", cfg, commandContext(), deps),

281+

).resolves.toBe("Plan: restart the Gateway. Reply /crestodian yes to apply.");

282+

await expect(runRescue("/crestodian yes", cfg, commandContext(), deps)).resolves.toContain(

283+

"[crestodian] done: gateway.restart",

284+

);

287285288-

expect(deps.runGatewayRestart).toHaveBeenCalledTimes(1);

289-

const auditPath = path.join(tempDir, "audit", "crestodian.jsonl");

290-

const audit = JSON.parse((await fs.readFile(auditPath, "utf8")).trim()) as {

291-

operation?: string;

292-

details?: { rescue?: boolean; channel?: string; senderId?: string };

293-

};

294-

expect(audit.operation).toBe("gateway.restart");

295-

expect(audit.details?.rescue).toBe(true);

296-

expect(audit.details?.channel).toBe("whatsapp");

297-

expect(audit.details?.senderId).toBe("user:owner");

286+

expect(deps.runGatewayRestart).toHaveBeenCalledTimes(1);

287+

const auditPath = path.join(tempDir, "audit", "crestodian.jsonl");

288+

const audit = JSON.parse((await fs.readFile(auditPath, "utf8")).trim()) as {

289+

operation?: string;

290+

details?: { rescue?: boolean; channel?: string; senderId?: string };

291+

};

292+

expect(audit.operation).toBe("gateway.restart");

293+

expect(audit.details?.rescue).toBe(true);

294+

expect(audit.details?.channel).toBe("whatsapp");

295+

expect(audit.details?.senderId).toBe("user:owner");

296+

});

298297

});

299298300299

it("does not queue persistent rescue approval when expiry would exceed the Date range", async () => {

301-

const tempDir = await makeStateDir("overflow-expiry-");

302-

vi.stubEnv("OPENCLAW_STATE_DIR", tempDir);

303-

vi.useFakeTimers();

304-

vi.setSystemTime(new Date(8_640_000_000_000_000));

305-

try {

306-

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

307-308-

await expect(

309-

runRescue("/crestodian restart gateway", cfg, commandContext()),

310-

).resolves.toContain("expiry clock is invalid");

311-312-

await expect(fs.readdir(path.join(tempDir, "crestodian", "rescue-pending"))).rejects.toThrow(

313-

/ENOENT/,

314-

);

315-

} finally {

316-

vi.useRealTimers();

317-

}

300+

await withRescueStateDir("overflow-expiry-", async (tempDir) => {

301+

vi.useFakeTimers();

302+

vi.setSystemTime(new Date(8_640_000_000_000_000));

303+

try {

304+

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

305+306+

await expect(

307+

runRescue("/crestodian restart gateway", cfg, commandContext()),

308+

).resolves.toContain("expiry clock is invalid");

309+310+

await expect(

311+

fs.readdir(path.join(tempDir, "crestodian", "rescue-pending")),

312+

).rejects.toThrow(/ENOENT/);

313+

} finally {

314+

vi.useRealTimers();

315+

}

316+

});

318317

});

319318320319

it("rejects pending rescue approvals with invalid persisted expiry", async () => {

321-

const tempDir = await makeStateDir("invalid-expiry-");

322-

vi.stubEnv("OPENCLAW_STATE_DIR", tempDir);

323-

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

324-

const deps = { runGatewayRestart: vi.fn(async () => {}) };

325-326-

await expect(

327-

runRescue("/crestodian restart gateway", cfg, commandContext(), deps),

328-

).resolves.toContain("Reply /crestodian yes to apply");

329-

const pendingDir = path.join(tempDir, "crestodian", "rescue-pending");

330-

const [pendingFile] = await fs.readdir(pendingDir);

331-

if (!pendingFile) {

332-

throw new Error("expected pending rescue file");

333-

}

334-

const pendingPath = path.join(pendingDir, pendingFile);

335-

const pending = JSON.parse(await fs.readFile(pendingPath, "utf8")) as { expiresAt?: string };

336-

pending.expiresAt = "not-a-date";

337-

await fs.writeFile(pendingPath, `${JSON.stringify(pending, null, 2)}\n`, "utf8");

320+

await withRescueStateDir("invalid-expiry-", async (tempDir) => {

321+

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

322+

const deps = { runGatewayRestart: vi.fn(async () => {}) };

338323339-

await expect(runRescue("/crestodian yes", cfg, commandContext(), deps)).resolves.toBe(

340-

"No pending Crestodian rescue change is waiting for approval.",

341-

);

342-

expect(deps.runGatewayRestart).not.toHaveBeenCalled();

343-

await expect(fs.stat(pendingPath)).rejects.toThrow(/ENOENT/);

324+

await expect(

325+

runRescue("/crestodian restart gateway", cfg, commandContext(), deps),

326+

).resolves.toContain("Reply /crestodian yes to apply");

327+

const pendingDir = path.join(tempDir, "crestodian", "rescue-pending");

328+

const [pendingFile] = await fs.readdir(pendingDir);

329+

if (!pendingFile) {

330+

throw new Error("expected pending rescue file");

331+

}

332+

const pendingPath = path.join(pendingDir, pendingFile);

333+

const pending = JSON.parse(await fs.readFile(pendingPath, "utf8")) as { expiresAt?: string };

334+

pending.expiresAt = "not-a-date";

335+

await fs.writeFile(pendingPath, `${JSON.stringify(pending, null, 2)}\n`, "utf8");

336+337+

await expect(runRescue("/crestodian yes", cfg, commandContext(), deps)).resolves.toBe(

338+

"No pending Crestodian rescue change is waiting for approval.",

339+

);

340+

expect(deps.runGatewayRestart).not.toHaveBeenCalled();

341+

await expect(fs.stat(pendingPath)).rejects.toThrow(/ENOENT/);

342+

});

344343

});

345344346345

it("queues and applies agent creation through conversational approval", async () => {

347-

const tempDir = await makeStateDir("agent-");

348-

vi.stubEnv("OPENCLAW_STATE_DIR", tempDir);

349-

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

350-

const deps = { runAgentsAdd: vi.fn(async () => {}) };

346+

await withRescueStateDir("agent-", async (tempDir) => {

347+

const cfg: OpenClawConfig = { crestodian: { rescue: { enabled: true } } };

348+

const deps = { runAgentsAdd: vi.fn(async () => {}) };

351349352-

await expect(

353-

runRescue("/crestodian create agent work workspace /tmp/work", cfg, commandContext(), deps),

354-

).resolves.toBe(

355-

"Plan: create agent work with workspace /tmp/work. Reply /crestodian yes to apply.",

356-

);

357-

await expect(runRescue("/crestodian yes", cfg, commandContext(), deps)).resolves.toContain(

358-

"[crestodian] done: agents.create",

359-

);

350+

await expect(

351+

runRescue("/crestodian create agent work workspace /tmp/work", cfg, commandContext(), deps),

352+

).resolves.toBe(

353+

"Plan: create agent work with workspace /tmp/work. Reply /crestodian yes to apply.",

354+

);

355+

await expect(runRescue("/crestodian yes", cfg, commandContext(), deps)).resolves.toContain(

356+

"[crestodian] done: agents.create",

357+

);

360358361-

expect(deps.runAgentsAdd).toHaveBeenCalledTimes(1);

362-

const [agentParams, agentRuntime, agentOptions] = requireFirstMockCall(

363-

deps.runAgentsAdd,

364-

"agents add",

365-

) as unknown as [

366-

{ name: string; workspace: string; nonInteractive: boolean },

367-

object,

368-

{ hasFlags: boolean },

369-

];

370-

expect(agentParams).toEqual({

371-

name: "work",

372-

workspace: "/tmp/work",

373-

nonInteractive: true,

374-

});

375-

expect(agentRuntime).toBeTypeOf("object");

376-

expect(agentOptions).toEqual({ hasFlags: true });

377-

const auditPath = path.join(tempDir, "audit", "crestodian.jsonl");

378-

const audit = JSON.parse((await fs.readFile(auditPath, "utf8")).trim()) as {

379-

operation?: string;

380-

details?: {

381-

rescue?: boolean;

382-

channel?: string;

383-

senderId?: string;

384-

agentId?: string;

385-

workspace?: string;

359+

expect(deps.runAgentsAdd).toHaveBeenCalledTimes(1);

360+

const [agentParams, agentRuntime, agentOptions] = requireFirstMockCall(

361+

deps.runAgentsAdd,

362+

"agents add",

363+

) as unknown as [

364+

{ name: string; workspace: string; nonInteractive: boolean },

365+

object,

366+

{ hasFlags: boolean },

367+

];

368+

expect(agentParams).toEqual({

369+

name: "work",

370+

workspace: "/tmp/work",

371+

nonInteractive: true,

372+

});

373+

expect(agentRuntime).toBeTypeOf("object");

374+

expect(agentOptions).toEqual({ hasFlags: true });

375+

const auditPath = path.join(tempDir, "audit", "crestodian.jsonl");

376+

const audit = JSON.parse((await fs.readFile(auditPath, "utf8")).trim()) as {

377+

operation?: string;

378+

details?: {

379+

rescue?: boolean;

380+

channel?: string;

381+

senderId?: string;

382+

agentId?: string;

383+

workspace?: string;

384+

};

386385

};

387-

};

388-

expect(audit.operation).toBe("agents.create");

389-

expect(audit.details?.rescue).toBe(true);

390-

expect(audit.details?.channel).toBe("whatsapp");

391-

expect(audit.details?.senderId).toBe("user:owner");

392-

expect(audit.details?.agentId).toBe("work");

393-

expect(audit.details?.workspace).toBe("/tmp/work");

386+

expect(audit.operation).toBe("agents.create");

387+

expect(audit.details?.rescue).toBe(true);

388+

expect(audit.details?.channel).toBe("whatsapp");

389+

expect(audit.details?.senderId).toBe("user:owner");

390+

expect(audit.details?.agentId).toBe("work");

391+

expect(audit.details?.workspace).toBe("/tmp/work");

392+

});

394393

});

395394

});