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

推荐订阅源

Martin Fowler
Martin Fowler
Jina AI
Jina AI
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
I
InfoQ
L
LangChain Blog
The Cloudflare Blog
IT之家
IT之家
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
博客园 - 聂微东
美团技术团队
博客园_首页

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: clear heartbeat reminder broad matchers · openclaw/...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -103,20 +103,50 @@ describe("Ghost reminder bug (issue #13317)", () => {

103103

} | null,

104104

reminderText: string,

105105

) => {

106-

expect(calledCtx).toEqual(

107-

expect.objectContaining({

108-

Provider: "cron-event",

109-

Body: expect.stringContaining("scheduled reminder has been triggered"),

110-

}),

111-

);

106+

expect(calledCtx?.Provider).toBe("cron-event");

112107

if (calledCtx === null || typeof calledCtx.Body !== "string") {

113108

throw new Error("Expected cron event prompt body");

114109

}

110+

expect(calledCtx.Body).toContain("scheduled reminder has been triggered");

115111

expect(calledCtx.Body).toContain(reminderText);

116112

expect(calledCtx.Body).not.toContain("HEARTBEAT_OK");

117113

expect(calledCtx.Body).not.toContain("heartbeat poll");

118114

};

119115116+

const getFirstReplyContext = (

117+

replySpy: ReturnType<typeof vi.fn>,

118+

): {

119+

SessionKey?: string;

120+

MessageThreadId?: number;

121+

Body?: string;

122+

} => {

123+

const ctx = replySpy.mock.calls[0]?.[0];

124+

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

125+

expect(ctx).not.toBeNull();

126+

return ctx as {

127+

SessionKey?: string;

128+

MessageThreadId?: number;

129+

Body?: string;

130+

};

131+

};

132+133+

const expectTelegramSend = (

134+

sendTelegram: ReturnType<typeof vi.fn>,

135+

params: {

136+

to: string;

137+

text: string;

138+

messageThreadId?: number;

139+

},

140+

) => {

141+

expect(sendTelegram).toHaveBeenCalledTimes(1);

142+

const [to, text, options] = sendTelegram.mock.calls[0] ?? [];

143+

expect(to).toBe(params.to);

144+

expect(text).toBe(params.text);

145+

expect((options as { messageThreadId?: number } | undefined)?.messageThreadId).toBe(

146+

params.messageThreadId,

147+

);

148+

};

149+120150

const runCronReminderCase = async (

121151

tmpPrefix: string,

122152

enqueue: (sessionKey: string) => void,

@@ -527,12 +557,11 @@ describe("Ghost reminder bug (issue #13317)", () => {

527557

});

528558529559

expect(result.status).toBe("ran");

530-

expect(sendTelegram).toHaveBeenCalledTimes(1);

531-

expect(sendTelegram).toHaveBeenCalledWith(

532-

"-100155462274",

533-

"Restart complete",

534-

expect.objectContaining({ messageThreadId: 42 }),

535-

);

560+

expectTelegramSend(sendTelegram, {

561+

to: "-100155462274",

562+

text: "Restart complete",

563+

messageThreadId: 42,

564+

});

536565

});

537566

});

538567

@@ -569,13 +598,7 @@ describe("Ghost reminder bug (issue #13317)", () => {

569598

});

570599571600

expect(result.status).toBe("ran");

572-

expect(replySpy).toHaveBeenCalledWith(

573-

expect.objectContaining({

574-

SessionKey: `${sessionKey}:heartbeat`,

575-

}),

576-

expect.anything(),

577-

expect.anything(),

578-

);

601+

expect(getFirstReplyContext(replySpy).SessionKey).toBe(`${sessionKey}:heartbeat`);

579602

expect(sendTelegram).toHaveBeenCalledTimes(1);

580603

expect(sendTelegram.mock.calls[0]?.[0]).toBe("-100155462274");

581604

const options = sendTelegram.mock.calls[0]?.[2] as { messageThreadId?: number } | undefined;

@@ -640,12 +663,11 @@ describe("Ghost reminder bug (issue #13317)", () => {

640663

});

641664642665

expect(result.status).toBe("ran");

643-

expect(sendTelegram).toHaveBeenCalledTimes(1);

644-

expect(sendTelegram).toHaveBeenCalledWith(

645-

"telegram:-1003774691294:topic:47",

646-

"The review-worker spawn finished successfully.",

647-

expect.objectContaining({ messageThreadId: 47 }),

648-

);

666+

expectTelegramSend(sendTelegram, {

667+

to: "telegram:-1003774691294:topic:47",

668+

text: "The review-worker spawn finished successfully.",

669+

messageThreadId: 47,

670+

});

649671

});

650672

});

651673

@@ -704,13 +726,7 @@ describe("Ghost reminder bug (issue #13317)", () => {

704726

});

705727706728

expect(result.status).toBe("ran");

707-

expect(getReplySpy).toHaveBeenCalledWith(

708-

expect.objectContaining({

709-

Body: expect.stringContaining("no command output was found"),

710-

}),

711-

expect.anything(),

712-

expect.anything(),

713-

);

729+

expect(getFirstReplyContext(getReplySpy).Body).toContain("no command output was found");

714730

expect(sendTelegram).not.toHaveBeenCalled();

715731

});

716732

});

@@ -746,20 +762,14 @@ describe("Ghost reminder bug (issue #13317)", () => {

746762

});

747763748764

expect(result.status).toBe("ran");

749-

expect(replySpy).toHaveBeenCalledWith(

750-

expect.objectContaining({

751-

SessionKey: `${sessionKey}:heartbeat`,

752-

MessageThreadId: 42,

753-

}),

754-

expect.anything(),

755-

expect.anything(),

756-

);

757-

expect(sendTelegram).toHaveBeenCalledTimes(1);

758-

expect(sendTelegram).toHaveBeenCalledWith(

759-

"-100155462274",

760-

"Topic heartbeat",

761-

expect.objectContaining({ messageThreadId: 42 }),

762-

);

765+

const replyCtx = getFirstReplyContext(replySpy);

766+

expect(replyCtx.SessionKey).toBe(`${sessionKey}:heartbeat`);

767+

expect(replyCtx.MessageThreadId).toBe(42);

768+

expectTelegramSend(sendTelegram, {

769+

to: "-100155462274",

770+

text: "Topic heartbeat",

771+

messageThreadId: 42,

772+

});

763773

});

764774

});

765775

});