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

推荐订阅源

J
Java Code Geeks
腾讯CDC
博客园 - 聂微东
爱范儿
爱范儿
罗磊的独立博客
P
Proofpoint News Feed
博客园 - Franky
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
I
InfoQ
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers 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
fix(test): repair split agent shard runs · openclaw/openc...
vincentkoc · 2026-05-24 · via Recent Commits to openclaw:main

@@ -247,9 +247,11 @@ async function deliverTelegramDirectMessageCompletion(params: {

247247

sendMessage?: typeof runtimeSendMessage;

248248

internalEvents?: AgentInternalEvent[];

249249

isActive?: boolean;

250+

requesterSessionId?: string | null;

250251

queueEmbeddedPiMessageWithOutcome?: QueueEmbeddedPiMessageWithOutcome;

251252

requesterSessionKey?: string;

252253

sourceTool?: string;

254+

runtimeConfig?: Record<string, unknown>;

253255

origin?: {

254256

channel: "telegram";

255257

to: string;

@@ -266,10 +268,13 @@ async function deliverTelegramDirectMessageCompletion(params: {

266268

testing.setDepsForTest({

267269

callGateway: params.callGateway,

268270

getRequesterSessionActivity: () => ({

269-

sessionId: "requester-session-telegram",

271+

sessionId:

272+

params.requesterSessionId === null

273+

? undefined

274+

: (params.requesterSessionId ?? "requester-session-telegram"),

270275

isActive: params.isActive === true,

271276

}),

272-

getRuntimeConfig: () => ({}) as never,

277+

getRuntimeConfig: () => (params.runtimeConfig ?? {}) as never,

273278

sendMessage: params.sendMessage ?? runtimeSendMessage,

274279

...(params.queueEmbeddedPiMessageWithOutcome

275280

? { queueEmbeddedPiMessageWithOutcome: params.queueEmbeddedPiMessageWithOutcome }

@@ -1416,13 +1421,35 @@ describe("deliverSubagentAnnouncement completion delivery", () => {

14161421

});

1417142214181423

it("reports failure for Telegram DMs when announce-agent delivery fails", async () => {

1419-

const callGateway = vi.fn(async () => {

1420-

throw new Error("UNAVAILABLE: requester wake failed");

1421-

}) as unknown as typeof runtimeCallGateway;

1424+

const callGateway = createGatewayMock({

1425+

result: {

1426+

deliveryStatus: {

1427+

status: "failed",

1428+

errorMessage: "requester wake failed",

1429+

},

1430+

},

1431+

});

14221432

const sendMessage = createSendMessageMock();

14231433

const result = await deliverTelegramDirectMessageCompletion({

14241434

callGateway,

14251435

sendMessage,

1436+

queueEmbeddedPiMessageWithOutcome: createQueueOutcomeMock(false),

1437+

requesterSessionId: null,

1438+

requesterSessionKey: "agent:main:telegram:direct:123456789",

1439+

origin: {

1440+

channel: "telegram",

1441+

to: "direct:123456789",

1442+

accountId: "bot-1",

1443+

},

1444+

runtimeConfig: {

1445+

agents: {

1446+

defaults: {

1447+

subagents: {

1448+

announceTimeoutMs: 10,

1449+

},

1450+

},

1451+

},

1452+

},

14261453

internalEvents: [

14271454

{

14281455

type: "task_completion",

@@ -1442,7 +1469,7 @@ describe("deliverSubagentAnnouncement completion delivery", () => {

14421469

expectRecordFields(result, {

14431470

delivered: false,

14441471

path: "direct",

1445-

error: "UNAVAILABLE: requester wake failed",

1472+

error: "requester wake failed",

14461473

});

14471474

expect(sendMessage).not.toHaveBeenCalled();

14481475

});

@@ -1460,6 +1487,15 @@ describe("deliverSubagentAnnouncement completion delivery", () => {

14601487

sendMessage,

14611488

isActive: true,

14621489

queueEmbeddedPiMessageWithOutcome,

1490+

runtimeConfig: {

1491+

agents: {

1492+

defaults: {

1493+

subagents: {

1494+

announceTimeoutMs: 10,

1495+

},

1496+

},

1497+

},

1498+

},

14631499

internalEvents: [

14641500

{

14651501

type: "task_completion",

@@ -1496,7 +1532,7 @@ describe("deliverSubagentAnnouncement completion delivery", () => {

14961532

steeringMode: "all",

14971533

debounceMs: 500,

14981534

waitForTranscriptCommit: true,

1499-

deliveryTimeoutMs: 120_000,

1535+

deliveryTimeoutMs: 10,

15001536

},

15011537

);

15021538

expect(callGateway).toHaveBeenCalledTimes(1);