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

推荐订阅源

人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
月光博客
月光博客
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
博客园 - 聂微东
V
V2EX

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: dedupe models auth status mock calls · openclaw/ope...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -78,6 +78,22 @@ function requireRecord(value: unknown): Record<string, unknown> {

7878

return value as Record<string, unknown>;

7979

}

808081+

function firstRespondCall(

82+

opts: GatewayRequestHandlerOptions & { respond: ReturnType<typeof vi.fn> },

83+

) {

84+

return opts.respond.mock.calls.at(0);

85+

}

86+87+

function firstEnsureAuthProfileStoreCall() {

88+

return mocks.ensureAuthProfileStore.mock.calls.at(0);

89+

}

90+91+

function firstBuildAuthHealthSummaryCall() {

92+

return mocks.buildAuthHealthSummary.mock.calls.at(0) as unknown as

93+

| [{ providers?: string[] }]

94+

| undefined;

95+

}

96+8197

function createOpenAiCodexOauthHealthSummary(): AuthHealthSummary {

8298

const profile = {

8399

profileId: "openai-codex:default",

@@ -127,7 +143,7 @@ describe("models.authStatus", () => {

127143

await handler(opts);

128144129145

expect(opts.respond).toHaveBeenCalledTimes(1);

130-

const [ok, payload, error] = opts.respond.mock.calls[0] ?? [];

146+

const [ok, payload, error] = firstRespondCall(opts) ?? [];

131147

expect(ok).toBe(true);

132148

expect(error).toBeUndefined();

133149

const result = payload as ModelAuthStatusResult;

@@ -230,8 +246,8 @@ describe("models.authStatus", () => {

230246

await handler(createOptions());

231247232248

expect(mocks.ensureAuthProfileStore).toHaveBeenCalledTimes(1);

233-

expect(mocks.ensureAuthProfileStore.mock.calls[0]?.[0]).toBe("/tmp/agent");

234-

const [, options] = mocks.ensureAuthProfileStore.mock.calls[0] ?? [];

249+

expect(firstEnsureAuthProfileStoreCall()?.[0]).toBe("/tmp/agent");

250+

const [, options] = firstEnsureAuthProfileStoreCall() ?? [];

235251

const externalCli = requireRecord(requireRecord(options).externalCli);

236252

expect(externalCli.mode).toBe("scoped");

237253

expect(externalCli.allowKeychainPrompt).toBe(false);

@@ -245,8 +261,8 @@ describe("models.authStatus", () => {

245261

await handler(createOptions());

246262247263

expect(mocks.ensureAuthProfileStore).toHaveBeenCalledTimes(1);

248-

expect(mocks.ensureAuthProfileStore.mock.calls[0]?.[0]).toBe("/tmp/agent");

249-

const [, options] = mocks.ensureAuthProfileStore.mock.calls[0] ?? [];

264+

expect(firstEnsureAuthProfileStoreCall()?.[0]).toBe("/tmp/agent");

265+

const [, options] = firstEnsureAuthProfileStoreCall() ?? [];

250266

const externalCli = requireRecord(requireRecord(options).externalCli);

251267

expect(externalCli.mode).toBe("none");

252268

expect(externalCli.allowKeychainPrompt).toBe(false);

@@ -260,7 +276,7 @@ describe("models.authStatus", () => {

260276

const opts = createOptions();

261277

await handler(opts);

262278263-

const [ok, payload] = opts.respond.mock.calls[0] ?? [];

279+

const [ok, payload] = firstRespondCall(opts) ?? [];

264280

expect(ok).toBe(true);

265281

const result = payload as ModelAuthStatusResult;

266282

expect(result.providers).toHaveLength(1);

@@ -313,7 +329,7 @@ describe("models.authStatus", () => {

313329314330

const opts = createOptions();

315331

await handler(opts);

316-

const [, payload] = opts.respond.mock.calls[0] ?? [];

332+

const [, payload] = firstRespondCall(opts) ?? [];

317333

const serialised = JSON.stringify(payload);

318334

expect(serialised).not.toContain("sk-SECRET-TOKEN");

319335

expect(serialised).not.toContain("rt-SECRET-REFRESH");

@@ -332,9 +348,7 @@ describe("models.authStatus", () => {

332348

},

333349

});

334350

await handler(createOptions());

335-

const call = mocks.buildAuthHealthSummary.mock.calls[0] as unknown as

336-

| [{ providers?: string[] }]

337-

| undefined;

351+

const call = firstBuildAuthHealthSummaryCall();

338352

expect(call?.[0]?.providers).toBeUndefined();

339353

});

340354

@@ -359,9 +373,7 @@ describe("models.authStatus", () => {

359373

},

360374

});

361375

await handler(createOptions());

362-

const call = mocks.buildAuthHealthSummary.mock.calls[0] as unknown as

363-

| [{ providers?: string[] }]

364-

| undefined;

376+

const call = firstBuildAuthHealthSummaryCall();

365377

expect(call?.[0]?.providers).toEqual(["openai-codex"]);

366378

});

367379

@@ -383,9 +395,7 @@ describe("models.authStatus", () => {

383395

});

384396

try {

385397

await handler(createOptions());

386-

const call = mocks.buildAuthHealthSummary.mock.calls[0] as unknown as

387-

| [{ providers?: string[] }]

388-

| undefined;

398+

const call = firstBuildAuthHealthSummaryCall();

389399

expect(call?.[0]?.providers).toBeUndefined();

390400

} finally {

391401

delete process.env.MODELS_AUTH_STATUS_TEST_SET_KEY;

@@ -410,9 +420,7 @@ describe("models.authStatus", () => {

410420

},

411421

});

412422

await handler(createOptions());

413-

const call = mocks.buildAuthHealthSummary.mock.calls[0] as unknown as

414-

| [{ providers?: string[] }]

415-

| undefined;

423+

const call = firstBuildAuthHealthSummaryCall();

416424

expect(call?.[0]?.providers).toBeUndefined();

417425

});

418426

@@ -447,7 +455,7 @@ describe("models.authStatus", () => {

447455

});

448456

const opts = createOptions();

449457

await handler(opts);

450-

const [, payload] = opts.respond.mock.calls[0] ?? [];

458+

const [, payload] = firstRespondCall(opts) ?? [];

451459

const result = payload as ModelAuthStatusResult;

452460

expect(result.providers[0]?.status).toBe("missing");

453461

});

@@ -482,7 +490,7 @@ describe("models.authStatus", () => {

482490483491

const opts = createOptions();

484492

await handler(opts);

485-

const [, payload] = opts.respond.mock.calls[0] ?? [];

493+

const [, payload] = firstRespondCall(opts) ?? [];

486494

const result = payload as ModelAuthStatusResult;

487495

expect(result.providers[0]?.status).toBe("missing");

488496

});

@@ -494,7 +502,7 @@ describe("models.authStatus", () => {

494502495503

const opts = createOptions();

496504

await handler(opts);

497-

const [ok, payload, error] = opts.respond.mock.calls[0] ?? [];

505+

const [ok, payload, error] = firstRespondCall(opts) ?? [];

498506

expect(ok).toBe(false);

499507

expect(payload).toBeUndefined();

500508

expect(String(requireRecord(error).code)).toMatch(/unavailable/i);