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

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
月光博客
月光博客
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
雷峰网
雷峰网
博客园 - 叶小钗
量子位
IT之家
IT之家

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: route telegram cli sends through gateway · openclaw/...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -412,6 +412,94 @@ describe("runMessageAction plugin dispatch", () => {

412412

});

413413

});

414414415+

it("routes gateway-executed plugin sends through gateway RPC instead of local dispatch", async () => {

416+

const handleAction = vi.fn(async () => jsonResult({ ok: true, local: true }));

417+

const gatewayPlugin: ChannelPlugin = {

418+

id: "gatewaychat",

419+

meta: {

420+

id: "gatewaychat",

421+

label: "Gateway Chat",

422+

selectionLabel: "Gateway Chat",

423+

docsPath: "/channels/gatewaychat",

424+

blurb: "Gateway Chat send test plugin.",

425+

},

426+

capabilities: { chatTypes: ["direct"] },

427+

config: createAlwaysConfiguredPluginConfig(),

428+

messaging: {

429+

targetResolver: {

430+

looksLikeId: () => true,

431+

},

432+

},

433+

actions: {

434+

describeMessageTool: () => ({ actions: ["send"] }),

435+

supportsAction: ({ action }) => action === "send",

436+

resolveExecutionMode: ({ action }) => (action === "send" ? "gateway" : "local"),

437+

handleAction,

438+

},

439+

};

440+

setActivePluginRegistry(

441+

createTestRegistry([

442+

{

443+

pluginId: "gatewaychat",

444+

source: "test",

445+

plugin: gatewayPlugin,

446+

},

447+

]),

448+

);

449+

mocks.callGatewayLeastPrivilege.mockResolvedValue({

450+

ok: true,

451+

messageId: "gw-send-1",

452+

});

453+454+

const result = await runMessageAction({

455+

cfg: {

456+

channels: {

457+

gatewaychat: {

458+

enabled: true,

459+

},

460+

},

461+

} as OpenClawConfig,

462+

action: "send",

463+

params: {

464+

channel: "gatewaychat",

465+

target: "user-123",

466+

message: "hello from cli",

467+

},

468+

gateway: {

469+

clientName: "cli",

470+

mode: "cli",

471+

},

472+

dryRun: false,

473+

});

474+475+

expect(mocks.callGatewayLeastPrivilege).toHaveBeenCalledWith(

476+

expect.objectContaining({

477+

method: "message.action",

478+

params: expect.objectContaining({

479+

channel: "gatewaychat",

480+

action: "send",

481+

params: expect.objectContaining({

482+

to: "user-123",

483+

message: "hello from cli",

484+

}),

485+

idempotencyKey: "idem-gateway-action",

486+

}),

487+

}),

488+

);

489+

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

490+

expect(handleAction).not.toHaveBeenCalled();

491+

expect(result).toMatchObject({

492+

kind: "send",

493+

channel: "gatewaychat",

494+

action: "send",

495+

handledBy: "plugin",

496+

payload: {

497+

ok: true,

498+

messageId: "gw-send-1",

499+

},

500+

});

501+

});

502+415503

it("uses requester session channel policy for host-media reads", async () => {

416504

const handlePolicyCheckedAction = vi.fn(async ({ mediaAccess }) =>

417505

jsonResult({

@@ -912,6 +1000,86 @@ describe("runMessageAction plugin dispatch", () => {

9121000

},

9131001

});

9141002

});

1003+1004+

it("routes gateway-executed plugin polls through gateway RPC instead of local dispatch", async () => {

1005+

const handleAction = vi.fn(async () => jsonResult({ ok: true, local: true }));

1006+

const pollGatewayPlugin = createPollForwardingPlugin({

1007+

pluginId: "pollchat",

1008+

label: "Poll Chat",

1009+

blurb: "Poll chat gateway forwarding test plugin.",

1010+

handleAction,

1011+

});

1012+

const baseActions = pollGatewayPlugin.actions!;

1013+

pollGatewayPlugin.actions = {

1014+

describeMessageTool: baseActions.describeMessageTool,

1015+

supportsAction: baseActions.supportsAction,

1016+

handleAction: baseActions.handleAction,

1017+

resolveExecutionMode: ({ action }) => (action === "poll" ? "gateway" : "local"),

1018+

};

1019+

setActivePluginRegistry(

1020+

createTestRegistry([

1021+

{

1022+

pluginId: "pollchat",

1023+

source: "test",

1024+

plugin: pollGatewayPlugin,

1025+

},

1026+

]),

1027+

);

1028+

mocks.callGatewayLeastPrivilege.mockResolvedValue({

1029+

ok: true,

1030+

pollId: "gw-poll-1",

1031+

});

1032+1033+

const result = await runMessageAction({

1034+

cfg: {

1035+

channels: {

1036+

pollchat: {

1037+

botToken: "tok",

1038+

},

1039+

},

1040+

} as OpenClawConfig,

1041+

action: "poll",

1042+

params: {

1043+

channel: "pollchat",

1044+

target: "pollchat:123",

1045+

pollQuestion: "Lunch?",

1046+

pollOption: ["Pizza", "Sushi"],

1047+

},

1048+

gateway: {

1049+

clientName: "cli",

1050+

mode: "cli",

1051+

},

1052+

dryRun: false,

1053+

});

1054+1055+

expect(mocks.callGatewayLeastPrivilege).toHaveBeenCalledWith(

1056+

expect.objectContaining({

1057+

method: "message.action",

1058+

params: expect.objectContaining({

1059+

channel: "pollchat",

1060+

action: "poll",

1061+

params: expect.objectContaining({

1062+

to: "pollchat:123",

1063+

pollQuestion: "Lunch?",

1064+

pollOption: ["Pizza", "Sushi"],

1065+

}),

1066+

idempotencyKey: "idem-gateway-action",

1067+

}),

1068+

}),

1069+

);

1070+

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

1071+

expect(handleAction).not.toHaveBeenCalled();

1072+

expect(result).toMatchObject({

1073+

kind: "poll",

1074+

channel: "pollchat",

1075+

action: "poll",

1076+

handledBy: "plugin",

1077+

payload: {

1078+

ok: true,

1079+

pollId: "gw-poll-1",

1080+

},

1081+

});

1082+

});

9151083

});

91610849171085

describe("plugin-owned poll semantics", () => {