mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Lands five integrated branches: pipeline templates (#355), analytics opt-out (#354), 83 conversion presets bringing the catalog to 240 tools (#356), self-hosted positioning (#353), and e2e modernization (#351). Integration fixes: aligned stale web analytics tests with the opt-out/allow-list model, closed 3 CodeQL incomplete-sanitization alerts in the i18n generator, resolved settings/index/docs/format-matrix conflicts, and corrected tool counts to 240.
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { sanitizeEventProperties } from "../../../apps/api/src/lib/analytics-allowlist.js";
|
|
|
|
describe("sanitizeEventProperties", () => {
|
|
it("keeps only allow-listed keys for tool_used", () => {
|
|
const out = sanitizeEventProperties("tool_used", {
|
|
tool_id: "resize",
|
|
status: "completed",
|
|
duration_ms: 12,
|
|
category: "image",
|
|
is_ai_tool: false,
|
|
error_message: "stack with /uploads/secret.docx",
|
|
params: { watermark_text: "CONFIDENTIAL" },
|
|
});
|
|
expect(out).toEqual({
|
|
tool_id: "resize",
|
|
status: "completed",
|
|
duration_ms: 12,
|
|
category: "image",
|
|
is_ai_tool: false,
|
|
});
|
|
expect(out).not.toHaveProperty("error_message");
|
|
expect(out).not.toHaveProperty("params");
|
|
});
|
|
|
|
it("drops non-primitive values", () => {
|
|
const out = sanitizeEventProperties("ai_bundle_action", {
|
|
bundle_id: "ocr",
|
|
action: "installed",
|
|
duration_ms: { nested: 1 } as unknown as number,
|
|
});
|
|
expect(out).toEqual({ bundle_id: "ocr", action: "installed" });
|
|
});
|
|
|
|
it("returns no properties for an unknown event", () => {
|
|
const out = sanitizeEventProperties("totally_new_event", { anything: "x" });
|
|
expect(out).toEqual({});
|
|
});
|
|
});
|