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

推荐订阅源

Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
Y
Y Combinator Blog
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
G
Google Developers Blog
云风的 BLOG
云风的 BLOG
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
博客园_首页
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
L
LangChain 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(tools): add unmocked image custom-provider auth regr...
hxy91819 · 2026-05-25 · via Recent Commits to openclaw:main
1+

import fs from "node:fs/promises";

2+

import os from "node:os";

3+

import path from "node:path";

4+

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

5+

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

6+

import type { ModelDefinitionConfig } from "../../config/types.models.js";

7+

import type { ImageDescriptionRequest } from "../../plugin-sdk/media-understanding.js";

8+

import { getApiKeyForModel, hasUsableCustomProviderApiKey } from "../model-auth.js";

9+

import { resolveImageToolFactoryAvailable } from "../openclaw-tools.media-factory-plan.js";

10+

import { createImageTool, resolveImageModelConfigForTool, testing } from "./image-tool.js";

11+

import { hasProviderAuthForTool } from "./model-config.helpers.js";

12+13+

const USER_PROVIDER = "hatchery-qwen3.6-plus";

14+

const USER_MODEL = "qwen3.6-plus";

15+

const USER_PRIMARY = `${USER_PROVIDER}/${USER_MODEL}`;

16+

const CONFIG_API_KEY = "sk-user-configured-key"; // pragma: allowlist secret

17+18+

const ONE_PIXEL_PNG_B64 =

19+

"iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAAlC+aJAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAAGYktHRAD/AP8A/6C9p5MAAAAHdElNRQfqBBsGAQr00ED3AAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDI2LTA0LTI3VDA2OjAxOjEwKzAwOjAwPU3tXwAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyNi0wNC0yN1QwNjowMToxMCswMDowMEwQVeMAAAAodEVYdGRhdGU6dGltZXN0YW1wADIwMjYtMDQtMjdUMDY6MDE6MTArMDA6MDAbBXQ8AAAAeElEQVRo3u3awQnDQBAEwT2Q8w/YAikIP5rF1RFMca+FO8/s7rrnqjcA1BsA6g0A9QaAesOfA77zqTf8Blj/AgAAAAAAAJsDqAOoA6gDqAOoc9TXAdQB1AHUAdQB1AHUAdQB1AHU7Qc46gEAAAAANrcecGZ2f8B/ASYSQPlKoEJ/AAAAAElFTkSuQmCC";

20+21+

function makeVisionModel(id: string): ModelDefinitionConfig {

22+

return {

23+

id,

24+

name: id,

25+

reasoning: false,

26+

input: ["text", "image"],

27+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

28+

contextWindow: 128_000,

29+

maxTokens: 8_192,

30+

};

31+

}

32+33+

function createUserReportedConfig(params?: { includeApiKey?: boolean }): OpenClawConfig {

34+

const includeApiKey = params?.includeApiKey ?? true;

35+

return {

36+

agents: {

37+

defaults: {

38+

model: { primary: USER_PRIMARY },

39+

},

40+

},

41+

models: {

42+

providers: {

43+

[USER_PROVIDER]: {

44+

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

45+

api: "openai-completions",

46+

...(includeApiKey ? { apiKey: CONFIG_API_KEY } : {}),

47+

models: [makeVisionModel(USER_MODEL)],

48+

},

49+

},

50+

},

51+

};

52+

}

53+54+

async function withEmptyAgentDir<T>(run: (agentDir: string) => Promise<T>): Promise<T> {

55+

const agentDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-image-auth-regression-"));

56+

try {

57+

return await run(agentDir);

58+

} finally {

59+

await fs.rm(agentDir, { recursive: true, force: true });

60+

}

61+

}

62+63+

