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

推荐订阅源

雷峰网
雷峰网
MongoDB | Blog
MongoDB | Blog
D
Docker
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
GbyAI
GbyAI
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
M
MIT News - Artificial intelligence
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
B
Blog RSS Feed
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
U
Unit 42

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 slack thread cfg assertions · openclaw/open...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -48,12 +48,12 @@ describe("handleSlackAction", () => {

4848

return { cfg, context, hasRepliedRef };

4949

}

505051-

function expectLastSlackSend(content: string, threadTs?: string) {

51+

function expectLastSlackSend(content: string, cfg: OpenClawConfig, threadTs?: string) {

5252

expect(sendSlackMessage).toHaveBeenLastCalledWith(

5353

"channel:C123",

5454

content,

5555

expect.objectContaining({

56-

cfg: expect.any(Object),

56+

cfg,

5757

mediaUrl: undefined,

5858

threadTs,

5959

blocks: undefined,

@@ -70,7 +70,7 @@ describe("handleSlackAction", () => {

7070

params.cfg,

7171

params.context,

7272

);

73-

expectLastSlackSend("Second");

73+

expectLastSlackSend("Second", params.cfg);

7474

}

75757676

async function resolveReadToken(cfg: OpenClawConfig): Promise<string | undefined> {

@@ -189,20 +189,21 @@ describe("handleSlackAction", () => {

189189

});

190190191191

it("passes threadTs to sendSlackMessage for thread replies", async () => {

192+

const cfg = slackConfig();

192193

await handleSlackAction(

193194

{

194195

action: "sendMessage",

195196

to: "channel:C123",

196197

content: "Hello thread",

197198

threadTs: "1234567890.123456",

198199

},

199-

slackConfig(),

200+

cfg,

200201

);

201202

expect(sendSlackMessage).toHaveBeenCalledWith(

202203

"channel:C123",

203204

"Hello thread",

204205

expect.objectContaining({

205-

cfg: expect.any(Object),

206+

cfg,

206207

mediaUrl: undefined,

207208

threadTs: "1234567890.123456",

208209

blocks: undefined,

@@ -506,20 +507,21 @@ describe("handleSlackAction", () => {

506507

});

507508508509

it("auto-injects threadTs from context when replyToMode=all", async () => {

510+

const cfg = slackConfig();

509511

await handleSlackAction(

510512

{

511513

action: "sendMessage",

512514

to: "channel:C123",

513515

content: "Threaded reply",

514516

},

515-

slackConfig(),

517+

cfg,

516518

{

517519

currentChannelId: "C123",

518520

currentThreadTs: "1111111111.111111",

519521

replyToMode: "all",

520522

},

521523

);

522-

expectLastSlackSend("Threaded reply", "1111111111.111111");

524+

expectLastSlackSend("Threaded reply", cfg, "1111111111.111111");

523525

});

524526525527

it("replyToMode=first threads first message then stops", async () => {

@@ -531,7 +533,7 @@ describe("handleSlackAction", () => {

531533

context,

532534

);

533535534-

expectLastSlackSend("First", "1111111111.111111");

536+

expectLastSlackSend("First", cfg, "1111111111.111111");

535537

await sendSecondMessageAndExpectNoThread({ cfg, context });

536538

});

537539

@@ -567,41 +569,40 @@ describe("handleSlackAction", () => {

567569

context,

568570

);

569571570-

expectLastSlackSend("Explicit", "9999999999.999999");

572+

expectLastSlackSend("Explicit", cfg, "9999999999.999999");

571573

expect(hasRepliedRef.value).toBe(true);

572574

await sendSecondMessageAndExpectNoThread({ cfg, context });

573575

});

574576575577

it("replyToMode=first without hasRepliedRef does not thread", async () => {

576-

await handleSlackAction(

577-

{ action: "sendMessage", to: "channel:C123", content: "No ref" },

578-

slackConfig(),

579-

{

580-

currentChannelId: "C123",

581-

currentThreadTs: "1111111111.111111",

582-

replyToMode: "first",

583-

},

584-

);

585-

expectLastSlackSend("No ref");

578+

const cfg = slackConfig();

579+

await handleSlackAction({ action: "sendMessage", to: "channel:C123", content: "No ref" }, cfg, {

580+

currentChannelId: "C123",

581+

currentThreadTs: "1111111111.111111",

582+

replyToMode: "first",

583+

});

584+

expectLastSlackSend("No ref", cfg);

586585

});

587586588587

it("does not auto-inject threadTs when replyToMode=off", async () => {

588+

const cfg = slackConfig();

589589

await handleSlackAction(

590590

{ action: "sendMessage", to: "channel:C123", content: "No thread" },

591-

slackConfig(),

591+

cfg,

592592

{

593593

currentChannelId: "C123",

594594

currentThreadTs: "1111111111.111111",

595595

replyToMode: "off",

596596

},

597597

);

598-

expectLastSlackSend("No thread");

598+

expectLastSlackSend("No thread", cfg);

599599

});

600600601601

it("does not auto-inject threadTs when sending to different channel", async () => {

602+

const cfg = slackConfig();

602603

await handleSlackAction(

603604

{ action: "sendMessage", to: "channel:C999", content: "Other channel" },

604-

slackConfig(),

605+

cfg,

605606

{

606607

currentChannelId: "C123",

607608

currentThreadTs: "1111111111.111111",

@@ -612,7 +613,7 @@ describe("handleSlackAction", () => {

612613

"channel:C999",

613614

"Other channel",

614615

expect.objectContaining({

615-

cfg: expect.any(Object),

616+

cfg,

616617

mediaUrl: undefined,

617618

threadTs: undefined,

618619

blocks: undefined,

@@ -621,38 +622,36 @@ describe("handleSlackAction", () => {

621622

});

622623623624

it("explicit threadTs overrides context threadTs", async () => {

625+

const cfg = slackConfig();

624626

await handleSlackAction(

625627

{

626628

action: "sendMessage",

627629

to: "channel:C123",

628630

content: "Explicit wins",

629631

threadTs: "9999999999.999999",

630632

},

631-

slackConfig(),

633+

cfg,

632634

{

633635

currentChannelId: "C123",

634636

currentThreadTs: "1111111111.111111",

635637

replyToMode: "all",

636638

},

637639

);

638-

expectLastSlackSend("Explicit wins", "9999999999.999999");

640+

expectLastSlackSend("Explicit wins", cfg, "9999999999.999999");

639641

});

640642641643

it("handles channel target without prefix when replyToMode=all", async () => {

642-

await handleSlackAction(

643-

{ action: "sendMessage", to: "C123", content: "Bare target" },

644-

slackConfig(),

645-

{

646-

currentChannelId: "C123",

647-

currentThreadTs: "1111111111.111111",

648-

replyToMode: "all",

649-

},

650-

);

644+

const cfg = slackConfig();

645+

await handleSlackAction({ action: "sendMessage", to: "C123", content: "Bare target" }, cfg, {

646+

currentChannelId: "C123",

647+

currentThreadTs: "1111111111.111111",

648+

replyToMode: "all",

649+

});

651650

expect(sendSlackMessage).toHaveBeenCalledWith(

652651

"C123",

653652

"Bare target",

654653

expect.objectContaining({

655-

cfg: expect.any(Object),

654+

cfg,

656655

mediaUrl: undefined,

657656

threadTs: "1111111111.111111",

658657

blocks: undefined,