mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Quality-VBR ogg (libvorbis -q:a) fixes 8 kHz 'encoder setup failed' in both ogg paths; drop empty COOKIE_SECRET ENV (app auto-generates); emit real bundle extractedSize; fix stale image-pad/compress-pdf QA specs.
80 lines
3.2 KiB
TypeScript
80 lines
3.2 KiB
TypeScript
import { readFileSync } from "node:fs";
|
|
import { join } from "node:path";
|
|
import { ffmpegAvailable } from "@snapotter/media-engine";
|
|
import { afterAll, beforeAll, describe, expect, it } from "vitest";
|
|
import { buildTestApp, createMultipartPayload, loginAsAdmin, type TestApp } from "./test-server.js";
|
|
|
|
const WAV = readFileSync(join(__dirname, "..", "fixtures", "media", "tiny.wav"));
|
|
const MP3 = readFileSync(join(__dirname, "..", "fixtures", "media", "tiny.mp3"));
|
|
|
|
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<string, unknown>, file = WAV, filename = "tiny.wav") {
|
|
const { body, contentType } = createMultipartPayload([
|
|
{ name: "file", filename, contentType: "audio/wav", content: file },
|
|
{ name: "settings", content: JSON.stringify(settings) },
|
|
]);
|
|
return testApp.app.inject({
|
|
method: "POST",
|
|
url: "/api/v1/tools/convert-audio",
|
|
headers: { authorization: `Bearer ${adminToken}`, "content-type": contentType },
|
|
body,
|
|
});
|
|
}
|
|
|
|
describe.skipIf(!ffmpegAvailable())("convert-audio (requires ffmpeg)", () => {
|
|
it("converts wav to mp3 and returns 200", async () => {
|
|
const res = await runTool({ format: "mp3" });
|
|
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 outName = envelope.downloadUrl.split("/").pop() as string;
|
|
expect(outName.endsWith(".mp3")).toBe(true);
|
|
}, 60_000);
|
|
|
|
it("converts mp3 to ogg and returns 200", async () => {
|
|
// mp3 fixture (44100 Hz); the 8 kHz wav -> ogg case is the regression test below.
|
|
const res = await runTool({ format: "ogg" }, MP3, "tiny.mp3");
|
|
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 outName = envelope.downloadUrl.split("/").pop() as string;
|
|
expect(outName.endsWith(".ogg")).toBe(true);
|
|
}, 60_000);
|
|
|
|
it("converts 8 kHz wav to ogg (regression: libvorbis low samplerate)", async () => {
|
|
// tiny.wav is 8 kHz; a fixed bitrate (-b:a) made libvorbis "encoder setup failed".
|
|
// The ogg path now uses -q:a (quality VBR), which adapts to the sample rate.
|
|
const res = await runTool({ format: "ogg" }, WAV, "tiny.wav");
|
|
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);
|
|
expect((envelope.downloadUrl.split("/").pop() as string).endsWith(".ogg")).toBe(true);
|
|
}, 60_000);
|
|
});
|