* Secrets: add inline allowlist review set * Secrets: narrow detect-secrets file exclusions * Secrets: exclude Docker fingerprint false positive * Secrets: allowlist test and docs false positives * Secrets: refresh baseline after allowlist updates * Secrets: fix gateway chat fixture pragma * Secrets: format pre-commit config * Android: keep talk mode fixture JSON valid * Feishu: rely on client timeout injection * Secrets: allowlist provider auth test fixtures * Secrets: allowlist onboard search fixtures * Secrets: allowlist onboard mode fixture * Secrets: allowlist gateway auth mode fixture * Secrets: allowlist APNS wake test key * Secrets: allowlist gateway reload fixtures * Secrets: allowlist moonshot video fixture * Secrets: allowlist auto audio fixture * Secrets: allowlist tiny audio fixture * Secrets: allowlist embeddings fixtures * Secrets: allowlist resolve fixtures * Secrets: allowlist target registry pattern fixtures * Secrets: allowlist gateway chat env fixture * Secrets: refresh baseline after fixture allowlists * Secrets: reapply gateway chat env allowlist * Secrets: reapply gateway chat env allowlist * Secrets: stabilize gateway chat env allowlist * Secrets: allowlist runtime snapshot save fixture * Secrets: allowlist oauth profile fixtures * Secrets: allowlist compaction identifier fixture * Secrets: allowlist model auth fixture * Secrets: allowlist model status fixtures * Secrets: allowlist custom onboarding fixture * Secrets: allowlist mattermost token summary fixtures * Secrets: allowlist gateway auth suite fixtures * Secrets: allowlist channel summary fixture * Secrets: allowlist provider usage auth fixtures * Secrets: allowlist media proxy fixture * Secrets: allowlist secrets audit fixtures * Secrets: refresh baseline after final fixture allowlists * Feishu: prefer explicit client timeout * Feishu: test direct timeout precedence
184 lines
5.4 KiB
TypeScript
184 lines
5.4 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import { buildProviderRegistry, runCapability } from "./runner.js";
|
|
import { withAudioFixture } from "./runner.test-utils.js";
|
|
|
|
function createOpenAiAudioProvider(
|
|
transcribeAudio: (req: { model?: string }) => Promise<{ text: string; model: string }>,
|
|
) {
|
|
return buildProviderRegistry({
|
|
openai: {
|
|
id: "openai",
|
|
capabilities: ["audio"],
|
|
transcribeAudio,
|
|
},
|
|
});
|
|
}
|
|
|
|
function createOpenAiAudioCfg(extra?: Partial<OpenClawConfig>): OpenClawConfig {
|
|
return {
|
|
models: {
|
|
providers: {
|
|
openai: {
|
|
apiKey: "test-key",
|
|
models: [],
|
|
},
|
|
},
|
|
},
|
|
...extra,
|
|
} as unknown as OpenClawConfig;
|
|
}
|
|
|
|
async function runAutoAudioCase(params: {
|
|
transcribeAudio: (req: { model?: string }) => Promise<{ text: string; model: string }>;
|
|
cfgExtra?: Partial<OpenClawConfig>;
|
|
}) {
|
|
let runResult: Awaited<ReturnType<typeof runCapability>> | undefined;
|
|
await withAudioFixture("openclaw-auto-audio", async ({ ctx, media, cache }) => {
|
|
const providerRegistry = createOpenAiAudioProvider(params.transcribeAudio);
|
|
const cfg = createOpenAiAudioCfg(params.cfgExtra);
|
|
runResult = await runCapability({
|
|
capability: "audio",
|
|
cfg,
|
|
ctx,
|
|
attachments: cache,
|
|
media,
|
|
providerRegistry,
|
|
});
|
|
});
|
|
if (!runResult) {
|
|
throw new Error("Expected auto audio case result");
|
|
}
|
|
return runResult;
|
|
}
|
|
|
|
describe("runCapability auto audio entries", () => {
|
|
it("uses provider keys to auto-enable audio transcription", async () => {
|
|
let seenModel: string | undefined;
|
|
const result = await runAutoAudioCase({
|
|
transcribeAudio: async (req) => {
|
|
seenModel = req.model;
|
|
return { text: "ok", model: req.model ?? "unknown" };
|
|
},
|
|
});
|
|
expect(result.outputs[0]?.text).toBe("ok");
|
|
expect(seenModel).toBe("gpt-4o-mini-transcribe");
|
|
expect(result.decision.outcome).toBe("success");
|
|
});
|
|
|
|
it("skips auto audio when disabled", async () => {
|
|
const result = await runAutoAudioCase({
|
|
transcribeAudio: async () => ({
|
|
text: "ok",
|
|
model: "whisper-1",
|
|
}),
|
|
cfgExtra: {
|
|
tools: {
|
|
media: {
|
|
audio: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
expect(result.outputs).toHaveLength(0);
|
|
expect(result.decision.outcome).toBe("disabled");
|
|
});
|
|
|
|
it("prefers explicitly configured audio model entries", async () => {
|
|
let seenModel: string | undefined;
|
|
const result = await runAutoAudioCase({
|
|
transcribeAudio: async (req) => {
|
|
seenModel = req.model;
|
|
return { text: "ok", model: req.model ?? "unknown" };
|
|
},
|
|
cfgExtra: {
|
|
tools: {
|
|
media: {
|
|
audio: {
|
|
models: [{ provider: "openai", model: "whisper-1" }],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
expect(result.outputs[0]?.text).toBe("ok");
|
|
expect(seenModel).toBe("whisper-1");
|
|
});
|
|
|
|
it("uses mistral when only mistral key is configured", async () => {
|
|
const priorEnv: Record<string, string | undefined> = {
|
|
OPENAI_API_KEY: process.env.OPENAI_API_KEY,
|
|
GROQ_API_KEY: process.env.GROQ_API_KEY,
|
|
DEEPGRAM_API_KEY: process.env.DEEPGRAM_API_KEY,
|
|
GEMINI_API_KEY: process.env.GEMINI_API_KEY,
|
|
MISTRAL_API_KEY: process.env.MISTRAL_API_KEY,
|
|
};
|
|
delete process.env.OPENAI_API_KEY;
|
|
delete process.env.GROQ_API_KEY;
|
|
delete process.env.DEEPGRAM_API_KEY;
|
|
delete process.env.GEMINI_API_KEY;
|
|
process.env.MISTRAL_API_KEY = "mistral-test-key"; // pragma: allowlist secret
|
|
let runResult: Awaited<ReturnType<typeof runCapability>> | undefined;
|
|
try {
|
|
await withAudioFixture("openclaw-auto-audio-mistral", async ({ ctx, media, cache }) => {
|
|
const providerRegistry = buildProviderRegistry({
|
|
openai: {
|
|
id: "openai",
|
|
capabilities: ["audio"],
|
|
transcribeAudio: async () => ({ text: "openai", model: "gpt-4o-mini-transcribe" }),
|
|
},
|
|
mistral: {
|
|
id: "mistral",
|
|
capabilities: ["audio"],
|
|
transcribeAudio: async (req) => ({ text: "mistral", model: req.model ?? "unknown" }),
|
|
},
|
|
});
|
|
const cfg = {
|
|
models: {
|
|
providers: {
|
|
mistral: {
|
|
apiKey: "mistral-test-key", // pragma: allowlist secret
|
|
models: [],
|
|
},
|
|
},
|
|
},
|
|
tools: {
|
|
media: {
|
|
audio: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
},
|
|
} as unknown as OpenClawConfig;
|
|
|
|
runResult = await runCapability({
|
|
capability: "audio",
|
|
cfg,
|
|
ctx,
|
|
attachments: cache,
|
|
media,
|
|
providerRegistry,
|
|
});
|
|
});
|
|
} finally {
|
|
for (const [key, value] of Object.entries(priorEnv)) {
|
|
if (value === undefined) {
|
|
delete process.env[key];
|
|
} else {
|
|
process.env[key] = value;
|
|
}
|
|
}
|
|
}
|
|
if (!runResult) {
|
|
throw new Error("Expected auto audio mistral result");
|
|
}
|
|
expect(runResult.decision.outcome).toBe("success");
|
|
expect(runResult.outputs[0]?.provider).toBe("mistral");
|
|
expect(runResult.outputs[0]?.model).toBe("voxtral-mini-latest");
|
|
expect(runResult.outputs[0]?.text).toBe("mistral");
|
|
});
|
|
});
|