2026-03-30 11:37:09 +08:00
|
|
|
/**
|
|
|
|
|
* Comprehensive format conversion tests.
|
|
|
|
|
*
|
|
|
|
|
* Verifies that every supported input format can be converted to every
|
|
|
|
|
* supported output format via the /api/v1/tools/convert endpoint.
|
|
|
|
|
* Also tests SVG-to-raster via the dedicated endpoint.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
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");
|
|
|
|
|
|
|
|
|
|
// Output formats accepted by the convert tool
|
2026-04-04 21:33:48 +08:00
|
|
|
const OUTPUT_FORMATS = ["jpg", "png", "webp", "avif", "tiff", "gif", "heic"] as const;
|
2026-03-30 11:37:09 +08:00
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Shared state
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
let testApp: TestApp;
|
|
|
|
|
let app: TestApp["app"];
|
|
|
|
|
let adminToken: string;
|
|
|
|
|
|
|
|
|
|
// Input buffers generated from the PNG fixture (created in beforeAll)
|
|
|
|
|
const inputs: Record<string, { buffer: Buffer; filename: string; contentType: string }> = {};
|
|
|
|
|
|
|
|
|
|
beforeAll(async () => {
|
|
|
|
|
testApp = await buildTestApp();
|
|
|
|
|
app = testApp.app;
|
|
|
|
|
adminToken = await loginAsAdmin(app);
|
|
|
|
|
|
|
|
|
|
// Base fixture
|
|
|
|
|
const png = readFileSync(join(FIXTURES, "test-200x150.png"));
|
|
|
|
|
|
|
|
|
|
// Generate all raster input formats from the PNG fixture
|
|
|
|
|
inputs.png = { buffer: png, filename: "test.png", contentType: "image/png" };
|
|
|
|
|
inputs.jpg = {
|
|
|
|
|
buffer: await sharp(png).jpeg().toBuffer(),
|
|
|
|
|
filename: "test.jpg",
|
|
|
|
|
contentType: "image/jpeg",
|
|
|
|
|
};
|
|
|
|
|
inputs.webp = {
|
|
|
|
|
buffer: await sharp(png).webp().toBuffer(),
|
|
|
|
|
filename: "test.webp",
|
|
|
|
|
contentType: "image/webp",
|
|
|
|
|
};
|
|
|
|
|
inputs.avif = {
|
|
|
|
|
buffer: await sharp(png).avif().toBuffer(),
|
|
|
|
|
filename: "test.avif",
|
|
|
|
|
contentType: "image/avif",
|
|
|
|
|
};
|
|
|
|
|
inputs.tiff = {
|
|
|
|
|
buffer: await sharp(png).tiff().toBuffer(),
|
|
|
|
|
filename: "test.tiff",
|
|
|
|
|
contentType: "image/tiff",
|
|
|
|
|
};
|
|
|
|
|
inputs.gif = {
|
|
|
|
|
buffer: await sharp(png).gif().toBuffer(),
|
|
|
|
|
filename: "test.gif",
|
|
|
|
|
contentType: "image/gif",
|
|
|
|
|
};
|
2026-04-04 21:33:48 +08:00
|
|
|
inputs.heic = {
|
|
|
|
|
buffer: readFileSync(join(FIXTURES, "test-200x150.heic")),
|
|
|
|
|
filename: "test.heic",
|
|
|
|
|
contentType: "image/heic",
|
|
|
|
|
};
|
2026-03-30 11:37:09 +08:00
|
|
|
inputs.svg = {
|
|
|
|
|
buffer: readFileSync(join(FIXTURES, "test-100x100.svg")),
|
|
|
|
|
filename: "test.svg",
|
|
|
|
|
contentType: "image/svg+xml",
|
|
|
|
|
};
|
|
|
|
|
}, 30_000);
|
|
|
|
|
|
|
|
|
|
afterAll(async () => {
|
|
|
|
|
await testApp.cleanup();
|
|
|
|
|
}, 10_000);
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// Raster-to-raster conversions via /api/v1/tools/convert
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
describe("Format conversion matrix", () => {
|
2026-04-04 21:33:48 +08:00
|
|
|
const rasterInputs = ["png", "jpg", "webp", "avif", "tiff", "gif", "heic"];
|
2026-03-30 11:37:09 +08:00
|
|
|
|
|
|
|
|
for (const inputFmt of rasterInputs) {
|
|
|
|
|
for (const outputFmt of OUTPUT_FORMATS) {
|
|
|
|
|
it(`converts ${inputFmt} -> ${outputFmt}`, async () => {
|
|
|
|
|
const input = inputs[inputFmt];
|
|
|
|
|
const { body: payload, contentType } = createMultipartPayload([
|
|
|
|
|
{
|
|
|
|
|
name: "file",
|
|
|
|
|
filename: input.filename,
|
|
|
|
|
contentType: input.contentType,
|
|
|
|
|
content: input.buffer,
|
|
|
|
|
},
|
|
|
|
|
{ name: "settings", content: JSON.stringify({ format: outputFmt }) },
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: "POST",
|
|
|
|
|
url: "/api/v1/tools/convert",
|
|
|
|
|
headers: {
|
|
|
|
|
authorization: `Bearer ${adminToken}`,
|
|
|
|
|
"content-type": contentType,
|
|
|
|
|
},
|
|
|
|
|
body: payload,
|
|
|
|
|
});
|
|
|
|
|
|
2026-04-20 15:17:08 +08:00
|
|
|
// HEIC encode/decode requires libheif which may not be installed (Windows, some Linux)
|
|
|
|
|
if (res.statusCode === 422 && (inputFmt === "heic" || outputFmt === "heic")) return;
|
2026-03-30 11:37:09 +08:00
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = JSON.parse(res.body);
|
|
|
|
|
expect(body.downloadUrl).toContain(`.${outputFmt}`);
|
|
|
|
|
expect(body.processedSize).toBeGreaterThan(0);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// SVG-to-raster conversions via /api/v1/tools/convert
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
describe("SVG via convert tool", () => {
|
|
|
|
|
for (const outputFmt of OUTPUT_FORMATS) {
|
|
|
|
|
it(`converts svg -> ${outputFmt}`, async () => {
|
|
|
|
|
const input = inputs.svg;
|
|
|
|
|
const { body: payload, contentType } = createMultipartPayload([
|
|
|
|
|
{
|
|
|
|
|
name: "file",
|
|
|
|
|
filename: input.filename,
|
|
|
|
|
contentType: input.contentType,
|
|
|
|
|
content: input.buffer,
|
|
|
|
|
},
|
|
|
|
|
{ name: "settings", content: JSON.stringify({ format: outputFmt }) },
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: "POST",
|
|
|
|
|
url: "/api/v1/tools/convert",
|
|
|
|
|
headers: {
|
|
|
|
|
authorization: `Bearer ${adminToken}`,
|
|
|
|
|
"content-type": contentType,
|
|
|
|
|
},
|
|
|
|
|
body: payload,
|
|
|
|
|
});
|
|
|
|
|
|
2026-04-20 15:17:08 +08:00
|
|
|
// HEIC encode/decode requires libheif which may not be installed (Windows, some Linux)
|
|
|
|
|
if (res.statusCode === 422 && outputFmt === "heic") return;
|
2026-03-30 11:37:09 +08:00
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = JSON.parse(res.body);
|
|
|
|
|
expect(body.downloadUrl).toContain(`.${outputFmt}`);
|
|
|
|
|
expect(body.processedSize).toBeGreaterThan(0);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// SVG-to-raster via dedicated endpoint
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
describe("SVG via dedicated svg-to-raster endpoint", () => {
|
2026-04-13 12:51:56 +08:00
|
|
|
// Test all 7 output formats
|
|
|
|
|
for (const outputFmt of ["png", "jpg", "webp", "avif", "tiff", "gif", "heif"] as const) {
|
2026-03-30 11:37:09 +08:00
|
|
|
it(`converts svg -> ${outputFmt} via svg-to-raster`, async () => {
|
|
|
|
|
const input = inputs.svg;
|
|
|
|
|
const { body: payload, contentType } = createMultipartPayload([
|
|
|
|
|
{
|
|
|
|
|
name: "file",
|
|
|
|
|
filename: input.filename,
|
|
|
|
|
contentType: input.contentType,
|
|
|
|
|
content: input.buffer,
|
|
|
|
|
},
|
|
|
|
|
{ name: "settings", content: JSON.stringify({ outputFormat: outputFmt, width: 200 }) },
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: "POST",
|
|
|
|
|
url: "/api/v1/tools/svg-to-raster",
|
|
|
|
|
headers: {
|
|
|
|
|
authorization: `Bearer ${adminToken}`,
|
|
|
|
|
"content-type": contentType,
|
|
|
|
|
},
|
|
|
|
|
body: payload,
|
|
|
|
|
});
|
|
|
|
|
|
2026-04-13 12:51:56 +08:00
|
|
|
// HEIF encoding requires heif-enc which may not be installed in dev/CI
|
|
|
|
|
if (outputFmt === "heif" && res.statusCode === 422) {
|
|
|
|
|
return; // skip gracefully
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-30 11:37:09 +08:00
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = JSON.parse(res.body);
|
|
|
|
|
expect(body.downloadUrl).toContain(`.${outputFmt}`);
|
|
|
|
|
expect(body.processedSize).toBeGreaterThan(0);
|
|
|
|
|
});
|
|
|
|
|
}
|
2026-04-13 12:51:56 +08:00
|
|
|
|
|
|
|
|
// Quality setting: low quality jpg should be smaller than high quality jpg
|
|
|
|
|
it("respects quality setting (low vs high quality jpg)", async () => {
|
|
|
|
|
const input = inputs.svg;
|
|
|
|
|
|
|
|
|
|
const makeRequest = async (quality: number) => {
|
|
|
|
|
const { body: payload, contentType } = createMultipartPayload([
|
|
|
|
|
{
|
|
|
|
|
name: "file",
|
|
|
|
|
filename: input.filename,
|
|
|
|
|
contentType: input.contentType,
|
|
|
|
|
content: input.buffer,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "settings",
|
|
|
|
|
content: JSON.stringify({ outputFormat: "jpg", width: 200, quality }),
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
return app.inject({
|
|
|
|
|
method: "POST",
|
|
|
|
|
url: "/api/v1/tools/svg-to-raster",
|
|
|
|
|
headers: {
|
|
|
|
|
authorization: `Bearer ${adminToken}`,
|
|
|
|
|
"content-type": contentType,
|
|
|
|
|
},
|
|
|
|
|
body: payload,
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const [lowRes, highRes] = await Promise.all([makeRequest(10), makeRequest(95)]);
|
|
|
|
|
|
|
|
|
|
expect(lowRes.statusCode).toBe(200);
|
|
|
|
|
expect(highRes.statusCode).toBe(200);
|
|
|
|
|
|
|
|
|
|
const lowBody = JSON.parse(lowRes.body);
|
|
|
|
|
const highBody = JSON.parse(highRes.body);
|
|
|
|
|
|
|
|
|
|
expect(highBody.processedSize).toBeGreaterThan(lowBody.processedSize);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// DPI setting: higher DPI without width constraint produces a larger image
|
|
|
|
|
it("respects DPI setting (72 vs 300 dpi png)", async () => {
|
|
|
|
|
const input = inputs.svg;
|
|
|
|
|
|
|
|
|
|
const makeRequest = async (dpi: number) => {
|
|
|
|
|
const { body: payload, contentType } = createMultipartPayload([
|
|
|
|
|
{
|
|
|
|
|
name: "file",
|
|
|
|
|
filename: input.filename,
|
|
|
|
|
contentType: input.contentType,
|
|
|
|
|
content: input.buffer,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "settings",
|
|
|
|
|
content: JSON.stringify({ outputFormat: "png", dpi }),
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
return app.inject({
|
|
|
|
|
method: "POST",
|
|
|
|
|
url: "/api/v1/tools/svg-to-raster",
|
|
|
|
|
headers: {
|
|
|
|
|
authorization: `Bearer ${adminToken}`,
|
|
|
|
|
"content-type": contentType,
|
|
|
|
|
},
|
|
|
|
|
body: payload,
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const [lowDpi, highDpi] = await Promise.all([makeRequest(72), makeRequest(300)]);
|
|
|
|
|
|
|
|
|
|
expect(lowDpi.statusCode).toBe(200);
|
|
|
|
|
expect(highDpi.statusCode).toBe(200);
|
|
|
|
|
|
|
|
|
|
const lowBody = JSON.parse(lowDpi.body);
|
|
|
|
|
const highBody = JSON.parse(highDpi.body);
|
|
|
|
|
|
|
|
|
|
expect(highBody.processedSize).toBeGreaterThan(lowBody.processedSize);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Non-browser formats should include a previewUrl
|
|
|
|
|
it("returns previewUrl for non-browser format (tiff)", async () => {
|
|
|
|
|
const input = inputs.svg;
|
|
|
|
|
const { body: payload, contentType } = createMultipartPayload([
|
|
|
|
|
{
|
|
|
|
|
name: "file",
|
|
|
|
|
filename: input.filename,
|
|
|
|
|
contentType: input.contentType,
|
|
|
|
|
content: input.buffer,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "settings",
|
|
|
|
|
content: JSON.stringify({ outputFormat: "tiff", width: 200 }),
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const res = await app.inject({
|
|
|
|
|
method: "POST",
|
|
|
|
|
url: "/api/v1/tools/svg-to-raster",
|
|
|
|
|
headers: {
|
|
|
|
|
authorization: `Bearer ${adminToken}`,
|
|
|
|
|
"content-type": contentType,
|
|
|
|
|
},
|
|
|
|
|
body: payload,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(res.statusCode).toBe(200);
|
|
|
|
|
const body = JSON.parse(res.body);
|
|
|
|
|
expect(body.previewUrl).toBeDefined();
|
|
|
|
|
expect(body.previewUrl).toContain("preview.webp");
|
|
|
|
|
});
|
2026-03-30 11:37:09 +08:00
|
|
|
});
|