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

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator 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(channels): scope dm last-route updates · openclaw/ope...
vincentkoc · 2026-05-17 · via Recent Commits to openclaw:main

@@ -0,0 +1,139 @@

1+

import type { MsgContext } from "openclaw/plugin-sdk/reply-runtime";

2+

import type { waitForTransportReady } from "openclaw/plugin-sdk/transport-ready-runtime";

3+

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

4+

import type { createIMessageRpcClient } from "./client.js";

5+

import { monitorIMessageProvider } from "./monitor.js";

6+7+

const waitForTransportReadyMock = vi.hoisted(() =>

8+

vi.fn<typeof waitForTransportReady>(async () => {}),

9+

);

10+

const createIMessageRpcClientMock = vi.hoisted(() => vi.fn<typeof createIMessageRpcClient>());

11+

const readChannelAllowFromStoreMock = vi.hoisted(() => vi.fn(async () => [] as string[]));

12+

const recordInboundSessionMock = vi.hoisted(() => vi.fn(async (_params: unknown) => {}));

13+

const dispatchInboundMessageMock = vi.hoisted(() =>

14+

vi.fn(

15+

async (_params: { ctx: MsgContext }) =>

16+

({ queuedFinal: false, counts: { tool: 0, block: 0, final: 0 } }) as const,

17+

),

18+

);

19+20+

vi.mock("openclaw/plugin-sdk/transport-ready-runtime", () => ({

21+

waitForTransportReady: waitForTransportReadyMock,

22+

}));

23+24+

vi.mock("openclaw/plugin-sdk/conversation-runtime", async (importOriginal) => {

25+

const actual = await importOriginal<typeof import("openclaw/plugin-sdk/conversation-runtime")>();

26+

return {

27+

...actual,

28+

readChannelAllowFromStore: readChannelAllowFromStoreMock,

29+

recordInboundSession: recordInboundSessionMock,

30+

upsertChannelPairingRequest: vi.fn(),

31+

};

32+

});

33+34+

vi.mock("openclaw/plugin-sdk/channel-inbound", async (importOriginal) => {

35+

const actual = await importOriginal<typeof import("openclaw/plugin-sdk/channel-inbound")>();

36+

return {

37+

...actual,

38+

createChannelInboundDebouncer: vi.fn((opts) => ({

39+

debouncer: {

40+

enqueue: async (entry: unknown) => await opts.onFlush([entry]),

41+

},

42+

})),

43+

shouldDebounceTextInbound: vi.fn(() => false),

44+

};

45+

});

46+47+

vi.mock("openclaw/plugin-sdk/reply-runtime", async (importOriginal) => {

48+

const actual = await importOriginal<typeof import("openclaw/plugin-sdk/reply-runtime")>();

49+

return {

50+

...actual,

51+

dispatchInboundMessage: dispatchInboundMessageMock,

52+

};

53+

});

54+55+

vi.mock("./client.js", () => ({

56+

createIMessageRpcClient: createIMessageRpcClientMock,

57+

}));

58+59+

vi.mock("./monitor/abort-handler.js", () => ({

60+

attachIMessageMonitorAbortHandler: vi.fn(() => () => {}),

61+

}));

62+63+

describe("iMessage monitor last-route updates", () => {

64+

beforeEach(() => {

65+

waitForTransportReadyMock.mockReset().mockResolvedValue(undefined);

66+

createIMessageRpcClientMock.mockReset();

67+

readChannelAllowFromStoreMock.mockReset().mockResolvedValue([]);

68+

recordInboundSessionMock.mockClear();

69+

dispatchInboundMessageMock.mockClear();

70+

});

71+72+

it("keeps per-channel-peer direct-message last-route writes on the isolated session", async () => {

73+

const runtimeErrorMock = vi.fn();

74+

let onNotification: ((message: { method: string; params: unknown }) => void) | undefined;

75+

const client = {

76+

request: vi.fn(async () => ({ subscription: 1 })),

77+

waitForClose: vi.fn(async () => {

78+

onNotification?.({

79+

method: "message",

80+

params: {

81+

message: {

82+

id: 1,

83+

chat_id: 123,

84+

sender: "+15550001111",

85+

is_from_me: false,

86+

text: "hello from imessage",

87+

is_group: false,

88+

date: 1_714_000_000_000,

89+

},

90+

},

91+

});

92+

await Promise.resolve();

93+

await Promise.resolve();

94+

}),

95+

stop: vi.fn(async () => {}),

96+

};

97+

createIMessageRpcClientMock.mockImplementation(async (params) => {

98+

if (!params?.onNotification) {

99+

throw new Error("expected iMessage notification handler");

100+

}

101+

onNotification = params.onNotification;

102+

return client as never;

103+

});

104+105+

await monitorIMessageProvider({

106+

config: {

107+

channels: { imessage: { dmPolicy: "allowlist", allowFrom: ["+15550001111"] } },

108+

messages: { inbound: { debounceMs: 0 } },

109+

session: { dmScope: "per-channel-peer", mainKey: "main" },

110+

} as never,

111+

runtime: { error: runtimeErrorMock, exit: vi.fn(), log: vi.fn() },

112+

});

113+114+

await vi.waitFor(() => {

115+

expect(readChannelAllowFromStoreMock).toHaveBeenCalledTimes(1);

116+

});

117+

expect(runtimeErrorMock).not.toHaveBeenCalled();

118+

await vi.waitFor(() => {

119+

expect(recordInboundSessionMock).toHaveBeenCalledTimes(1);

120+

});

121+

const recordParams = recordInboundSessionMock.mock.calls.at(0)?.[0] as

122+

| {

123+

sessionKey?: string;

124+

updateLastRoute?: {

125+

channel?: string;

126+

mainDmOwnerPin?: unknown;

127+

sessionKey?: string;

128+

to?: string;

129+

};

130+

}

131+

| undefined;

132+

expect(recordParams?.sessionKey).toBe("agent:main:imessage:direct:+15550001111");

133+

expect(recordParams?.updateLastRoute?.sessionKey).toBe(recordParams?.sessionKey);

134+

expect(recordParams?.updateLastRoute?.sessionKey).not.toBe("agent:main:main");

135+

expect(recordParams?.updateLastRoute?.channel).toBe("imessage");

136+

expect(recordParams?.updateLastRoute?.to).toBe("+15550001111");

137+

expect(recordParams?.updateLastRoute?.mainDmOwnerPin).toBeUndefined();

138+

});

139+

});