mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Group 245 flat integration tests and 25 loose unit tests into
discoverable subdirectories per spec section 6:
integration/tools/{image,video,audio,document,data}/ (156 files)
integration/platform/ (64 files)
integration/generated/ (14 files)
integration/security/ (10 files)
unit/security/ (8 files, new subdir)
unit/api/ (7 files moved in)
unit/web/ (3 files moved in)
unit/shared/ (6 files moved in)
unit/image-engine/ (1 file moved in)
All moves via git mv (history preserved). Relative imports repaired
for both depth levels (platform/generated/security = +1, tools/ = +2):
static from-imports, dynamic import() calls, vi.mock() paths,
import.meta.dirname joins, and __dirname joins.
Vitest discovery unchanged (no test.include in config, recursive glob
matches subdirs, shard-by-hash unaffected). test-server.ts and
tool-route-drift.test.ts stay at integration root. fixtures/ untouched.
Parity gate: 13189 passing test names before = 13189 after (0 dropped).
62 lines
2.3 KiB
TypeScript
62 lines
2.3 KiB
TypeScript
import { ANALYTICS_EVENTS } from "@snapotter/shared";
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
describe("ANALYTICS_EVENTS", () => {
|
|
it("has exactly 4 event keys", () => {
|
|
expect(Object.keys(ANALYTICS_EVENTS)).toHaveLength(4);
|
|
});
|
|
|
|
it("contains the expected keys", () => {
|
|
expect(ANALYTICS_EVENTS).toHaveProperty("TOOL_USED");
|
|
expect(ANALYTICS_EVENTS).toHaveProperty("SEARCH");
|
|
expect(ANALYTICS_EVENTS).toHaveProperty("PIPELINE_EXECUTED");
|
|
expect(ANALYTICS_EVENTS).toHaveProperty("AI_BUNDLE_ACTION");
|
|
});
|
|
|
|
it("all event values are strings", () => {
|
|
for (const value of Object.values(ANALYTICS_EVENTS)) {
|
|
expect(typeof value).toBe("string");
|
|
}
|
|
});
|
|
|
|
it("TOOL_USED has the correct snake_case value", () => {
|
|
expect(ANALYTICS_EVENTS.TOOL_USED).toBe("tool_used");
|
|
});
|
|
|
|
it("SEARCH has the correct snake_case value", () => {
|
|
expect(ANALYTICS_EVENTS.SEARCH).toBe("search");
|
|
});
|
|
|
|
it("PIPELINE_EXECUTED has the correct snake_case value", () => {
|
|
expect(ANALYTICS_EVENTS.PIPELINE_EXECUTED).toBe("pipeline_executed");
|
|
});
|
|
|
|
it("AI_BUNDLE_ACTION has the correct snake_case value", () => {
|
|
expect(ANALYTICS_EVENTS.AI_BUNDLE_ACTION).toBe("ai_bundle_action");
|
|
});
|
|
|
|
it("all values follow snake_case convention", () => {
|
|
for (const value of Object.values(ANALYTICS_EVENTS)) {
|
|
expect(value).toMatch(/^[a-z][a-z0-9_]*$/);
|
|
}
|
|
});
|
|
|
|
it("is frozen (as const prevents mutation)", () => {
|
|
// as const produces a readonly object; Object.isFrozen checks runtime freezing.
|
|
// TypeScript enforces readonly at compile time, but at runtime the object
|
|
// defined with "as const" is a plain object unless explicitly frozen.
|
|
// We verify the values are stable by checking they haven't changed.
|
|
const snapshot = { ...ANALYTICS_EVENTS };
|
|
expect(ANALYTICS_EVENTS.TOOL_USED).toBe(snapshot.TOOL_USED);
|
|
expect(ANALYTICS_EVENTS.SEARCH).toBe(snapshot.SEARCH);
|
|
expect(ANALYTICS_EVENTS.PIPELINE_EXECUTED).toBe(snapshot.PIPELINE_EXECUTED);
|
|
expect(ANALYTICS_EVENTS.AI_BUNDLE_ACTION).toBe(snapshot.AI_BUNDLE_ACTION);
|
|
});
|
|
|
|
it("all values are unique (no duplicate event names)", () => {
|
|
const values = Object.values(ANALYTICS_EVENTS);
|
|
const unique = new Set(values);
|
|
expect(unique.size).toBe(values.length);
|
|
});
|
|
});
|