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

推荐订阅源

IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
P
Proofpoint News Feed
The Cloudflare Blog
D
Docker
大猫的无限游戏
大猫的无限游戏

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(doctor): label auth health by agent (#85924) · opencl...
giodl73-repo · 2026-05-29 · via Recent Commits to openclaw:main
1-

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

1+

import fs from "node:fs";

2+

import os from "node:os";

3+

import path from "node:path";

4+

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

25

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

36

import type { DoctorPrompter } from "./doctor-prompter.js";

4758

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

6-

ensureAuthProfileStore: vi.fn(() => {

9+

ensureAuthProfileStore: vi.fn<

10+

(

11+

agentDir?: string,

12+

options?: { allowKeychainPrompt?: boolean },

13+

) => {

14+

version: number;

15+

profiles: Record<

16+

string,

17+

{ type: "oauth"; provider: string; access: string; refresh: string; expires: number }

18+

>;

19+

}

20+

>(() => {

721

throw new Error("unexpected auth profile load");

822

}),

9-

hasAnyAuthProfileStoreSource: vi.fn(() => false),

23+

hasAnyAuthProfileStoreSource: vi.fn((_agentDir?: string) => false),

1024

resolveApiKeyForProfile: vi.fn(),

1125

resolveProfileUnusableUntilForDisplay: vi.fn(),

1226

}));

