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

推荐订阅源

月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
博客园 - 聂微东
V
Visual Studio Blog
博客园_首页
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
F
Fortinet All Blogs
C
Check Point Blog
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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 live model switch assertions · openclaw/ope...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -650,6 +650,35 @@ function setupModelSwitchRetry(switchOptions: ModelSwitchOptions) {

650650

});

651651

}

652652653+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

654+

if (!value || typeof value !== "object") {

655+

throw new Error(`expected ${label} to be an object`);

656+

}

657+

return value as Record<string, unknown>;

658+

}

659+660+

function requireArray(value: unknown, label: string): unknown[] {

661+

if (!Array.isArray(value)) {

662+

throw new Error(`expected ${label} to be an array`);

663+

}

664+

return value;

665+

}

666+667+

function mockCallArg(mock: ReturnType<typeof vi.fn>, callIndex = 0, argIndex = 0): unknown {

668+

const call = mock.mock.calls[callIndex] as unknown[] | undefined;

669+

if (!call) {

670+

throw new Error(`expected mock call ${callIndex}`);

671+

}

672+

return call[argIndex];

673+

}

674+675+

function expectRecordFields(value: unknown, expected: Record<string, unknown>): void {

676+

const actual = requireRecord(value, "record");

677+

for (const [key, expectedValue] of Object.entries(expected)) {

678+

expect(actual[key]).toEqual(expectedValue);

679+

}

680+

}

681+653682

