metatrondelivery/tests/unit/templates.test.ts
metatroncubeswdev 21f0ee704b feat: Phase 1 — core data model & admin CRUD
Adds the scheduling core to Prisma (Shop, Location, Method enum,
SlotTemplate, SlotOverride, BlackoutDate — IMPLEMENTATION_PLAN.md §4) and
Polaris admin screens to manage them:

- /app/locations: list/create/edit/delete locations, one-click vertical
  template seeding (bakery/florist/grocer)
- /app/slots: weekly slot template editor, scoped per location
- /app/blackouts: blackout dates, scoped to one location or all of them

services/templates.server.ts keeps the vertical presets as a pure,
unit-tested function (getVerticalTemplate) separate from the thin I/O
wrapper (seedVerticalTemplate) that does the actual Prisma writes, per
CLAUDE.md's "pure functions, inject data, no I/O in the math" rule.

Switched dev DB from SQLite to Postgres (docker-compose.yml, ports 5433/6380
to avoid clashing with other local projects already on 5432/6379): SQLite
doesn't support Prisma enums at all, and IMPLEMENTATION_PLAN.md's schema
relies on them (Method) plus Postgres-only array fields in later phases
(Zone.postalCodes, ProductRule.allowedLocationIds). Only one throwaway
migration existed, so switching now avoids compounding the rework later.

Also fixed a Remix/Polaris integration issue hit while building these forms:
this Polaris version's TextField/Checkbox are fully controlled (no
defaultValue/defaultChecked), and `data()` imported from `@remix-run/react`
(rather than `@remix-run/node`) breaks useActionData's type inference —
both are now handled correctly across the new routes.

Verified: lint, typecheck, unit tests (incl. template-seeding fixtures),
build, and a live end-to-end run of seedVerticalTemplate against the
Postgres container all pass.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-23 17:47:59 -04:00

41 lines
1.7 KiB
TypeScript

import { describe, expect, it } from "vitest";
import { getVerticalTemplate, listVerticalTemplates } from "../../app/services/templates.server";
describe("getVerticalTemplate", () => {
it("lists exactly the three Phase 1 vertical presets", () => {
expect(listVerticalTemplates().sort()).toEqual(["bakery", "florist", "grocer"]);
});
it.each(listVerticalTemplates())("%s: every slot has a valid weekday and start < end", (vertical) => {
const template = getVerticalTemplate(vertical);
expect(template.slotTemplates.length).toBeGreaterThan(0);
for (const slot of template.slotTemplates) {
expect(slot.weekday).toBeGreaterThanOrEqual(0);
expect(slot.weekday).toBeLessThanOrEqual(6);
expect(slot.startMin).toBeGreaterThanOrEqual(0);
expect(slot.endMin).toBeLessThanOrEqual(24 * 60);
expect(slot.startMin).toBeLessThan(slot.endMin);
expect(slot.capacity).toBeGreaterThan(0);
expect(slot.cutoffMin).toBeGreaterThanOrEqual(0);
expect(slot.leadTimeMin).toBeGreaterThanOrEqual(0);
}
});
it("bakery covers Tue-Sat only (closed Sun/Mon)", () => {
const weekdays = new Set(getVerticalTemplate("bakery").slotTemplates.map((s) => s.weekday));
expect(weekdays.has(0)).toBe(false);
expect(weekdays.has(1)).toBe(false);
expect(weekdays.has(2)).toBe(true);
expect(weekdays.has(6)).toBe(true);
});
it("grocer is the only preset open every day of the week", () => {
const weekdays = new Set(getVerticalTemplate("grocer").slotTemplates.map((s) => s.weekday));
expect(weekdays.size).toBe(7);
});
it("is deterministic (calling twice yields an equivalent template)", () => {
expect(getVerticalTemplate("florist")).toEqual(getVerticalTemplate("florist"));
});
});