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

推荐订阅源

D
DataBreaches.Net
N
Netflix TechBlog - Medium
P
Proofpoint News Feed
D
Docker
J
Java Code Geeks
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
腾讯CDC
罗磊的独立博客
U
Unit 42
爱范儿
爱范儿
Vercel News
Vercel News
MyScale Blog
MyScale 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
test: require imessage adapter fixtures · openclaw/opencl...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -19,6 +19,66 @@ afterEach(() => {

1919

resetFacadeRuntimeStateForTest();

2020

});

212122+

type IMessageOutbound = NonNullable<ReturnType<typeof createIMessageTestPlugin>["outbound"]>;

23+

type IMessageMessageAdapter = NonNullable<typeof imessagePlugin.message>;

24+

type IMessageMessageSender = NonNullable<IMessageMessageAdapter["send"]>;

25+26+

function requireOutbound(): IMessageOutbound {

27+

const outbound = createIMessageTestPlugin().outbound;

28+

if (!outbound) {

29+

throw new Error("Expected iMessage test plugin outbound adapter");

30+

}

31+

return outbound;

32+

}

33+34+

function requireOutboundSendText(

35+

outbound: IMessageOutbound,

36+

): NonNullable<IMessageOutbound["sendText"]> {

37+

const sendText = outbound.sendText;

38+

if (!sendText) {

39+

throw new Error("Expected iMessage outbound sendText");

40+

}

41+

return sendText;

42+

}

43+44+

function requireOutboundSendMedia(

45+

outbound: IMessageOutbound,

46+

): NonNullable<IMessageOutbound["sendMedia"]> {

47+

const sendMedia = outbound.sendMedia;

48+

if (!sendMedia) {

49+

throw new Error("Expected iMessage outbound sendMedia");

50+

}

51+

return sendMedia;

52+

}

53+54+

function requireMessageAdapter(): IMessageMessageAdapter {

55+

const adapter = imessagePlugin.message;

56+

if (!adapter) {

57+

throw new Error("Expected iMessage message adapter");

58+

}

59+

return adapter;

60+

}

61+62+

function requireMessageSendText(

63+

adapter: IMessageMessageAdapter,

64+

): NonNullable<IMessageMessageSender["text"]> {

65+

const text = adapter.send?.text;

66+

if (!text) {

67+

throw new Error("Expected iMessage message adapter text sender");

68+

}

69+

return text;

70+

}

71+72+

function requireMessageSendMedia(

73+

adapter: IMessageMessageAdapter,

74+

): NonNullable<IMessageMessageSender["media"]> {

75+

const media = adapter.send?.media;

76+

if (!media) {

77+

throw new Error("Expected iMessage message adapter media sender");

78+

}

79+

return media;

80+

}

81+2282

describe("createIMessageTestPlugin", () => {

2383

it("does not load the bundled iMessage facade by default", () => {

2484

expect(listImportedBundledPluginFacadeIds()).toEqual([]);

@@ -55,7 +115,9 @@ describe("createIMessageTestPlugin", () => {

55115

});

5611657117

it("backs declared durable final capabilities with delivery proofs", async () => {

58-

const outbound = createIMessageTestPlugin().outbound!;

118+

const outbound = requireOutbound();

119+

const sendText = requireOutboundSendText(outbound);

120+

const sendMedia = requireOutboundSendMedia(outbound);

59121

const sendIMessage = async () => ({ messageId: "imsg-1" });

6012261123

await verifyDurableFinalCapabilityProofs({

@@ -64,7 +126,7 @@ describe("createIMessageTestPlugin", () => {

64126

proofs: {

65127

text: async () => {

66128

await expect(

67-

outbound.sendText?.({

129+

sendText({

68130

cfg: {} as never,

69131

to: "+15551234567",

70132

text: "hello",

@@ -74,7 +136,7 @@ describe("createIMessageTestPlugin", () => {

74136

},

75137

media: async () => {

76138

await expect(

77-

outbound.sendMedia?.({

139+

sendMedia({

78140

cfg: {} as never,

79141

to: "+15551234567",

80142

text: "caption",

@@ -86,7 +148,7 @@ describe("createIMessageTestPlugin", () => {

86148

},

87149

replyTo: async () => {

88150

await expect(

89-

outbound.sendText?.({

151+

sendText({

90152

cfg: {} as never,

91153

to: "+15551234567",

92154

text: "reply",

@@ -96,7 +158,7 @@ describe("createIMessageTestPlugin", () => {

96158

).resolves.toEqual({ channel: "imessage", messageId: "imsg-1" });

97159

},

98160

messageSendingHooks: () => {

99-

expect(outbound.sendText).toBeTypeOf("function");

161+

expect(sendText).toBeTypeOf("function");

100162

},

101163

},

102164

});

@@ -119,49 +181,52 @@ describe("createIMessageTestPlugin", () => {

119181

}),

120182

};

121183

};

184+

const adapter = requireMessageAdapter();

185+

const sendText = requireMessageSendText(adapter);

186+

const sendMedia = requireMessageSendMedia(adapter);

122187123188

await verifyChannelMessageAdapterCapabilityProofs({

124189

adapterName: "imessageMessage",

125-

adapter: imessagePlugin.message!,

190+

adapter,

126191

proofs: {

127192

text: async () => {

128-

const result = await imessagePlugin.message?.send?.text?.({

193+

const result = await sendText({

129194

cfg: {} as never,

130195

to: "+15551234567",

131196

text: "hello",

132197

deps: { imessage: sendIMessage },

133-

} as Parameters<NonNullable<typeof imessagePlugin.message.send.text>>[0] & {

198+

} as Parameters<typeof sendText>[0] & {

134199

deps: { imessage: typeof sendIMessage };

135200

});

136-

expect(result?.receipt.platformMessageIds).toEqual(["imsg-text-1"]);

201+

expect(result.receipt.platformMessageIds).toEqual(["imsg-text-1"]);

137202

},

138203

media: async () => {

139-

const result = await imessagePlugin.message?.send?.media?.({

204+

const result = await sendMedia({

140205

cfg: {} as never,

141206

to: "+15551234567",

142207

text: "caption",

143208

mediaUrl: "/tmp/image.png",

144209

mediaLocalRoots: ["/tmp"],

145210

deps: { imessage: sendIMessage },

146-

} as Parameters<NonNullable<typeof imessagePlugin.message.send.media>>[0] & {

211+

} as Parameters<typeof sendMedia>[0] & {

147212

deps: { imessage: typeof sendIMessage };

148213

});

149-

expect(result?.receipt.platformMessageIds).toEqual(["imsg-media-1"]);

214+

expect(result.receipt.platformMessageIds).toEqual(["imsg-media-1"]);

150215

},

151216

replyTo: async () => {

152-

const result = await imessagePlugin.message?.send?.text?.({

217+

const result = await sendText({

153218

cfg: {} as never,

154219

to: "+15551234567",

155220

text: "reply",

156221

replyToId: "reply-1",

157222

deps: { imessage: sendIMessage },

158-

} as Parameters<NonNullable<typeof imessagePlugin.message.send.text>>[0] & {

223+

} as Parameters<typeof sendText>[0] & {

159224

deps: { imessage: typeof sendIMessage };

160225

});

161-

expect(result?.receipt.replyToId).toBe("reply-1");

226+

expect(result.receipt.replyToId).toBe("reply-1");

162227

},

163228

messageSendingHooks: () => {

164-

expect(imessagePlugin.message?.send?.text).toBeTypeOf("function");

229+

expect(sendText).toBeTypeOf("function");

165230

},

166231

},

167232

});