/** * Integration tests for the lqip-placeholder tool (/api/v1/tools/image/lqip-placeholder). * * Covers LQIP generation, data URI prefix, strategy variants, output size, and schema validation. */ import { afterAll, beforeAll, describe, expect, it } from "vitest"; import { fixtures, readFixture } from "../../../fixtures/index.js"; import { buildTestApp, createMultipartPayload, loginAsAdmin, type TestApp, } from "../../test-server.js"; const PNG = readFixture(fixtures.image.base.png200); let testApp: TestApp; let app: TestApp["app"]; let adminToken: string; beforeAll(async () => { testApp = await buildTestApp(); app = testApp.app; adminToken = await loginAsAdmin(app); }, 30_000); afterAll(async () => { await testApp.cleanup(); }, 10_000); describe("LQIP Placeholder", () => { it("generates a placeholder with default settings", async () => { const { body, contentType } = createMultipartPayload([ { name: "file", filename: "test.png", contentType: "image/png", content: PNG }, { name: "settings", content: JSON.stringify({}) }, ]); const res = await app.inject({ method: "POST", url: "/api/v1/tools/image/lqip-placeholder", headers: { authorization: `Bearer ${adminToken}`, "content-type": contentType, }, body, }); expect(res.statusCode).toBe(200); const result = JSON.parse(res.body); expect(result.downloadUrl).toBeDefined(); expect(result.dataUri).toMatch(/^data:image\//); expect(result.width).toBeGreaterThan(0); expect(result.height).toBeGreaterThan(0); expect(result.bytes).toBeGreaterThan(0); expect(result.strategy).toBe("blur"); expect(result.html).toContain(" { const { body, contentType } = createMultipartPayload([ { name: "file", filename: "test.png", contentType: "image/png", content: PNG }, { name: "settings", content: JSON.stringify({ strategy: "solid" }) }, ]); const res = await app.inject({ method: "POST", url: "/api/v1/tools/image/lqip-placeholder", headers: { authorization: `Bearer ${adminToken}`, "content-type": contentType, }, body, }); expect(res.statusCode).toBe(200); const result = JSON.parse(res.body); expect(result.dataUri).toMatch(/^data:image\//); expect(result.strategy).toBe("solid"); }); it("produces output under 5 KiB", async () => { const { body, contentType } = createMultipartPayload([ { name: "file", filename: "test.png", contentType: "image/png", content: PNG }, { name: "settings", content: JSON.stringify({ width: 16, blur: 2 }) }, ]); const res = await app.inject({ method: "POST", url: "/api/v1/tools/image/lqip-placeholder", headers: { authorization: `Bearer ${adminToken}`, "content-type": contentType, }, body, }); expect(res.statusCode).toBe(200); const result = JSON.parse(res.body); const dlRes = await app.inject({ method: "GET", url: result.downloadUrl, headers: { authorization: `Bearer ${adminToken}` }, }); expect(dlRes.rawPayload.length).toBeLessThan(5 * 1024); }); it("rejects width above maximum (200)", async () => { const { body, contentType } = createMultipartPayload([ { name: "file", filename: "test.png", contentType: "image/png", content: PNG }, { name: "settings", content: JSON.stringify({ width: 200 }) }, ]); const res = await app.inject({ method: "POST", url: "/api/v1/tools/image/lqip-placeholder", headers: { authorization: `Bearer ${adminToken}`, "content-type": contentType, }, body, }); expect(res.statusCode).toBe(400); }); });