test: expand coverage across all layers -- 1,268 new tests, fix replace-color div-by-zero

14-agent parallel test expansion covering integration, unit, E2E, E2E-Docker,
cross-format matrix, adversarial, GUI navigation/tools/settings/visual/a11y/perf.

- Integration: expand 23 tool test files with HEIC, stress, batch, edge cases
- Unit: close coverage gaps in image-engine, stores, lib (metadata, auto-enhance,
  connection-store, lazy-with-retry, collage/file-store HEIC preview)
- AI bridge: 141 new tests for dispatcher buffering, crash recovery, OOM/segfault
- Cross-format: 794 parameterized tests (16 formats x 12 tools + no-crash matrix)
- Adversarial: memory stress (50x large file), zero-byte, corrupted headers, unicode
- E2E-Docker: expand 8 spec files with dimension verification, pipeline chains
- GUI E2E: tool UI settings/interactions for all 47 tools, remove all test.skip,
  RBAC per-role verification, visual screenshot naming, cross-browser smoke tests,
  a11y ARIA/focus/contrast, performance budgets, 15-tool stability test
- Fix: replace-color.ts tolerance=0 caused division-by-zero producing NaN pixels

Total: 8,958 tests passing across 202 files. Zero failures, zero skips.
This commit is contained in:
SnapOtter
2026-05-09 18:02:58 +08:00
parent 7b1f09f5d0
commit a0556772e8
76 changed files with 13112 additions and 117 deletions
+74 -1
View File
@@ -32,7 +32,80 @@ vi.stubGlobal("localStorage", {
// fetchDecodedPreview & revokePreviewUrl (image-preview.ts)
// ==========================================================================
import { fetchDecodedPreview, revokePreviewUrl } from "@/lib/image-preview";
import { fetchDecodedPreview, needsServerPreview, revokePreviewUrl } from "@/lib/image-preview";
describe("needsServerPreview", () => {
it("returns true for HEIC files", () => {
const file = new File(["data"], "photo.heic", { type: "image/heic" });
expect(needsServerPreview(file)).toBe(true);
});
it("returns true for HEIF files", () => {
const file = new File(["data"], "photo.heif", { type: "image/heif" });
expect(needsServerPreview(file)).toBe(true);
});
it("returns true for HIF files", () => {
const file = new File(["data"], "photo.hif", { type: "image/heif" });
expect(needsServerPreview(file)).toBe(true);
});
it("returns true for JXL files", () => {
const file = new File(["data"], "photo.jxl", { type: "image/jxl" });
expect(needsServerPreview(file)).toBe(true);
});
it("returns true for RAW formats (dng, cr2, nef, arw, orf, rw2)", () => {
for (const ext of ["dng", "cr2", "nef", "arw", "orf", "rw2"]) {
const file = new File(["data"], `photo.${ext}`, { type: "image/raw" });
expect(needsServerPreview(file)).toBe(true);
}
});
it("returns true for ICO files", () => {
const file = new File(["data"], "icon.ico", { type: "image/x-icon" });
expect(needsServerPreview(file)).toBe(true);
});
it("returns true for TGA files", () => {
const file = new File(["data"], "texture.tga", { type: "image/tga" });
expect(needsServerPreview(file)).toBe(true);
});
it("returns true for PSD files", () => {
const file = new File(["data"], "design.psd", { type: "image/vnd.adobe.photoshop" });
expect(needsServerPreview(file)).toBe(true);
});
it("returns true for EXR files", () => {
const file = new File(["data"], "render.exr", { type: "image/x-exr" });
expect(needsServerPreview(file)).toBe(true);
});
it("returns true for HDR files", () => {
const file = new File(["data"], "panorama.hdr", { type: "image/vnd.radiance" });
expect(needsServerPreview(file)).toBe(true);
});
it("returns false for common browser-decodable formats", () => {
expect(needsServerPreview(new File(["data"], "photo.png", { type: "image/png" }))).toBe(false);
expect(needsServerPreview(new File(["data"], "photo.jpg", { type: "image/jpeg" }))).toBe(false);
expect(needsServerPreview(new File(["data"], "photo.webp", { type: "image/webp" }))).toBe(
false,
);
expect(needsServerPreview(new File(["data"], "photo.gif", { type: "image/gif" }))).toBe(false);
});
it("returns false for files without extension", () => {
const file = new File(["data"], "noextension", { type: "application/octet-stream" });
expect(needsServerPreview(file)).toBe(false);
});
it("handles uppercase extensions (case insensitive)", () => {
const file = new File(["data"], "photo.HEIC", { type: "image/heic" });
expect(needsServerPreview(file)).toBe(true);
});
});
describe("fetchDecodedPreview", () => {
beforeEach(() => {