Replaces the no-op fastify.authenticate stub and the never-implemented
identity/auth login with real bcrypt password verification, JWT session
issuance/verification (reusing the existing JWT_SECRET), and a Redis-backed
revocation denylist for logout. Adds requireRole('ADMIN') to admin-only
configuration writes across 002-009 that previously relied on a decorator
that never actually checked anything. Adds self-identity (GET /auth/me,
re-validated against live account state) and admin-provisioned accounts
(POST /admin/users).
Making the auth check genuinely reject invalid/missing tokens exposed that
~18 pre-existing integration test files called already-gated routes with no
Authorization header (safe against the old no-op stub, broken against a real
one) — fixed via a shared tests/helpers/auth.ts (loginAs/authHeader) and a
file-by-file pass, plus two related SLA-run cleanup races exposed once admin
setup calls in those files' own beforeAll blocks started actually succeeding.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
24 lines
949 B
TypeScript
24 lines
949 B
TypeScript
import { randomUUID } from 'crypto';
|
|
import { PrismaClient, UserRole } from '@prisma/client';
|
|
import bcrypt from 'bcryptjs';
|
|
|
|
export async function seedDemoData(prisma: PrismaClient): Promise<void> {
|
|
// eslint-disable-next-line no-console
|
|
console.log(' -> Seeding demo environment data...');
|
|
|
|
// Legacy demo row, pre-existing since before 010-identity-auth: a CUSTOMER-role User is
|
|
// never a real login identity (customer identity is exclusively SaaS-delegated, see
|
|
// specs/010-identity-auth/spec.md Assumptions) — passwordHash is populated only to satisfy
|
|
// the column's NOT NULL constraint; this account can never authenticate via /auth/login.
|
|
await prisma.user.upsert({
|
|
where: { email: 'john.doe@example.com' },
|
|
update: {},
|
|
create: {
|
|
email: 'john.doe@example.com',
|
|
name: 'John Doe (Demo Customer)',
|
|
role: UserRole.CUSTOMER,
|
|
passwordHash: await bcrypt.hash(randomUUID(), 10),
|
|
},
|
|
});
|
|
}
|