@@ -20,9 +34,48 @@ vi.mock("../agents/auth-profiles.js", () => ({

20342135

vi.mock("../terminal/note.js", () => ({ note: vi.fn() }));

223637+

import { note } from "../terminal/note.js";

2338

import { noteAuthProfileHealth } from "./doctor-auth.js";

243940+

const noteMock = vi.mocked(note);

41+2542

describe("noteAuthProfileHealth", () => {

43+

let tempDir: string;

44+45+

beforeEach(() => {

46+

tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-doctor-auth-"));

47+

authProfileMocks.ensureAuthProfileStore.mockReset();

48+

authProfileMocks.hasAnyAuthProfileStoreSource.mockReset();

49+

authProfileMocks.hasAnyAuthProfileStoreSource.mockReturnValue(false);

50+

authProfileMocks.resolveApiKeyForProfile.mockReset();

51+

authProfileMocks.resolveProfileUnusableUntilForDisplay.mockReset();

52+

noteMock.mockReset();

53+

});

54+55+

afterEach(() => {

56+

vi.restoreAllMocks();

57+

fs.rmSync(tempDir, { recursive: true, force: true });

58+

});

59+60+

function writeAuthStore(agentDir: string): void {

61+

fs.mkdirSync(agentDir, { recursive: true });

62+

fs.writeFileSync(path.join(agentDir, "auth-profiles.json"), "{}\n", "utf8");

63+

}

64+65+

function expiredStore(profileId: string, expires: number) {

66+

return {

67+

version: 1,

68+

profiles: {

69+

[profileId]: {

70+

type: "oauth" as const,

71+

provider: "openai-codex",

72+

access: "access",

73+

refresh: "refresh",

74+

expires,

75+

},

76+

},

77+

};

78+

}

2679

it("skips external auth profile resolution when no auth source exists", async () => {

2780

await noteAuthProfileHealth({

2881

cfg: { channels: { telegram: { enabled: true } } } as OpenClawConfig,

@@ -33,4 +86,110 @@ describe("noteAuthProfileHealth", () => {

3386

expect(authProfileMocks.hasAnyAuthProfileStoreSource).toHaveBeenCalledOnce();

3487

expect(authProfileMocks.ensureAuthProfileStore).not.toHaveBeenCalled();

3588

});

89+90+

it("checks the configured default agent auth store source", async () => {

91+

const defaultDir = path.join(tempDir, "custom-default");

92+

authProfileMocks.hasAnyAuthProfileStoreSource.mockImplementation(

93+

(agentDir) => agentDir === defaultDir,

94+

);

95+

authProfileMocks.ensureAuthProfileStore.mockReturnValue({

96+

version: 1,

97+

profiles: {},

98+

});

99+100+

await noteAuthProfileHealth({

101+

cfg: {

102+

agents: {

103+

list: [{ id: "main", default: true, agentDir: defaultDir }],

104+

},

105+

} as OpenClawConfig,

106+

prompter: {} as DoctorPrompter,

107+

allowKeychainPrompt: false,

108+

});

109+110+

expect(authProfileMocks.hasAnyAuthProfileStoreSource).toHaveBeenCalledWith(defaultDir);

111+

expect(authProfileMocks.ensureAuthProfileStore).toHaveBeenCalledWith(defaultDir, {

112+

allowKeychainPrompt: false,

113+

});

114+

});

115+116+

it("labels model auth diagnostics by agent when multiple agent auth stores are checked", async () => {

117+

const now = 1_700_000_000_000;

118+

vi.spyOn(Date, "now").mockReturnValue(now);

119+

const mainDir = path.join(tempDir, "main-agent");

120+

const coderDir = path.join(tempDir, "coder-agent");

121+

writeAuthStore(mainDir);

122+

writeAuthStore(coderDir);

123+

authProfileMocks.hasAnyAuthProfileStoreSource.mockReturnValue(true);

124+

authProfileMocks.ensureAuthProfileStore.mockImplementation((agentDir) => {

125+

if (agentDir === mainDir) {

126+

return expiredStore("openai-codex:main", now - 60_000);

127+

}

128+

if (agentDir === coderDir) {

129+

return expiredStore("openai-codex:coder", now - 60_000);

130+

}

131+

throw new Error(`unexpected agent dir: ${agentDir ?? "<default>"}`);

132+

});

133+134+

await noteAuthProfileHealth({

135+

cfg: {

136+

agents: {

137+

list: [

138+

{ id: "main", default: true, agentDir: mainDir },

139+

{ id: "coder", agentDir: coderDir },

140+

],

141+

},

142+

} as OpenClawConfig,

143+

prompter: {

144+

confirmAutoFix: vi.fn(async () => false),

145+

} as unknown as DoctorPrompter,

146+

allowKeychainPrompt: false,

147+

});

148+149+

expect(noteMock).toHaveBeenCalledWith(

150+

expect.stringContaining("openai-codex:main"),

151+

"Model auth (agent: main)",

152+

);

153+

expect(noteMock).toHaveBeenCalledWith(

154+

expect.stringContaining("openai-codex:coder"),

155+

"Model auth (agent: coder)",

156+

);

157+

});

158+159+

it("passes the target agent dir when refreshing OAuth profiles", async () => {

160+

const now = 1_700_000_000_000;

161+

vi.spyOn(Date, "now").mockReturnValue(now);

162+

const coderDir = path.join(tempDir, "coder-agent");

163+

writeAuthStore(coderDir);

164+

authProfileMocks.hasAnyAuthProfileStoreSource.mockReturnValue(false);

165+

authProfileMocks.ensureAuthProfileStore.mockImplementation((agentDir) => {

166+

if (agentDir === coderDir) {

167+

return expiredStore("openai-codex:coder", now - 60_000);

168+

}

169+

return { version: 1, profiles: {} };

170+

});

171+

authProfileMocks.resolveApiKeyForProfile.mockResolvedValue("token");

172+173+

await noteAuthProfileHealth({

174+

cfg: {

175+

agents: {

176+

list: [

177+

{ id: "main", default: true, agentDir: path.join(tempDir, "main-agent") },

178+

{ id: "coder", agentDir: coderDir },

179+

],

180+

},

181+

} as OpenClawConfig,

182+

prompter: {

183+

confirmAutoFix: vi.fn(async () => true),

184+

} as unknown as DoctorPrompter,

185+

allowKeychainPrompt: false,

186+

});

187+188+

expect(authProfileMocks.resolveApiKeyForProfile).toHaveBeenCalledWith(

189+

expect.objectContaining({

190+

agentDir: coderDir,

191+

profileId: "openai-codex:coder",

192+

}),

193+

);

194+

});

36195

});