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

推荐订阅源

V
V2EX
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园 - 【当耐特】
月光博客
月光博客
C
Check Point Blog
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
Microsoft Security Blog
Microsoft Security Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
美团技术团队
N
Netflix TechBlog - Medium
Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
L
LangChain Blog
The Cloudflare 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(slack): route stream-fallback delivery through chunke...
martingarram · 2026-04-25 · via Recent Commits to openclaw:main

@@ -409,7 +409,7 @@ describe("dispatchPreparedSlackMessage preview fallback", () => {

409409

expect(deliverRepliesMock).toHaveBeenCalledTimes(1);

410410

});

411411412-

it("posts pending native stream text when finalize fails before the SDK buffer flushes", async () => {

412+

it("routes pending native stream text through chunked sender when finalize fails before the SDK buffer flushes", async () => {

413413

mockedNativeStreaming = true;

414414

const session = {

415415

channel: "C123",

@@ -425,17 +425,18 @@ describe("dispatchPreparedSlackMessage preview fallback", () => {

425425426426

await dispatchPreparedSlackMessage(createPreparedSlackMessage());

427427428-

expect(deliverRepliesMock).not.toHaveBeenCalled();

429-

expect(postMessageMock).toHaveBeenCalledTimes(1);

430-

expect(postMessageMock).toHaveBeenCalledWith({

431-

channel: "C123",

432-

thread_ts: THREAD_TS,

433-

text: FINAL_REPLY_TEXT,

434-

});

428+

expect(postMessageMock).not.toHaveBeenCalled();

429+

expect(deliverRepliesMock).toHaveBeenCalledTimes(1);

430+

expect(deliverRepliesMock).toHaveBeenCalledWith(

431+

expect.objectContaining({

432+

replyThreadTs: THREAD_TS,

433+

replies: [expect.objectContaining({ text: FINAL_REPLY_TEXT })],

434+

}),

435+

);

435436

expect(session.stopped).toBe(true);

436437

});

437438438-

it("posts all pending native stream text when an append flush fails", async () => {

439+

it("routes all pending native stream text through chunked sender when an append flush fails", async () => {

439440

mockedNativeStreaming = true;

440441

mockedDispatchSequence = [

441442

{ kind: "block", payload: { text: "first buffered" } },

@@ -456,13 +457,87 @@ describe("dispatchPreparedSlackMessage preview fallback", () => {

456457457458

await dispatchPreparedSlackMessage(createPreparedSlackMessage());

458459459-

expect(deliverRepliesMock).not.toHaveBeenCalled();

460-

expect(postMessageMock).toHaveBeenCalledTimes(1);

461-

expect(postMessageMock).toHaveBeenCalledWith({

460+

expect(postMessageMock).not.toHaveBeenCalled();

461+

expect(deliverRepliesMock).toHaveBeenCalledTimes(1);

462+

expect(deliverRepliesMock).toHaveBeenCalledWith(

463+

expect.objectContaining({

464+

replyThreadTs: THREAD_TS,

465+

replies: [expect.objectContaining({ text: "first buffered\nsecond flushes" })],

466+

}),

467+

);

468+

expect(stopSlackStreamMock).not.toHaveBeenCalled();

469+

});

470+471+

it("forwards oversized pending stream text to the chunked sender intact (chunking is the sender's responsibility)", async () => {

472+

mockedNativeStreaming = true;

473+

// SLACK_TEXT_LIMIT mocks to 4000; use > 1 message worth of content.

474+

const oversized = "x".repeat(8500);

475+

const session = {

462476

channel: "C123",

463-

thread_ts: THREAD_TS,

464-

text: "first buffered\nsecond flushes",

477+

threadTs: THREAD_TS,

478+

stopped: false,

479+

delivered: false,

480+

pendingText: oversized,

481+

};

482+

startSlackStreamMock.mockResolvedValueOnce(session);

483+

stopSlackStreamMock.mockRejectedValueOnce(

484+

new TestSlackStreamNotDeliveredError(oversized, "team_not_found"),

485+

);

486+487+

await dispatchPreparedSlackMessage(createPreparedSlackMessage());

488+489+

expect(postMessageMock).not.toHaveBeenCalled();

490+

expect(deliverRepliesMock).toHaveBeenCalledTimes(1);

491+

expect(deliverRepliesMock).toHaveBeenCalledWith(

492+

expect.objectContaining({

493+

replyThreadTs: THREAD_TS,

494+

textLimit: 4000,

495+

replies: [expect.objectContaining({ text: oversized })],

496+

}),

497+

);

498+

expect(session.stopped).toBe(true);

499+

});

500+501+

it("routes full pendingText (earlier buffered + failing chunk) through chunked sender on non-benign append failure", async () => {

502+

mockedNativeStreaming = true;

503+

mockedDispatchSequence = [

504+

{ kind: "block", payload: { text: "first buffered" } },

505+

{ kind: "final", payload: { text: "second payload" } },

506+

];

507+

const session = {

508+

channel: "C123",

509+

threadTs: THREAD_TS,

510+

stopped: false,

511+

delivered: false,

512+

pendingText: "first buffered",

513+

};

514+

startSlackStreamMock.mockResolvedValueOnce(session);

515+

// Non-benign error (plain Error, NOT SlackStreamNotDeliveredError).

516+

// appendSlackStream mutates pendingText BEFORE throwing so the full

517+

// buffer (earlier chunk + current chunk) must be preserved and routed

518+

// through the chunked fallback - not dropped or partially re-sent.

519+

appendSlackStreamMock.mockImplementationOnce(async () => {

520+

session.pendingText += "\nsecond payload";

521+

throw new Error("network socket closed");

465522

});

523+524+

await dispatchPreparedSlackMessage(createPreparedSlackMessage());

525+526+

// Chunked fallback sent the FULL pendingText, not just the failing

527+

// payload (so the earlier buffered chunk is not dropped).

528+

expect(deliverRepliesMock).toHaveBeenCalledTimes(1);

529+

expect(deliverRepliesMock).toHaveBeenCalledWith(

530+

expect.objectContaining({

531+

replyThreadTs: THREAD_TS,

532+

replies: [expect.objectContaining({ text: "first buffered\nsecond payload" })],

533+

}),

534+

);

535+

// Session was marked fallback-delivered by deliverPendingStreamFallback,

536+

// so finalize skips stopSlackStream.

537+

expect(session.pendingText).toBe("");

538+

expect(session.stopped).toBe(true);

466539

expect(stopSlackStreamMock).not.toHaveBeenCalled();

540+

// No raw postMessage path was invoked.

541+

expect(postMessageMock).not.toHaveBeenCalled();

467542

});

468543

});