mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Adds a dedicated remove-gif-background AI tool: removes the background from an animated GIF, WebP, or APNG frame by frame and reassembles a transparent (or composited) animation in WebP, APNG, or GIF, with full per-frame effects. Reuses the background-removal bundle. Verified end-to-end with the real rembg model. Closes #496.
39 lines
1.8 KiB
TypeScript
39 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 29 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(106);
|
|
expect(TOOLS.filter((t) => toolSection(t) === "video")).toHaveLength(57);
|
|
expect(TOOLS.filter((t) => toolSection(t) === "audio")).toHaveLength(27);
|
|
expect(bySection("pdf")).toHaveLength(29);
|
|
expect(bySection("files")).toHaveLength(23);
|
|
expect(bySection("pdf")).toContain("sign-pdf");
|
|
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"]);
|
|
});
|
|
});
|