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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
B
Blog RSS Feed
L
LangChain Blog
Jina AI
Jina AI
爱范儿
爱范儿
C
Check Point Blog
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
月光博客
月光博客
GbyAI
GbyAI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Stack Overflow Blog
Stack Overflow Blog
V
V2EX
A
About on SuperTechFans
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
The GitHub Blog
The GitHub Blog
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题

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
refactor(agents): remove stale provider auth warm wrapper...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main

@@ -7,6 +7,7 @@ import { afterEach, describe, expect, it, vi } from "vitest";

77

import type { OpenClawConfig } from "../config/types.openclaw.js";

88

import type { AuthProfileStore } from "./auth-profiles.js";

99

import type { ModelCatalogEntry } from "./model-catalog.types.js";

10+

import { publishProviderAuthWarmSnapshot } from "./model-provider-auth-state.js";

10111112

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

1213

loadModelCatalog: vi.fn<(params?: unknown) => Promise<ModelCatalogEntry[]>>(),

@@ -82,10 +83,16 @@ const {

8283

buildCurrentProviderAuthStateSnapshot,

8384

createProviderAuthChecker,

8485

hasAuthForModelProvider,

85-

warmCurrentProviderAuthState,

8686

warmCurrentProviderAuthStateOffMainThread,

8787

} = await import("./model-provider-auth.js");

888889+

async function publishCurrentProviderAuthStateSnapshot(

90+

cfg: OpenClawConfig,

91+

options?: Parameters<typeof buildCurrentProviderAuthStateSnapshot>[1],

92+

): Promise<void> {

93+

publishProviderAuthWarmSnapshot(await buildCurrentProviderAuthStateSnapshot(cfg, options));

94+

}

95+8996

