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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
Engineering at Meta
Engineering at Meta
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
H
Hackread – Cybersecurity News, Data Breaches, AI and More
WordPress大学
WordPress大学
博客园_首页
美团技术团队
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
J
Java Code Geeks
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
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 embedded fallback assertions · openclaw/ope...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -184,6 +184,16 @@ async function readUsageStats(agentDir: string) {

184184

return JSON.parse(raw).usageStats as Record<string, Record<string, unknown> | undefined>;

185185

}

186186187+

function expectFailureCount(

188+

usageStats: Record<string, Record<string, unknown> | undefined>,

189+

profileId: string,

190+

reason: AuthProfileFailureReason,

191+

expected: number,

192+

) {

193+

const failureCounts = usageStats[profileId]?.failureCounts as Record<string, unknown> | undefined;

194+

expect(failureCounts?.[reason]).toBe(expected);

195+

}

196+187197

async function writeMultiProfileAuthStore(agentDir: string) {

188198

await fs.writeFile(

189199

path.join(agentDir, "auth-profiles.json"),

@@ -393,10 +403,8 @@ describe("runWithModelFallback + runEmbeddedPiAgent failover behavior", () => {

393403

enqueue: async (task) => await task(),

394404

});

395405396-

expect(result.meta.toolSummary).toMatchObject({

397-

calls: 1,

398-

tools: ["write"],

399-

});

406+

expect(result.meta.toolSummary?.calls).toBe(1);

407+

expect(result.meta.toolSummary?.tools).toEqual(["write"]);

400408

expect(

401409

classifyEmbeddedPiRunResultForModelFallback({

402410

provider: "openai-codex",

@@ -468,7 +476,7 @@ describe("runWithModelFallback + runEmbeddedPiAgent failover behavior", () => {

468476469477

const usageStats = await readUsageStats(agentDir);

470478

expect(typeof usageStats["openai:p1"]?.cooldownUntil).toBe("number");

471-

expect(usageStats["openai:p1"]?.failureCounts).toMatchObject({ overloaded: 1 });

479+

expectFailureCount(usageStats, "openai:p1", "overloaded", 1);

472480

expect(typeof usageStats["groq:p1"]?.lastUsed).toBe("number");

473481474482

expectOpenAiThenGroqAttemptOrder();

@@ -570,14 +578,6 @@ describe("runWithModelFallback + runEmbeddedPiAgent failover behavior", () => {

570578

/openai\/mock-1: .* \(overloaded\) \| groq\/mock-2: .* \(overloaded\)/,

571579

);

572580573-

const usageStats = await readUsageStats(agentDir);

574-

expect(typeof usageStats["openai:p1"]?.cooldownUntil).toBe("number");

575-

expect(typeof usageStats["groq:p1"]?.cooldownUntil).toBe("number");

576-

expect(usageStats["openai:p1"]?.failureCounts).toMatchObject({ overloaded: 1 });

577-

expect(usageStats["groq:p1"]?.failureCounts).toMatchObject({ overloaded: 1 });

578-

expect(usageStats["openai:p1"]?.disabledUntil).toBeUndefined();

579-

expect(usageStats["groq:p1"]?.disabledUntil).toBeUndefined();

580-581581

expect(runEmbeddedAttemptMock).toHaveBeenCalledTimes(2);

582582

expect(computeBackoffMock).not.toHaveBeenCalled();

583583

expect(sleepWithAbortMock).not.toHaveBeenCalled();

@@ -641,7 +641,7 @@ describe("runWithModelFallback + runEmbeddedPiAgent failover behavior", () => {

641641642642

const usageStats = await readUsageStats(agentDir);

643643

expect(typeof usageStats["openai:p1"]?.cooldownUntil).toBe("number");

644-

expect(usageStats["openai:p1"]?.failureCounts).toMatchObject({ overloaded: 2 });

644+

expectFailureCount(usageStats, "openai:p1", "overloaded", 2);

645645

expect(computeBackoffMock).not.toHaveBeenCalled();

646646

expect(sleepWithAbortMock).not.toHaveBeenCalled();

647647

});

@@ -680,8 +680,9 @@ describe("runWithModelFallback + runEmbeddedPiAgent failover behavior", () => {

680680

throw new Error("aborted");

681681

});

682682683-

await expect(

684-

runEmbeddedFallback({

683+

let thrown: unknown;

684+

try {

685+

await runEmbeddedFallback({

685686

agentDir,

686687

workspaceDir,

687688

sessionKey: "agent:test:overloaded-backoff-abort",

@@ -691,11 +692,14 @@ describe("runWithModelFallback + runEmbeddedPiAgent failover behavior", () => {

691692

...makeConfig(),

692693

auth: { cooldowns: { overloadedBackoffMs: 321 } },

693694

},

694-

}),

695-

).rejects.toMatchObject({

696-

name: "AbortError",

697-

message: "Operation aborted",

698-

});

695+

});

696+

} catch (error) {

697+

thrown = error;

698+

}

699+700+

expect(thrown).toBeInstanceOf(Error);

701+

expect((thrown as Error).name).toBe("AbortError");

702+

expect((thrown as Error).message).toBe("Operation aborted");

699703700704

expect(runEmbeddedAttemptMock).toHaveBeenCalledTimes(1);

701705

const firstCall = runEmbeddedAttemptMock.mock.calls[0]?.[0] as