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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
小众软件
小众软件
D
Docker
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
V2EX
博客园 - 叶小钗
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
IT之家
IT之家
博客园 - 司徒正美
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
C
Check Point 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: tighten channel message contract assertions · openc...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -14,6 +14,16 @@ import {

1414

verifyLivePreviewFinalizerCapabilityProofs,

1515

} from "./contracts.js";

161617+

function verifiedEntries<T extends { status: string }>(results: readonly T[]): T[] {

18+

return results.filter((result) => result.status === "verified");

19+

}

20+21+

function expectOnlyVerifiedOrNotDeclared(results: readonly { status: string }[]): void {

22+

expect(

23+

results.every((result) => result.status === "verified" || result.status === "not_declared"),

24+

).toBe(true);

25+

}

26+1727

describe("durable final capability contracts", () => {

1828

it("lists declared durable-final capabilities in stable order", () => {

1929

expect(

@@ -32,24 +42,23 @@ describe("durable final capability contracts", () => {

3242

const text = vi.fn();

3343

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

344435-

await expect(

36-

verifyDurableFinalCapabilityProofs({

37-

adapterName: "demo",

38-

capabilities: {

39-

text: true,

40-

silent: true,

41-

},

42-

proofs: {

43-

text,

44-

silent,

45-

},

46-

}),

47-

).resolves.toEqual(

48-

expect.arrayContaining([

49-

{ capability: "text", status: "verified" },

50-

{ capability: "silent", status: "verified" },

51-

]),

52-

);

45+

const results = await verifyDurableFinalCapabilityProofs({

46+

adapterName: "demo",

47+

capabilities: {

48+

text: true,

49+

silent: true,

50+

},

51+

proofs: {

52+

text,

53+

silent,

54+

},

55+

});

56+

expect(verifiedEntries(results)).toEqual([

57+

{ capability: "text", status: "verified" },

58+

{ capability: "silent", status: "verified" },

59+

]);

60+

expect(results).toHaveLength(12);

61+

expectOnlyVerifiedOrNotDeclared(results);

5362

expect(text).toHaveBeenCalledTimes(1);

5463

expect(silent).toHaveBeenCalledTimes(1);

5564

});

@@ -75,28 +84,27 @@ describe("durable final capability contracts", () => {

7584

const text = vi.fn();

7685

const media = vi.fn();

778678-

await expect(

79-

verifyChannelMessageAdapterCapabilityProofs({

80-

adapterName: "demo",

81-

adapter: {

82-

durableFinal: {

83-

capabilities: {

84-

text: true,

85-

media: true,

86-

},

87+

const results = await verifyChannelMessageAdapterCapabilityProofs({

88+

adapterName: "demo",

89+

adapter: {

90+

durableFinal: {

91+

capabilities: {

92+

text: true,

93+

media: true,

8794

},

8895

},

89-

proofs: {

90-

text,

91-

media,

92-

},

93-

}),

94-

).resolves.toEqual(

95-

expect.arrayContaining([

96-

{ capability: "text", status: "verified" },

97-

{ capability: "media", status: "verified" },

98-

]),

99-

);

96+

},

97+

proofs: {

98+

text,

99+

media,

100+

},

101+

});

102+

expect(verifiedEntries(results)).toEqual([

103+

{ capability: "text", status: "verified" },

104+

{ capability: "media", status: "verified" },

105+

]);

106+

expect(results).toHaveLength(12);

107+

expectOnlyVerifiedOrNotDeclared(results);

100108

expect(text).toHaveBeenCalledTimes(1);

101109

expect(media).toHaveBeenCalledTimes(1);

102110

});

@@ -113,30 +121,29 @@ describe("durable final capability contracts", () => {

113121

}),

114122

).toEqual(["finalEdit", "normalFallback"]);

115123116-

await expect(

117-

verifyChannelMessageLiveFinalizerProofs({

118-

adapterName: "demo",

119-

adapter: {

120-

live: {

121-

finalizer: {

122-

capabilities: {

123-

finalEdit: true,

124-

normalFallback: true,

125-

},

124+

const results = await verifyChannelMessageLiveFinalizerProofs({

125+

adapterName: "demo",

126+

adapter: {

127+

live: {

128+

finalizer: {

129+

capabilities: {

130+

finalEdit: true,

131+

normalFallback: true,

126132

},

127133

},

128134

},

129-

proofs: {

130-

finalEdit,

131-

normalFallback,

132-

},

133-

}),

134-

).resolves.toEqual(

135-

expect.arrayContaining([

136-

{ capability: "finalEdit", status: "verified" },

137-

{ capability: "normalFallback", status: "verified" },

138-

]),

139-

);

135+

},

136+

proofs: {

137+

finalEdit,

138+

normalFallback,

139+

},

140+

});

141+

expect(verifiedEntries(results)).toEqual([

142+

{ capability: "finalEdit", status: "verified" },

143+

{ capability: "normalFallback", status: "verified" },

144+

]);

145+

expect(results).toHaveLength(5);

146+

expectOnlyVerifiedOrNotDeclared(results);

140147

expect(finalEdit).toHaveBeenCalledTimes(1);

141148

expect(normalFallback).toHaveBeenCalledTimes(1);

142149

});

@@ -153,28 +160,27 @@ describe("durable final capability contracts", () => {

153160

}),

154161

).toEqual(["draftPreview", "previewFinalization"]);

155162156-

await expect(

157-

verifyChannelMessageLiveCapabilityAdapterProofs({

158-

adapterName: "demo",

159-

adapter: {

160-

live: {

161-

capabilities: {

162-

draftPreview: true,

163-

previewFinalization: true,

164-

},

163+

const results = await verifyChannelMessageLiveCapabilityAdapterProofs({

164+

adapterName: "demo",

165+

adapter: {

166+

live: {

167+

capabilities: {

168+

draftPreview: true,

169+

previewFinalization: true,

165170

},

166171

},

167-

proofs: {

168-

draftPreview,

169-

previewFinalization,

170-

},

171-

}),

172-

).resolves.toEqual(

173-

expect.arrayContaining([

174-

{ capability: "draftPreview", status: "verified" },

175-

{ capability: "previewFinalization", status: "verified" },

176-

]),

177-

);

172+

},

173+

proofs: {

174+

draftPreview,

175+

previewFinalization,

176+

},

177+

});

178+

expect(verifiedEntries(results)).toEqual([

179+

{ capability: "draftPreview", status: "verified" },

180+

{ capability: "previewFinalization", status: "verified" },

181+

]);

182+

expect(results).toHaveLength(5);

183+

expectOnlyVerifiedOrNotDeclared(results);

178184

expect(draftPreview).toHaveBeenCalledTimes(1);

179185

expect(previewFinalization).toHaveBeenCalledTimes(1);

180186

});

@@ -222,26 +228,25 @@ describe("durable final capability contracts", () => {

222228

}),

223229

).toEqual(["after_receive_record", "after_agent_dispatch"]);

224230225-

await expect(

226-

verifyChannelMessageReceiveAckPolicyAdapterProofs({

227-

adapterName: "demo",

228-

adapter: {

229-

receive: {

230-

defaultAckPolicy: "after_agent_dispatch",

231-

supportedAckPolicies: ["after_receive_record", "after_agent_dispatch"],

232-

},

233-

},

234-

proofs: {

235-

after_receive_record: afterReceiveRecord,

236-

after_agent_dispatch: afterAgentDispatch,

231+

const results = await verifyChannelMessageReceiveAckPolicyAdapterProofs({

232+

adapterName: "demo",

233+

adapter: {

234+

receive: {

235+

defaultAckPolicy: "after_agent_dispatch",

236+

supportedAckPolicies: ["after_receive_record", "after_agent_dispatch"],

237237

},

238-

}),

239-

).resolves.toEqual(

240-

expect.arrayContaining([

241-

{ policy: "after_receive_record", status: "verified" },

242-

{ policy: "after_agent_dispatch", status: "verified" },

243-

]),

244-

);

238+

},

239+

proofs: {

240+

after_receive_record: afterReceiveRecord,

241+

after_agent_dispatch: afterAgentDispatch,

242+

},

243+

});

244+

expect(verifiedEntries(results)).toEqual([

245+

{ policy: "after_receive_record", status: "verified" },

246+

{ policy: "after_agent_dispatch", status: "verified" },

247+

]);

248+

expect(results).toHaveLength(4);

249+

expectOnlyVerifiedOrNotDeclared(results);

245250

expect(afterReceiveRecord).toHaveBeenCalledTimes(1);

246251

expect(afterAgentDispatch).toHaveBeenCalledTimes(1);

247252

});

@@ -264,16 +269,17 @@ describe("durable final capability contracts", () => {

264269

}),

265270

).toEqual(["manual"]);

266271267-

await expect(

268-

verifyChannelMessageReceiveAckPolicyProofs({

269-

adapterName: "demo",

270-

receive: {

271-

defaultAckPolicy: "manual",

272-

supportedAckPolicies: ["manual"],

273-

},

274-

proofs: { manual },

275-

}),

276-

).resolves.toEqual(expect.arrayContaining([{ policy: "manual", status: "verified" }]));

272+

const results = await verifyChannelMessageReceiveAckPolicyProofs({

273+

adapterName: "demo",

274+

receive: {

275+

defaultAckPolicy: "manual",

276+

supportedAckPolicies: ["manual"],

277+

},

278+

proofs: { manual },

279+

});

280+

expect(verifiedEntries(results)).toEqual([{ policy: "manual", status: "verified" }]);

281+

expect(results).toHaveLength(4);

282+

expectOnlyVerifiedOrNotDeclared(results);

277283

expect(manual).toHaveBeenCalledTimes(1);

278284

});

279285