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

推荐订阅源

D
DataBreaches.Net
L
LangChain Blog
博客园_首页
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
WordPress大学
WordPress大学
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
C
Check Point Blog
IT之家
IT之家
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
D
Docker
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
I
InfoQ

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(cron): preflight model fallbacks before skip (#82887)...
chen-zhang-c · 2026-05-29 · via Recent Commits to openclaw:main
11

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

22

import {

33

loadRunCronIsolatedAgentTurn,

4+

logWarnMock,

45

makeCronSession,

6+

mockRunCronFallbackPassthrough,

57

preflightCronModelProviderMock,

68

resolveConfiguredModelRefMock,

79

resolveCronSessionMock,

810

resetRunCronIsolatedAgentTurnHarness,

911

runEmbeddedAgentMock,

12+

runWithModelFallbackMock,

1013

} from "./isolated-agent/run.test-harness.js";

11141215

const runCronIsolatedAgentTurn = await loadRunCronIsolatedAgentTurn();

@@ -43,6 +46,14 @@ describe("runCronIsolatedAgentTurn model provider preflight", () => {

43464447

const result = await runCronIsolatedAgentTurn({

4548

cfg: {

49+

agents: {

50+

defaults: {

51+

model: {

52+

primary: "ollama/qwen3:32b",

53+

fallbacks: [],

54+

},

55+

},

56+

},

4657

models: {

4758

providers: {

4859

ollama: {

@@ -79,4 +90,135 @@ describe("runCronIsolatedAgentTurn model provider preflight", () => {

7990

expect(result.error).toContain("local provider endpoint is not reachable");

8091

expect(runEmbeddedAgentMock).not.toHaveBeenCalled();

8192

});

93+94+

it("continues with configured fallback when the local primary preflight is unavailable", async () => {

95+

mockRunCronFallbackPassthrough();

96+

preflightCronModelProviderMock.mockResolvedValueOnce({

97+

status: "unavailable",

98+

reason:

99+

"Agent cron job uses ollama/qwen3:32b but the local provider endpoint is not reachable at http://127.0.0.1:11434.",

100+

provider: "ollama",

101+

model: "qwen3:32b",

102+

baseUrl: "http://127.0.0.1:11434",

103+

retryAfterMs: 300000,

104+

});

105+106+

const result = await runCronIsolatedAgentTurn({

107+

cfg: {

108+

agents: {

109+

defaults: {

110+

model: {

111+

primary: "ollama/qwen3:32b",

112+

fallbacks: ["openrouter/nvidia/nemotron-3-super-120b-a12b:free", "openai/gpt-5.4"],

113+

},

114+

},

115+

},

116+

models: {

117+

providers: {

118+

ollama: {

119+

api: "ollama",

120+

baseUrl: "http://127.0.0.1:11434",

121+

models: [],

122+

},

123+

openrouter: {

124+

api: "openai-completions",

125+

baseUrl: "https://openrouter.ai/api/v1",

126+

models: [],

127+

},

128+

},

129+

},

130+

},

131+

deps: {} as never,

132+

job: {

133+

id: "fallback-from-dead-ollama",

134+

name: "Fallback From Dead Ollama",

135+

enabled: true,

136+

createdAtMs: 0,

137+

updatedAtMs: 0,

138+

schedule: { kind: "cron", expr: "*/5 * * * *", tz: "UTC" },

139+

sessionTarget: "isolated",

140+

state: {},

141+

wakeMode: "next-heartbeat",

142+

payload: { kind: "agentTurn", message: "summarize" },

143+

delivery: { mode: "none" },

144+

},

145+

message: "summarize",

146+

sessionKey: "cron:fallback-from-dead-ollama",

147+

lane: "cron",

148+

});

149+150+

expect(result.status).toBe("ok");

151+

expect(result.provider).toBe("openrouter");

152+

expect(result.model).toBe("nvidia/nemotron-3-super-120b-a12b:free");

153+

expect(preflightCronModelProviderMock.mock.calls.map((call) => call[0])).toMatchObject([

154+

{ provider: "ollama", model: "qwen3:32b" },

155+

{ provider: "openrouter", model: "nvidia/nemotron-3-super-120b-a12b:free" },

156+

]);

157+

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

158+

provider: "openrouter",

159+

model: "nvidia/nemotron-3-super-120b-a12b:free",

160+

});

161+

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

162+

fallbacksOverride: ["openai/gpt-5.4"],

163+

});

164+

expect(String(logWarnMock.mock.calls[0]?.[0] ?? "")).toContain(

165+

"continuing with fallback openrouter/nvidia/nemotron-3-super-120b-a12b:free",

166+

);

167+

expect(String(logWarnMock.mock.calls[0]?.[0] ?? "")).not.toContain("Skipping this cron run");

168+

});

169+170+

it("keeps explicit empty payload fallbacks strict when local primary preflight fails", async () => {

171+

preflightCronModelProviderMock.mockResolvedValueOnce({

172+

status: "unavailable",

173+

reason:

174+

"Agent cron job uses ollama/qwen3:32b but the local provider endpoint is not reachable at http://127.0.0.1:11434.",

175+

provider: "ollama",

176+

model: "qwen3:32b",

177+

baseUrl: "http://127.0.0.1:11434",

178+

retryAfterMs: 300000,

179+

});

180+181+

const result = await runCronIsolatedAgentTurn({

182+

cfg: {

183+

agents: {

184+

defaults: {

185+

model: {

186+

primary: "ollama/qwen3:32b",

187+

fallbacks: ["openrouter/nvidia/nemotron-3-super-120b-a12b:free"],

188+

},

189+

},

190+

},

191+

models: {

192+

providers: {

193+

ollama: {

194+

api: "ollama",

195+

baseUrl: "http://127.0.0.1:11434",

196+

models: [],

197+

},

198+

},

199+

},

200+

},

201+

deps: {} as never,

202+

job: {

203+

id: "strict-dead-ollama",

204+

name: "Strict Dead Ollama",

205+

enabled: true,

206+

createdAtMs: 0,

207+

updatedAtMs: 0,

208+

schedule: { kind: "cron", expr: "*/5 * * * *", tz: "UTC" },

209+

sessionTarget: "isolated",

210+

state: {},

211+

wakeMode: "next-heartbeat",

212+

payload: { kind: "agentTurn", message: "summarize", fallbacks: [] },

213+

delivery: { mode: "none" },

214+

},

215+

message: "summarize",

216+

sessionKey: "cron:strict-dead-ollama",

217+

lane: "cron",

218+

});

219+220+

expect(result.status).toBe("skipped");

221+

expect(preflightCronModelProviderMock).toHaveBeenCalledOnce();

222+

expect(runEmbeddedAgentMock).not.toHaveBeenCalled();

223+

});

82224

});