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
448 lines
14 KiB
TypeScript
448 lines
14 KiB
TypeScript
// Google tests cover index plugin behavior.
|
|
import { mkdtemp, writeFile } from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import type { Context, Model } from "openclaw/plugin-sdk/llm";
|
|
import type {
|
|
ProviderReplaySessionEntry,
|
|
ProviderSanitizeReplayHistoryContext,
|
|
} from "openclaw/plugin-sdk/plugin-entry";
|
|
import { createTestPluginApi } from "openclaw/plugin-sdk/plugin-test-api";
|
|
import {
|
|
registerProviderPlugin,
|
|
requireRegisteredProvider,
|
|
} from "openclaw/plugin-sdk/plugin-test-runtime";
|
|
import { createCapturedThinkingConfigStream } from "openclaw/plugin-sdk/provider-test-contracts";
|
|
import type { RealtimeVoiceProviderPlugin } from "openclaw/plugin-sdk/realtime-voice";
|
|
import { describe, expect, it, vi } from "vitest";
|
|
import { registerGoogleGeminiCliProvider } from "./gemini-cli-provider.js";
|
|
import googlePlugin from "./index.js";
|
|
import googleProviderDiscovery from "./provider-discovery.js";
|
|
import { registerGoogleProvider } from "./provider-registration.js";
|
|
|
|
const googleProviderPlugin = {
|
|
register(api: Parameters<typeof registerGoogleProvider>[0]) {
|
|
registerGoogleProvider(api);
|
|
registerGoogleGeminiCliProvider(api);
|
|
},
|
|
};
|
|
|
|
const refreshGeminiCliOAuthTokenMock = vi.hoisted(() => vi.fn());
|
|
|
|
vi.mock("./oauth.runtime.js", () => ({
|
|
refreshGeminiCliOAuthToken: refreshGeminiCliOAuthTokenMock,
|
|
}));
|
|
|
|
describe("google provider plugin hooks", () => {
|
|
it("owns replay policy and reasoning mode for the direct Gemini provider", async () => {
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const provider = requireRegisteredProvider(providers, "google");
|
|
const customEntries: ProviderReplaySessionEntry[] = [];
|
|
|
|
expect(
|
|
provider.buildReplayPolicy?.({
|
|
provider: "google",
|
|
modelApi: "google-generative-ai",
|
|
modelId: "gemini-3.1-pro-preview",
|
|
} as never),
|
|
).toEqual({
|
|
sanitizeMode: "full",
|
|
sanitizeToolCallIds: true,
|
|
toolCallIdMode: "strict",
|
|
sanitizeThoughtSignatures: {
|
|
allowBase64Only: true,
|
|
includeCamelCase: true,
|
|
},
|
|
repairToolUseResultPairing: true,
|
|
applyAssistantFirstOrderingFix: true,
|
|
validateGeminiTurns: true,
|
|
validateAnthropicTurns: false,
|
|
allowSyntheticToolResults: true,
|
|
});
|
|
|
|
expect(
|
|
provider.resolveReasoningOutputMode?.({
|
|
provider: "google",
|
|
modelApi: "google-generative-ai",
|
|
modelId: "gemini-3.1-pro-preview",
|
|
} as never),
|
|
).toBe("native");
|
|
expect(
|
|
provider.resolveReasoningOutputMode?.({
|
|
provider: "google",
|
|
modelId: "gemini-3.1-pro-preview",
|
|
} as never),
|
|
).toBe("native");
|
|
|
|
const sanitized = await Promise.resolve(
|
|
provider.sanitizeReplayHistory?.({
|
|
provider: "google",
|
|
modelApi: "google-generative-ai",
|
|
modelId: "gemini-3.1-pro-preview",
|
|
sessionId: "session-1",
|
|
messages: [
|
|
{
|
|
role: "assistant",
|
|
content: [{ type: "text", text: "hello" }],
|
|
},
|
|
],
|
|
sessionState: {
|
|
getCustomEntries: () => customEntries,
|
|
appendCustomEntry: (customType: string, data: unknown) => {
|
|
customEntries.push({ customType, data });
|
|
},
|
|
},
|
|
} as ProviderSanitizeReplayHistoryContext),
|
|
);
|
|
|
|
const bootstrapMessage = sanitized?.[0] as
|
|
| { role?: string; content?: unknown; timestamp?: unknown }
|
|
| undefined;
|
|
expect(bootstrapMessage?.role).toBe("user");
|
|
expect(bootstrapMessage?.content).toBe("(session bootstrap)");
|
|
expect(typeof bootstrapMessage?.timestamp).toBe("number");
|
|
expect(sanitized?.[1]).toEqual({
|
|
role: "assistant",
|
|
content: [{ type: "text", text: "hello" }],
|
|
});
|
|
expect(customEntries).toHaveLength(1);
|
|
expect(customEntries[0]?.customType).toBe("google-turn-ordering-bootstrap");
|
|
});
|
|
|
|
it("keeps google-gemini-cli on tagged reasoning mode", async () => {
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const cliProvider = requireRegisteredProvider(providers, "google-gemini-cli");
|
|
expect(
|
|
cliProvider.resolveReasoningOutputMode?.({
|
|
provider: "google-gemini-cli",
|
|
modelApi: "google-gemini-cli",
|
|
modelId: "gemini-2.5-pro",
|
|
} as never),
|
|
).toBe("tagged");
|
|
});
|
|
|
|
it("keeps google-antigravity hook aliases on tagged reasoning mode", async () => {
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const provider = requireRegisteredProvider(providers, "google-antigravity");
|
|
expect(
|
|
provider.resolveReasoningOutputMode?.({
|
|
provider: "google-antigravity",
|
|
modelApi: "openai-completions",
|
|
modelId: "gemini-3-pro-low",
|
|
} as never),
|
|
).toBe("tagged");
|
|
});
|
|
|
|
it("keeps google-vertex hook aliases on native reasoning mode", async () => {
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const provider = requireRegisteredProvider(providers, "google-vertex");
|
|
expect(
|
|
provider.resolveReasoningOutputMode?.({
|
|
provider: "google-vertex",
|
|
modelApi: "google-vertex",
|
|
modelId: "gemini-3.1-pro-preview",
|
|
} as never),
|
|
).toBe("native");
|
|
expect(
|
|
provider.resolveReasoningOutputMode?.({
|
|
provider: "google-vertex",
|
|
modelId: "gemini-3.1-pro-preview",
|
|
} as never),
|
|
).toBe("native");
|
|
});
|
|
|
|
it("resolves Google Vertex ADC auth evidence to the config marker", async () => {
|
|
const tempDir = await mkdtemp(path.join(os.tmpdir(), "openclaw-google-vertex-config-key-"));
|
|
const credentialsPath = path.join(tempDir, "application_default_credentials.json");
|
|
await writeFile(
|
|
credentialsPath,
|
|
JSON.stringify({
|
|
type: "authorized_user",
|
|
client_id: "client-id",
|
|
client_secret: "client-secret",
|
|
refresh_token: "refresh-token",
|
|
}),
|
|
"utf8",
|
|
);
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const provider = requireRegisteredProvider(providers, "google-vertex");
|
|
|
|
expect(
|
|
provider.resolveConfigApiKey?.({
|
|
provider: "google-vertex",
|
|
env: {
|
|
GOOGLE_APPLICATION_CREDENTIALS: credentialsPath,
|
|
GOOGLE_CLOUD_PROJECT: "vertex-project",
|
|
GOOGLE_CLOUD_LOCATION: "global",
|
|
},
|
|
}),
|
|
).toBe("gcp-vertex-credentials");
|
|
expect(
|
|
provider.resolveConfigApiKey?.({
|
|
provider: "google-vertex",
|
|
env: {
|
|
GOOGLE_APPLICATION_CREDENTIALS: credentialsPath,
|
|
GOOGLE_CLOUD_PROJECT: "",
|
|
GCLOUD_PROJECT: "vertex-project",
|
|
GOOGLE_CLOUD_LOCATION: "global",
|
|
},
|
|
}),
|
|
).toBe("gcp-vertex-credentials");
|
|
expect(
|
|
googleProviderDiscovery.resolveConfigApiKey?.({
|
|
provider: "google-vertex",
|
|
env: {
|
|
GOOGLE_APPLICATION_CREDENTIALS: credentialsPath,
|
|
GOOGLE_CLOUD_PROJECT: "vertex-project",
|
|
GOOGLE_CLOUD_LOCATION: "global",
|
|
},
|
|
}),
|
|
).toBe("gcp-vertex-credentials");
|
|
});
|
|
|
|
it("owns Gemini tool schema normalization for direct and CLI providers", async () => {
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const providerIds = ["google", "google-gemini-cli"] as const;
|
|
|
|
for (const providerId of providerIds) {
|
|
const provider = requireRegisteredProvider(providers, providerId);
|
|
const [tool] =
|
|
provider.normalizeToolSchemas?.({
|
|
provider: providerId,
|
|
tools: [
|
|
{
|
|
name: "write_file",
|
|
description: "Write a file",
|
|
parameters: {
|
|
type: "object",
|
|
additionalProperties: false,
|
|
properties: {
|
|
path: { type: "string", pattern: "^src/" },
|
|
},
|
|
},
|
|
},
|
|
],
|
|
} as never) ?? [];
|
|
|
|
expect(tool).toEqual({
|
|
name: "write_file",
|
|
description: "Write a file",
|
|
parameters: {
|
|
type: "object",
|
|
properties: {
|
|
path: { type: "string" },
|
|
},
|
|
},
|
|
});
|
|
expect(tool?.parameters).not.toHaveProperty("additionalProperties");
|
|
expect(
|
|
(tool?.parameters as { properties?: { path?: Record<string, unknown> } })?.properties?.path,
|
|
).not.toHaveProperty("pattern");
|
|
expect(
|
|
provider.inspectToolSchemas?.({
|
|
provider: providerId,
|
|
tools: [tool],
|
|
} as never),
|
|
).toEqual([]);
|
|
}
|
|
});
|
|
|
|
it("wires google-thinking stream hooks for direct and Gemini CLI providers", async () => {
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const googleProvider = requireRegisteredProvider(providers, "google");
|
|
const cliProvider = requireRegisteredProvider(providers, "google-gemini-cli");
|
|
const capturedStream = createCapturedThinkingConfigStream();
|
|
|
|
const runCase = (provider: typeof googleProvider, providerId: string) => {
|
|
const wrapped = provider.wrapStreamFn?.({
|
|
provider: providerId,
|
|
modelId: "gemini-3.1-pro-preview",
|
|
thinkingLevel: "high",
|
|
streamFn: capturedStream.streamFn,
|
|
} as never);
|
|
|
|
void wrapped?.(
|
|
{
|
|
api: "google-generative-ai",
|
|
provider: providerId,
|
|
id: "gemini-3.1-pro-preview",
|
|
} as Model<"google-generative-ai">,
|
|
{ messages: [] } as Context,
|
|
{},
|
|
);
|
|
|
|
const capturedPayload = capturedStream.getCapturedPayload();
|
|
expect(capturedPayload).toEqual({
|
|
config: {
|
|
thinkingConfig: {
|
|
thinkingLevel: "HIGH",
|
|
},
|
|
},
|
|
});
|
|
const thinkingConfig = (
|
|
(capturedPayload as Record<string, unknown>).config as Record<string, unknown>
|
|
).thinkingConfig as Record<string, unknown>;
|
|
expect(thinkingConfig).not.toHaveProperty("thinkingBudget");
|
|
};
|
|
|
|
runCase(googleProvider, "google");
|
|
runCase(cliProvider, "google-gemini-cli");
|
|
});
|
|
|
|
it("wires Vertex transport before request-time metadata ADC detection", async () => {
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const provider = requireRegisteredProvider(providers, "google");
|
|
|
|
expect(
|
|
provider.createStreamFn?.({
|
|
model: {
|
|
api: "google-vertex",
|
|
provider: "google",
|
|
id: "gemini-2.5-pro",
|
|
},
|
|
} as never),
|
|
).toEqual(expect.any(Function));
|
|
});
|
|
|
|
it("advertises adaptive thinking for Gemini dynamic thinking", async () => {
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const provider = requireRegisteredProvider(providers, "google");
|
|
if (!provider.resolveThinkingProfile) {
|
|
throw new Error("expected Google provider thinking profile resolver");
|
|
}
|
|
const resolveThinkingProfile = provider.resolveThinkingProfile;
|
|
const gemini3Profile = resolveThinkingProfile({
|
|
provider: "google",
|
|
modelId: "gemini-3.1-pro-preview",
|
|
} as never);
|
|
const gemini25Profile = resolveThinkingProfile({
|
|
provider: "google",
|
|
modelId: "gemini-2.5-flash",
|
|
} as never);
|
|
|
|
expect(gemini3Profile?.levels).toEqual([
|
|
{ id: "off" },
|
|
{ id: "low" },
|
|
{ id: "adaptive" },
|
|
{ id: "high" },
|
|
]);
|
|
expect(gemini25Profile?.levels).toEqual([
|
|
{ id: "off" },
|
|
{ id: "minimal" },
|
|
{ id: "low" },
|
|
{ id: "medium" },
|
|
{ id: "adaptive" },
|
|
{ id: "high" },
|
|
]);
|
|
});
|
|
|
|
it("shares Gemini replay and stream hooks across Google provider variants", async () => {
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const googleProvider = requireRegisteredProvider(providers, "google");
|
|
const cliProvider = requireRegisteredProvider(providers, "google-gemini-cli");
|
|
|
|
expect(googleProvider.buildReplayPolicy).toBe(cliProvider.buildReplayPolicy);
|
|
expect(googleProvider.wrapStreamFn).toBe(cliProvider.wrapStreamFn);
|
|
});
|
|
|
|
it("buffers early realtime audio while the lazy Google bridge loads", () => {
|
|
let realtimeProvider: RealtimeVoiceProviderPlugin | undefined;
|
|
googlePlugin.register(
|
|
createTestPluginApi({
|
|
registerRealtimeVoiceProvider(provider) {
|
|
realtimeProvider = provider;
|
|
},
|
|
}),
|
|
);
|
|
|
|
const bridge = realtimeProvider?.createBridge({
|
|
providerConfig: { apiKey: "gemini-key" },
|
|
onAudio() {},
|
|
onClearAudio() {},
|
|
});
|
|
|
|
if (!bridge) {
|
|
throw new Error("expected Google realtime bridge");
|
|
}
|
|
expect(bridge.sendAudio(Buffer.alloc(160))).toBeUndefined();
|
|
expect(bridge.setMediaTimestamp(20)).toBeUndefined();
|
|
expect(bridge.sendUserMessage?.("hello")).toBeUndefined();
|
|
});
|
|
|
|
it("refreshes Gemini CLI OAuth through the provider-owned refresh hook", async () => {
|
|
refreshGeminiCliOAuthTokenMock.mockResolvedValueOnce({
|
|
type: "oauth",
|
|
provider: "google-gemini-cli",
|
|
access: "fresh-access",
|
|
refresh: "fresh-refresh",
|
|
expires: Date.now() + 60_000,
|
|
email: "user@example.com",
|
|
projectId: "project-1",
|
|
});
|
|
|
|
const { providers } = await registerProviderPlugin({
|
|
plugin: googleProviderPlugin,
|
|
id: "google",
|
|
name: "Google Provider",
|
|
});
|
|
const provider = requireRegisteredProvider(providers, "google-gemini-cli");
|
|
const credential = {
|
|
type: "oauth" as const,
|
|
provider: "google-gemini-cli",
|
|
access: "stale-access",
|
|
refresh: "stale-refresh",
|
|
expires: Date.now() - 60_000,
|
|
email: "user@example.com",
|
|
projectId: "project-1",
|
|
};
|
|
|
|
await expect(provider.refreshOAuth?.(credential)).resolves.toMatchObject({
|
|
access: "fresh-access",
|
|
refresh: "fresh-refresh",
|
|
email: "user@example.com",
|
|
projectId: "project-1",
|
|
});
|
|
expect(refreshGeminiCliOAuthTokenMock).toHaveBeenCalledWith(credential);
|
|
});
|
|
});
|