describe("prepared provider auth state", () => {

9097

afterEach(() => {

9198

clearCurrentProviderAuthState();

@@ -102,7 +109,7 @@ describe("prepared provider auth state", () => {

102109

]);

103110

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockReturnValue(false);

104111105-

await warmCurrentProviderAuthState(cfg);

112+

await publishCurrentProviderAuthStateSnapshot(cfg);

106113107114

expect(modelAuthMocks.createRuntimeProviderAuthLookup).toHaveBeenCalledTimes(1);

108115

const firstLookup =

@@ -119,7 +126,7 @@ describe("prepared provider auth state", () => {

119126

]);

120127

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockReturnValue(false);

121128122-

await warmCurrentProviderAuthState(cfg);

129+

await publishCurrentProviderAuthStateSnapshot(cfg);

123130124131

expect(modelCatalogMocks.loadModelCatalog).toHaveBeenCalledWith({

125132

config: cfg,

@@ -193,7 +200,7 @@ describe("prepared provider auth state", () => {

193200

({ provider }) => provider === "openai",

194201

);

195202196-

await warmCurrentProviderAuthState(cfg);

203+

await publishCurrentProviderAuthStateSnapshot(cfg);

197204

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(2);

198205199206

// Flip the underlying answer; if the prepared map is consulted first,

@@ -217,7 +224,7 @@ describe("prepared provider auth state", () => {

217224

]);

218225

// Warm with the broad answer: provider has CLI/synthetic auth.

219226

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockReturnValue(true);

220-

await warmCurrentProviderAuthState(cfg);

227+

await publishCurrentProviderAuthStateSnapshot(cfg);

221228

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(1);

222229223230

// Flip the underlying compute to false. A narrow-scope caller must NOT

@@ -306,7 +313,7 @@ describe("prepared provider auth state", () => {

306313

{ id: "gpt", name: "gpt", provider: "openai" },

307314

]);

308315

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockReturnValue(true);

309-

await warmCurrentProviderAuthState(cfg);

316+

await publishCurrentProviderAuthStateSnapshot(cfg);

310317

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(1);

311318312319

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockReturnValue(false);

@@ -322,7 +329,7 @@ describe("prepared provider auth state", () => {

322329

{ id: "gpt", name: "gpt", provider: "openai" },

323330

]);

324331

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockReturnValue(true);

325-

await warmCurrentProviderAuthState(cfg);

332+

await publishCurrentProviderAuthStateSnapshot(cfg);

326333

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(1);

327334328335

// Per-agent picker calls pass an agent-specific workspaceDir that the

@@ -349,64 +356,25 @@ describe("prepared provider auth state", () => {

349356

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(2);

350357

});

351358352-

it("does not publish an older warm after the prepared auth state is cleared", async () => {

353-

const firstCfg = { gateway: { port: 18789 } } as OpenClawConfig;

354-

const secondCfg = { gateway: { port: 19001 } } as OpenClawConfig;

355-

let resolveFirstCatalog: ((catalog: ModelCatalogEntry[]) => void) | undefined;

356-

let resolveSecondCatalog: ((catalog: ModelCatalogEntry[]) => void) | undefined;

357-

modelCatalogMocks.loadModelCatalog

358-

.mockReturnValueOnce(

359-

new Promise<ModelCatalogEntry[]>((resolve) => {

360-

resolveFirstCatalog = resolve;

361-

}),

362-

)

363-

.mockReturnValueOnce(

364-

new Promise<ModelCatalogEntry[]>((resolve) => {

365-

resolveSecondCatalog = resolve;

366-

}),

367-

);

368-

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockImplementation(

369-

({ cfg }) => cfg === firstCfg,

370-

);

371-372-

const firstWarm = warmCurrentProviderAuthState(firstCfg);

373-

await Promise.resolve();

374-

clearCurrentProviderAuthState();

375-

const secondWarm = warmCurrentProviderAuthState(secondCfg);

376-377-

resolveSecondCatalog?.([{ id: "gpt", name: "gpt", provider: "openai" }]);

378-

await secondWarm;

379-

resolveFirstCatalog?.([{ id: "gpt", name: "gpt", provider: "openai" }]);

380-

await firstWarm;

381-

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(1);

382-383-

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockReturnValue(true);

384-

await expect(hasAuthForModelProvider({ provider: "openai", cfg: secondCfg })).resolves.toBe(

385-

false,

386-

);

387-

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(1);

388-

await expect(hasAuthForModelProvider({ provider: "openai", cfg: firstCfg })).resolves.toBe(

389-

true,

390-

);

391-

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(2);

392-

});

393-394-

it("does not publish a warm that is cancelled before completion", async () => {

359+

it("returns an empty warm snapshot when cancelled before publication", async () => {

395360

const cfg = {} as OpenClawConfig;

396361

let cancelled = false;

397362

modelCatalogMocks.loadModelCatalog.mockResolvedValue([

398363

{ id: "gpt", name: "gpt", provider: "openai" },

399364

]);

400365

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockReturnValue(true);

401366402-

await warmCurrentProviderAuthState(cfg, { isCancelled: () => cancelled });

367+

await publishCurrentProviderAuthStateSnapshot(cfg, { isCancelled: () => cancelled });

403368

await expect(hasAuthForModelProvider({ provider: "openai", cfg })).resolves.toBe(true);

404369

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(1);

405370406371

clearCurrentProviderAuthState();

407372

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockClear();

408373

cancelled = true;

409-

await warmCurrentProviderAuthState(cfg, { isCancelled: () => cancelled });

374+

const cancelledSnapshot = await buildCurrentProviderAuthStateSnapshot(cfg, {

375+

isCancelled: () => cancelled,

376+

});

377+

expect(cancelledSnapshot).toEqual({ agents: [] });

410378411379

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockReturnValue(false);

412380

await expect(hasAuthForModelProvider({ provider: "openai", cfg })).resolves.toBe(false);

@@ -426,7 +394,10 @@ describe("prepared provider auth state", () => {

426394

return false;

427395

});

428396429-

await warmCurrentProviderAuthState(cfg, { isCancelled: () => cancelled });

397+

const snapshot = await buildCurrentProviderAuthStateSnapshot(cfg, {

398+

isCancelled: () => cancelled,

399+

});

400+

expect(snapshot).toEqual({ agents: [] });

430401

expect(modelAuthMocks.hasRuntimeAvailableProviderAuth).toHaveBeenCalledTimes(1);

431402432403

modelAuthMocks.hasRuntimeAvailableProviderAuth.mockClear();