async function runBasicAgentCommand() {

654683

await agentCommand({

655684

message: "hello",

@@ -660,10 +689,10 @@ async function runBasicAgentCommand() {

660689661690

function expectFallbackOverrideCalls(first: boolean, second: boolean) {

662691

expect(state.resolveEffectiveModelFallbacksMock).toHaveBeenCalledTimes(2);

663-

expect(state.resolveEffectiveModelFallbacksMock.mock.calls[0][0]).toMatchObject({

692+

expectRecordFields(mockCallArg(state.resolveEffectiveModelFallbacksMock, 0), {

664693

hasSessionModelOverride: first,

665694

});

666-

expect(state.resolveEffectiveModelFallbacksMock.mock.calls[1][0]).toMatchObject({

695+

expectRecordFields(mockCallArg(state.resolveEffectiveModelFallbacksMock, 1), {

667696

hasSessionModelOverride: second,

668697

});

669698

}

@@ -785,20 +814,19 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

785814

thinking: "xhigh",

786815

});

787816788-

expect(state.isThinkingLevelSupportedMock).toHaveBeenCalledWith(

789-

expect.objectContaining({

790-

provider: "gmn",

791-

model: "gpt-5.4",

792-

level: "xhigh",

793-

catalog: [

794-

expect.objectContaining({

795-

provider: "gmn",

796-

id: "gpt-5.4",

797-

compat: { supportedReasoningEfforts: ["low", "medium", "high", "xhigh"] },

798-

}),

799-

],

800-

}),

817+

const thinkingArgs = requireRecord(

818+

mockCallArg(state.isThinkingLevelSupportedMock),

819+

"thinking args",

801820

);

821+

expect(thinkingArgs.provider).toBe("gmn");

822+

expect(thinkingArgs.model).toBe("gpt-5.4");

823+

expect(thinkingArgs.level).toBe("xhigh");

824+

const catalog = requireArray(thinkingArgs.catalog, "thinking catalog");

825+

expectRecordFields(catalog[0], {

826+

provider: "gmn",

827+

id: "gpt-5.4",

828+

compat: { supportedReasoningEfforts: ["low", "medium", "high", "xhigh"] },

829+

});

802830

});

803831804832

it("validates explicit thinking against allowlisted configured model compat when manifest catalog is empty", async () => {

@@ -846,20 +874,19 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

846874

});

847875848876

expect(state.loadManifestModelCatalogMock).toHaveBeenCalled();

849-

expect(state.isThinkingLevelSupportedMock).toHaveBeenCalledWith(

850-

expect.objectContaining({

851-

provider: "gmn",

852-

model: "gpt-5.4",

853-

level: "xhigh",

854-

catalog: [

855-

expect.objectContaining({

856-

provider: "gmn",

857-

id: "gpt-5.4",

858-

compat: { supportedReasoningEfforts: ["low", "medium", "high", "xhigh"] },

859-

}),

860-

],

861-

}),

877+

const thinkingArgs = requireRecord(

878+

mockCallArg(state.isThinkingLevelSupportedMock),

879+

"thinking args",

862880

);

881+

expect(thinkingArgs.provider).toBe("gmn");

882+

expect(thinkingArgs.model).toBe("gpt-5.4");

883+

expect(thinkingArgs.level).toBe("xhigh");

884+

const catalog = requireArray(thinkingArgs.catalog, "thinking catalog");

885+

expectRecordFields(catalog[0], {

886+

provider: "gmn",

887+

id: "gpt-5.4",

888+

compat: { supportedReasoningEfforts: ["low", "medium", "high", "xhigh"] },

889+

});

863890

});

864891865892

it("records fallback steps to the session trajectory runtime", async () => {

@@ -884,17 +911,16 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

884911885912

await runBasicAgentCommand();

886913887-

expect(state.trajectoryRecordEventMock).toHaveBeenCalledWith(

888-

"model.fallback_step",

889-

expect.objectContaining({

890-

fallbackStepType: "fallback_step",

891-

fallbackStepFromModel: "ollama/llama3",

892-

fallbackStepToModel: "openai/gpt-5.4",

893-

fallbackStepFromFailureReason: "overloaded",

894-

fallbackStepChainPosition: 1,

895-

fallbackStepFinalOutcome: "next_fallback",

896-

}),

897-

);

914+

expect(state.trajectoryRecordEventMock).toHaveBeenCalledTimes(1);

915+

expect(state.trajectoryRecordEventMock.mock.calls[0]?.[0]).toBe("model.fallback_step");

916+

expectRecordFields(state.trajectoryRecordEventMock.mock.calls[0]?.[1], {

917+

fallbackStepType: "fallback_step",

918+

fallbackStepFromModel: "ollama/llama3",

919+

fallbackStepToModel: "openai/gpt-5.4",

920+

fallbackStepFromFailureReason: "overloaded",

921+

fallbackStepChainPosition: 1,

922+

fallbackStepFinalOutcome: "next_fallback",

923+

});

898924

expect(state.trajectoryFlushMock).toHaveBeenCalled();

899925

});

900926

@@ -1102,7 +1128,7 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

11021128

const attemptParams = state.runAgentAttemptMock.mock.calls[0]?.[0] as

11031129

| { skillsSnapshot?: Record<string, unknown> }

11041130

| undefined;

1105-

expect(attemptParams?.skillsSnapshot).toMatchObject({

1131+

expectRecordFields(attemptParams?.skillsSnapshot, {

11061132

prompt: "persisted prompt",

11071133

skills: [{ name: "cli-skill" }],

11081134

skillFilter: ["cli-skill"],

@@ -1145,30 +1171,28 @@ describe("agentCommand – LiveSessionModelSwitchError retry", () => {

1145117111461172

await runBasicAgentCommand();

114711731148-

expect(observedClassification).toMatchObject({

1174+

expectRecordFields(observedClassification, {

11491175

reason: "format",

11501176

code: "empty_result",

11511177

});

11521178

expect(state.runAgentAttemptMock).toHaveBeenCalledTimes(2);

1153-

expect(state.runAgentAttemptMock.mock.calls[1]?.[0]).toMatchObject({

1179+

expectRecordFields(state.runAgentAttemptMock.mock.calls[1]?.[0], {

11541180

providerOverride: "openai",

11551181

modelOverride: "gpt-5.4",

11561182

isFallbackRetry: true,

11571183

});

1158-

expect(state.deliverAgentCommandResultMock.mock.calls[0]?.[0]).toMatchObject({

1159-

result: {

1160-

meta: {

1161-

agentMeta: {

1162-

fallbackAttempts: [

1163-

expect.objectContaining({

1164-

provider: "anthropic",

1165-

model: "claude",

1166-

reason: "format",

1167-

}),

1168-

],

1169-

},

1170-

},

1171-

},

1184+

const deliveryParams = requireRecord(

1185+

state.deliverAgentCommandResultMock.mock.calls[0]?.[0],

1186+

"delivery params",

1187+

);

1188+

const result = requireRecord(deliveryParams.result, "delivery result");

1189+

const meta = requireRecord(result.meta, "delivery result meta");

1190+

const agentMeta = requireRecord(meta.agentMeta, "delivery agent meta");

1191+

const fallbackAttempts = requireArray(agentMeta.fallbackAttempts, "fallback attempts");

1192+

expectRecordFields(fallbackAttempts[0], {

1193+

provider: "anthropic",

1194+

model: "claude",

1195+

reason: "format",

11721196

});

11731197

});

11741198