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

推荐订阅源

博客园_首页
H
Help Net Security
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
A
About on SuperTechFans
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
Martin Fowler
Martin Fowler
I
InfoQ
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
U
Unit 42
The Cloudflare Blog
Y
Y Combinator 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: clear heartbeat runner broad matchers · openclaw/op...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -163,6 +163,60 @@ const createCaseDir = async (prefix: string) => {

163163

return dir;

164164

};

165165166+

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

167+

if (!value || typeof value !== "object" || Array.isArray(value)) {

168+

throw new Error(`expected ${label} to be a record`);

169+

}

170+

return value as Record<string, unknown>;

171+

}

172+173+

function expectRecordFields(record: Record<string, unknown>, fields: Record<string, unknown>) {

174+

for (const [key, value] of Object.entries(fields)) {

175+

expect(record[key]).toEqual(value);

176+

}

177+

}

178+179+

function expectWhatsAppSendCall(

180+

sendWhatsApp: ReturnType<typeof vi.fn>,

181+

index: number,

182+

fields: { to: string; text: string },

183+

) {

184+

const call = sendWhatsApp.mock.calls[index];

185+

if (!call) {

186+

throw new Error(`expected WhatsApp send call ${index}`);

187+

}

188+

expect(call[0]).toBe(fields.to);

189+

expect(call[1]).toBe(fields.text);

190+

requireRecord(call[2], `WhatsApp send call ${index} options`);

191+

}

192+193+

function expectReplyCall(

194+

replySpy: ReturnType<typeof vi.fn>,

195+

index: number,

196+

bodyFields: Record<string, unknown>,

197+

optionsFields?: Record<string, unknown>,

198+

cfg?: OpenClawConfig,

199+

) {

200+

const call = replySpy.mock.calls[index];

201+

if (!call) {

202+

throw new Error(`expected reply call ${index}`);

203+

}

204+

const body = requireRecord(call[0], `reply call ${index} body`);

205+

for (const [key, value] of Object.entries(bodyFields)) {

206+

if (value instanceof RegExp) {

207+

expect(String(body[key])).toMatch(value);

208+

} else {

209+

expect(body[key]).toEqual(value);

210+

}

211+

}

212+

if (optionsFields) {

213+

expectRecordFields(requireRecord(call[1], `reply call ${index} options`), optionsFields);

214+

}

215+

if (cfg) {

216+

expect(call[2]).toBe(cfg);

217+

}

218+

}

219+166220

