Files
SnapOtter/tests/integration/sign-pdf.test.ts
T
SnapOtterandGitHub 0cdd560ac4 feat: add Sign PDF tool (draw/type/upload signatures, place on a PDF) (#370)
Draw, type, or upload a signature and place resizable/rotatable copies across PDF pages; output flattened server-side with PyMuPDF. Visual electronic signature, not cryptographic. New interactive-sign display mode (pdf.js + Konva) and a custom docs-pool route.
2026-06-29 11:01:25 +08:00

59 lines
2.1 KiB
TypeScript

import { afterAll, beforeAll, describe, expect, it } from "vitest";
import { fixtures, readFixture } from "../fixtures/index.js";
import { hasFitz } from "../helpers/python-gate.js";
import { buildTestApp, createMultipartPayload, loginAsAdmin, type TestApp } from "./test-server.js";
const PDF = readFixture(fixtures.document.pdf3);
const SIG = readFixture(fixtures.image.base.png200);
// The stamping test invokes the docs profile's doc_sign script (PyMuPDF) and is
// gated on fitz so it skips where PyMuPDF is not installed (e.g. CI integration
// shards). The validation test returns 400 before any Python call, so it always
// runs (it needs only Postgres/Redis, which CI provides).
describe("sign-pdf", () => {
let testApp: TestApp;
let adminToken: string;
beforeAll(async () => {
testApp = await buildTestApp();
adminToken = await loginAsAdmin(testApp.app);
}, 30_000);
afterAll(async () => {
await testApp.cleanup();
}, 10_000);
function runTool(placements: unknown) {
const { body, contentType } = createMultipartPayload([
{ name: "file", filename: "in.pdf", contentType: "application/pdf", content: PDF },
{ name: "sig0", filename: "sig0.png", contentType: "image/png", content: SIG },
{ name: "placements", content: JSON.stringify(placements) },
]);
return testApp.app.inject({
method: "POST",
url: "/api/v1/tools/pdf/sign-pdf",
headers: { authorization: `Bearer ${adminToken}`, "content-type": contentType },
body,
});
}
(hasFitz ? it : it.skip)(
"stamps a signature and returns a PDF",
async () => {
const res = await runTool([{ sig: 0, page: 0, x: 0.5, y: 0.5, w: 0.25, h: 0.05 }]);
expect([200, 202]).toContain(res.statusCode);
const body = JSON.parse(res.body);
expect(body.jobId).toBeTruthy();
if (res.statusCode === 200) {
expect(body.downloadUrl).toContain("/api/v1/download/");
}
},
60_000,
);
it("rejects when no placements are provided", async () => {
const res = await runTool([]);
expect(res.statusCode).toBe(400);
});
});