Files
SnapOtter/tests/unit/api/format-encoders.test.ts
T
SnapOtter b1afcfdf3c test: migrate 207 test files to typed fixture registry (phase 5)
Codemod rewrites all five ad-hoc fixture-path styles to import from the
typed registry (tests/fixtures/index.ts):
- join(__dirname, "..", "fixtures", ...) inline patterns (100 files)
- const FIXTURES = join(__dirname, ...) + join(FIXTURES, ...) (92 files)
- process.cwd()-based paths (10 files)
- path.resolve(__dirname, ...) patterns (5 files)

Registry extended with 8 new keys (portraitJpg, portraitHeic,
motorcycle, svgLogo, barcodeAvif, qrAvif, crossFormatChat,
multipageTiff) and directory accessors (fixtureDir, fixtureRoot).

Dynamic directory scanners (format-matrix-generated,
format-matrix-multimodal, hostile-inputs) preserved via fixtureDir
imports. No fixtures swapped, bytes identical.

Parity gate: dropped 0, net-new 388.
2026-06-20 04:20:17 +08:00

183 lines
5.2 KiB
TypeScript

import { readFile } from "node:fs/promises";
import sharp from "sharp";
import { describe, expect, it } from "vitest";
import {
encodeBmp,
encodeIco,
encodeJp2,
encodeQoi,
} from "../../../apps/api/src/lib/format-encoders.js";
import { fixtures, readFixture } from "../../fixtures/index.js";
async function createTestPng(width = 50, height = 50): Promise<Buffer> {
return sharp({
create: {
width,
height,
channels: 4,
background: { r: 128, g: 64, b: 200, alpha: 1 },
},
})
.png()
.toBuffer();
}
describe("encodeQoi", () => {
it("encodes a PNG buffer to QOI format", async () => {
const input = await createTestPng();
const result = await encodeQoi(input);
expect(result.length).toBeGreaterThan(0);
expect(result[0]).toBe(0x71);
expect(result[1]).toBe(0x6f);
expect(result[2]).toBe(0x69);
expect(result[3]).toBe(0x66);
});
it("encodes JPEG input to QOI", async () => {
const jpeg = await sharp({
create: {
width: 30,
height: 30,
channels: 3,
background: { r: 255, g: 0, b: 0 },
},
})
.jpeg()
.toBuffer();
const result = await encodeQoi(jpeg);
expect(result.length).toBeGreaterThan(0);
expect(Buffer.from(result.subarray(0, 4)).toString("ascii")).toBe("qoif");
});
it("encodes fixture image to QOI", async () => {
const input = readFixture(fixtures.image.base.png200);
const result = await encodeQoi(input);
expect(result.length).toBeGreaterThan(100);
});
});
describe("encodeBmp", () => {
it("encodes a PNG buffer to BMP format", async () => {
const input = await createTestPng();
try {
const result = await encodeBmp(input);
expect(result.length).toBeGreaterThan(0);
expect(result[0]).toBe(0x42);
expect(result[1]).toBe(0x4d);
} catch (err) {
if (err instanceof Error && err.message.includes("No ImageMagick")) return;
throw err;
}
});
it("encodes JPEG input to BMP", async () => {
const jpeg = await sharp({
create: {
width: 20,
height: 20,
channels: 3,
background: { r: 0, g: 255, b: 0 },
},
})
.jpeg()
.toBuffer();
try {
const result = await encodeBmp(jpeg);
expect(result[0]).toBe(0x42);
expect(result[1]).toBe(0x4d);
} catch (err) {
if (err instanceof Error && err.message.includes("No ImageMagick")) return;
throw err;
}
});
it("produces a BMP with correct dimensions", async () => {
const input = await createTestPng(80, 60);
try {
const result = await encodeBmp(input);
const width = result.readUInt32LE(18);
const height = result.readUInt32LE(22);
expect(width).toBe(80);
expect(height).toBe(60);
} catch (err) {
if (err instanceof Error && err.message.includes("No ImageMagick")) return;
throw err;
}
});
});
describe("encodeIco", () => {
it("encodes a PNG buffer to ICO format", async () => {
const input = await createTestPng(64, 64);
try {
const result = await encodeIco(input);
expect(result.length).toBeGreaterThan(0);
expect(result.readUInt16LE(0)).toBe(0);
expect(result.readUInt16LE(2)).toBe(1);
} catch (err) {
if (err instanceof Error && err.message.includes("No ImageMagick")) return;
throw err;
}
});
it("resizes large images to fit within 256x256", async () => {
const input = await createTestPng(400, 400);
try {
const result = await encodeIco(input);
expect(result.length).toBeGreaterThan(0);
expect(result.readUInt16LE(2)).toBe(1);
} catch (err) {
if (err instanceof Error && err.message.includes("No ImageMagick")) return;
throw err;
}
});
it("preserves small images without enlargement", async () => {
const input = await createTestPng(16, 16);
try {
const result = await encodeIco(input);
expect(result.length).toBeGreaterThan(0);
} catch (err) {
if (err instanceof Error && err.message.includes("No ImageMagick")) return;
throw err;
}
});
});
describe("encodeJp2", () => {
it("encodes a PNG buffer to JP2 format", async () => {
const input = await createTestPng();
try {
const result = await encodeJp2(input);
expect(result.length).toBeGreaterThan(0);
} catch (err) {
if (err instanceof Error && err.message.includes("No ImageMagick")) return;
throw err;
}
});
it("accepts optional quality parameter", async () => {
const input = await createTestPng();
try {
const result = await encodeJp2(input, 50);
expect(result.length).toBeGreaterThan(0);
} catch (err) {
if (err instanceof Error && err.message.includes("No ImageMagick")) return;
throw err;
}
});
it("produces valid output at different quality levels", async () => {
const input = readFixture(fixtures.image.base.png200);
try {
const low = await encodeJp2(input, 10);
const high = await encodeJp2(input, 90);
expect(low.length).toBeGreaterThan(0);
expect(high.length).toBeGreaterThan(0);
} catch (err) {
if (err instanceof Error && err.message.includes("No ImageMagick")) return;
throw err;
}
});
});