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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
有赞技术团队
有赞技术团队
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
罗磊的独立博客
T
Tailwind CSS Blog
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - Franky
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs

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
fix(cli): show configured chat channels in list · opencla...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -1,4 +1,4 @@

1-

import { describe, expect, it, vi } from "vitest";

1+

import { beforeEach, describe, expect, it, vi } from "vitest";

22

import { baseConfigSnapshot, createTestRuntime } from "./test-runtime-config-helpers.js";

3344

const mocks = vi.hoisted(() => ({

@@ -9,7 +9,8 @@ const mocks = vi.hoisted(() => ({

99

diagnostics: [],

1010

})),

1111

loadAuthProfileStoreWithoutExternalProfiles: vi.fn(),

12-

listChannelPlugins: vi.fn(() => []),

12+

listReadOnlyChannelPluginsForConfig: vi.fn(() => []),

13+

buildChannelAccountSnapshot: vi.fn(),

1314

}));

14151516

vi.mock("../config/config.js", () => ({

@@ -28,13 +29,26 @@ vi.mock("../agents/auth-profiles.js", () => ({

2829

loadAuthProfileStoreWithoutExternalProfiles: mocks.loadAuthProfileStoreWithoutExternalProfiles,

2930

}));

303131-

vi.mock("../channels/plugins/index.js", () => ({

32-

listChannelPlugins: mocks.listChannelPlugins,

32+

vi.mock("../channels/plugins/read-only.js", () => ({

33+

listReadOnlyChannelPluginsForConfig: mocks.listReadOnlyChannelPluginsForConfig,

34+

}));

35+36+

vi.mock("../channels/plugins/status.js", () => ({

37+

buildChannelAccountSnapshot: mocks.buildChannelAccountSnapshot,

3338

}));

34393540

import { channelsListCommand } from "./channels/list.js";

36413742

describe("channels list auth profiles", () => {

43+

beforeEach(() => {

44+

mocks.readConfigFileSnapshot.mockReset();

45+

mocks.resolveCommandConfigWithSecrets.mockClear();

46+

mocks.loadAuthProfileStoreWithoutExternalProfiles.mockReset();

47+

mocks.listReadOnlyChannelPluginsForConfig.mockReset();

48+

mocks.listReadOnlyChannelPluginsForConfig.mockReturnValue([]);

49+

mocks.buildChannelAccountSnapshot.mockReset();

50+

});

51+3852

it("includes local auth profiles in JSON output without loading external profiles", async () => {

3953

const runtime = createTestRuntime();

4054

mocks.readConfigFileSnapshot.mockResolvedValue({

@@ -73,4 +87,92 @@ describe("channels list auth profiles", () => {

7387

expect(ids).toContain("anthropic:default");

7488

expect(ids).toContain("openai-codex:default");

7589

});

90+91+

it("includes configured chat channel accounts in JSON output", async () => {

92+

const runtime = createTestRuntime();

93+

mocks.listReadOnlyChannelPluginsForConfig.mockReturnValue([

94+

{

95+

id: "telegram",

96+

meta: { id: "telegram", label: "Telegram" },

97+

config: {

98+

listAccountIds: () => ["alerts", "default"],

99+

},

100+

},

101+

]);

102+

mocks.readConfigFileSnapshot.mockResolvedValue({

103+

...baseConfigSnapshot,

104+

config: {

105+

channels: {

106+

telegram: {

107+

accounts: {

108+

default: { botToken: "123:abc" },

109+

alerts: { botToken: "456:def" },

110+

},

111+

},

112+

},

113+

},

114+

});

115+

mocks.loadAuthProfileStoreWithoutExternalProfiles.mockReturnValue({

116+

version: 1,

117+

profiles: {},

118+

});

119+120+

await channelsListCommand({ json: true, usage: false }, runtime);

121+122+

expect(mocks.listReadOnlyChannelPluginsForConfig).toHaveBeenCalledWith(

123+

expect.any(Object),

124+

expect.objectContaining({ includeSetupRuntimeFallback: true }),

125+

);

126+

const payload = JSON.parse(runtime.log.mock.calls[0]?.[0] as string) as {

127+

chat?: Record<string, string[]>;

128+

};

129+

expect(payload.chat?.telegram).toEqual(["alerts", "default"]);

130+

});

131+132+

it("prints configured chat channel accounts before auth providers", async () => {

133+

const runtime = createTestRuntime();

134+

mocks.listReadOnlyChannelPluginsForConfig.mockReturnValue([

135+

{

136+

id: "telegram",

137+

meta: { id: "telegram", label: "Telegram" },

138+

config: {

139+

listAccountIds: () => ["default"],

140+

},

141+

},

142+

]);

143+

mocks.buildChannelAccountSnapshot.mockResolvedValue({

144+

accountId: "default",

145+

configured: true,

146+

tokenSource: "config",

147+

enabled: true,

148+

});

149+

mocks.readConfigFileSnapshot.mockResolvedValue({

150+

...baseConfigSnapshot,

151+

config: {

152+

channels: {

153+

telegram: {

154+

accounts: {

155+

default: { botToken: "123:abc" },

156+

},

157+

},

158+

},

159+

},

160+

});

161+

mocks.loadAuthProfileStoreWithoutExternalProfiles.mockReturnValue({

162+

version: 1,

163+

profiles: {},

164+

});

165+166+

await channelsListCommand({ usage: false }, runtime);

167+168+

expect(mocks.listReadOnlyChannelPluginsForConfig).toHaveBeenCalledWith(

169+

expect.any(Object),

170+

expect.objectContaining({ includeSetupRuntimeFallback: true }),

171+

);

172+

const output = runtime.log.mock.calls[0]?.[0] as string;

173+

expect(output).toContain("Chat channels:");

174+

expect(output).toContain("Telegram default:");

175+

expect(output).toContain("configured");

176+

expect(output.indexOf("Telegram default:")).toBeLessThan(output.indexOf("Auth providers"));

177+

});

76178

});