82 lines
2.7 KiB
TypeScript
82 lines
2.7 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
||
import { quickStartInputSchema, onboardingStatusSchema } from "@app/validation";
|
||
import { parse, ApiError } from "../src/lib/errors.js";
|
||
|
||
describe("progressive onboarding validering (FAS 1b)", () => {
|
||
it("quick-start accepterar mål och precision", () => {
|
||
const result = parse(quickStartInputSchema, {
|
||
primaryGoal: "lose_weight",
|
||
precisionMode: "exact",
|
||
});
|
||
expect(result.primaryGoal).toBe("lose_weight");
|
||
expect(result.precisionMode).toBe("exact");
|
||
});
|
||
|
||
it("quick-start accepterar flera mål", () => {
|
||
const result = parse(quickStartInputSchema, {
|
||
goals: ["lose_weight", "cook_more"],
|
||
precisionMode: "simple",
|
||
});
|
||
expect(result.goals).toEqual(["lose_weight", "cook_more"]);
|
||
expect(result.primaryGoal).toBeUndefined();
|
||
expect(result.precisionMode).toBe("simple");
|
||
});
|
||
|
||
it("quick-start är valfri – endast precision får default", () => {
|
||
const result = parse(quickStartInputSchema, {});
|
||
expect(result.primaryGoal).toBeUndefined();
|
||
expect(result.precisionMode).toBe("simple");
|
||
});
|
||
|
||
it("quick-start avvisar ogiltigt mål", () => {
|
||
expect(() => parse(quickStartInputSchema, { primaryGoal: "invalid_goal" })).toThrowError(
|
||
ApiError,
|
||
);
|
||
});
|
||
|
||
it("quick-start avvisar ogiltig precision", () => {
|
||
expect(() => parse(quickStartInputSchema, { precisionMode: "medium" })).toThrowError(ApiError);
|
||
});
|
||
|
||
it("onboarding-status schema validerar korrekt struktur", () => {
|
||
const valid = {
|
||
step: "b",
|
||
onboardingCompleted: false,
|
||
hasHousehold: true,
|
||
hasHealthProfile: false,
|
||
hasPreferences: true,
|
||
};
|
||
const result = parse(onboardingStatusSchema, valid);
|
||
expect(result.step).toBe("b");
|
||
expect(result.hasHousehold).toBe(true);
|
||
});
|
||
|
||
it("onboarding-status avvisar ogiltig steg", () => {
|
||
expect(() =>
|
||
parse(onboardingStatusSchema, {
|
||
step: "d",
|
||
onboardingCompleted: false,
|
||
hasHousehold: false,
|
||
hasHealthProfile: false,
|
||
hasPreferences: false,
|
||
}),
|
||
).toThrowError(ApiError);
|
||
});
|
||
});
|
||
|
||
describe("progressive onboarding feature flag", () => {
|
||
it("PROGRESSIVE_ONBOARDING finns i KNOWN_FLAGS", async () => {
|
||
const { KNOWN_FLAGS } = await import("@app/feature-flags");
|
||
expect(KNOWN_FLAGS.PROGRESSIVE_ONBOARDING).toBe("progressive_onboarding");
|
||
});
|
||
|
||
it("bucketFor ger stabil hash 0–99", async () => {
|
||
const { bucketFor } = await import("@app/feature-flags");
|
||
const b1 = bucketFor("progressive_onboarding", "user-123");
|
||
const b2 = bucketFor("progressive_onboarding", "user-123");
|
||
expect(b1).toBe(b2);
|
||
expect(b1).toBeGreaterThanOrEqual(0);
|
||
expect(b1).toBeLessThan(100);
|
||
});
|
||
});
|