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

推荐订阅源

L
LangChain Blog
B
Blog RSS Feed
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
Vercel News
Vercel News
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 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 discord threading assertions · openclaw/ope...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -48,6 +48,34 @@ async function flushAsyncWork() {

4848

await Promise.resolve();

4949

}

505051+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

52+

expect(value, label).toBeTypeOf("object");

53+

expect(value, label).not.toBeNull();

54+

return value as Record<string, unknown>;

55+

}

56+57+

function callArg(mock: unknown, callIndex: number, argIndex: number, label: string) {

58+

const calls = (mock as { mock?: { calls?: Array<Array<unknown>> } }).mock?.calls ?? [];

59+

const call = calls.at(callIndex);

60+

expect(call, label).toBeDefined();

61+

return call?.[argIndex];

62+

}

63+64+

function expectRestBodyField(mock: unknown, field: string, expected: unknown) {

65+

expect(callArg(mock, 0, 0, "rest path")).toBeTypeOf("string");

66+

const options = requireRecord(callArg(mock, 0, 1, "rest options"), "rest options");

67+

const body = requireRecord(options.body, "rest body");

68+

expect(body[field]).toBe(expected);

69+

}

70+71+

function expectGeneratedTitleField(field: string, expected: unknown) {

72+

const params = requireRecord(

73+

callArg(generateThreadTitleMock, 0, 0, "thread title params"),

74+

"thread title params",

75+

);

76+

expect(params[field]).toBe(expected);

77+

}

78+5179

beforeAll(async () => {

5280

({ maybeCreateDiscordAutoThread } = await import("./threading.js"));

5381

});

@@ -108,10 +136,7 @@ describe("maybeCreateDiscordAutoThread autoArchiveDuration", () => {

108136

channelConfig: { allowed: true, autoThread: true, autoArchiveDuration: "10080" },

109137

}),

110138

);

111-

expect(postMock).toHaveBeenCalledWith(

112-

expect.any(String),

113-

expect.objectContaining({ body: expect.objectContaining({ auto_archive_duration: 10080 }) }),

114-

);

139+

expectRestBodyField(postMock, "auto_archive_duration", 10080);

115140

});

116141117142

it("accepts numeric autoArchiveDuration", async () => {

@@ -121,19 +146,13 @@ describe("maybeCreateDiscordAutoThread autoArchiveDuration", () => {

121146

channelConfig: { allowed: true, autoThread: true, autoArchiveDuration: 4320 },

122147

}),

123148

);

124-

expect(postMock).toHaveBeenCalledWith(

125-

expect.any(String),

126-

expect.objectContaining({ body: expect.objectContaining({ auto_archive_duration: 4320 }) }),

127-

);

149+

expectRestBodyField(postMock, "auto_archive_duration", 4320);

128150

});

129151130152

it("defaults to 60 when autoArchiveDuration not set", async () => {

131153

postMock.mockResolvedValueOnce({ id: "thread1" });

132154

await maybeCreateDiscordAutoThread(createBaseParams());

133-

expect(postMock).toHaveBeenCalledWith(

134-

expect.any(String),

135-

expect.objectContaining({ body: expect.objectContaining({ auto_archive_duration: 60 }) }),

136-

);

155+

expectRestBodyField(postMock, "auto_archive_duration", 60);

137156

});

138157

});

139158

@@ -156,27 +175,16 @@ describe("maybeCreateDiscordAutoThread autoThreadName", () => {

156175

}),

157176

);

158177

expect(result).toBe("thread1");

159-

expect(postMock).toHaveBeenCalledWith(

160-

expect.any(String),

161-

expect.objectContaining({

162-

body: expect.objectContaining({ name: "Need help with deploy rollout" }),

163-

}),

164-

);

178+

expectRestBodyField(postMock, "name", "Need help with deploy rollout");

165179

await flushAsyncWork();

166-

expect(generateThreadTitleMock).toHaveBeenCalledWith(

167-

expect.objectContaining({

168-

agentId: "main",

169-

messageText: "Need help with deploy rollout",

170-

channelName: "openclaw",

171-

channelDescription: "OpenClaw development coordination and release planning",

172-

}),

173-

);

174-

expect(patchMock).toHaveBeenCalledWith(

175-

expect.any(String),

176-

expect.objectContaining({

177-

body: expect.objectContaining({ name: "Deploy rollout summary" }),

178-

}),

180+

expectGeneratedTitleField("agentId", "main");

181+

expectGeneratedTitleField("messageText", "Need help with deploy rollout");

182+

expectGeneratedTitleField("channelName", "openclaw");

183+

expectGeneratedTitleField(

184+

"channelDescription",

185+

"OpenClaw development coordination and release planning",

179186

);

187+

expectRestBodyField(patchMock, "name", "Deploy rollout summary");

180188

});

181189182190

it("does not block thread creation while title summary is pending", async () => {

@@ -231,11 +239,7 @@ describe("maybeCreateDiscordAutoThread autoThreadName", () => {

231239

);

232240233241

await flushAsyncWork();

234-

expect(generateThreadTitleMock).toHaveBeenCalledWith(

235-

expect.objectContaining({

236-

modelRef: "openai/gpt-4.1-mini",

237-

}),

238-

);

242+

expectGeneratedTitleField("modelRef", "openai/gpt-4.1-mini");

239243

});

240244241245

it("falls back to parent channel override for generated title model", async () => {

@@ -264,11 +268,7 @@ describe("maybeCreateDiscordAutoThread autoThreadName", () => {

264268

);

265269266270

await flushAsyncWork();

267-

expect(generateThreadTitleMock).toHaveBeenCalledWith(

268-

expect.objectContaining({

269-

modelRef: "openai/gpt-4.1-mini",

270-

}),

271-

);

271+

expectGeneratedTitleField("modelRef", "openai/gpt-4.1-mini");

272272

});

273273274274

it("skips summarization when cfg or agentId is missing", async () => {