beforeAll(async () => {

167221

previousRegistry = getActivePluginRegistry();

168222

@@ -709,11 +763,10 @@ describe("runHeartbeatOnce", () => {

709763

});

710764711765

expect(sendWhatsApp).toHaveBeenCalledTimes(1);

712-

expect(sendWhatsApp).toHaveBeenCalledWith(

713-

"120363401234567890@g.us",

714-

"Final alert",

715-

expect.any(Object),

716-

);

766+

expectWhatsAppSendCall(sendWhatsApp, 0, {

767+

to: "120363401234567890@g.us",

768+

text: "Final alert",

769+

});

717770

} finally {

718771

replySpy.mockReset();

719772

}

@@ -773,22 +826,23 @@ describe("runHeartbeatOnce", () => {

773826

deps: createHeartbeatDeps(sendWhatsApp, { getReplyFromConfig: replySpy }),

774827

});

775828

expect(sendWhatsApp).toHaveBeenCalledTimes(1);

776-

expect(sendWhatsApp).toHaveBeenCalledWith(

777-

"120363401234567890@g.us",

778-

"Final alert",

779-

expect.any(Object),

780-

);

781-

expect(replySpy).toHaveBeenCalledWith(

782-

expect.objectContaining({

829+

expectWhatsAppSendCall(sendWhatsApp, 0, {

830+

to: "120363401234567890@g.us",

831+

text: "Final alert",

832+

});

833+

expectReplyCall(

834+

replySpy,

835+

0,

836+

{

783837

Body: expect.stringMatching(/Ops check[\s\S]*Current time: /),

784838

SessionKey: sessionKey,

785839

From: "120363401234567890@g.us",

786840

To: "120363401234567890@g.us",

787841

OriginatingChannel: "whatsapp",

788842

OriginatingTo: "120363401234567890@g.us",

789843

Provider: "heartbeat",

790-

}),

791-

expect.objectContaining({ isHeartbeat: true, suppressToolErrorWarnings: false }),

844+

},

845+

{ isHeartbeat: true, suppressToolErrorWarnings: false },

792846

cfg,

793847

);

794848

} finally {

@@ -861,19 +915,20 @@ describe("runHeartbeatOnce", () => {

861915862916

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

863917

expect(sendWhatsApp).toHaveBeenCalledTimes(1);

864-

expect(sendWhatsApp).toHaveBeenCalledWith(

865-

"120363401234567890@g.us",

866-

"Final alert",

867-

expect.any(Object),

868-

);

869-

expect(replySpy).toHaveBeenCalledWith(

870-

expect.objectContaining({

918+

expectWhatsAppSendCall(sendWhatsApp, 0, {

919+

to: "120363401234567890@g.us",

920+

text: "Final alert",

921+

});

922+

expectReplyCall(

923+

replySpy,

924+

0,

925+

{

871926

SessionKey: sessionKey,

872927

From: "120363401234567890@g.us",

873928

To: "120363401234567890@g.us",

874929

Provider: "heartbeat",

875-

}),

876-

expect.objectContaining({ isHeartbeat: true, suppressToolErrorWarnings: false }),

930+

},

931+

{ isHeartbeat: true, suppressToolErrorWarnings: false },

877932

cfg,

878933

);

879934

} finally {

@@ -973,15 +1028,17 @@ describe("runHeartbeatOnce", () => {

9731028

});

97410299751030

expect(sendWhatsApp, name).toHaveBeenCalledTimes(1);

976-

expect(sendWhatsApp, name).toHaveBeenCalledWith(peerId, message, expect.any(Object));

977-

expect(replySpy, name).toHaveBeenCalledWith(

978-

expect.objectContaining({

1031+

expectWhatsAppSendCall(sendWhatsApp, 0, { to: peerId, text: message });

1032+

expectReplyCall(

1033+

replySpy,

1034+

0,

1035+

{

9791036

SessionKey: overrideSessionKey,

9801037

From: peerId,

9811038

To: peerId,

9821039

Provider: "heartbeat",

983-

}),

984-

expect.objectContaining({ isHeartbeat: true, suppressToolErrorWarnings: false }),

1040+

},

1041+

{ isHeartbeat: true, suppressToolErrorWarnings: false },

9851042

cfg,

9861043

);

9871044

} finally {

@@ -1062,21 +1119,13 @@ describe("runHeartbeatOnce", () => {

10621119

});

1063112010641121

// The heartbeat must use the main session, not the subagent session.

1065-

expect(replySpy).toHaveBeenCalledWith(

1066-

expect.objectContaining({

1067-

SessionKey: mainSessionKey,

1068-

}),

1069-

expect.anything(),

1070-

expect.anything(),

1071-

);

1122+

expectReplyCall(replySpy, 0, { SessionKey: mainSessionKey });

10721123

// Must NOT use the subagent session key.

1073-

expect(replySpy).not.toHaveBeenCalledWith(

1074-

expect.objectContaining({

1075-

SessionKey: subagentKey,

1076-

}),

1077-

expect.anything(),

1078-

expect.anything(),

1079-

);

1124+

expect(

1125+

replySpy.mock.calls.some(

1126+

([body]) => requireRecord(body, "reply body").SessionKey === subagentKey,

1127+

),

1128+

).toBe(false);

10801129

} finally {

10811130

replySpy.mockReset();

10821131

}

@@ -1219,12 +1268,10 @@ describe("runHeartbeatOnce", () => {

1219126812201269

expect(sendWhatsApp, name).toHaveBeenCalledTimes(expectedTexts.length);

12211270

for (const [index, text] of expectedTexts.entries()) {

1222-

expect(sendWhatsApp, name).toHaveBeenNthCalledWith(

1223-

index + 1,

1224-

"120363401234567890@g.us",

1271+

expectWhatsAppSendCall(sendWhatsApp, index, {

1272+

to: "120363401234567890@g.us",

12251273

text,

1226-

expect.any(Object),

1227-

);

1274+

});

12281275

}

12291276

} finally {

12301277

replySpy.mockReset();

@@ -1283,11 +1330,10 @@ describe("runHeartbeatOnce", () => {

12831330

});

1284133112851332

expect(sendWhatsApp).toHaveBeenCalledTimes(1);

1286-

expect(sendWhatsApp).toHaveBeenCalledWith(

1287-

"120363401234567890@g.us",

1288-

"Hello from heartbeat",

1289-

expect.any(Object),

1290-

);

1333+

expectWhatsAppSendCall(sendWhatsApp, 0, {

1334+

to: "120363401234567890@g.us",

1335+

text: "Hello from heartbeat",

1336+

});

12911337

} finally {

12921338

replySpy.mockReset();

12931339

}