mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Expand test coverage across all layers via 14 parallel agents: Unit tests (3,378 total, +534): - First-ever AI sidecar tests (157 tests covering bridge lifecycle, all 12 tool modules) - API route infrastructure (auth, pipeline, batch, settings, teams, roles, audit, api-keys, files, docs) - Lib coverage improvements (audit 7%->95%, worker-pool 33%->100%) - Web store/lib gap fills (features-store, tool-registry) Integration tests (4,403 total, +903): - Expanded 19 tool test files with parameter variations, format edge cases, boundary values - Cross-format matrix: 290 tests covering 14 tools x 17 formats - Adversarial/edge cases: 63 tests for extreme inputs, concurrent requests, corrupted files E2E-Docker (125 new tests): - Expanded 8 spec files + 1 new file covering all 49 tools - Added HEIC/format handling, auth failures, download verification GUI E2E (expanded 28 spec files): - Navigation, responsive layout, keyboard shortcuts - All 51 tool UIs with settings, processing, display modes - Batch/pipeline workflows, settings/RBAC, visual regression - Resilience, accessibility (ARIA, contrast, focus), performance budgets
343 lines
11 KiB
TypeScript
343 lines
11 KiB
TypeScript
import { writeFile } from "node:fs/promises";
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
|
|
vi.mock("sharp", () => {
|
|
const mockSharp = vi.fn(() => ({
|
|
resize: vi.fn().mockReturnThis(),
|
|
png: vi.fn().mockReturnThis(),
|
|
toBuffer: vi.fn().mockResolvedValue(Buffer.from("mock-png-data")),
|
|
metadata: vi.fn().mockResolvedValue({ width: 800, height: 600 }),
|
|
}));
|
|
return { default: mockSharp };
|
|
});
|
|
|
|
vi.mock("node:fs/promises", () => ({
|
|
writeFile: vi.fn().mockResolvedValue(undefined),
|
|
}));
|
|
|
|
vi.mock("../../../packages/ai/src/bridge.js", () => ({
|
|
runPythonWithProgress: vi.fn(),
|
|
parseStdoutJson: vi.fn(),
|
|
}));
|
|
|
|
import sharp from "sharp";
|
|
import { parseStdoutJson, runPythonWithProgress } from "../../../packages/ai/src/bridge.js";
|
|
import { extractText } from "../../../packages/ai/src/ocr.js";
|
|
|
|
const FAKE_INPUT = Buffer.from("fake-image-data");
|
|
const FAKE_OUTPUT_DIR = "/tmp/test-ocr";
|
|
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
vi.mocked(writeFile).mockResolvedValue(undefined);
|
|
vi.mocked(runPythonWithProgress).mockResolvedValue({
|
|
stdout: '{"success": true, "text": "Hello World", "engine": "paddleocr"}',
|
|
stderr: "",
|
|
});
|
|
vi.mocked(parseStdoutJson).mockReturnValue({
|
|
success: true,
|
|
text: "Hello World",
|
|
engine: "paddleocr",
|
|
});
|
|
vi.mocked(sharp).mockImplementation(
|
|
() =>
|
|
({
|
|
resize: vi.fn().mockReturnThis(),
|
|
png: vi.fn().mockReturnThis(),
|
|
toBuffer: vi.fn().mockResolvedValue(Buffer.from("mock-png-data")),
|
|
metadata: vi.fn().mockResolvedValue({ width: 800, height: 600 }),
|
|
}) as unknown as ReturnType<typeof sharp>,
|
|
);
|
|
});
|
|
|
|
afterEach(() => {
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
describe("extractText", () => {
|
|
describe("request serialization", () => {
|
|
it("calls ocr.py with input path and options JSON", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
|
|
expect(runPythonWithProgress).toHaveBeenCalledWith(
|
|
"ocr.py",
|
|
[`${FAKE_OUTPUT_DIR}/input_ocr.png`, "{}"],
|
|
expect.objectContaining({ timeout: expect.any(Number) }),
|
|
);
|
|
});
|
|
|
|
it("serializes quality option", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR, { quality: "best" });
|
|
|
|
const args = vi.mocked(runPythonWithProgress).mock.calls[0][1];
|
|
expect(JSON.parse(args[1])).toEqual({ quality: "best" });
|
|
});
|
|
|
|
it("serializes language option", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR, { language: "ja" });
|
|
|
|
const args = vi.mocked(runPythonWithProgress).mock.calls[0][1];
|
|
expect(JSON.parse(args[1])).toEqual({ language: "ja" });
|
|
});
|
|
|
|
it("serializes enhance option", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR, { enhance: true });
|
|
|
|
const args = vi.mocked(runPythonWithProgress).mock.calls[0][1];
|
|
expect(JSON.parse(args[1])).toEqual({ enhance: true });
|
|
});
|
|
|
|
it("serializes deprecated engine option for backward compatibility", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR, { engine: "tesseract" });
|
|
|
|
const args = vi.mocked(runPythonWithProgress).mock.calls[0][1];
|
|
expect(JSON.parse(args[1])).toEqual({ engine: "tesseract" });
|
|
});
|
|
|
|
it("serializes all options together", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR, {
|
|
quality: "fast",
|
|
language: "en",
|
|
enhance: false,
|
|
});
|
|
|
|
const args = vi.mocked(runPythonWithProgress).mock.calls[0][1];
|
|
expect(JSON.parse(args[1])).toEqual({
|
|
quality: "fast",
|
|
language: "en",
|
|
enhance: false,
|
|
});
|
|
});
|
|
|
|
it("resizes input to max 2048px before writing", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
|
|
// Sharp is called with the input, then resize is called
|
|
expect(sharp).toHaveBeenCalledWith(FAKE_INPUT);
|
|
});
|
|
|
|
it("writes resized PNG to outputDir", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
|
|
expect(writeFile).toHaveBeenCalledWith(
|
|
`${FAKE_OUTPUT_DIR}/input_ocr.png`,
|
|
Buffer.from("mock-png-data"),
|
|
);
|
|
});
|
|
});
|
|
|
|
describe("response parsing", () => {
|
|
it("returns OcrResult with text and engine", async () => {
|
|
const result = await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
|
|
expect(result).toEqual({
|
|
text: "Hello World",
|
|
engine: "paddleocr",
|
|
});
|
|
});
|
|
|
|
it("returns text with special characters", async () => {
|
|
vi.mocked(parseStdoutJson).mockReturnValue({
|
|
success: true,
|
|
text: "Price: $19.99\nDiscount: 15%",
|
|
engine: "paddleocr",
|
|
});
|
|
|
|
const result = await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
expect(result.text).toBe("Price: $19.99\nDiscount: 15%");
|
|
});
|
|
|
|
it("returns empty text string when no text detected", async () => {
|
|
vi.mocked(parseStdoutJson).mockReturnValue({
|
|
success: true,
|
|
text: "",
|
|
engine: "paddleocr",
|
|
});
|
|
|
|
const result = await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
expect(result.text).toBe("");
|
|
});
|
|
|
|
it("returns engine information", async () => {
|
|
vi.mocked(parseStdoutJson).mockReturnValue({
|
|
success: true,
|
|
text: "test",
|
|
engine: "tesseract",
|
|
});
|
|
|
|
const result = await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
expect(result.engine).toBe("tesseract");
|
|
});
|
|
|
|
it("returns undefined engine when not provided by Python", async () => {
|
|
vi.mocked(parseStdoutJson).mockReturnValue({
|
|
success: true,
|
|
text: "test",
|
|
});
|
|
|
|
const result = await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
expect(result.engine).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe("timeout calculation", () => {
|
|
it("uses minimum 600000ms timeout for small images", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
|
|
// 800x600 = 0.48 MP, 0.48 * 30 * 1000 = 14400 < 600000
|
|
const options = vi.mocked(runPythonWithProgress).mock.calls[0][2];
|
|
expect(options.timeout).toBe(600000);
|
|
});
|
|
|
|
it("scales timeout for large images", async () => {
|
|
// We need sharp to return large dimensions for the resized buffer
|
|
// First call resizes the input, second call reads metadata of the resized buffer
|
|
let _callCount = 0;
|
|
vi.mocked(sharp).mockImplementation(() => {
|
|
_callCount++;
|
|
return {
|
|
resize: vi.fn().mockReturnThis(),
|
|
png: vi.fn().mockReturnThis(),
|
|
toBuffer: vi.fn().mockResolvedValue(Buffer.from("mock-png-data")),
|
|
metadata: vi.fn().mockResolvedValue({ width: 5000, height: 4000 }),
|
|
} as unknown as ReturnType<typeof sharp>;
|
|
});
|
|
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
|
|
// 5000*4000 = 20 MP, 20 * 30 * 1000 = 600000 = 600000 (equal to min)
|
|
const options = vi.mocked(runPythonWithProgress).mock.calls[0][2];
|
|
expect(options.timeout).toBeGreaterThanOrEqual(600000);
|
|
});
|
|
});
|
|
|
|
describe("error handling", () => {
|
|
it("throws with custom error from Python", async () => {
|
|
vi.mocked(parseStdoutJson).mockReturnValue({
|
|
success: false,
|
|
error: "PaddleOCR initialization failed",
|
|
});
|
|
|
|
await expect(extractText(FAKE_INPUT, FAKE_OUTPUT_DIR)).rejects.toThrow(
|
|
"PaddleOCR initialization failed",
|
|
);
|
|
});
|
|
|
|
it("throws fallback error when success: false without error string", async () => {
|
|
vi.mocked(parseStdoutJson).mockReturnValue({ success: false });
|
|
|
|
await expect(extractText(FAKE_INPUT, FAKE_OUTPUT_DIR)).rejects.toThrow("OCR failed");
|
|
});
|
|
|
|
it("propagates bridge timeout", async () => {
|
|
vi.mocked(runPythonWithProgress).mockRejectedValue(new Error("Python script timed out"));
|
|
|
|
await expect(extractText(FAKE_INPUT, FAKE_OUTPUT_DIR)).rejects.toThrow("timed out");
|
|
});
|
|
|
|
it("propagates OOM errors from bridge", async () => {
|
|
vi.mocked(runPythonWithProgress).mockRejectedValue(
|
|
new Error("Process killed (out of memory)"),
|
|
);
|
|
|
|
await expect(extractText(FAKE_INPUT, FAKE_OUTPUT_DIR)).rejects.toThrow("out of memory");
|
|
});
|
|
|
|
it("propagates parseStdoutJson errors", async () => {
|
|
vi.mocked(parseStdoutJson).mockImplementation(() => {
|
|
throw new Error("No JSON response from Python script");
|
|
});
|
|
|
|
await expect(extractText(FAKE_INPUT, FAKE_OUTPUT_DIR)).rejects.toThrow(
|
|
"No JSON response from Python script",
|
|
);
|
|
});
|
|
});
|
|
|
|
describe("onProgress forwarding", () => {
|
|
it("passes onProgress to bridge", async () => {
|
|
const onProgress = vi.fn();
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR, {}, onProgress);
|
|
|
|
expect(runPythonWithProgress).toHaveBeenCalledWith(
|
|
"ocr.py",
|
|
expect.any(Array),
|
|
expect.objectContaining({ onProgress }),
|
|
);
|
|
});
|
|
|
|
it("omits onProgress when not provided", async () => {
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
|
|
const options = vi.mocked(runPythonWithProgress).mock.calls[0][2];
|
|
expect(options.onProgress).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe("image downscaling", () => {
|
|
it("caps input to 2048px using resize with inside fit", async () => {
|
|
const resizeFn = vi.fn().mockReturnThis();
|
|
vi.mocked(sharp).mockImplementation(
|
|
() =>
|
|
({
|
|
resize: resizeFn,
|
|
png: vi.fn().mockReturnThis(),
|
|
toBuffer: vi.fn().mockResolvedValue(Buffer.from("mock-png-data")),
|
|
metadata: vi.fn().mockResolvedValue({ width: 800, height: 600 }),
|
|
}) as unknown as ReturnType<typeof sharp>,
|
|
);
|
|
|
|
await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
|
|
expect(resizeFn).toHaveBeenCalledWith({
|
|
width: 2048,
|
|
height: 2048,
|
|
fit: "inside",
|
|
withoutEnlargement: true,
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("multiline and unicode text", () => {
|
|
it("handles multiline OCR text", async () => {
|
|
vi.mocked(parseStdoutJson).mockReturnValue({
|
|
success: true,
|
|
text: "Line 1\nLine 2\nLine 3",
|
|
engine: "paddleocr",
|
|
});
|
|
|
|
const result = await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
expect(result.text).toBe("Line 1\nLine 2\nLine 3");
|
|
});
|
|
|
|
it("handles unicode text from CJK languages", async () => {
|
|
vi.mocked(parseStdoutJson).mockReturnValue({
|
|
success: true,
|
|
text: "你好世界",
|
|
engine: "paddleocr",
|
|
});
|
|
|
|
const result = await extractText(FAKE_INPUT, FAKE_OUTPUT_DIR);
|
|
expect(result.text).toBe("你好世界");
|
|
});
|
|
});
|
|
|
|
describe("sharp conversion errors", () => {
|
|
it("propagates sharp conversion errors", async () => {
|
|
vi.mocked(sharp).mockImplementation(
|
|
() =>
|
|
({
|
|
resize: vi.fn().mockReturnThis(),
|
|
png: vi.fn().mockReturnThis(),
|
|
toBuffer: vi.fn().mockRejectedValue(new Error("Input buffer is empty")),
|
|
metadata: vi.fn().mockResolvedValue({ width: 800, height: 600 }),
|
|
}) as unknown as ReturnType<typeof sharp>,
|
|
);
|
|
|
|
await expect(extractText(FAKE_INPUT, FAKE_OUTPUT_DIR)).rejects.toThrow(
|
|
"Input buffer is empty",
|
|
);
|
|
});
|
|
});
|
|
});
|