feat(m3): auth & user management with session, tests, and e2e

- Custom error classes (lib/errors.ts) and signed-cookie session
  (lib/auth/session.ts, HMAC-SHA256, httpOnly+sameSite=lax)
- UserRepository + AuthService (bcrypt hashing, role/status checks,
  register/login/logout/getCurrentUser/updateProfile)
- Auth helpers (getCurrentUser), user validator, API error handler
- API routes: register (auto-login), login, logout, me, PATCH users/me,
  GET admin/migrations (admin-only guard)
- middleware.ts redirects unauthenticated page access to /login
- Screens: login (login/register toggle), profile, dashboard skeleton,
  home redirect
- vitest: exclude e2e specs, setupFiles for SESSION_SECRET
- playwright: run migrate before dev server, set SESSION_SECRET
- Unit tests (UserRepository, AuthService, session), integration
  auth-flow, e2e auth.spec (register/login/logout/protected/401)
This commit is contained in:
Ken Yasue
2026-06-25 00:36:42 +02:00
parent 40ff4fb909
commit 21b9f03e9d
27 changed files with 1578 additions and 10 deletions

View File

@ -0,0 +1,177 @@
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
import { createMigratedTestDb } from '@/tests/helpers/db';
import type { SqliteDatabase } from '@/lib/db/sqlite';
import { UserRepository } from '@/repositories/UserRepository';
import { AuthService } from '@/services/AuthService';
import { ConflictError, UnauthorizedError, NotFoundError } from '@/lib/errors';
import { verifySessionToken } from '@/lib/auth/session';
import bcrypt from 'bcrypt';
describe('AuthService', () => {
let db: SqliteDatabase;
let repo: UserRepository;
let authService: AuthService;
beforeEach(() => {
db = createMigratedTestDb();
repo = new UserRepository(db);
authService = new AuthService(repo);
});
afterEach(() => {
db.close();
});
describe('register', () => {
it('creates a user with a bcrypt-hashed password', () => {
const user = authService.register({
name: 'Alice',
email: 'alice@example.com',
password: 'password123',
});
expect(user.id).toBeGreaterThan(0);
expect(user.passwordHash).not.toBe('password123');
expect(bcrypt.compareSync('password123', user.passwordHash!)).toBe(true);
expect(user.role).toBe('member');
expect(user.status).toBe('active');
});
it('throws ConflictError when the email is already registered', () => {
authService.register({
name: 'Alice',
email: 'dup@example.com',
password: 'password123',
});
expect(() =>
authService.register({
name: 'Bob',
email: 'dup@example.com',
password: 'password123',
})
).toThrow(ConflictError);
});
it('throws ValidationError for a weak password', () => {
expect(() =>
authService.register({
name: 'Alice',
email: 'a@example.com',
password: 'short',
})
).toThrow();
});
});
describe('login', () => {
beforeEach(() => {
authService.register({
name: 'Alice',
email: 'alice@example.com',
password: 'password123',
});
});
it('returns the user and a verifiable session token on success', () => {
const { user, token } = authService.login(
'alice@example.com',
'password123'
);
expect(user.email).toBe('alice@example.com');
expect(verifySessionToken(token)).toBe(user.id);
});
it('throws UnauthorizedError when the password is wrong', () => {
expect(() =>
authService.login('alice@example.com', 'wrong-password')
).toThrow(UnauthorizedError);
});
it('throws UnauthorizedError when the email does not exist', () => {
expect(() =>
authService.login('nobody@example.com', 'password123')
).toThrow(UnauthorizedError);
});
it('throws UnauthorizedError when the account is inactive', () => {
const user = repo.findByEmail('alice@example.com')!;
repo.update(user.id, { status: 'inactive' });
expect(() =>
authService.login('alice@example.com', 'password123')
).toThrow(UnauthorizedError);
});
});
describe('getCurrentUser', () => {
it('returns the user for a valid id', () => {
const created = authService.register({
name: 'Alice',
email: 'alice@example.com',
password: 'password123',
});
expect(authService.getCurrentUser(created.id)?.email).toBe(
'alice@example.com'
);
});
it('returns null for an unknown id', () => {
expect(authService.getCurrentUser(99999)).toBeNull();
});
});
describe('updateProfile', () => {
it('updates name and email', () => {
const created = authService.register({
name: 'Alice',
email: 'alice@example.com',
password: 'password123',
});
const updated = authService.updateProfile(created.id, {
name: 'Alice New',
email: 'alice2@example.com',
});
expect(updated.name).toBe('Alice New');
expect(updated.email).toBe('alice2@example.com');
});
it('throws ConflictError when changing email to one already in use', () => {
authService.register({
name: 'Alice',
email: 'alice@example.com',
password: 'password123',
});
const bob = authService.register({
name: 'Bob',
email: 'bob@example.com',
password: 'password123',
});
expect(() =>
authService.updateProfile(bob.id, { email: 'alice@example.com' })
).toThrow(ConflictError);
});
it('throws NotFoundError when the user does not exist', () => {
expect(() => authService.updateProfile(99999, { name: 'X' })).toThrow(
NotFoundError
);
});
});
describe('createWithRole', () => {
it('creates a user with the specified role', () => {
const admin = authService.createWithRole(
{ name: 'Admin', email: 'admin@example.com', password: 'password123' },
'system_admin'
);
expect(admin.role).toBe('system_admin');
});
});
});