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

推荐订阅源

J
Java Code Geeks
小众软件
小众软件
博客园 - 叶小钗
宝玉的分享
宝玉的分享
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
U
Unit 42
F
Fortinet All Blogs
IT之家
IT之家
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell

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 doctor state integrity assertions · opencla...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -88,9 +88,24 @@ function createAgentDir(agentId: string, includeNestedAgentDir = true) {

8888

fs.mkdirSync(targetDir, { recursive: true });

8989

}

909091-

const OAUTH_PROMPT_MATCHER = expect.objectContaining({

92-

message: expect.stringContaining("Create OAuth dir at"),

93-

});

91+

type RuntimeRepairPrompt = {

92+

initialValue?: boolean;

93+

message?: string;

94+

requiresInteractiveConfirmation?: boolean;

95+

};

96+97+

function repairPromptCalls(confirmRuntimeRepair: {

98+

mock: { calls: unknown[][] };

99+

}): RuntimeRepairPrompt[] {

100+

return confirmRuntimeRepair.mock.calls.map((call) => call[0] as RuntimeRepairPrompt);

101+

}

102+103+

function hasRepairPromptMessage(

104+

confirmRuntimeRepair: { mock: { calls: unknown[][] } },

105+

text: string,

106+

): boolean {

107+

return repairPromptCalls(confirmRuntimeRepair).some((prompt) => prompt.message?.includes(text));

108+

}

9410995110

