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

推荐订阅源

The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
博客园 - 司徒正美
Last Week in AI
Last Week in AI
爱范儿
爱范儿
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
量子位
V
V2EX
博客园 - 叶小钗
宝玉的分享
宝玉的分享
T
Tailwind CSS 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 auth assertions · openclaw/openclaw...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -78,6 +78,34 @@ vi.mock("../commands/channel-setup/plugin-install.js", () => ({

7878

mocks.loadChannelSetupPluginRegistrySnapshotForChannel,

7979

}));

808081+

function expectFields(value: unknown, expected: Record<string, unknown>): void {

82+

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

83+

expect(value).not.toBeNull();

84+

const record = value as Record<string, unknown>;

85+

for (const [key, expectedValue] of Object.entries(expected)) {

86+

expect(record[key], key).toEqual(expectedValue);

87+

}

88+

}

89+90+

function readFirstCallArg(mock: ReturnType<typeof vi.fn>): Record<string, unknown> {

91+

const [arg] = mock.mock.calls[0] ?? [];

92+

expect(arg).toBeTypeOf("object");

93+

expect(arg).not.toBeNull();

94+

return arg as Record<string, unknown>;

95+

}

96+97+

function findCallArg(

98+

mock: ReturnType<typeof vi.fn>,

99+

predicate: (arg: Record<string, unknown>) => boolean,

100+

): Record<string, unknown> | undefined {

101+

for (const [arg] of mock.mock.calls) {

102+

if (arg && typeof arg === "object" && predicate(arg as Record<string, unknown>)) {

103+

return arg as Record<string, unknown>;

104+

}

105+

}

106+

return undefined;

107+

}

108+81109