describe("image custom provider auth regression", () => {

64+

const priorFetch = global.fetch;

65+66+

beforeEach(() => {

67+

for (const key of Object.keys(process.env)) {

68+

if (key.endsWith("_API_KEY") || key.endsWith("_OAUTH_TOKEN")) {

69+

vi.stubEnv(key, "");

70+

}

71+

}

72+

testing.setProviderDepsForTest({

73+

buildProviderRegistry: () => new Map(),

74+

getMediaUnderstandingProvider: () => undefined,

75+

describeImageWithModel: async (params: ImageDescriptionRequest) => ({

76+

text: `seen:${params.provider}/${params.model}`,

77+

model: params.model,

78+

}),

79+

describeImagesWithModel: async (params) => ({

80+

text: `seen:${params.provider}/${params.model}`,

81+

model: params.model,

82+

}),

83+

resolveAutoMediaKeyProviders: () => [],

84+

resolveDefaultMediaModel: () => undefined,

85+

});

86+

});

87+88+

afterEach(() => {

89+

vi.unstubAllEnvs();

90+

global.fetch = priorFetch;

91+

testing.setProviderDepsForTest(undefined);

92+

});

93+94+

it("uses real model-auth to accept config-only custom provider credentials", async () => {

95+

const cfg = createUserReportedConfig();

96+

expect(hasUsableCustomProviderApiKey(cfg, USER_PROVIDER)).toBe(true);

97+

expect(hasProviderAuthForTool({ provider: USER_PROVIDER, cfg })).toBe(true);

98+

});

99+100+

it("auto-discovers the user-reported vision model without env key or auth profile", async () => {

101+

await withEmptyAgentDir(async (agentDir) => {

102+

const cfg = createUserReportedConfig();

103+

expect(resolveImageModelConfigForTool({ cfg, agentDir })).toEqual({

104+

primary: USER_PRIMARY,

105+

});

106+

});

107+

});

108+109+

it("registers the image tool on the production factory path when the primary model has vision", async () => {

110+

await withEmptyAgentDir(async (agentDir) => {

111+

const cfg = createUserReportedConfig();

112+

expect(

113+

resolveImageToolFactoryAvailable({

114+

config: cfg,

115+

agentDir,

116+

modelHasVision: true,

117+

}),

118+

).toBe(true);

119+

});

120+

});

121+122+

it("executes deferred image tool discovery with config-backed auth and runtime key resolution", async () => {

123+

await withEmptyAgentDir(async (agentDir) => {

124+

const cfg = createUserReportedConfig();

125+

const auth = await getApiKeyForModel({

126+

model: {

127+

id: USER_MODEL,

128+

name: USER_MODEL,

129+

provider: USER_PROVIDER,

130+

api: "openai-completions",

131+

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

132+

reasoning: false,

133+

input: ["text", "image"],

134+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

135+

contextWindow: 128_000,

136+

maxTokens: 8_192,

137+

},

138+

cfg,

139+

agentDir,

140+

});

141+

expect(auth.apiKey).toBe(CONFIG_API_KEY);

142+

expect(auth.source).toContain("models.json");

143+144+

const tool = createImageTool({

145+

config: cfg,

146+

agentDir,

147+

deferAutoModelResolution: true,

148+

modelHasVision: true,

149+

});

150+

expect(typeof tool?.execute).toBe("function");

151+152+

const result = await tool!.execute("regression-1", {

153+

prompt: "Read this screenshot.",

154+

image: `data:image/png;base64,${ONE_PIXEL_PNG_B64}`,

155+

});

156+157+

const payload = result as { content?: Array<{ type?: string; text?: string }> };

158+

const text = payload.content?.find((entry) => entry.type === "text")?.text ?? "";

159+

expect(text).toContain(`seen:${USER_PRIMARY}`);

160+

expect(text).not.toMatch(/No image model is configured/i);

161+

});

162+

});

163+164+

it("still rejects the same config when apiKey is missing", async () => {

165+

await withEmptyAgentDir(async (agentDir) => {

166+

const cfg = createUserReportedConfig({ includeApiKey: false });

167+

expect(hasUsableCustomProviderApiKey(cfg, USER_PROVIDER)).toBe(false);

168+

expect(hasProviderAuthForTool({ provider: USER_PROVIDER, cfg })).toBe(false);

169+

expect(resolveImageModelConfigForTool({ cfg, agentDir })).toBeNull();

170+171+

const tool = createImageTool({

172+

config: cfg,

173+

agentDir,

174+

deferAutoModelResolution: true,

175+

modelHasVision: true,

176+

});

177+

await expect(

178+

tool!.execute("regression-2", {

179+

prompt: "Read this screenshot.",

180+

image: `data:image/png;base64,${ONE_PIXEL_PNG_B64}`,

181+

}),

182+

).rejects.toThrow(/No image model is configured/);

183+

});

184+

});

185+

});