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

推荐订阅源

N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
WordPress大学
WordPress大学
小众软件
小众软件
IT之家
IT之家
腾讯CDC
月光博客
月光博客
量子位
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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(outbound): preserve reserved Telegram directory targe...
zhangguiping · 2026-06-25 · via Recent Commits to openclaw:main

@@ -4,6 +4,15 @@ import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

4455

const mocks = vi.hoisted(() => ({

66

resolveOutboundChannelPlugin: vi.fn<() => unknown>(() => null),

7+

resolveChannelTarget: vi.fn<() => Promise<unknown>>(async () => ({

8+

ok: true,

9+

target: {

10+

to: "+1999",

11+

kind: "group",

12+

source: "normalized",

13+

resolutionSource: "normalized",

14+

},

15+

})),

716

resolveOutboundTarget: vi.fn<() => { ok: true; to: string } | { ok: false; error: Error }>(

817

() => ({ ok: true, to: "+1999" }),

918

),

@@ -82,11 +91,16 @@ vi.mock("./outbound-session.js", () => ({

8291

resolveOutboundSessionRoute: mocks.resolveOutboundSessionRoute,

8392

}));

849394+

vi.mock("./target-resolver.js", () => ({

95+

resolveChannelTarget: mocks.resolveChannelTarget,

96+

}));

97+8598

vi.mock("../../utils/message-channel.js", () => ({

8699

INTERNAL_MESSAGE_CHANNEL: "webchat",

87-

isDeliverableMessageChannel: (channel: string) => ["directchat", "workspace"].includes(channel),

100+

isDeliverableMessageChannel: (channel: string) =>

101+

["directchat", "workspace", "telegram"].includes(channel),

88102

isGatewayMessageChannel: (channel: string) =>

89-

["directchat", "workspace", "webchat"].includes(channel),

103+

["directchat", "workspace", "telegram", "webchat"].includes(channel),

90104

normalizeMessageChannel: (value: string) => value.trim().toLowerCase(),

91105

}));

92106

@@ -106,7 +120,18 @@ beforeAll(async () => {

106120

beforeEach(() => {

107121

mocks.resolveOutboundChannelPlugin.mockReset();

108122

mocks.resolveOutboundChannelPlugin.mockReturnValue(null);

109-

mocks.resolveOutboundTarget.mockClear();

123+

mocks.resolveChannelTarget.mockReset();

124+

mocks.resolveChannelTarget.mockResolvedValue({

125+

ok: true,

126+

target: {

127+

to: "+1999",

128+

kind: "group",

129+

source: "normalized",

130+

resolutionSource: "normalized",

131+

},

132+

});

133+

mocks.resolveOutboundTarget.mockReset();

134+

mocks.resolveOutboundTarget.mockReturnValue({ ok: true, to: "+1999" });

110135

mocks.resolveOutboundSessionRoute.mockReset();

111136

mocks.resolveOutboundSessionRoute.mockResolvedValue(null);

112137

mocks.resolveSessionDeliveryTarget.mockClear();

@@ -313,31 +338,109 @@ describe("agent delivery helpers", () => {

313338

expect(plan.resolvedTo).toBe("1470130713209602050");

314339

});

315340316-

it("defers reserved-literal errors to async session-route resolution", async () => {

341+

it("resolves reserved explicit targets through directory-capable resolution before session routing", async () => {

317342

mocks.resolveOutboundChannelPlugin.mockReturnValue({

318-

messaging: { resolveOutboundSessionRoute: vi.fn() },

343+

messaging: { resolveOutboundSessionRoute: vi.fn(), targetResolver: {} },

319344

});

320345

mocks.resolveOutboundTarget.mockReturnValueOnce({

321346

ok: false,

322347

error: new Error('Reserved target "current" for Telegram'),

323348

});

349+

mocks.resolveChannelTarget.mockResolvedValueOnce({

350+

ok: true,

351+

target: {

352+

to: "telegram:-1002458651455",

353+

kind: "group",

354+

source: "directory",

355+

resolutionSource: "directory",

356+

},

357+

});

358+

mocks.resolveOutboundSessionRoute.mockResolvedValueOnce({

359+

sessionKey: "agent:telegram:group:-1002458651455",

360+

baseSessionKey: "agent:telegram:group:-1002458651455",

361+

peer: { kind: "group", id: "-1002458651455" },

362+

chatType: "group",

363+

from: "telegram:group:-1002458651455",

364+

to: "telegram:-1002458651455",

365+

});

324366325367

const plan = await resolveAgentDeliveryPlanWithSessionRoute({

326368

cfg: {} as OpenClawConfig,

327369

agentId: "agent",

370+

currentSessionKey: "agent:main",

328371

sessionEntry: undefined,

329-

requestedChannel: "workspace",

372+

requestedChannel: "telegram",

373+

explicitTo: "current",

374+

accountId: "work",

375+

wantsDelivery: true,

376+

});

377+378+

expect(mocks.resolveChannelTarget).toHaveBeenCalledWith({

379+

cfg: {},

380+

channel: "telegram",

381+

input: "current",

382+

accountId: "work",

383+

unknownTargetMode: "normalized",

384+

plugin: {

385+

messaging: { resolveOutboundSessionRoute: expect.any(Function), targetResolver: {} },

386+

},

387+

});

388+

expect(mocks.resolveOutboundSessionRoute).toHaveBeenCalledWith({

389+

cfg: {},

390+

channel: "telegram",

391+

agentId: "agent",

392+

accountId: "work",

393+

target: "telegram:-1002458651455",

394+

resolvedTarget: {

395+

to: "telegram:-1002458651455",

396+

kind: "group",

397+

source: "directory",

398+

resolutionSource: "directory",

399+

},

400+

currentSessionKey: "agent:main",

401+

threadId: undefined,

402+

});

403+

expect(plan.resolvedTo).toBe("telegram:-1002458651455");

404+

expect(plan.targetResolutionError).toBeUndefined();

405+

});

406+407+

it("keeps reserved explicit target errors when directory-capable resolution misses", async () => {

408+

const reservedError = new Error('Reserved target "current" for Telegram');

409+

mocks.resolveOutboundChannelPlugin.mockReturnValue({

410+

messaging: { resolveOutboundSessionRoute: vi.fn(), targetResolver: {} },

411+

});

412+

mocks.resolveOutboundTarget.mockReturnValueOnce({

413+

ok: false,

414+

error: reservedError,

415+

});

416+

mocks.resolveChannelTarget.mockResolvedValueOnce({

417+

ok: false,

418+

error: reservedError,

419+

});

420+421+

const plan = await resolveAgentDeliveryPlanWithSessionRoute({

422+

cfg: {} as OpenClawConfig,

423+

agentId: "agent",

424+

sessionEntry: undefined,

425+

requestedChannel: "telegram",

330426

explicitTo: "current",

331427

accountId: undefined,

332428

wantsDelivery: true,

333429

});

334430335-

// Reserved-literal errors do not block session route resolution; the

336-

// async resolver (resolveMessagingTarget) does directory-first lookup

337-

// before rejecting reserved literals.

338-

expect(mocks.resolveOutboundSessionRoute).toHaveBeenCalled();

431+

expect(mocks.resolveChannelTarget).toHaveBeenCalledWith({

432+

cfg: {},

433+

channel: "telegram",

434+

input: "current",

435+

accountId: undefined,

436+

unknownTargetMode: "normalized",

437+

plugin: {

438+

messaging: { resolveOutboundSessionRoute: expect.any(Function), targetResolver: {} },

439+

},

440+

});

441+

expect(mocks.resolveOutboundSessionRoute).not.toHaveBeenCalled();

339442

expect(plan.resolvedTo).toBe("current");

340-

expect(plan.targetResolutionError).toBeUndefined();

443+

expect(plan.targetResolutionError).toBe(reservedError);

341444

});

342445343446

it("surfaces stored explicit target errors even when explicit validation is disabled", () => {