describe("channel-auth", () => {

82110

const runtime = { log: vi.fn(), error: vi.fn(), exit: vi.fn() };

83111

const plugin = {

@@ -164,15 +192,13 @@ describe("channel-auth", () => {

164192165193

expect(mocks.setVerbose).toHaveBeenCalledWith(true);

166194

expect(mocks.resolveChannelDefaultAccountId).not.toHaveBeenCalled();

167-

expect(mocks.login).toHaveBeenCalledWith(

168-

expect.objectContaining({

169-

cfg: { channels: { whatsapp: {} } },

170-

accountId: "acct-1",

171-

runtime,

172-

verbose: true,

173-

channelInput: "wa",

174-

}),

175-

);

195+

expectFields(readFirstCallArg(mocks.login), {

196+

cfg: { channels: { whatsapp: {} } },

197+

accountId: "acct-1",

198+

runtime,

199+

verbose: true,

200+

channelInput: "wa",

201+

});

176202

expect(mocks.callGateway).toHaveBeenCalledWith({

177203

config: { channels: { whatsapp: {} } },

178204

method: "channels.start",

@@ -195,7 +221,7 @@ describe("channel-auth", () => {

195221

await runChannelLogin({ channel: "whatsapp", account: "acct-1" }, runtime);

196222197223

expect(mocks.callGateway).not.toHaveBeenCalled();

198-

expect(runtime.log).toHaveBeenCalledWith(expect.stringContaining("Gateway is in remote mode"));

224+

expect(String(runtime.log.mock.calls[0]?.[0])).toContain("Gateway is in remote mode");

199225

});

200226201227

it("keeps login successful when local gateway runtime reconcile fails", async () => {

@@ -205,20 +231,16 @@ describe("channel-auth", () => {

205231

runChannelLogin({ channel: "whatsapp", account: "acct-1" }, runtime),

206232

).resolves.toBeUndefined();

207233208-

expect(runtime.log).toHaveBeenCalledWith(

209-

expect.stringContaining("running gateway did not restart it: gateway unreachable"),

234+

expect(String(runtime.log.mock.calls[0]?.[0])).toContain(

235+

"running gateway did not restart it: gateway unreachable",

210236

);

211237

});

212238213239

it("auto-picks the single configured channel that supports login when opts are empty", async () => {

214240

await runChannelLogin({}, runtime);

215241216242

expect(mocks.normalizeChannelId).toHaveBeenCalledWith("whatsapp");

217-

expect(mocks.login).toHaveBeenCalledWith(

218-

expect.objectContaining({

219-

channelInput: "whatsapp",

220-

}),

221-

);

243+

expectFields(readFirstCallArg(mocks.login), { channelInput: "whatsapp" });

222244

});

223245224246

it("does not auto-pick enabled-only channel stubs when channel is omitted", async () => {

@@ -241,12 +263,10 @@ describe("channel-auth", () => {

241263

config: {},

242264

env: process.env,

243265

});

244-

expect(mocks.login).toHaveBeenCalledWith(

245-

expect.objectContaining({

246-

cfg: autoEnabledCfg,

247-

channelInput: "whatsapp",

248-

}),

249-

);

266+

expectFields(readFirstCallArg(mocks.login), {

267+

cfg: autoEnabledCfg,

268+

channelInput: "whatsapp",

269+

});

250270

expect(mocks.replaceConfigFile).toHaveBeenCalledWith({

251271

nextConfig: autoEnabledCfg,

252272

baseHash: "config-1",

@@ -260,12 +280,10 @@ describe("channel-auth", () => {

260280261281

await runChannelLogout({}, runtime);

262282263-

expect(mocks.callGateway).toHaveBeenCalledWith(

264-

expect.objectContaining({

265-

config: autoEnabledCfg,

266-

method: "channels.logout",

267-

}),

268-

);

283+

expectFields(readFirstCallArg(mocks.callGateway), {

284+

config: autoEnabledCfg,

285+

method: "channels.logout",

286+

});

269287

expect(mocks.replaceConfigFile).toHaveBeenCalledWith({

270288

nextConfig: autoEnabledCfg,

271289

baseHash: "config-1",

@@ -386,19 +404,21 @@ describe("channel-auth", () => {

386404387405

await runChannelLogin({ channel: "whatsapp" }, runtime);

388406389-

expect(mocks.ensureChannelSetupPluginInstalled).toHaveBeenCalledWith(

390-

expect.objectContaining({

391-

entry: catalogEntry,

392-

runtime,

393-

workspaceDir: "/tmp/workspace",

394-

}),

395-

);

396-

expect(mocks.loadChannelSetupPluginRegistrySnapshotForChannel).toHaveBeenCalledWith(

397-

expect.objectContaining({

407+

expectFields(readFirstCallArg(mocks.ensureChannelSetupPluginInstalled), {

408+

entry: catalogEntry,

409+

runtime,

410+

workspaceDir: "/tmp/workspace",

411+

});

412+

expectFields(

413+

findCallArg(

414+

mocks.loadChannelSetupPluginRegistrySnapshotForChannel,

415+

(arg) => arg.pluginId === "whatsapp",

416+

),

417+

{

398418

channel: "whatsapp",

399419

pluginId: "whatsapp",

400420

workspaceDir: "/tmp/workspace",

401-

}),

421+

},

402422

);

403423

expect(mocks.replaceConfigFile).toHaveBeenCalledWith({

404424

nextConfig: { channels: { whatsapp: {} } },

@@ -462,16 +482,14 @@ describe("channel-auth", () => {

462482

baseHash: "config-1",

463483

writeOptions: { unsetPaths: [["plugins", "installs"]] },

464484

});

465-

expect(mocks.login).toHaveBeenCalledWith(

466-

expect.objectContaining({

467-

cfg: {

468-

channels: { whatsapp: {} },

469-

plugins: {

470-

entries: { whatsapp: { enabled: true } },

471-

},

485+

expectFields(readFirstCallArg(mocks.login), {

486+

cfg: {

487+

channels: { whatsapp: {} },

488+

plugins: {

489+

entries: { whatsapp: { enabled: true } },

472490

},

473-

}),

474-

);

491+

},

492+

});

475493

});

476494477495

it("resolves explicit channel login through the catalog when registry normalize misses", async () => {

@@ -505,18 +523,13 @@ describe("channel-auth", () => {

505523506524

await runChannelLogin({ channel: "whatsapp" }, runtime);

507525508-

expect(mocks.ensureChannelSetupPluginInstalled).toHaveBeenCalledWith(

509-

expect.objectContaining({

510-

entry: expect.objectContaining({ id: "whatsapp" }),

511-

runtime,

512-

workspaceDir: "/tmp/workspace",

513-

}),

514-

);

515-

expect(mocks.login).toHaveBeenCalledWith(

516-

expect.objectContaining({

517-

channelInput: "whatsapp",

518-

}),

519-

);

526+

const installArg = readFirstCallArg(mocks.ensureChannelSetupPluginInstalled);

527+

expectFields(installArg, {

528+

runtime,

529+

workspaceDir: "/tmp/workspace",

530+

});

531+

expectFields(installArg.entry, { id: "whatsapp" });

532+

expectFields(readFirstCallArg(mocks.login), { channelInput: "whatsapp" });

520533

});

521534522535

it("runs logout through the live gateway with resolved account and explicit account id", async () => {

@@ -550,8 +563,8 @@ describe("channel-auth", () => {

550563

account: { id: "resolved-account" },

551564

runtime,

552565

});

553-

expect(runtime.log).toHaveBeenCalledWith(

554-

expect.stringContaining("running gateway did not stop it: gateway unreachable"),

566+

expect(String(runtime.log.mock.calls[0]?.[0])).toContain(

567+

"running gateway did not stop it: gateway unreachable",

555568

);

556569

expect(mocks.setVerbose).not.toHaveBeenCalled();

557570

});