Files
SnapOtter/tests/integration/platform/modality-input.test.ts
T
SnapOtter 1727a7a73e test: reorganize flat test files into purpose-based subdirectories (phase 6)
Group 245 flat integration tests and 25 loose unit tests into
discoverable subdirectories per spec section 6:

  integration/tools/{image,video,audio,document,data}/  (156 files)
  integration/platform/                                  (64 files)
  integration/generated/                                 (14 files)
  integration/security/                                  (10 files)

  unit/security/     (8 files, new subdir)
  unit/api/          (7 files moved in)
  unit/web/          (3 files moved in)
  unit/shared/       (6 files moved in)
  unit/image-engine/ (1 file moved in)

All moves via git mv (history preserved). Relative imports repaired
for both depth levels (platform/generated/security = +1, tools/ = +2):
static from-imports, dynamic import() calls, vi.mock() paths,
import.meta.dirname joins, and __dirname joins.

Vitest discovery unchanged (no test.include in config, recursive glob
matches subdirs, shard-by-hash unaffected). test-server.ts and
tool-route-drift.test.ts stay at integration root. fixtures/ untouched.

Parity gate: 13189 passing test names before = 13189 after (0 dropped).
2026-06-20 05:07:46 +08:00

112 lines
4.7 KiB
TypeScript

import { mkdtempSync, rmSync } from "node:fs";
import { readFile } from "node:fs/promises";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { qpdfAvailable } from "@snapotter/doc-engine";
import { ffmpegAvailable } from "@snapotter/media-engine";
import { afterAll, describe, expect, it } from "vitest";
import { InputValidationError } from "../../../apps/api/src/modality/contract.js";
import { DocumentInputHandler } from "../../../apps/api/src/modality/document-input.js";
import { MediaInputHandler } from "../../../apps/api/src/modality/media-input.js";
import { fixtures, readFixture } from "../../fixtures/index.js";
const scratchDir = mkdtempSync(join(tmpdir(), "modality-input-"));
afterAll(() => rmSync(scratchDir, { recursive: true, force: true }));
describe.skipIf(!ffmpegAvailable())("MediaInputHandler (requires ffmpeg)", () => {
it("accepts the mp4 fixture as video", async () => {
const buf = readFixture(fixtures.video.tiny("mp4"));
const out = await new MediaInputHandler("video").prepare(buf, "tiny.mp4", { scratchDir });
expect(out.buffer).toBe(buf);
});
it("rejects an audio-only file as video", async () => {
const buf = readFixture(fixtures.audio.tiny("mp3"));
await expect(
new MediaInputHandler("video").prepare(buf, "fake.mp4", { scratchDir }),
).rejects.toThrow(InputValidationError);
});
it("rejects a still image presented as video", async () => {
const buf = readFixture(fixtures.image.edge.px1);
await expect(
new MediaInputHandler("video").prepare(buf, "fake.mp4", { scratchDir }),
).rejects.toThrow(/still image/i);
});
it("accepts a real video despite short duration", async () => {
const buf = readFixture(fixtures.video.tiny("mp4"));
const out = await new MediaInputHandler("video").prepare(buf, "tiny.mp4", { scratchDir });
expect(out.filename).toBe("tiny.mp4");
});
it("enforces the duration cap", async () => {
const { env } = await import("../../../apps/api/src/config.js");
const original = env.MAX_AUDIO_DURATION_S;
(env as Record<string, unknown>).MAX_AUDIO_DURATION_S = 0.5;
try {
const buf = readFixture(fixtures.audio.tiny("mp3"));
await expect(
new MediaInputHandler("audio").prepare(buf, "tiny.mp3", { scratchDir }),
).rejects.toThrow(/exceeds the maximum/);
} finally {
(env as Record<string, unknown>).MAX_AUDIO_DURATION_S = original;
}
});
});
describe("DocumentInputHandler", () => {
it("rejects a non-pdf with pdf extension", async () => {
await expect(
new DocumentInputHandler().prepare(Buffer.from("hello"), "fake.pdf", { scratchDir }),
).rejects.toThrow(/PDF header/);
});
it.skipIf(!qpdfAvailable())("accepts the 3-page fixture and enforces page caps", async () => {
const buf = readFixture(fixtures.document.pdf3);
const out = await new DocumentInputHandler().prepare(buf, "test.pdf", { scratchDir });
expect(out.buffer).toBe(buf);
const { env } = await import("../../../apps/api/src/config.js");
const original = env.MAX_PDF_PAGES;
(env as Record<string, unknown>).MAX_PDF_PAGES = 2;
try {
await expect(
new DocumentInputHandler().prepare(buf, "test.pdf", { scratchDir }),
).rejects.toThrow(/exceeding the maximum/);
} finally {
(env as Record<string, unknown>).MAX_PDF_PAGES = original;
}
});
it.skipIf(!qpdfAvailable())("accepts a password-protected pdf (unlock-pdf's input)", async () => {
const buf = readFixture(fixtures.document.encrypted);
const out = await new DocumentInputHandler().prepare(buf, "encrypted.pdf", { scratchDir });
expect(out.filename).toBe("encrypted.pdf");
});
it.skipIf(!qpdfAvailable())("rejects a truncated PDF under strict mode", async () => {
const full = readFixture(fixtures.document.pdf3);
const truncated = full.subarray(0, Math.floor(full.length * 0.6));
await expect(
new DocumentInputHandler().prepare(truncated, "broken.pdf", { scratchDir }),
).rejects.toThrow(/Damaged PDF/);
});
it.skipIf(!qpdfAvailable())("accepts a truncated PDF under lenient mode", async () => {
const full = readFixture(fixtures.document.pdf3);
const truncated = full.subarray(0, Math.floor(full.length * 0.6));
const out = await new DocumentInputHandler().prepare(truncated, "broken.pdf", {
scratchDir,
lenient: true,
});
// Lenient skips qpdfCheck, keeps %PDF- header check only
expect(out.filename).toBe("broken.pdf");
});
it("accepts the docx fixture container", async () => {
const buf = readFixture(fixtures.document.tiny("docx"));
const out = await new DocumentInputHandler().prepare(buf, "tiny.docx", { scratchDir });
expect(out.buffer).toBe(buf);
});
});