mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
355 lines
10 KiB
TypeScript
355 lines
10 KiB
TypeScript
/**
|
|||
|
|
* Integration tests for the SOTA GIF Tools.
|
||
|
|
*
|
||
|
|
* Tests all 6 processing modes (resize, optimize, speed, reverse, extract, rotate)
|
||
|
|
* plus the metadata endpoint. Uses a real Fastify server with in-memory SQLite.
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { readFileSync } from "node:fs";
|
||
|
|
import { join } from "node:path";
|
||
|
|
import sharp from "sharp";
|
||
|
|
import { afterAll, beforeAll, describe, expect, it } from "vitest";
|
||
|
|
import { buildTestApp, createMultipartPayload, loginAsAdmin, type TestApp } from "./test-server.js";
|
||
|
|
|
||
|
|
const FIXTURES = join(__dirname, "..", "fixtures");
|
||
|
|
|
||
|
|
let testApp: TestApp;
|
||
|
|
let app: TestApp["app"];
|
||
|
|
let adminToken: string;
|
||
|
|
let animatedGif: Buffer;
|
||
|
|
|
||
|
|
beforeAll(async () => {
|
||
|
|
testApp = await buildTestApp();
|
||
|
|
app = testApp.app;
|
||
|
|
adminToken = await loginAsAdmin(app);
|
||
|
|
animatedGif = readFileSync(join(FIXTURES, "animated.gif"));
|
||
|
|
}, 30_000);
|
||
|
|
|
||
|
|
afterAll(async () => {
|
||
|
|
await testApp.cleanup();
|
||
|
|
}, 10_000);
|
||
|
|
|
||
|
|
function makePayload(settings: Record<string, unknown>, buffer?: Buffer, filename?: string) {
|
||
|
|
const { body, contentType } = createMultipartPayload([
|
||
|
|
{
|
||
|
|
name: "file",
|
||
|
|
filename: filename ?? "test.gif",
|
||
|
|
contentType: "image/gif",
|
||
|
|
content: buffer ?? animatedGif,
|
||
|
|
},
|
||
|
|
{ name: "settings", content: JSON.stringify(settings) },
|
||
|
|
]);
|
||
|
|
return { body, contentType };
|
||
|
|
}
|
||
|
|
|
||
|
|
// ── Metadata endpoint ─────────────────────────────────────────────
|
||
|
|
describe("POST /api/v1/tools/gif-tools/info", () => {
|
||
|
|
it("returns metadata for an animated GIF", async () => {
|
||
|
|
const { body: payload, contentType } = createMultipartPayload([
|
||
|
|
{
|
||
|
|
name: "file",
|
||
|
|
filename: "test.gif",
|
||
|
|
contentType: "image/gif",
|
||
|
|
content: animatedGif,
|
||
|
|
},
|
||
|
|
]);
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools/info",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const data = JSON.parse(res.body);
|
||
|
|
expect(data.pages).toBe(3);
|
||
|
|
expect(data.width).toBe(100);
|
||
|
|
expect(data.height).toBe(100);
|
||
|
|
expect(data.delay).toHaveLength(3);
|
||
|
|
expect(data.duration).toBeGreaterThan(0);
|
||
|
|
expect(data.fileSize).toBeGreaterThan(0);
|
||
|
|
});
|
||
|
|
|
||
|
|
it("returns pages=1 for a static image", async () => {
|
||
|
|
const png = readFileSync(join(FIXTURES, "test-200x150.png"));
|
||
|
|
const { body: payload, contentType } = createMultipartPayload([
|
||
|
|
{
|
||
|
|
name: "file",
|
||
|
|
filename: "test.png",
|
||
|
|
contentType: "image/png",
|
||
|
|
content: png,
|
||
|
|
},
|
||
|
|
]);
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools/info",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const data = JSON.parse(res.body);
|
||
|
|
expect(data.pages).toBe(1);
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
// ── Resize mode ───────────────────────────────────────────────────
|
||
|
|
describe("Resize mode", () => {
|
||
|
|
it("resizes animated GIF by pixel dimensions", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "resize",
|
||
|
|
width: 50,
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const result = JSON.parse(res.body);
|
||
|
|
expect(result.downloadUrl).toBeDefined();
|
||
|
|
expect(result.processedSize).toBeLessThan(result.originalSize);
|
||
|
|
});
|
||
|
|
|
||
|
|
it("resizes animated GIF by percentage", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "resize",
|
||
|
|
percentage: 50,
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const result = JSON.parse(res.body);
|
||
|
|
expect(result.processedSize).toBeLessThan(result.originalSize);
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
// ── Optimize mode ─────────────────────────────────────────────────
|
||
|
|
describe("Optimize mode", () => {
|
||
|
|
it("processes with custom color/effort settings", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "optimize",
|
||
|
|
colors: 16,
|
||
|
|
effort: 10,
|
||
|
|
dither: 0.5,
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const result = JSON.parse(res.body);
|
||
|
|
expect(result.downloadUrl).toBeDefined();
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
// ── Speed mode ────────────────────────────────────────────────────
|
||
|
|
describe("Speed mode", () => {
|
||
|
|
it("doubles the playback speed", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "speed",
|
||
|
|
speedFactor: 2,
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const result = JSON.parse(res.body);
|
||
|
|
|
||
|
|
// Download and verify the delay was halved
|
||
|
|
const dlRes = await app.inject({
|
||
|
|
method: "GET",
|
||
|
|
url: result.downloadUrl,
|
||
|
|
});
|
||
|
|
const meta = await sharp(dlRes.rawPayload).metadata();
|
||
|
|
const origMeta = await sharp(animatedGif).metadata();
|
||
|
|
const origDelay = origMeta.delay?.[0] ?? 100;
|
||
|
|
const newDelay = meta.delay?.[0] ?? 0;
|
||
|
|
expect(newDelay).toBe(Math.max(20, Math.round(origDelay / 2)));
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
// ── Reverse mode ──────────────────────────────────────────────────
|
||
|
|
describe("Reverse mode", () => {
|
||
|
|
it("reverses frame order of an animated GIF", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "reverse",
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const result = JSON.parse(res.body);
|
||
|
|
expect(result.downloadUrl).toBeDefined();
|
||
|
|
|
||
|
|
// Download and verify it still has 3 frames
|
||
|
|
const dlRes = await app.inject({
|
||
|
|
method: "GET",
|
||
|
|
url: result.downloadUrl,
|
||
|
|
});
|
||
|
|
const meta = await sharp(dlRes.rawPayload).metadata();
|
||
|
|
expect(meta.pages).toBe(3);
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
// ── Extract mode ──────────────────────────────────────────────────
|
||
|
|
describe("Extract mode", () => {
|
||
|
|
it("extracts a single frame as PNG", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "extract",
|
||
|
|
extractMode: "single",
|
||
|
|
frameNumber: 0,
|
||
|
|
extractFormat: "png",
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const result = JSON.parse(res.body);
|
||
|
|
expect(result.downloadUrl).toContain("_frame0.png");
|
||
|
|
});
|
||
|
|
|
||
|
|
it("extracts all frames as a ZIP", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "extract",
|
||
|
|
extractMode: "all",
|
||
|
|
extractFormat: "png",
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const result = JSON.parse(res.body);
|
||
|
|
expect(result.downloadUrl).toContain("_frames.zip");
|
||
|
|
});
|
||
|
|
|
||
|
|
it("extracts a range of frames as a ZIP", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "extract",
|
||
|
|
extractMode: "range",
|
||
|
|
frameStart: 0,
|
||
|
|
frameEnd: 1,
|
||
|
|
extractFormat: "webp",
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const result = JSON.parse(res.body);
|
||
|
|
expect(result.downloadUrl).toContain("_frames.zip");
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
// ── Rotate mode ───────────────────────────────────────────────────
|
||
|
|
describe("Rotate mode", () => {
|
||
|
|
it("rotates 90 degrees", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "rotate",
|
||
|
|
angle: 90,
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
const result = JSON.parse(res.body);
|
||
|
|
expect(result.downloadUrl).toBeDefined();
|
||
|
|
});
|
||
|
|
|
||
|
|
it("flips horizontally", async () => {
|
||
|
|
const { body: payload, contentType } = makePayload({
|
||
|
|
mode: "rotate",
|
||
|
|
flipH: true,
|
||
|
|
});
|
||
|
|
|
||
|
|
const res = await app.inject({
|
||
|
|
method: "POST",
|
||
|
|
url: "/api/v1/tools/gif-tools",
|
||
|
|
payload,
|
||
|
|
headers: {
|
||
|
|
"content-type": contentType,
|
||
|
|
authorization: `Bearer ${adminToken}`,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(res.statusCode).toBe(200);
|
||
|
|
});
|
||
|
|
});
|