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

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow 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(whatsapp): resolve outbound PN to LID via auth-dir fo...
edenfunf · 2026-05-07 · via Recent Commits to openclaw:main
1+

import fs from "node:fs";

2+

import os from "node:os";

3+

import path from "node:path";

14

import type {

25

AnyMessageContent,

36

MiscMessageGenerationOptions,

47

WAMessage,

58

} from "@whiskeysockets/baileys";

69

import { listMessageReceiptPlatformIds } from "openclaw/plugin-sdk/channel-message";

7-

import { beforeEach, describe, expect, it, vi } from "vitest";

10+

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

811

import { resolveWhatsAppOutboundMentions } from "./outbound-mentions.js";

912

import { createWebSendApi } from "./send-api.js";

1013

@@ -373,3 +376,86 @@ describe("createWebSendApi", () => {

373376

);

374377

});

375378

});

379+380+

// Integration tests for issue #67378: createWebSendApi must route outbound

381+

// PN-only sends through the LID forward-mapping when authDir is provided,

382+

// otherwise messages going to LID-addressed contacts vanish into a

383+

// sender-only ghost chat.

384+

describe("createWebSendApi LID resolution (issue #67378)", () => {

385+

const sendMessage = vi.fn(async () => ({ key: { id: "msg-1" } }));

386+

const sendPresenceUpdate = vi.fn(async () => {});

387+

let authDir: string;

388+389+

beforeEach(() => {

390+

vi.clearAllMocks();

391+

authDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-wa-lid-"));

392+

fs.writeFileSync(path.join(authDir, "lid-mapping-15555550000.json"), JSON.stringify("987654"));

393+

});

394+395+

afterEach(() => {

396+

fs.rmSync(authDir, { recursive: true, force: true });

397+

});

398+399+

it("resolves PN to LID for sendMessage when authDir is provided", async () => {

400+

const api = createWebSendApi({

401+

sock: { sendMessage, sendPresenceUpdate },

402+

defaultAccountId: "main",

403+

authDir,

404+

});

405+

await api.sendMessage("+15555550000", "hello");

406+

expect(sendMessage).toHaveBeenCalledWith("987654@lid", { text: "hello" });

407+

});

408+409+

it("falls back to PN s.whatsapp.net when no LID mapping exists", async () => {

410+

const api = createWebSendApi({

411+

sock: { sendMessage, sendPresenceUpdate },

412+

defaultAccountId: "main",

413+

authDir,

414+

});

415+

await api.sendMessage("+33123456789", "hello");

416+

expect(sendMessage).toHaveBeenCalledWith("33123456789@s.whatsapp.net", { text: "hello" });

417+

});

418+419+

it("resolves PN to LID for sendPoll", async () => {

420+

const api = createWebSendApi({

421+

sock: { sendMessage, sendPresenceUpdate },

422+

defaultAccountId: "main",

423+

authDir,

424+

});

425+

await api.sendPoll("+15555550000", { question: "Q?", options: ["a", "b"] });

426+

expect(sendMessage).toHaveBeenCalledWith(

427+

"987654@lid",

428+

expect.objectContaining({ poll: expect.any(Object) }),

429+

);

430+

});

431+432+

it("resolves PN to LID for sendComposingTo presence", async () => {

433+

const api = createWebSendApi({

434+

sock: { sendMessage, sendPresenceUpdate },

435+

defaultAccountId: "main",

436+

authDir,

437+

});

438+

await api.sendComposingTo("+15555550000");

439+

expect(sendPresenceUpdate).toHaveBeenCalledWith("composing", "987654@lid");

440+

});

441+442+

it("skips newsletter composing presence when authDir is provided", async () => {

443+

const api = createWebSendApi({

444+

sock: { sendMessage, sendPresenceUpdate },

445+

defaultAccountId: "main",

446+

authDir,

447+

});

448+

await api.sendComposingTo("120363401234567890@newsletter");

449+

expect(sendPresenceUpdate).not.toHaveBeenCalled();

450+

});

451+452+

it("preserves legacy behavior (no authDir → PN-only routing)", async () => {

453+

const api = createWebSendApi({

454+

sock: { sendMessage, sendPresenceUpdate },

455+

defaultAccountId: "main",

456+

// authDir intentionally omitted

457+

});

458+

await api.sendMessage("+15555550000", "hello");

459+

expect(sendMessage).toHaveBeenCalledWith("15555550000@s.whatsapp.net", { text: "hello" });

460+

});

461+

});