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

推荐订阅源

月光博客
月光博客
D
Docker
腾讯CDC
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】

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
refactor: share models list test helper · openclaw/opencl...
vincentkoc · 2026-06-01 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import { describe, expect, it, vi } from "vitest";

22

import { ErrorCodes } from "../../../packages/gateway-protocol/src/index.js";

33

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

44

import { modelsHandlers } from "./models.js";

5+

import type { RespondFn } from "./types.js";

5667

type Deferred<T> = {

78

promise: Promise<T>;

@@ -22,44 +23,58 @@ function createDeferred<T>(): Deferred<T> {

2223

return { promise, resolve, reject };

2324

}

242526+

function requestModelsList(params: {

27+

view: "configured" | "all";

28+

respond?: ReturnType<typeof vi.fn>;

29+

runtimeConfig?: OpenClawConfig;

30+

loadGatewayModelCatalog: () => Promise<Array<Record<string, unknown>>>;

31+

reqId?: string;

32+

}) {

33+

const respond = params.respond ?? vi.fn();

34+

const request = modelsHandlers["models.list"]({

35+

req: {

36+

type: "req",

37+

id: params.reqId ?? `req-models-list-${params.view}`,

38+

method: "models.list",

39+

params: { view: params.view },

40+

},

41+

params: { view: params.view },

42+

respond: respond as RespondFn,

43+

client: null,

44+

isWebchatConnect: () => false,

45+

context: {

46+

getRuntimeConfig: () => params.runtimeConfig ?? ({} as OpenClawConfig),

47+

loadGatewayModelCatalog: params.loadGatewayModelCatalog,

48+

logGateway: {

49+

debug: vi.fn(),

50+

},

51+

} as never,

52+

});

53+

return { request, respond };

54+

}

55+2556

describe("models.list", () => {

2657

it("does not block the configured view on slow model catalog discovery", async () => {

2758

const catalog = createDeferred<never>();

28-

const respond = vi.fn();

2959

const loadGatewayModelCatalog = vi.fn(() => catalog.promise);

60+

const runtimeConfig = {

61+

models: {

62+

providers: {

63+

openai: {

64+

baseUrl: "https://openai.example.com",

65+

models: [{ id: "gpt-test", name: "GPT Test" }],

66+

},

67+

},

68+

},

69+

} as unknown as OpenClawConfig;

30703171

vi.useFakeTimers();

3272

try {

33-

const request = modelsHandlers["models.list"]({

34-

req: {

35-

type: "req",

36-

id: "req-models-list-slow-catalog",

37-

method: "models.list",

38-

params: { view: "configured" },

39-

},

40-

params: { view: "configured" },

41-

respond,

42-

client: null,

43-

isWebchatConnect: () => false,

44-

context: {

45-

getRuntimeConfig: () => {

46-

const config = {

47-

models: {

48-

providers: {

49-

openai: {

50-

baseUrl: "https://openai.example.com",

51-

models: [{ id: "gpt-test", name: "GPT Test" }],

52-

},

53-

},

54-

},

55-

};

56-

return config as unknown as OpenClawConfig;

57-

},

58-

loadGatewayModelCatalog,

59-

logGateway: {

60-

debug: vi.fn(),

61-

},

62-

} as never,

73+

const { request, respond } = requestModelsList({

74+

view: "configured",

75+

runtimeConfig,

76+

loadGatewayModelCatalog,

77+

reqId: "req-models-list-slow-catalog",

6378

});

64796580

await vi.advanceTimersByTimeAsync(800);

@@ -86,29 +101,14 @@ describe("models.list", () => {

8610187102

it("keeps the all view exact instead of timing out to a partial catalog", async () => {

88103

const catalog = createDeferred<[{ id: string; name: string; provider: string }]>();

89-

const respond = vi.fn();

90104

const loadGatewayModelCatalog = vi.fn(() => catalog.promise);

9110592106

vi.useFakeTimers();

93107

try {

94-

const request = modelsHandlers["models.list"]({

95-

req: {

96-

type: "req",

97-

id: "req-models-list-all-slow-catalog",

98-

method: "models.list",

99-

params: { view: "all" },

100-

},

101-

params: { view: "all" },

102-

respond,

103-

client: null,

104-

isWebchatConnect: () => false,

105-

context: {

106-

getRuntimeConfig: () => ({}) as OpenClawConfig,

107-

loadGatewayModelCatalog,

108-

logGateway: {

109-

debug: vi.fn(),

110-

},

111-

} as never,

108+

const { request, respond } = requestModelsList({

109+

view: "all",

110+

loadGatewayModelCatalog,

111+

reqId: "req-models-list-all-slow-catalog",

112112

});

113113114114

await vi.advanceTimersByTimeAsync(800);

@@ -129,35 +129,21 @@ describe("models.list", () => {

129129

});

130130131131

it("does not expose runtime params from catalog rows", async () => {

132-

const respond = vi.fn();

133-

await modelsHandlers["models.list"]({

134-

req: {

135-

type: "req",

136-

id: "req-models-list-redact-params",

137-

method: "models.list",

138-

params: { view: "all" },

139-

},

140-

params: { view: "all" },

141-

respond,

142-

client: null,

143-

isWebchatConnect: () => false,

144-

context: {

145-

getRuntimeConfig: () => ({}) as OpenClawConfig,

146-

loadGatewayModelCatalog: vi.fn(() =>

147-

Promise.resolve([

148-

{

149-

id: "qwen-local",

150-

name: "Qwen Local",

151-

provider: "vllm",

152-

params: { qwenThinkingFormat: "chat-template" },

153-

},

154-

]),

155-

),

156-

logGateway: {

157-

debug: vi.fn(),

158-

},

159-

} as never,

132+

const { request, respond } = requestModelsList({

133+

view: "all",

134+

loadGatewayModelCatalog: vi.fn(() =>

135+

Promise.resolve([

136+

{

137+

id: "qwen-local",

138+

name: "Qwen Local",

139+

provider: "vllm",

140+

params: { qwenThinkingFormat: "chat-template" },

141+

},

142+

]),

143+

),

144+

reqId: "req-models-list-redact-params",

160145

});

146+

await request;

161147162148

expect(respond).toHaveBeenCalledWith(

163149

true,

@@ -191,27 +177,14 @@ describe("models.list", () => {

191177

},

192178

} as unknown as OpenClawConfig;

193179194-

const configuredRespond = vi.fn();

195180

const loadConfiguredCatalog = vi.fn(() => Promise.resolve(catalog));

196-

await modelsHandlers["models.list"]({

197-

req: {

198-

type: "req",

199-

id: "req-models-list-provider-allowlist",

200-

method: "models.list",

201-

params: { view: "configured" },

202-

},

203-

params: { view: "configured" },

204-

respond: configuredRespond,

205-

client: null,

206-

isWebchatConnect: () => false,

207-

context: {

208-

getRuntimeConfig: () => cfg,

209-

loadGatewayModelCatalog: loadConfiguredCatalog,

210-

logGateway: {

211-

debug: vi.fn(),

212-

},

213-

} as never,

181+

const { request: configuredRequest, respond: configuredRespond } = requestModelsList({

182+

view: "configured",

183+

runtimeConfig: cfg,

184+

loadGatewayModelCatalog: loadConfiguredCatalog,

185+

reqId: "req-models-list-provider-allowlist",

214186

});

187+

await configuredRequest;

215188216189

expect(configuredRespond).toHaveBeenCalledWith(

217190

true,

@@ -227,52 +200,24 @@ describe("models.list", () => {

227200

);

228201

expect(loadConfiguredCatalog).toHaveBeenCalledWith({ readOnly: false });

229202230-

const allRespond = vi.fn();

231-

await modelsHandlers["models.list"]({

232-

req: {

233-

type: "req",

234-

id: "req-models-list-provider-allowlist-all",

235-

method: "models.list",

236-

params: { view: "all" },

237-

},

238-

params: { view: "all" },

239-

respond: allRespond,

240-

client: null,

241-

isWebchatConnect: () => false,

242-

context: {

243-

getRuntimeConfig: () => cfg,

244-

loadGatewayModelCatalog: vi.fn(() => Promise.resolve(catalog)),

245-

logGateway: {

246-

debug: vi.fn(),

247-

},

248-

} as never,

203+

const { request: allRequest, respond: allRespond } = requestModelsList({

204+

view: "all",

205+

runtimeConfig: cfg,

206+

loadGatewayModelCatalog: vi.fn(() => Promise.resolve(catalog)),

207+

reqId: "req-models-list-provider-allowlist-all",

249208

});

209+

await allRequest;

250210251211

expect(allRespond).toHaveBeenCalledWith(true, { models: catalog }, undefined);

252212

});

253213254214

it("preserves catalog load errors before the timeout fallback wins", async () => {

255-

const respond = vi.fn();

256-257-

await modelsHandlers["models.list"]({

258-

req: {

259-

type: "req",

260-

id: "req-models-list-catalog-error",

261-

method: "models.list",

262-

params: { view: "configured" },

263-

},

264-

params: { view: "configured" },

265-

respond,

266-

client: null,

267-

isWebchatConnect: () => false,

268-

context: {

269-

getRuntimeConfig: () => ({}) as OpenClawConfig,

270-

loadGatewayModelCatalog: vi.fn(() => Promise.reject(new Error("catalog failed"))),

271-

logGateway: {

272-

debug: vi.fn(),

273-

},

274-

} as never,

215+

const { request, respond } = requestModelsList({

216+

view: "configured",

217+

loadGatewayModelCatalog: vi.fn(() => Promise.reject(new Error("catalog failed"))),

218+

reqId: "req-models-list-catalog-error",

275219

});

220+

await request;

276221277222

const call = respond.mock.calls.at(0) as

278223

| [boolean, unknown, { code?: number; message?: string }]