mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
283 lines
7.8 KiB
TypeScript
283 lines
7.8 KiB
TypeScript
// Google tests cover music generation provider plugin behavior.
|
|
import { afterAll, afterEach, describe, expect, it, vi } from "vitest";
|
|
|
|
const { createGoogleGenAIMock, generateContentMock } = vi.hoisted(() => {
|
|
const generateContentMockLocal = vi.fn();
|
|
const createGoogleGenAIMockLocal = vi.fn(() => {
|
|
return {
|
|
models: {
|
|
generateContent: generateContentMockLocal,
|
|
},
|
|
};
|
|
});
|
|
return {
|
|
createGoogleGenAIMock: createGoogleGenAIMockLocal,
|
|
generateContentMock: generateContentMockLocal,
|
|
};
|
|
});
|
|
|
|
vi.mock("./google-genai-runtime.js", () => ({
|
|
createGoogleGenAI: createGoogleGenAIMock,
|
|
}));
|
|
|
|
import * as providerAuthRuntime from "openclaw/plugin-sdk/provider-auth-runtime";
|
|
import { expectExplicitMusicGenerationCapabilities } from "openclaw/plugin-sdk/provider-test-contracts";
|
|
import { buildGoogleMusicGenerationProvider } from "./music-generation-provider.js";
|
|
|
|
type GoogleGenAIConfig = {
|
|
apiKey?: string;
|
|
httpOptions?: {
|
|
baseUrl?: string;
|
|
};
|
|
};
|
|
|
|
type GenerateContentRequest = {
|
|
model?: string;
|
|
config?: unknown;
|
|
};
|
|
|
|
function lastGoogleGenAIConfig(): GoogleGenAIConfig {
|
|
const calls = createGoogleGenAIMock.mock.calls as unknown[][];
|
|
const config = calls.at(-1)?.[0];
|
|
if (!config) {
|
|
throw new Error("Expected GoogleGenAI config");
|
|
}
|
|
return config as GoogleGenAIConfig;
|
|
}
|
|
|
|
function firstGenerateContentRequest(): GenerateContentRequest {
|
|
const calls = generateContentMock.mock.calls as unknown[][];
|
|
const request = calls[0]?.[0];
|
|
if (!request) {
|
|
throw new Error("Expected generateContent request");
|
|
}
|
|
return request as GenerateContentRequest;
|
|
}
|
|
|
|
describe("google music generation provider", () => {
|
|
afterEach(() => {
|
|
vi.restoreAllMocks();
|
|
generateContentMock.mockReset();
|
|
createGoogleGenAIMock.mockClear();
|
|
});
|
|
|
|
afterAll(() => {
|
|
vi.doUnmock("./google-genai-runtime.js");
|
|
vi.resetModules();
|
|
});
|
|
|
|
it("declares explicit mode capabilities", () => {
|
|
expectExplicitMusicGenerationCapabilities(buildGoogleMusicGenerationProvider());
|
|
});
|
|
|
|
it("submits generation and returns inline audio bytes plus lyrics", async () => {
|
|
vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({
|
|
apiKey: "google-key",
|
|
source: "env",
|
|
mode: "api-key",
|
|
});
|
|
generateContentMock.mockResolvedValue({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [
|
|
{ text: "wake the city up" },
|
|
{
|
|
inlineData: {
|
|
data: Buffer.from("mp3-bytes").toString("base64"),
|
|
mimeType: "audio/mpeg",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
const provider = buildGoogleMusicGenerationProvider();
|
|
const result = await provider.generateMusic({
|
|
provider: "google",
|
|
model: "lyria-3-clip-preview",
|
|
prompt: "upbeat synthpop anthem",
|
|
cfg: {},
|
|
instrumental: true,
|
|
});
|
|
|
|
const generateRequest = firstGenerateContentRequest();
|
|
expect(generateRequest.model).toBe("lyria-3-clip-preview");
|
|
expect(generateRequest.config).toEqual({
|
|
responseModalities: ["AUDIO", "TEXT"],
|
|
});
|
|
expect(result.tracks).toHaveLength(1);
|
|
expect(result.tracks[0]?.mimeType).toBe("audio/mpeg");
|
|
expect(result.lyrics).toEqual(["wake the city up"]);
|
|
expect(lastGoogleGenAIConfig().apiKey).toBe("google-key");
|
|
});
|
|
|
|
it("strips /v1beta suffix from configured baseUrl before passing to GoogleGenAI SDK", async () => {
|
|
vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({
|
|
apiKey: "google-key",
|
|
source: "env",
|
|
mode: "api-key",
|
|
});
|
|
generateContentMock.mockResolvedValue({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [
|
|
{
|
|
inlineData: {
|
|
data: Buffer.from("mp3-bytes").toString("base64"),
|
|
mimeType: "audio/mpeg",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
const provider = buildGoogleMusicGenerationProvider();
|
|
await provider.generateMusic({
|
|
provider: "google",
|
|
model: "lyria-3-clip-preview",
|
|
prompt: "ambient ocean",
|
|
cfg: {
|
|
models: {
|
|
providers: {
|
|
google: { baseUrl: "https://generativelanguage.googleapis.com/v1beta", models: [] },
|
|
},
|
|
},
|
|
},
|
|
instrumental: true,
|
|
});
|
|
|
|
expect(lastGoogleGenAIConfig().httpOptions?.baseUrl).toBe(
|
|
"https://generativelanguage.googleapis.com",
|
|
);
|
|
});
|
|
|
|
it("does NOT strip /v1beta when it appears mid-path (end-anchor proof)", async () => {
|
|
vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({
|
|
apiKey: "google-key",
|
|
source: "env",
|
|
mode: "api-key",
|
|
});
|
|
generateContentMock.mockResolvedValue({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [
|
|
{ inlineData: { data: Buffer.from("x").toString("base64"), mimeType: "audio/mpeg" } },
|
|
],
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
const provider = buildGoogleMusicGenerationProvider();
|
|
await provider.generateMusic({
|
|
provider: "google",
|
|
model: "lyria-3-clip-preview",
|
|
prompt: "test",
|
|
cfg: {
|
|
models: {
|
|
providers: { google: { baseUrl: "https://proxy.example.com/v1beta/route", models: [] } },
|
|
},
|
|
},
|
|
instrumental: true,
|
|
});
|
|
|
|
expect(lastGoogleGenAIConfig().httpOptions?.baseUrl).toBe(
|
|
"https://proxy.example.com/v1beta/route",
|
|
);
|
|
});
|
|
|
|
it("passes baseUrl unchanged when no /v1beta suffix is present", async () => {
|
|
vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({
|
|
apiKey: "google-key",
|
|
source: "env",
|
|
mode: "api-key",
|
|
});
|
|
generateContentMock.mockResolvedValue({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [
|
|
{ inlineData: { data: Buffer.from("x").toString("base64"), mimeType: "audio/mpeg" } },
|
|
],
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
const provider = buildGoogleMusicGenerationProvider();
|
|
await provider.generateMusic({
|
|
provider: "google",
|
|
model: "lyria-3-clip-preview",
|
|
prompt: "test",
|
|
cfg: {
|
|
models: {
|
|
providers: {
|
|
google: { baseUrl: "https://generativelanguage.googleapis.com", models: [] },
|
|
},
|
|
},
|
|
},
|
|
instrumental: true,
|
|
});
|
|
|
|
expect(lastGoogleGenAIConfig().httpOptions?.baseUrl).toBe(
|
|
"https://generativelanguage.googleapis.com",
|
|
);
|
|
});
|
|
|
|
it("does not set baseUrl when none is configured", async () => {
|
|
vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({
|
|
apiKey: "google-key",
|
|
source: "env",
|
|
mode: "api-key",
|
|
});
|
|
generateContentMock.mockResolvedValue({
|
|
candidates: [
|
|
{
|
|
content: {
|
|
parts: [
|
|
{ inlineData: { data: Buffer.from("x").toString("base64"), mimeType: "audio/mpeg" } },
|
|
],
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
const provider = buildGoogleMusicGenerationProvider();
|
|
await provider.generateMusic({
|
|
provider: "google",
|
|
model: "lyria-3-clip-preview",
|
|
prompt: "test",
|
|
cfg: {},
|
|
instrumental: true,
|
|
});
|
|
|
|
expect(lastGoogleGenAIConfig().httpOptions?.baseUrl).toBeUndefined();
|
|
});
|
|
|
|
it("rejects unsupported wav output on clip model", async () => {
|
|
vi.spyOn(providerAuthRuntime, "resolveApiKeyForProvider").mockResolvedValue({
|
|
apiKey: "google-key",
|
|
source: "env",
|
|
mode: "api-key",
|
|
});
|
|
const provider = buildGoogleMusicGenerationProvider();
|
|
|
|
await expect(
|
|
provider.generateMusic({
|
|
provider: "google",
|
|
model: "lyria-3-clip-preview",
|
|
prompt: "ambient ocean",
|
|
cfg: {},
|
|
format: "wav",
|
|
}),
|
|
).rejects.toThrow("supports mp3 output");
|
|
});
|
|
});
|