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

推荐订阅源

S
SegmentFault 最新的问题
G
Google Developers Blog
H
Help Net Security
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
GbyAI
GbyAI
D
Docker
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
博客园 - 司徒正美
Last Week in AI
Last Week in AI
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
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
test: tighten memory runner assertions · openclaw/opencla...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -34,6 +34,78 @@ function createReplyOperation() {

3434

} as never;

3535

}

363637+

type RefreshQueuedFollowupSessionParams = {

38+

key?: string;

39+

previousSessionId?: string;

40+

nextSessionId?: string;

41+

nextSessionFile?: string;

42+

};

43+44+

type ModelFallbackParams = {

45+

provider?: string;

46+

model?: string;

47+

fallbacksOverride?: unknown[];

48+

};

49+50+

type EmbeddedPiAgentParams = {

51+

provider?: string;

52+

model?: string;

53+

authProfileId?: unknown;

54+

authProfileIdSource?: unknown;

55+

prompt?: string;

56+

transcriptPrompt?: string;

57+

memoryFlushWritePath?: string;

58+

silentExpected?: boolean;

59+

extraSystemPrompt?: string;

60+

bootstrapPromptWarningSignaturesSeen?: string[];

61+

bootstrapPromptWarningSignature?: string;

62+

};

63+64+

type CompactEmbeddedPiSessionParams = {

65+

sessionKey?: string;

66+

sandboxSessionKey?: string;

67+

currentTokenCount?: number;

68+

sessionFile?: string;

69+

sessionId?: string;

70+

trigger?: string;

71+

};

72+73+

function requireRefreshQueuedFollowupSessionCall(index = 0) {

74+

const call = refreshQueuedFollowupSessionMock.mock.calls[index]?.[0] as

75+

| RefreshQueuedFollowupSessionParams

76+

| undefined;

77+

if (!call) {

78+

throw new Error(`refreshQueuedFollowupSession call ${index} missing`);

79+

}

80+

return call;

81+

}

82+83+

function requireModelFallbackCall(index = 0) {

84+

const call = runWithModelFallbackMock.mock.calls[index]?.[0] as ModelFallbackParams | undefined;

85+

if (!call) {

86+

throw new Error(`runWithModelFallback call ${index} missing`);

87+

}

88+

return call;

89+

}

90+91+

function requireEmbeddedPiAgentCall(index = 0) {

92+

const call = runEmbeddedPiAgentMock.mock.calls[index]?.[0] as EmbeddedPiAgentParams | undefined;

93+

if (!call) {

94+

throw new Error(`runEmbeddedPiAgent call ${index} missing`);

95+

}

96+

return call;

97+

}

98+99+

function requireCompactEmbeddedPiSessionCall(index = 0) {

100+

const call = compactEmbeddedPiSessionMock.mock.calls[index]?.[0] as

101+

| CompactEmbeddedPiSessionParams

102+

| undefined;

103+

if (!call) {

104+

throw new Error(`compactEmbeddedPiSession call ${index} missing`);

105+

}

106+

return call;

107+

}

108+37109