async function runStateIntegrity(cfg: OpenClawConfig) {

96111

setupSessionState(cfg, process.env, process.env.HOME ?? "");

@@ -153,7 +168,7 @@ describe("doctor state integrity oauth dir checks", () => {

153168

it("does not prompt for oauth dir when no whatsapp/pairing config is active", async () => {

154169

const cfg: OpenClawConfig = {};

155170

const confirmRuntimeRepair = await runStateIntegrity(cfg);

156-

expect(confirmRuntimeRepair).not.toHaveBeenCalledWith(OAUTH_PROMPT_MATCHER);

171+

expect(hasRepairPromptMessage(confirmRuntimeRepair, "Create OAuth dir at")).toBe(false);

157172

const text = stateIntegrityText();

158173

expect(text).toContain("OAuth dir not present");

159174

expect(text).not.toContain("CRITICAL: OAuth dir missing");

@@ -166,7 +181,7 @@ describe("doctor state integrity oauth dir checks", () => {

166181

},

167182

};

168183

const confirmRuntimeRepair = await runStateIntegrity(cfg);

169-

expect(confirmRuntimeRepair).not.toHaveBeenCalledWith(OAUTH_PROMPT_MATCHER);

184+

expect(hasRepairPromptMessage(confirmRuntimeRepair, "Create OAuth dir at")).toBe(false);

170185

expect(stateIntegrityText()).toContain("OAuth dir not present");

171186

expect(stateIntegrityText()).not.toContain("CRITICAL: OAuth dir missing");

172187

});

@@ -180,14 +195,14 @@ describe("doctor state integrity oauth dir checks", () => {

180195

},

181196

};

182197

const confirmRuntimeRepair = await runStateIntegrity(cfg);

183-

expect(confirmRuntimeRepair).toHaveBeenCalledWith(OAUTH_PROMPT_MATCHER);

198+

expect(hasRepairPromptMessage(confirmRuntimeRepair, "Create OAuth dir at")).toBe(true);

184199

});

185200186201

it("prompts for oauth dir when OPENCLAW_OAUTH_DIR is explicitly configured", async () => {

187202

process.env.OPENCLAW_OAUTH_DIR = path.join(tempHome, ".oauth");

188203

const cfg: OpenClawConfig = {};

189204

const confirmRuntimeRepair = await runStateIntegrity(cfg);

190-

expect(confirmRuntimeRepair).toHaveBeenCalledWith(OAUTH_PROMPT_MATCHER);

205+

expect(hasRepairPromptMessage(confirmRuntimeRepair, "Create OAuth dir at")).toBe(true);

191206

expect(stateIntegrityText()).toContain("CRITICAL: OAuth dir missing");

192207

});

193208

@@ -258,10 +273,8 @@ describe("doctor state integrity oauth dir checks", () => {

258273

expect(text).toContain("automatic restart recovery tombstoned");

259274

expect(text).toContain("agent:main:subagent:wedged-child");

260275

expect(text).toContain("openclaw tasks maintenance --apply");

261-

expect(confirmRuntimeRepair).toHaveBeenCalledWith(

262-

expect.objectContaining({

263-

message: expect.stringContaining("Clear stale aborted recovery flags"),

264-

}),

276+

expect(hasRepairPromptMessage(confirmRuntimeRepair, "Clear stale aborted recovery flags")).toBe(

277+

true,

265278

);

266279

});

267280

@@ -372,12 +385,10 @@ describe("doctor state integrity oauth dir checks", () => {

372385

"These .jsonl files are no longer referenced by sessions.json",

373386

);

374387

expect(stateIntegrityText()).toContain("Examples: orphan-session.jsonl");

375-

expect(confirmRuntimeRepair).toHaveBeenCalledWith(

376-

expect.objectContaining({

377-

message: expect.stringContaining("This only renames them to *.deleted.<timestamp>."),

378-

requiresInteractiveConfirmation: true,

379-

}),

388+

const archivePrompt = repairPromptCalls(confirmRuntimeRepair).find((prompt) =>

389+

prompt.message?.includes("This only renames them to *.deleted.<timestamp>."),

380390

);

391+

expect(archivePrompt?.requiresInteractiveConfirmation).toBe(true);

381392

const files = fs.readdirSync(sessionsDir);

382393

const archivedOrphanTranscripts = files.filter((name) =>

383394

name.startsWith("orphan-session.jsonl.deleted."),

@@ -396,12 +407,10 @@ describe("doctor state integrity oauth dir checks", () => {

396407

);

397408

await noteStateIntegrity(cfg, { confirmRuntimeRepair, note: noteMock });

398409399-

expect(confirmRuntimeRepair).toHaveBeenCalledWith(

400-

expect.objectContaining({

401-

initialValue: false,

402-

requiresInteractiveConfirmation: true,

403-

}),

410+

const archivePrompt = repairPromptCalls(confirmRuntimeRepair).find(

411+

(prompt) => prompt.requiresInteractiveConfirmation === true,

404412

);

413+

expect(archivePrompt?.initialValue).toBe(false);

405414

const files = fs.readdirSync(sessionsDir);

406415

expect(files).toContain("orphan-session.jsonl");

407416

const archivedOrphanTranscripts = files.filter((name) =>

@@ -446,9 +455,7 @@ describe("doctor state integrity oauth dir checks", () => {

446455

await noteStateIntegrity(cfg, { confirmRuntimeRepair, note: noteMock });

447456448457

expect(fs.existsSync(transcriptPath)).toBe(true);

449-

expect(fs.readdirSync(sessionsDir)).not.toEqual(

450-

expect.arrayContaining([expect.stringContaining(".deleted.")]),

451-

);

458+

expect(fs.readdirSync(sessionsDir).some((name) => name.includes(".deleted."))).toBe(false);

452459

expect(stateIntegrityText()).not.toContain("These .jsonl files are no longer referenced");

453460

} finally {

454461

fs.rmSync(symlinkHome, { force: true, recursive: true });

@@ -581,13 +588,9 @@ describe("doctor state integrity oauth dir checks", () => {

581588

const storePath = resolveStorePath(cfg.session?.store, { agentId: "main" });

582589

const store = JSON.parse(fs.readFileSync(storePath, "utf8")) as Record<string, SessionEntry>;

583590

expect(store["agent:main:main"]?.sessionId).toBe("mixed-session");

584-

expect(Object.keys(store)).not.toEqual(

585-

expect.arrayContaining([expect.stringContaining("heartbeat-recovered")]),

586-

);

587-

expect(confirmRuntimeRepair).not.toHaveBeenCalledWith(

588-

expect.objectContaining({

589-

message: expect.stringContaining("Move heartbeat-owned main session"),

590-

}),

591+

expect(Object.keys(store).some((key) => key.includes("heartbeat-recovered"))).toBe(false);

592+

expect(hasRepairPromptMessage(confirmRuntimeRepair, "Move heartbeat-owned main session")).toBe(

593+

false,

591594

);

592595

});

593596

@@ -607,9 +610,7 @@ describe("doctor state integrity oauth dir checks", () => {

607610

updatedAt: 1,

608611

heartbeatIsolatedBaseSessionKey: "agent:main:main",

609612

};

610-

expect(resolveHeartbeatMainSessionRepairCandidate({ entry })).toMatchObject({

611-

reason: "metadata",

612-

});

613+

expect(resolveHeartbeatMainSessionRepairCandidate({ entry })?.reason).toBe("metadata");

613614

});

614615615616

it("does not move synthetic heartbeat-owned sessions after recorded human interaction", () => {

@@ -705,9 +706,9 @@ describe("doctor state integrity oauth dir checks", () => {

705706

].join("\n"),

706707

);

707708

const entry: SessionEntry = { sessionId: "session", updatedAt: 1 };

708-

expect(resolveHeartbeatMainSessionRepairCandidate({ entry, transcriptPath })).toMatchObject({

709-

reason: "transcript",

710-

});

709+

expect(resolveHeartbeatMainSessionRepairCandidate({ entry, transcriptPath })?.reason).toBe(

710+

"transcript",

711+

);

711712

entry.lastInteractionAt = 2;

712713

expect(resolveHeartbeatMainSessionRepairCandidate({ entry, transcriptPath })).toBeNull();

713714

} finally {