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

推荐订阅源

V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
Recent Announcements
Recent Announcements
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
罗磊的独立博客
小众软件
小众软件
N
Netflix TechBlog - Medium
I
InfoQ
Apple Machine Learning Research
Apple Machine Learning Research
D
DataBreaches.Net
博客园 - Franky
Vercel News
Vercel News
博客园 - 聂微东
G
Google Developers Blog
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队

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(auth-profiles): cover self-heal hook firing + surviv...
sjf · 2026-05-22 · via Recent Commits to openclaw:main

@@ -17,7 +17,11 @@ import {

1717

clearRuntimeAuthProfileStoreSnapshots,

1818

ensureAuthProfileStore,

1919

} from "./auth-profiles/store.js";

20-

import { calculateAuthProfileCooldownMs, markAuthProfileFailure } from "./auth-profiles/usage.js";

20+

import {

21+

calculateAuthProfileCooldownMs,

22+

markAuthProfileFailure,

23+

setAuthProfileFailureHook,

24+

} from "./auth-profiles/usage.js";

21252226

type AuthProfileStore = ReturnType<typeof ensureAuthProfileStore>;

2327

@@ -374,6 +378,46 @@ describe("markAuthProfileFailure", () => {

374378

expect(reloaded.usageStats?.["openrouter:default"]).toBeUndefined();

375379

});

376380

});

381+382+

it("fires the auth profile failure hook so callers can self-heal", async () => {

383+

await withAuthProfileStore(async ({ agentDir, store }) => {

384+

const hook = vi.fn();

385+

setAuthProfileFailureHook(hook);

386+

try {

387+

await markAuthProfileFailure({

388+

store,

389+

profileId: "anthropic:default",

390+

reason: "auth",

391+

agentDir,

392+

});

393+

expect(hook).toHaveBeenCalledTimes(1);

394+

} finally {

395+

setAuthProfileFailureHook(undefined);

396+

}

397+

});

398+

});

399+400+

it("does not break failure recording when the hook throws", async () => {

401+

await withAuthProfileStore(async ({ agentDir, store }) => {

402+

const throwingHook = vi.fn(() => {

403+

throw new Error("boom");

404+

});

405+

setAuthProfileFailureHook(throwingHook);

406+

try {

407+

await markAuthProfileFailure({

408+

store,

409+

profileId: "anthropic:default",

410+

reason: "auth",

411+

agentDir,

412+

});

413+

expect(throwingHook).toHaveBeenCalledTimes(1);

414+

// Failure still got recorded despite the hook throwing.

415+

expect(store.usageStats?.["anthropic:default"]?.errorCount ?? 0).toBeGreaterThan(0);

416+

} finally {

417+

setAuthProfileFailureHook(undefined);

418+

}

419+

});

420+

});

377421

});

378422379423

describe("calculateAuthProfileCooldownMs", () => {