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

推荐订阅源

量子位
Recent Announcements
Recent Announcements
D
Docker
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
腾讯CDC
B
Blog
博客园_首页
罗磊的独立博客
D
DataBreaches.Net
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence

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: clear configure channels broad matchers · openclaw/...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -42,18 +42,41 @@ async function removeUnsafeChannelConfig(unsafeChannel: string) {

4242

);

4343

}

444445+

function selectArg(index = 0): {

46+

message?: string;

47+

options?: Array<{ value: unknown; label: string }>;

48+

} {

49+

const call = select.mock.calls[index];

50+

expect(call).toBeDefined();

51+

return call?.[0] as { message?: string; options?: Array<{ value: unknown; label: string }> };

52+

}

53+54+

function confirmArg(index = 0): { message?: string } {

55+

const call = confirm.mock.calls[index];

56+

expect(call).toBeDefined();

57+

return call?.[0] as { message?: string };

58+

}

59+60+

function expectOption(

61+

options: Array<{ value: unknown; label: string }> | undefined,

62+

value: unknown,

63+

label: string,

64+

) {

65+

expect(

66+

options?.some(

67+

(option) => option.label === label && JSON.stringify(option.value) === JSON.stringify(value),

68+

),

69+

).toBe(true);

70+

}

71+72+

function optionLabels(options: Array<{ value: unknown; label: string }> | undefined) {

73+

return options?.map((option) => ({ value: option.value, label: option.label }));

74+

}

75+4576

function expectUnknownChannelRemovalPrompt(unsafeChannel: string, label: string) {

46-

expect(select).toHaveBeenCalledWith(

47-

expect.objectContaining({

48-

options: expect.arrayContaining([

49-

expect.objectContaining({ value: channelChoice(unsafeChannel), label }),

50-

]),

51-

}),

52-

);

53-

expect(confirm).toHaveBeenCalledWith(

54-

expect.objectContaining({

55-

message: `Delete ${label} configuration from ~/.openclaw/openclaw.json?`,

56-

}),

77+

expectOption(selectArg().options, channelChoice(unsafeChannel), label);

78+

expect(confirmArg().message).toBe(

79+

`Delete ${label} configuration from ~/.openclaw/openclaw.json?`,

5780

);

5881

expect(note).toHaveBeenCalledWith(

5982

`${label} removed from config.\nNote: credentials/sessions on disk are unchanged.`,

@@ -87,17 +110,14 @@ describe("removeChannelConfigWizard", () => {

87110

{} as never,

88111

);

8911290-

expect(select).toHaveBeenCalledWith(

91-

expect.objectContaining({

92-

message: "Remove which channel config?",

93-

options: [

94-

expect.objectContaining({ value: channelChoice("telegram"), label: "Telegram" }),

95-

expect.objectContaining({ value: channelChoice("twitch"), label: "Twitch" }),

96-

expect.objectContaining({ value: channelChoice("unknown"), label: "unknown" }),

97-

{ value: doneChoice, label: "Done" },

98-

],

99-

}),

100-

);

113+

const prompt = selectArg();

114+

expect(prompt.message).toBe("Remove which channel config?");

115+

expect(optionLabels(prompt.options)).toEqual([

116+

{ value: channelChoice("telegram"), label: "Telegram" },

117+

{ value: channelChoice("twitch"), label: "Twitch" },

118+

{ value: channelChoice("unknown"), label: "unknown" },

119+

{ value: doneChoice, label: "Done" },

120+

]);

101121

});

102122103123

it("deletes the selected channel block from openclaw.json", async () => {

@@ -113,10 +133,8 @@ describe("removeChannelConfigWizard", () => {

113133

{} as never,

114134

);

115135116-

expect(confirm).toHaveBeenCalledWith(

117-

expect.objectContaining({

118-

message: "Delete Telegram configuration from ~/.openclaw/openclaw.json?",

119-

}),

136+

expect(confirmArg().message).toBe(

137+

"Delete Telegram configuration from ~/.openclaw/openclaw.json?",

120138

);

121139

expect(next.channels).toEqual({ twitch: { token: "secret" } });

122140

expect(note).toHaveBeenCalledWith(

@@ -138,11 +156,7 @@ describe("removeChannelConfigWizard", () => {

138156

{} as never,

139157

);

140158141-

expect(confirm).toHaveBeenCalledWith(

142-

expect.objectContaining({

143-

message: "Delete done configuration from ~/.openclaw/openclaw.json?",

144-

}),

145-

);

159+

expect(confirmArg().message).toBe("Delete done configuration from ~/.openclaw/openclaw.json?");

146160

expect(next.channels).toEqual({ telegram: { token: "secret" } });

147161

expect(note).toHaveBeenCalledWith(

148162

"done removed from config.\nNote: credentials/sessions on disk are unchanged.",

@@ -185,14 +199,10 @@ describe("removeChannelConfigWizard", () => {

185199

{} as never,

186200

);

187201188-

expect(select).toHaveBeenCalledWith(

189-

expect.objectContaining({

190-

options: [

191-

expect.objectContaining({ value: channelChoice("telegram"), label: "Telegram" }),

192-

{ value: doneChoice, label: "Done" },

193-

],

194-

}),

195-

);

202+

expect(optionLabels(selectArg().options)).toEqual([

203+

{ value: channelChoice("telegram"), label: "Telegram" },

204+

{ value: doneChoice, label: "Done" },

205+

]);

196206

});

197207198208

it("sanitizes known channel labels before rendering prompts", async () => {

@@ -211,17 +221,9 @@ describe("removeChannelConfigWizard", () => {

211221

{} as never,

212222

);

213223214-

expect(select).toHaveBeenCalledWith(

215-

expect.objectContaining({

216-

options: expect.arrayContaining([

217-

expect.objectContaining({ value: channelChoice("telegram"), label: "Telegram\\nBot" }),

218-

]),

219-

}),

220-

);

221-

expect(confirm).toHaveBeenCalledWith(

222-

expect.objectContaining({

223-

message: "Delete Telegram\\nBot configuration from ~/.openclaw/openclaw.json?",

224-

}),

224+

expectOption(selectArg().options, channelChoice("telegram"), "Telegram\\nBot");

225+

expect(confirmArg().message).toBe(

226+

"Delete Telegram\\nBot configuration from ~/.openclaw/openclaw.json?",

225227

);

226228

expect(note).toHaveBeenCalledWith(

227229

"Telegram\\nBot removed from config.\nNote: credentials/sessions on disk are unchanged.",