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

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
B
Blog RSS Feed
I
InfoQ
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Help Net Security
L
LangChain Blog
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏

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 source reply policy assertions · openclaw/o...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -19,6 +19,15 @@ const globalToolOnlyReplyConfig = {

1919

},

2020

} as const satisfies OpenClawConfig;

212122+

function expectPolicyFields(

23+

policy: ReturnType<typeof resolveSourceReplyVisibilityPolicy>,

24+

fields: Partial<ReturnType<typeof resolveSourceReplyVisibilityPolicy>>,

25+

): void {

26+

for (const [key, value] of Object.entries(fields)) {

27+

expect(policy[key as keyof typeof policy]).toBe(value);

28+

}

29+

}

30+2231

describe("resolveSourceReplyDeliveryMode", () => {

2332

it("defaults groups and channels to message-tool-only delivery", () => {

2433

expect(resolveSourceReplyDeliveryMode({ cfg: emptyConfig, ctx: { ChatType: "channel" } })).toBe(

@@ -162,41 +171,43 @@ describe("resolveSourceReplyDeliveryMode", () => {

162171163172

describe("resolveSourceReplyVisibilityPolicy", () => {

164173

it("allows direct automatic delivery without suppressing typing", () => {

165-

expect(

174+

expectPolicyFields(

166175

resolveSourceReplyVisibilityPolicy({

167176

cfg: emptyConfig,

168177

ctx: { ChatType: "direct" },

169178

sendPolicy: "allow",

170179

}),

171-

).toMatchObject({

172-

sourceReplyDeliveryMode: "automatic",

173-

sendPolicyDenied: false,

174-

suppressAutomaticSourceDelivery: false,

175-

suppressDelivery: false,

176-

suppressHookUserDelivery: false,

177-

suppressHookReplyLifecycle: false,

178-

suppressTyping: false,

179-

deliverySuppressionReason: "",

180-

});

180+

{

181+

sourceReplyDeliveryMode: "automatic",

182+

sendPolicyDenied: false,

183+

suppressAutomaticSourceDelivery: false,

184+

suppressDelivery: false,

185+

suppressHookUserDelivery: false,

186+

suppressHookReplyLifecycle: false,

187+

suppressTyping: false,

188+

deliverySuppressionReason: "",

189+

},

190+

);

181191

});

182192183193

it("suppresses automatic source delivery for default group turns without suppressing typing", () => {

184-

expect(

194+

expectPolicyFields(

185195

resolveSourceReplyVisibilityPolicy({

186196

cfg: emptyConfig,

187197

ctx: { ChatType: "group" },

188198

sendPolicy: "allow",

189199

}),

190-

).toMatchObject({

191-

sourceReplyDeliveryMode: "message_tool_only",

192-

sendPolicyDenied: false,

193-

suppressAutomaticSourceDelivery: true,

194-

suppressDelivery: true,

195-

suppressHookUserDelivery: true,

196-

suppressHookReplyLifecycle: false,

197-

suppressTyping: false,

198-

deliverySuppressionReason: "sourceReplyDeliveryMode: message_tool_only",

199-

});

200+

{

201+

sourceReplyDeliveryMode: "message_tool_only",

202+

sendPolicyDenied: false,

203+

suppressAutomaticSourceDelivery: true,

204+

suppressDelivery: true,

205+

suppressHookUserDelivery: true,

206+

suppressHookReplyLifecycle: false,

207+

suppressTyping: false,

208+

deliverySuppressionReason: "sourceReplyDeliveryMode: message_tool_only",

209+

},

210+

);

200211

});

201212202213

it("keeps native and authorized text command replies visible in groups", () => {

@@ -209,135 +220,143 @@ describe("resolveSourceReplyVisibilityPolicy", () => {

209220

CommandBody: "/status",

210221

},

211222

] as const) {

212-

expect(

223+

expectPolicyFields(

213224

resolveSourceReplyVisibilityPolicy({

214225

cfg: emptyConfig,

215226

ctx,

216227

sendPolicy: "allow",

217228

}),

218-

).toMatchObject({

219-

sourceReplyDeliveryMode: "automatic",

220-

suppressAutomaticSourceDelivery: false,

221-

suppressDelivery: false,

222-

suppressHookReplyLifecycle: false,

223-

suppressTyping: false,

224-

});

229+

{

230+

sourceReplyDeliveryMode: "automatic",

231+

suppressAutomaticSourceDelivery: false,

232+

suppressDelivery: false,

233+

suppressHookReplyLifecycle: false,

234+

suppressTyping: false,

235+

},

236+

);

225237

}

226238

});

227239228240

it("keeps configured automatic group delivery visible", () => {

229-

expect(

241+

expectPolicyFields(

230242

resolveSourceReplyVisibilityPolicy({

231243

cfg: automaticGroupReplyConfig,

232244

ctx: { ChatType: "channel" },

233245

sendPolicy: "allow",

234246

}),

235-

).toMatchObject({

236-

sourceReplyDeliveryMode: "automatic",

237-

suppressAutomaticSourceDelivery: false,

238-

suppressDelivery: false,

239-

suppressHookReplyLifecycle: false,

240-

suppressTyping: false,

241-

});

247+

{

248+

sourceReplyDeliveryMode: "automatic",

249+

suppressAutomaticSourceDelivery: false,

250+

suppressDelivery: false,

251+

suppressHookReplyLifecycle: false,

252+

suppressTyping: false,

253+

},

254+

);

242255

});

243256244257

it("supports explicit message-tool-only delivery for direct chats without suppressing typing", () => {

245-

expect(

258+

expectPolicyFields(

246259

resolveSourceReplyVisibilityPolicy({

247260

cfg: emptyConfig,

248261

ctx: { ChatType: "direct" },

249262

requested: "message_tool_only",

250263

sendPolicy: "allow",

251264

}),

252-

).toMatchObject({

253-

sourceReplyDeliveryMode: "message_tool_only",

254-

suppressAutomaticSourceDelivery: true,

255-

suppressDelivery: true,

256-

suppressHookReplyLifecycle: false,

257-

suppressTyping: false,

258-

deliverySuppressionReason: "sourceReplyDeliveryMode: message_tool_only",

259-

});

265+

{

266+

sourceReplyDeliveryMode: "message_tool_only",

267+

suppressAutomaticSourceDelivery: true,

268+

suppressDelivery: true,

269+

suppressHookReplyLifecycle: false,

270+

suppressTyping: false,

271+

deliverySuppressionReason: "sourceReplyDeliveryMode: message_tool_only",

272+

},

273+

);

260274

});

261275262276

it("lets sendPolicy deny suppress delivery and typing", () => {

263-

expect(

277+

expectPolicyFields(

264278

resolveSourceReplyVisibilityPolicy({

265279

cfg: emptyConfig,

266280

ctx: { ChatType: "group" },

267281

sendPolicy: "deny",

268282

}),

269-

).toMatchObject({

270-

sourceReplyDeliveryMode: "message_tool_only",

271-

sendPolicyDenied: true,

272-

suppressDelivery: true,

273-

suppressHookUserDelivery: true,

274-

suppressHookReplyLifecycle: true,

275-

suppressTyping: true,

276-

deliverySuppressionReason: "sendPolicy: deny",

277-

});

283+

{

284+

sourceReplyDeliveryMode: "message_tool_only",

285+

sendPolicyDenied: true,

286+

suppressDelivery: true,

287+

suppressHookUserDelivery: true,

288+

suppressHookReplyLifecycle: true,

289+

suppressTyping: true,

290+

deliverySuppressionReason: "sendPolicy: deny",

291+

},

292+

);

278293

});

279294280295

it("keeps explicit typing suppression separate from delivery suppression", () => {

281-

expect(

296+

expectPolicyFields(

282297

resolveSourceReplyVisibilityPolicy({

283298

cfg: emptyConfig,

284299

ctx: { ChatType: "direct" },

285300

sendPolicy: "allow",

286301

explicitSuppressTyping: true,

287302

}),

288-

).toMatchObject({

289-

sourceReplyDeliveryMode: "automatic",

290-

suppressDelivery: false,

291-

suppressHookUserDelivery: false,

292-

suppressHookReplyLifecycle: true,

293-

suppressTyping: true,

294-

});

303+

{

304+

sourceReplyDeliveryMode: "automatic",

305+

suppressDelivery: false,

306+

suppressHookUserDelivery: false,

307+

suppressHookReplyLifecycle: true,

308+

suppressTyping: true,

309+

},

310+

);

295311

});

296312297313

it("keeps ACP child user delivery suppression separate from source delivery", () => {

298-

expect(

314+

expectPolicyFields(

299315

resolveSourceReplyVisibilityPolicy({

300316

cfg: emptyConfig,

301317

ctx: { ChatType: "direct" },

302318

sendPolicy: "allow",

303319

suppressAcpChildUserDelivery: true,

304320

}),

305-

).toMatchObject({

306-

sourceReplyDeliveryMode: "automatic",

307-

suppressDelivery: false,

308-

suppressHookUserDelivery: true,

309-

suppressHookReplyLifecycle: true,

310-

suppressTyping: false,

311-

});

321+

{

322+

sourceReplyDeliveryMode: "automatic",

323+

suppressDelivery: false,

324+

suppressHookUserDelivery: true,

325+

suppressHookReplyLifecycle: true,

326+

suppressTyping: false,

327+

},

328+

);

312329

});

313330

it("keeps delivery automatic when message-tool-only mode cannot send visibly", () => {

314-

expect(

331+

expectPolicyFields(

315332

resolveSourceReplyVisibilityPolicy({

316333

cfg: emptyConfig,

317334

ctx: { ChatType: "group" },

318335

sendPolicy: "allow",

319336

messageToolAvailable: false,

320337

}),

321-

).toMatchObject({

322-

sourceReplyDeliveryMode: "automatic",

323-

suppressAutomaticSourceDelivery: false,

324-

suppressDelivery: false,

325-

suppressHookUserDelivery: false,

326-

deliverySuppressionReason: "",

327-

});

328-

expect(

338+

{

339+

sourceReplyDeliveryMode: "automatic",

340+

suppressAutomaticSourceDelivery: false,

341+

suppressDelivery: false,

342+

suppressHookUserDelivery: false,

343+

deliverySuppressionReason: "",

344+

},

345+

);

346+

expectPolicyFields(

329347

resolveSourceReplyVisibilityPolicy({

330348

cfg: emptyConfig,

331349

ctx: { ChatType: "channel" },

332350

requested: "message_tool_only",

333351

sendPolicy: "allow",

334352

messageToolAvailable: false,

335353

}),

336-

).toMatchObject({

337-

sourceReplyDeliveryMode: "automatic",

338-

suppressAutomaticSourceDelivery: false,

339-

suppressDelivery: false,

340-

deliverySuppressionReason: "",

341-

});

354+

{

355+

sourceReplyDeliveryMode: "automatic",

356+

suppressAutomaticSourceDelivery: false,

357+

suppressDelivery: false,

358+

deliverySuppressionReason: "",

359+

},

360+

);

342361

});

343362

});