Files
SnapOtter/tests/unit/shared/section.test.ts
T
SnapOtterandGitHub 63a03d26f2 feat: pipeline templates, analytics opt-out, 83 conversion presets, positioning + e2e modernization
Lands five integrated branches: pipeline templates (#355), analytics opt-out (#354), 83 conversion presets bringing the catalog to 240 tools (#356), self-hosted positioning (#353), and e2e modernization (#351).

Integration fixes: aligned stale web analytics tests with the opt-out/allow-list model, closed 3 CodeQL incomplete-sanitization alerts in the i18n generator, resolved settings/index/docs/format-matrix conflicts, and corrected tool counts to 240.
2026-06-28 18:57:53 +08:00

38 lines
1.8 KiB
TypeScript

import { SECTIONS, type Section, TOOLS, toolSection } from "@snapotter/shared";
import { describe, expect, it } from "vitest";
describe("toolSection", () => {
it("maps non-document modalities directly", () => {
expect(toolSection({ modality: "image", acceptedInputs: [".png"] })).toBe("image");
expect(toolSection({ modality: "video", acceptedInputs: [".mp4"] })).toBe("video");
expect(toolSection({ modality: "audio", acceptedInputs: [".mp3"] })).toBe("audio");
expect(toolSection({ modality: "file", acceptedInputs: [".csv"] })).toBe("files");
});
it("splits document modality by .pdf input", () => {
expect(toolSection({ modality: "document", acceptedInputs: [".pdf"] })).toBe("pdf");
expect(toolSection({ modality: "document", acceptedInputs: [".docx", ".odt"] })).toBe("files");
});
it("partitions the catalog into exactly 28 PDF and 23 Files tools", () => {
const bySection = (s: Section) =>
TOOLS.filter((t) => toolSection(t) === s)
.map((t) => t.id)
.sort();
expect(TOOLS.filter((t) => toolSection(t) === "image")).toHaveLength(105);
expect(TOOLS.filter((t) => toolSection(t) === "video")).toHaveLength(57);
expect(TOOLS.filter((t) => toolSection(t) === "audio")).toHaveLength(27);
expect(bySection("pdf")).toHaveLength(28);
expect(bySection("files")).toHaveLength(23);
expect(bySection("pdf")).toContain("merge-pdf");
expect(bySection("pdf")).toContain("ocr-pdf");
expect(bySection("files")).toContain("word-to-pdf");
expect(bySection("files")).toContain("convert-spreadsheet");
expect(bySection("files")).toContain("csv-json");
});
it("exposes 5 ordered sections", () => {
expect(SECTIONS.map((s) => s.id)).toEqual(["image", "video", "audio", "pdf", "files"]);
});
});