Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
573 lines
16 KiB
TypeScript
573 lines
16 KiB
TypeScript
// Google tests cover image generation provider plugin behavior.
|
|
import * as providerAuthRuntime from "openclaw/plugin-sdk/provider-auth-runtime";
|
|
import * as providerHttp from "openclaw/plugin-sdk/provider-http";
|
|
import { mockPinnedHostnameResolution } from "openclaw/plugin-sdk/test-env";
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { buildGoogleImageGenerationProvider } from "./image-generation-provider.js";
|
|
import { testing as geminiWebSearchTesting } from "./src/gemini-web-search-provider.js";
|
|
|
|
let ssrfMock: { mockRestore: () => void } | undefined;
|
|
|
|
function jsonResponse(payload: unknown): Response {
|
|
return new Response(JSON.stringify(payload), {
|
|
status: 200,
|
|
headers: { "Content-Type": "application/json" },
|
|
});
|
|
}
|
|
|
|
function mockGoogleApiKeyAuth() {
|
|
vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({
|
|
apiKey: "google-test-key",
|
|
source: "env",
|
|
mode: "api-key",
|
|
});
|
|
}
|
|
|
|
function installGoogleFetchMock(params?: {
|
|
data?: string;
|
|
mimeType?: string;
|
|
inlineDataKey?: "inlineData" | "inline_data";
|
|
}) {
|
|
const mimeType = params?.mimeType ?? "image/png";
|
|
const data = params?.data ?? "png-data";
|
|
const inlineDataKey = params?.inlineDataKey ?? "inlineData";
|
|
const fetchMock = vi.fn().mockResolvedValue(
|
|
jsonResponse({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [
|
|
{
|
|
[inlineDataKey]: {
|
|
[inlineDataKey === "inlineData" ? "mimeType" : "mime_type"]: mimeType,
|
|
data: Buffer.from(data).toString("base64"),
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
);
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
return fetchMock;
|
|
}
|
|
|
|
function fetchRequest(fetchMock: ReturnType<typeof vi.fn>): {
|
|
body?: string;
|
|
headers?: HeadersInit;
|
|
method?: string;
|
|
url: string;
|
|
} {
|
|
const [url, init] = fetchMock.mock.calls[0] as [string, RequestInit | undefined];
|
|
expect(typeof url).toBe("string");
|
|
if (!init) {
|
|
throw new Error("Expected fetch init");
|
|
}
|
|
return {
|
|
body: typeof init.body === "string" ? init.body : undefined,
|
|
headers: init.headers,
|
|
method: init.method,
|
|
url,
|
|
};
|
|
}
|
|
|
|
function postJsonRequestOptions(spy: unknown): {
|
|
allowPrivateNetwork?: boolean;
|
|
pinDns?: boolean;
|
|
ssrfPolicy?: { allowRfc2544BenchmarkRange?: boolean };
|
|
} {
|
|
const options = (spy as { mock?: { calls?: Array<[unknown]> } }).mock?.calls?.[0]?.[0];
|
|
if (!options) {
|
|
throw new Error("Expected postJsonRequest options");
|
|
}
|
|
return options as {
|
|
allowPrivateNetwork?: boolean;
|
|
pinDns?: boolean;
|
|
ssrfPolicy?: { allowRfc2544BenchmarkRange?: boolean };
|
|
};
|
|
}
|
|
|
|
describe("Google image-generation provider", () => {
|
|
beforeEach(() => {
|
|
ssrfMock = mockPinnedHostnameResolution();
|
|
});
|
|
|
|
afterEach(() => {
|
|
ssrfMock?.mockRestore();
|
|
ssrfMock = undefined;
|
|
vi.restoreAllMocks();
|
|
vi.unstubAllGlobals();
|
|
});
|
|
|
|
it("generates image buffers from the Gemini generateContent API", async () => {
|
|
vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({
|
|
apiKey: "google-test-key",
|
|
source: "env",
|
|
mode: "api-key",
|
|
});
|
|
const fetchMock = vi.fn().mockResolvedValue(
|
|
jsonResponse({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [
|
|
{ text: "generated" },
|
|
{
|
|
inlineData: {
|
|
mimeType: "image/png",
|
|
data: Buffer.from("png-data").toString("base64"),
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
);
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
const result = await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3.1-flash-image-preview",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
size: "1536x1024",
|
|
});
|
|
|
|
const request = fetchRequest(fetchMock);
|
|
expect(request.url).toBe(
|
|
"https://generativelanguage.googleapis.com/v1beta/models/gemini-3.1-flash-image-preview:generateContent",
|
|
);
|
|
expect(request.method).toBe("POST");
|
|
expect(JSON.parse(request.body ?? "")).toEqual({
|
|
contents: [
|
|
{
|
|
role: "user",
|
|
parts: [{ text: "draw a cat" }],
|
|
},
|
|
],
|
|
generationConfig: {
|
|
responseModalities: ["TEXT", "IMAGE"],
|
|
imageConfig: {
|
|
aspectRatio: "3:2",
|
|
imageSize: "2K",
|
|
},
|
|
},
|
|
});
|
|
expect(result).toEqual({
|
|
images: [
|
|
{
|
|
buffer: Buffer.from("png-data"),
|
|
mimeType: "image/png",
|
|
fileName: "image-1.png",
|
|
},
|
|
],
|
|
model: "gemini-3.1-flash-image-preview",
|
|
});
|
|
});
|
|
|
|
it("passes request SSRF policy to the provider HTTP helper", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
const postJsonRequest = vi.spyOn(providerHttp, "postJsonRequest").mockResolvedValue({
|
|
response: new Response(
|
|
JSON.stringify({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [
|
|
{
|
|
inlineData: {
|
|
mimeType: "image/png",
|
|
data: Buffer.from("png-data").toString("base64"),
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
{ status: 200, headers: { "Content-Type": "application/json" } },
|
|
),
|
|
finalUrl:
|
|
"https://generativelanguage.googleapis.com/v1beta/models/gemini-3.1-flash-image-preview:generateContent",
|
|
release: async () => {},
|
|
});
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3.1-flash-image-preview",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
ssrfPolicy: { allowRfc2544BenchmarkRange: true },
|
|
});
|
|
|
|
expect(postJsonRequestOptions(postJsonRequest).ssrfPolicy).toEqual({
|
|
allowRfc2544BenchmarkRange: true,
|
|
});
|
|
});
|
|
|
|
it("wraps wrong-shape successful Gemini image responses", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
vi.stubGlobal(
|
|
"fetch",
|
|
vi.fn().mockResolvedValue(jsonResponse({ candidates: { content: { parts: [] } } })),
|
|
);
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await expect(
|
|
provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3.1-flash-image-preview",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
}),
|
|
).rejects.toThrow("Google image generation response malformed");
|
|
});
|
|
|
|
it("rejects invalid inline image data in successful Gemini responses", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
vi.stubGlobal(
|
|
"fetch",
|
|
vi.fn().mockResolvedValue(
|
|
jsonResponse({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [{ inlineData: { mimeType: "image/png", data: "not-base64!" } }],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
),
|
|
);
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await expect(
|
|
provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3.1-flash-image-preview",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
}),
|
|
).rejects.toThrow("Google image generation response malformed");
|
|
});
|
|
|
|
it("accepts OAuth JSON auth and inline_data responses", async () => {
|
|
vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({
|
|
apiKey: JSON.stringify({ token: "oauth-token" }),
|
|
source: "profile",
|
|
mode: "token",
|
|
});
|
|
const fetchMock = vi.fn().mockResolvedValue(
|
|
jsonResponse({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [
|
|
{
|
|
inline_data: {
|
|
mime_type: "image/jpeg",
|
|
data: Buffer.from("jpg-data").toString("base64"),
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
);
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
const result = await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3.1-flash-image-preview",
|
|
prompt: "draw a dog",
|
|
cfg: {},
|
|
});
|
|
|
|
const request = fetchRequest(fetchMock);
|
|
expect(request.url.length).toBeGreaterThan(0);
|
|
expect(request.headers).toBeInstanceOf(Headers);
|
|
expect(new Headers(request.headers).get("authorization")).toBe("Bearer oauth-token");
|
|
expect(result).toEqual({
|
|
images: [
|
|
{
|
|
buffer: Buffer.from("jpg-data"),
|
|
mimeType: "image/jpeg",
|
|
fileName: "image-1.jpg",
|
|
},
|
|
],
|
|
model: "gemini-3.1-flash-image-preview",
|
|
});
|
|
});
|
|
|
|
it("accepts valid multi-image inline JSON responses above the generic provider JSON cap", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
const imageBytes = Buffer.alloc(6 * 1024 * 1024, 1);
|
|
const imagePayload = imageBytes.toString("base64");
|
|
vi.stubGlobal(
|
|
"fetch",
|
|
vi.fn().mockResolvedValue(
|
|
jsonResponse({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: Array.from({ length: 3 }, () => ({
|
|
inlineData: {
|
|
mimeType: "image/png",
|
|
data: imagePayload,
|
|
},
|
|
})),
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
),
|
|
);
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
const result = await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3.1-flash-image-preview",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
});
|
|
|
|
expect(result.images).toHaveLength(3);
|
|
expect(result.images.map((image) => image.buffer.byteLength)).toEqual([
|
|
imageBytes.byteLength,
|
|
imageBytes.byteLength,
|
|
imageBytes.byteLength,
|
|
]);
|
|
});
|
|
|
|
it("still rejects oversized Google image JSON responses", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
vi.stubGlobal(
|
|
"fetch",
|
|
vi.fn().mockResolvedValue(
|
|
jsonResponse({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [{ text: "x".repeat(35 * 1024 * 1024) }],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
),
|
|
);
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await expect(
|
|
provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3.1-flash-image-preview",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
}),
|
|
).rejects.toThrow("google.image-generation: JSON response exceeds");
|
|
});
|
|
|
|
it("sends reference images and explicit resolution for edit flows", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
const fetchMock = installGoogleFetchMock();
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3-pro-image-preview",
|
|
prompt: "Change only the sky to a sunset.",
|
|
cfg: {},
|
|
resolution: "4K",
|
|
inputImages: [
|
|
{
|
|
buffer: Buffer.from("reference-bytes"),
|
|
mimeType: "image/png",
|
|
fileName: "reference.png",
|
|
},
|
|
],
|
|
});
|
|
|
|
const request = fetchRequest(fetchMock);
|
|
expect(request.url).toBe(
|
|
"https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-image-preview:generateContent",
|
|
);
|
|
expect(request.method).toBe("POST");
|
|
expect(JSON.parse(request.body ?? "")).toEqual({
|
|
contents: [
|
|
{
|
|
role: "user",
|
|
parts: [
|
|
{
|
|
inlineData: {
|
|
mimeType: "image/png",
|
|
data: Buffer.from("reference-bytes").toString("base64"),
|
|
},
|
|
},
|
|
{ text: "Change only the sky to a sunset." },
|
|
],
|
|
},
|
|
],
|
|
generationConfig: {
|
|
responseModalities: ["TEXT", "IMAGE"],
|
|
imageConfig: {
|
|
imageSize: "4K",
|
|
},
|
|
},
|
|
});
|
|
});
|
|
|
|
it("forwards explicit aspect ratio without forcing a default when size is omitted", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
const fetchMock = installGoogleFetchMock();
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3-pro-image-preview",
|
|
prompt: "portrait photo",
|
|
cfg: {},
|
|
aspectRatio: "9:16",
|
|
});
|
|
|
|
const request = fetchRequest(fetchMock);
|
|
expect(request.url).toBe(
|
|
"https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-image-preview:generateContent",
|
|
);
|
|
expect(request.method).toBe("POST");
|
|
expect(JSON.parse(request.body ?? "")).toEqual({
|
|
contents: [
|
|
{
|
|
role: "user",
|
|
parts: [{ text: "portrait photo" }],
|
|
},
|
|
],
|
|
generationConfig: {
|
|
responseModalities: ["TEXT", "IMAGE"],
|
|
imageConfig: {
|
|
aspectRatio: "9:16",
|
|
},
|
|
},
|
|
});
|
|
});
|
|
|
|
it("disables DNS pinning for Google image generation requests", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
installGoogleFetchMock();
|
|
const postJsonRequestSpy = vi.spyOn(providerHttp, "postJsonRequest");
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3.1-flash-image-preview",
|
|
prompt: "draw a fox",
|
|
cfg: {},
|
|
});
|
|
|
|
expect(postJsonRequestOptions(postJsonRequestSpy).pinDns).toBe(false);
|
|
});
|
|
|
|
it("honors configured private-network opt-in for Google image generation", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
installGoogleFetchMock();
|
|
const postJsonRequestSpy = vi.spyOn(providerHttp, "postJsonRequest");
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3.1-flash-image-preview",
|
|
prompt: "draw a fox",
|
|
cfg: {
|
|
models: {
|
|
providers: {
|
|
google: {
|
|
baseUrl: "https://generativelanguage.googleapis.com/v1beta",
|
|
request: { allowPrivateNetwork: true },
|
|
models: [],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
expect(postJsonRequestOptions(postJsonRequestSpy).allowPrivateNetwork).toBe(true);
|
|
});
|
|
|
|
it("normalizes a configured bare Google host to the v1beta API root", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
const fetchMock = installGoogleFetchMock();
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3-pro-image-preview",
|
|
prompt: "draw a cat",
|
|
cfg: {
|
|
models: {
|
|
providers: {
|
|
google: {
|
|
baseUrl: "https://generativelanguage.googleapis.com",
|
|
models: [],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const request = fetchRequest(fetchMock);
|
|
expect(request.url).toBe(
|
|
"https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-image-preview:generateContent",
|
|
);
|
|
expect(typeof request.method).toBe("string");
|
|
});
|
|
|
|
it("strips a configured /openai suffix before calling the native Gemini image API", async () => {
|
|
mockGoogleApiKeyAuth();
|
|
const fetchMock = installGoogleFetchMock();
|
|
|
|
const provider = buildGoogleImageGenerationProvider();
|
|
await provider.generateImage({
|
|
provider: "google",
|
|
model: "gemini-3-pro-image-preview",
|
|
prompt: "draw a fox",
|
|
cfg: {
|
|
models: {
|
|
providers: {
|
|
google: {
|
|
baseUrl: "https://generativelanguage.googleapis.com/v1beta/openai",
|
|
models: [],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const request = fetchRequest(fetchMock);
|
|
expect(request.url).toBe(
|
|
"https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-image-preview:generateContent",
|
|
);
|
|
expect(typeof request.method).toBe("string");
|
|
});
|
|
|
|
it("prefers scoped configured Gemini API keys over environment fallbacks", () => {
|
|
expect(
|
|
geminiWebSearchTesting.resolveGeminiApiKey({
|
|
apiKey: "gemini-secret",
|
|
}),
|
|
).toBe("gemini-secret");
|
|
});
|
|
|
|
it("falls back to the default Gemini model when unset or blank", () => {
|
|
expect(geminiWebSearchTesting.resolveGeminiModel()).toBe("gemini-2.5-flash");
|
|
expect(geminiWebSearchTesting.resolveGeminiModel({ model: " " })).toBe("gemini-2.5-flash");
|
|
expect(geminiWebSearchTesting.resolveGeminiModel({ model: "gemini-2.5-pro" })).toBe(
|
|
"gemini-2.5-pro",
|
|
);
|
|
});
|
|
});
|