Files
SnapOtter/tests/unit/web/format-extended.test.ts
T
SnapOtter 3b181dd1ac test: expand test coverage across unit, integration, e2e, and e2e-docker suites
Add ~210 new tests filling gaps identified by a comprehensive 14-agent
coverage audit. Unit+integration tests go from 9,388 to 9,484 (all passing).

Unit tests (+36):
- AI bridge: OOM fallback path, custom tier option
- Web lib: api-errors, format date/datetime, tool-i18n coverage

Integration tests (+19):
- Format matrix: ai-canvas-expand and find-duplicates added to cross-format matrix
- Adversarial: SVG XXE attacks, SQL injection in settings, request body size
  limits, race conditions with identical filenames

E2E Docker (+3):
- ai-canvas-expand tool coverage with HEIC input and edge cases

E2E GUI (~150+):
- Navigation: login rate limiting, ai-canvas-expand in parameterized list
- Responsive: dropzone visibility, text readability, dialog bounds at all viewports
- Keyboard: shortcuts verified from automate, files, tool, and fullscreen pages
- Tool UI: undo/state-reset for 16 tools, crop canvas drag handles, rotate/border
  live preview, linked aspect-ratio inputs for resize
- Batch: per-image undo isolation, batch compress/convert/rotate (not just resize)
- Pipeline: tool palette search, step collapse/expand visibility
- Settings: audit log entry verification, system settings persistence, teams CRUD,
  role permission toggling
- RBAC: user/editor 403 on roles/teams endpoints, privilege escalation prevention,
  cross-role tab parity documented as intentional
- Accessibility: skip-to-content link (WCAG 2.4.1), comprehensive color contrast
  for all headings/body/buttons in both themes with DOM-walking background detection
- Resilience: auth expiry 401 redirect, rate limit 429 handling
- Performance: JS heap memory stability for tool navigation, dialog cycling,
  upload/clear cycles, rapid page navigation
2026-05-15 21:35:02 +08:00

61 lines
2.1 KiB
TypeScript

import { describe, expect, it } from "vitest";
import { formatDate, formatDateTime } from "@/lib/format";
describe("formatDate", () => {
it("formats a Date object with en-US locale", () => {
const date = new Date(2025, 0, 15); // Jan 15, 2025
const result = formatDate(date, "en-US");
expect(result).toContain("2025");
expect(result).toContain("15");
expect(result).toContain("Jan");
});
it("formats an ISO date string", () => {
const result = formatDate("2024-06-01T00:00:00Z", "en-US");
expect(result).toContain("2024");
expect(result).toContain("Jun");
});
it("handles different locales", () => {
const date = new Date(2025, 2, 10); // Mar 10, 2025
const enResult = formatDate(date, "en-US");
const deResult = formatDate(date, "de-DE");
// Both should contain the year, but month formatting may differ
expect(enResult).toContain("2025");
expect(deResult).toContain("2025");
});
it("formats end-of-year date correctly", () => {
const result = formatDate("2024-12-15T12:00:00Z", "en-US");
expect(result).toContain("Dec");
expect(result).toContain("2024");
});
});
describe("formatDateTime", () => {
it("includes both date and time components", () => {
const date = new Date(2025, 0, 15, 14, 30); // Jan 15, 2025 at 14:30
const result = formatDateTime(date, "en-US");
expect(result).toContain("2025");
expect(result).toContain("Jan");
expect(result).toContain("15");
// Should contain time portion (format varies by locale)
expect(result).toMatch(/\d{1,2}:\d{2}/);
});
it("formats an ISO string with time", () => {
const result = formatDateTime("2024-07-04T09:15:00Z", "en-US");
expect(result).toContain("2024");
expect(result).toContain("Jul");
expect(result).toMatch(/\d{1,2}:\d{2}/);
});
it("handles midnight correctly", () => {
const date = new Date(2025, 5, 1, 0, 0); // Jun 1, 2025 00:00
const result = formatDateTime(date, "en-US");
expect(result).toContain("Jun");
expect(result).toContain("2025");
expect(result).toMatch(/\d{1,2}:\d{2}/);
});
});