describe("runMemoryFlushIfNeeded", () => {

38110

let rootDir = "";

39111

@@ -157,23 +229,18 @@ describe("runMemoryFlushIfNeeded", () => {

157229

expect(entry?.sessionId).toBe("session-rotated");

158230

expect(followupRun.run.sessionId).toBe("session-rotated");

159231

expect(runEmbeddedPiAgentMock).toHaveBeenCalledTimes(1);

160-

const flushCall = runEmbeddedPiAgentMock.mock.calls[0]?.[0] as {

161-

prompt?: string;

162-

transcriptPrompt?: string;

163-

memoryFlushWritePath?: string;

164-

silentExpected?: boolean;

165-

};

232+

const flushCall = requireEmbeddedPiAgentCall();

166233

expect(flushCall.prompt).toContain("Pre-compaction memory flush.");

167234

expect(flushCall.transcriptPrompt).toBe("");

168235

expect(flushCall.prompt).not.toBe(flushCall.transcriptPrompt);

169236

expect(flushCall.memoryFlushWritePath).toMatch(/^memory\/\d{4}-\d{2}-\d{2}\.md$/);

170237

expect(flushCall.silentExpected).toBe(true);

171-

expect(refreshQueuedFollowupSessionMock).toHaveBeenCalledWith({

172-

key: sessionKey,

173-

previousSessionId: "session",

174-

nextSessionId: "session-rotated",

175-

nextSessionFile: expect.stringContaining("session-rotated.jsonl"),

176-

});

238+

expect(refreshQueuedFollowupSessionMock).toHaveBeenCalledTimes(1);

239+

const refreshCall = requireRefreshQueuedFollowupSessionCall();

240+

expect(refreshCall.key).toBe(sessionKey);

241+

expect(refreshCall.previousSessionId).toBe("session");

242+

expect(refreshCall.nextSessionId).toBe("session-rotated");

243+

expect(refreshCall.nextSessionFile).toContain("session-rotated.jsonl");

177244178245

const persisted = JSON.parse(await fs.readFile(storePath, "utf8")) as {

179246

main: SessionEntry;

@@ -229,21 +296,17 @@ describe("runMemoryFlushIfNeeded", () => {

229296

replyOperation: createReplyOperation(),

230297

});

231298232-

expect(runWithModelFallbackMock).toHaveBeenCalledWith(

233-

expect.objectContaining({

234-

provider: "ollama",

235-

model: "qwen3:8b",

236-

fallbacksOverride: [],

237-

}),

238-

);

239-

expect(runEmbeddedPiAgentMock).toHaveBeenCalledWith(

240-

expect.objectContaining({

241-

provider: "ollama",

242-

model: "qwen3:8b",

243-

authProfileId: undefined,

244-

authProfileIdSource: undefined,

245-

}),

246-

);

299+

expect(runWithModelFallbackMock).toHaveBeenCalledTimes(1);

300+

const fallbackCall = requireModelFallbackCall();

301+

expect(fallbackCall.provider).toBe("ollama");

302+

expect(fallbackCall.model).toBe("qwen3:8b");

303+

expect(fallbackCall.fallbacksOverride).toEqual([]);

304+

expect(runEmbeddedPiAgentMock).toHaveBeenCalledTimes(1);

305+

const agentCall = requireEmbeddedPiAgentCall();

306+

expect(agentCall.provider).toBe("ollama");

307+

expect(agentCall.model).toBe("qwen3:8b");

308+

expect(agentCall.authProfileId).toBeUndefined();

309+

expect(agentCall.authProfileIdSource).toBeUndefined();

247310

});

248311249312

it("skips memory flush for CLI providers", async () => {

@@ -356,12 +419,10 @@ describe("runMemoryFlushIfNeeded", () => {

356419

replyOperation: createReplyOperation(),

357420

});

358421359-

expect(compactEmbeddedPiSessionMock).toHaveBeenCalledWith(

360-

expect.objectContaining({

361-

sessionKey: "agent:main:main",

362-

sandboxSessionKey: "agent:main:telegram:default:direct:12345",

363-

}),

364-

);

422+

expect(compactEmbeddedPiSessionMock).toHaveBeenCalledTimes(1);

423+

const compactCall = requireCompactEmbeddedPiSessionCall();

424+

expect(compactCall.sessionKey).toBe("agent:main:main");

425+

expect(compactCall.sandboxSessionKey).toBe("agent:main:telegram:default:direct:12345");

365426

});

366427367428

it("updates the active preflight run after transcript rotation", async () => {

@@ -529,12 +590,10 @@ describe("runMemoryFlushIfNeeded", () => {

529590

replyOperation: createReplyOperation(),

530591

});

531592532-

expect(compactEmbeddedPiSessionMock).toHaveBeenCalledWith(

533-

expect.objectContaining({

534-

sessionId: "session",

535-

sessionFile: expect.stringContaining("active-run-session.jsonl"),

536-

}),

537-

);

593+

expect(compactEmbeddedPiSessionMock).toHaveBeenCalledTimes(1);

594+

const compactCall = requireCompactEmbeddedPiSessionCall();

595+

expect(compactCall.sessionId).toBe("session");

596+

expect(compactCall.sessionFile).toContain("active-run-session.jsonl");

538597

});

539598540599

it("keeps preflight compaction conservative for content appended after latest usage", async () => {

@@ -829,19 +888,10 @@ describe("runMemoryFlushIfNeeded", () => {

829888830889

expect(entry?.compactionCount).toBe(1);

831890

expect(replyOperation.setPhase).toHaveBeenCalledWith("preflight_compacting");

832-

const compactCall = compactEmbeddedPiSessionMock.mock.calls[0]?.[0] as {

833-

currentTokenCount?: number;

834-

sessionFile?: string;

835-

sessionId?: string;

836-

trigger?: string;

837-

};

838-

expect(compactCall).toEqual(

839-

expect.objectContaining({

840-

sessionId: "session",

841-

trigger: "budget",

842-

currentTokenCount: 10,

843-

}),

844-

);

891+

const compactCall = requireCompactEmbeddedPiSessionCall();

892+

expect(compactCall.sessionId).toBe("session");

893+

expect(compactCall.trigger).toBe("budget");

894+

expect(compactCall.currentTokenCount).toBe(10);

845895

expect(compactCall.sessionFile).toContain("large-session.jsonl");

846896

});

847897

@@ -936,15 +986,7 @@ describe("runMemoryFlushIfNeeded", () => {

936986

replyOperation: createReplyOperation(),

937987

});

938988939-

const flushCall = runEmbeddedPiAgentMock.mock.calls[0]?.[0] as {

940-

prompt?: string;

941-

transcriptPrompt?: string;

942-

extraSystemPrompt?: string;

943-

bootstrapPromptWarningSignaturesSeen?: string[];

944-

bootstrapPromptWarningSignature?: string;

945-

memoryFlushWritePath?: string;

946-

silentExpected?: boolean;

947-

};

989+

const flushCall = requireEmbeddedPiAgentCall();

948990

expect(flushCall.prompt).toContain("Write notes.");

949991

expect(flushCall.prompt).toContain("NO_REPLY");

950992

expect(flushCall.prompt).toContain("MEMORY.md");