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
192 lines
5.6 KiB
TypeScript
192 lines
5.6 KiB
TypeScript
// Vydra tests cover image generation provider plugin behavior.
|
|
import { installPinnedHostnameTestHooks } from "openclaw/plugin-sdk/test-env";
|
|
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import { buildVydraImageGenerationProvider } from "./image-generation-provider.js";
|
|
import {
|
|
binaryResponse,
|
|
jsonResponse,
|
|
stubFetch,
|
|
stubVydraApiKey,
|
|
} from "./provider-test-helpers.test.js";
|
|
|
|
function fetchCall(fetchMock: ReturnType<typeof vi.fn>, index = 0): [string, RequestInit] {
|
|
const call = fetchMock.mock.calls[index];
|
|
if (!call) {
|
|
throw new Error(`Expected fetch call ${index}`);
|
|
}
|
|
return call as [string, RequestInit];
|
|
}
|
|
|
|
function oversizedJsonResponse(): Response {
|
|
return new Response(Buffer.alloc(16 * 1024 * 1024 + 1, 0x20), {
|
|
status: 200,
|
|
headers: { "Content-Type": "application/json" },
|
|
});
|
|
}
|
|
|
|
describe("vydra image-generation provider", () => {
|
|
installPinnedHostnameTestHooks();
|
|
|
|
afterEach(() => {
|
|
vi.unstubAllGlobals();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("posts to the www api and downloads the generated image", async () => {
|
|
stubVydraApiKey();
|
|
const fetchMock = stubFetch(
|
|
jsonResponse({
|
|
jobId: "job-123",
|
|
status: "completed",
|
|
imageUrl: "https://cdn.vydra.ai/generated/test.png",
|
|
}),
|
|
binaryResponse("png-data", "image/png"),
|
|
);
|
|
|
|
const provider = buildVydraImageGenerationProvider();
|
|
const result = await provider.generateImage({
|
|
provider: "vydra",
|
|
model: "grok-imagine",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
});
|
|
|
|
const createCall = fetchCall(fetchMock);
|
|
expect(createCall[0]).toBe("https://www.vydra.ai/api/v1/models/grok-imagine");
|
|
expect(createCall[1].method).toBe("POST");
|
|
expect(createCall[1].body).toBe(
|
|
JSON.stringify({
|
|
prompt: "draw a cat",
|
|
model: "text-to-image",
|
|
}),
|
|
);
|
|
const headers = new Headers(createCall[1].headers);
|
|
expect(headers.get("authorization")).toBe("Bearer vydra-test-key");
|
|
expect(result).toEqual({
|
|
images: [
|
|
{
|
|
buffer: Buffer.from("png-data"),
|
|
mimeType: "image/png",
|
|
fileName: "image-1.png",
|
|
},
|
|
],
|
|
model: "grok-imagine",
|
|
metadata: {
|
|
jobId: "job-123",
|
|
imageUrl: "https://cdn.vydra.ai/generated/test.png",
|
|
status: "completed",
|
|
},
|
|
});
|
|
});
|
|
|
|
it("rejects generated image downloads that exceed the configured media cap", async () => {
|
|
stubVydraApiKey();
|
|
stubFetch(
|
|
jsonResponse({
|
|
jobId: "job-123",
|
|
status: "completed",
|
|
imageUrl: "https://cdn.vydra.ai/generated/test.png",
|
|
}),
|
|
binaryResponse("too-large", "image/png"),
|
|
);
|
|
|
|
const provider = buildVydraImageGenerationProvider();
|
|
await expect(
|
|
provider.generateImage({
|
|
provider: "vydra",
|
|
model: "grok-imagine",
|
|
prompt: "draw a cat",
|
|
cfg: { agents: { defaults: { mediaMaxMb: 0.000001 } } },
|
|
}),
|
|
).rejects.toThrow("Vydra image download exceeds 1 bytes");
|
|
});
|
|
|
|
it("rejects image creation JSON responses that exceed the provider cap", async () => {
|
|
stubVydraApiKey();
|
|
stubFetch(oversizedJsonResponse());
|
|
|
|
const provider = buildVydraImageGenerationProvider();
|
|
await expect(
|
|
provider.generateImage({
|
|
provider: "vydra",
|
|
model: "grok-imagine",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
}),
|
|
).rejects.toThrow("vydra.image-generation: JSON response exceeds 16777216 bytes");
|
|
});
|
|
|
|
it("passes request SSRF policy to the image creation request", async () => {
|
|
stubVydraApiKey();
|
|
const fetchMock = stubFetch(
|
|
jsonResponse({
|
|
jobId: "job-123",
|
|
status: "completed",
|
|
imageUrl: "https://cdn.vydra.ai/generated/test.png",
|
|
}),
|
|
binaryResponse("png-data", "image/png"),
|
|
);
|
|
|
|
const provider = buildVydraImageGenerationProvider();
|
|
await provider.generateImage({
|
|
provider: "vydra",
|
|
model: "grok-imagine",
|
|
prompt: "draw a cat",
|
|
cfg: {
|
|
models: {
|
|
providers: {
|
|
vydra: {
|
|
baseUrl: "https://198.18.0.10/api/v1",
|
|
},
|
|
},
|
|
},
|
|
} as never,
|
|
ssrfPolicy: { allowRfc2544BenchmarkRange: true },
|
|
});
|
|
|
|
const createCall = fetchCall(fetchMock);
|
|
expect(createCall[0]).toBe("https://198.18.0.10/api/v1/models/grok-imagine");
|
|
expect(createCall[1].method).toBe("POST");
|
|
});
|
|
|
|
it("polls jobs when the create response is not completed yet", async () => {
|
|
stubVydraApiKey();
|
|
const fetchMock = stubFetch(
|
|
jsonResponse({ jobId: "job-456", status: "queued" }),
|
|
jsonResponse({
|
|
jobId: "job-456",
|
|
status: "completed",
|
|
resultUrls: ["https://cdn.vydra.ai/generated/polled.png"],
|
|
}),
|
|
binaryResponse("png-data", "image/png"),
|
|
);
|
|
|
|
const provider = buildVydraImageGenerationProvider();
|
|
await provider.generateImage({
|
|
provider: "vydra",
|
|
model: "grok-imagine",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
});
|
|
|
|
const pollCall = fetchCall(fetchMock, 1);
|
|
expect(pollCall[0]).toBe("https://www.vydra.ai/api/v1/jobs/job-456");
|
|
expect(pollCall[1].method).toBe("GET");
|
|
});
|
|
|
|
it("rejects job poll JSON responses that exceed the provider cap", async () => {
|
|
stubVydraApiKey();
|
|
stubFetch(jsonResponse({ jobId: "job-456", status: "queued" }), oversizedJsonResponse());
|
|
|
|
const provider = buildVydraImageGenerationProvider();
|
|
await expect(
|
|
provider.generateImage({
|
|
provider: "vydra",
|
|
model: "grok-imagine",
|
|
prompt: "draw a cat",
|
|
cfg: {},
|
|
}),
|
|
).rejects.toThrow("Vydra job status: JSON response exceeds 16777216 bytes");
|
|
});
|
|
});
|