import { mkdtempSync, readFileSync, writeFileSync } from "node:fs"; import { tmpdir } from "node:os"; import { join } from "node:path"; import { ffmpegAvailable, probeMedia } from "@snapotter/media-engine"; import { afterAll, beforeAll, describe, expect, it } from "vitest"; import { buildTestApp, createMultipartPayload, loginAsAdmin, type TestApp } from "./test-server.js"; const GIF = readFileSync(join(__dirname, "..", "fixtures", "animated.gif")); let testApp: TestApp; let adminToken: string; beforeAll(async () => { testApp = await buildTestApp(); adminToken = await loginAsAdmin(testApp.app); }, 30_000); afterAll(async () => { await testApp.cleanup(); }, 10_000); async function runTool(settings: Record) { const { body, contentType } = createMultipartPayload([ { name: "file", filename: "animated.gif", contentType: "image/gif", content: GIF }, { name: "settings", content: JSON.stringify(settings) }, ]); return testApp.app.inject({ method: "POST", url: "/api/v1/tools/gif-to-video", headers: { authorization: `Bearer ${adminToken}`, "content-type": contentType }, body, }); } describe.skipIf(!ffmpegAvailable())("gif-to-video (requires ffmpeg)", () => { it("converts a GIF to mp4 by default and returns 200", async () => { const res = await runTool({}); expect(res.statusCode).toBe(200); const envelope = JSON.parse(res.body); expect(envelope.downloadUrl).toBeDefined(); const dl = await testApp.app.inject({ method: "GET", url: envelope.downloadUrl, }); expect(dl.statusCode).toBe(200); expect(dl.rawPayload.length).toBeGreaterThan(100); // Probe the downloaded file to verify it has a video stream const tmpDir = mkdtempSync(join(tmpdir(), "gif2vid-")); const probeFile = join(tmpDir, "out.mp4"); writeFileSync(probeFile, dl.rawPayload); const info = await probeMedia(probeFile); expect(info.streams.some((s) => s.type === "video")).toBe(true); }, 60_000); it("converts a GIF to webm when format is webm", async () => { const res = await runTool({ format: "webm" }); expect(res.statusCode).toBe(200); const envelope = JSON.parse(res.body); expect(envelope.downloadUrl).toBeDefined(); const dl = await testApp.app.inject({ method: "GET", url: envelope.downloadUrl, }); expect(dl.statusCode).toBe(200); expect(dl.rawPayload.length).toBeGreaterThan(100); const tmpDir = mkdtempSync(join(tmpdir(), "gif2webm-")); const probeFile = join(tmpDir, "out.webm"); writeFileSync(probeFile, dl.rawPayload); const info = await probeMedia(probeFile); expect(info.streams.some((s) => s.type === "video")).toBe(true); }, 60_000); });