2025-10-21 12:47:11 -07:00
|
|
|
import '@testing-library/jest-dom';
|
|
|
|
|
import { cleanup } from '@testing-library/react';
|
|
|
|
|
import { afterEach, vi } from 'vitest';
|
|
|
|
|
|
2026-06-10 04:25:48 +00:00
|
|
|
// Radix UI / @floating-ui calls requestAnimationFrame for layout and
|
|
|
|
|
// positioning on every render (Popover, DropdownMenu, Checkbox focus rings,
|
|
|
|
|
// etc.). In jsdom those callbacks are deferred to a future tick, landing
|
|
|
|
|
// outside the current act() boundary. React queues the resulting state
|
|
|
|
|
// updates, which schedule more microtasks, and the act() settlement loop
|
|
|
|
|
// keeps running until Vitest's 5000ms hard timeout kills the test.
|
|
|
|
|
//
|
|
|
|
|
// Making rAF synchronous keeps every callback inside the current act() cycle
|
|
|
|
|
// so there are no pending tasks when the test finishes. This fixes the whole
|
|
|
|
|
// class of flaky timeouts without touching individual test files.
|
|
|
|
|
global.requestAnimationFrame = (cb: FrameRequestCallback): number => {
|
|
|
|
|
cb(performance.now());
|
|
|
|
|
return 0;
|
|
|
|
|
};
|
|
|
|
|
global.cancelAnimationFrame = (_id: number): void => {};
|
|
|
|
|
|
2025-10-21 12:47:11 -07:00
|
|
|
// Cleanup after each test
|
|
|
|
|
afterEach(() => {
|
|
|
|
|
cleanup();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Mock environment variables
|
|
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
|
|
2026-04-25 07:42:43 -07:00
|
|
|
// jsdom does not implement scrollTo on elements
|
|
|
|
|
HTMLElement.prototype.scrollTo = vi.fn();
|
|
|
|
|
|
2026-06-19 06:15:32 +00:00
|
|
|
// jsdom does not implement these APIs that Radix UI relies on for pointer
|
|
|
|
|
// interactions and option positioning (Select, DropdownMenu, etc.). Without
|
|
|
|
|
// them, opening a Radix Select in a test throws.
|
|
|
|
|
HTMLElement.prototype.scrollIntoView = vi.fn();
|
|
|
|
|
HTMLElement.prototype.hasPointerCapture = vi.fn(() => false);
|
|
|
|
|
HTMLElement.prototype.setPointerCapture = vi.fn();
|
|
|
|
|
HTMLElement.prototype.releasePointerCapture = vi.fn();
|
|
|
|
|
|
Migrate authentication from Clerk to BetterAuth (#324)
* Migrate authentication from Clerk to BetterAuth (#322)
Replaces @clerk/react-router with self-hosted better-auth to eliminate
the external Clerk dependency and keep all user/session data in our own
PostgreSQL database.
**What changed**
- New: auth.server.ts (BetterAuth config w/ Drizzle adapter, bcrypt, Resend), auth-client.ts, api.auth.$.ts handler
- New: /login and /register pages with email+password and Google/Discord OAuth; open-redirect guard on redirectTo param
- New: UserMenu component replacing Clerk's UserButton
- Schema: sessions, accounts, verifications tables; emailVerified column; clerkId made nullable
- Migrations 0081 (BetterAuth tables) and 0082 (accounts extra columns for v1.6.9)
- All ~30 route files: getAuth → auth.api.getSession, isUserAdminByClerkId → isUserAdmin
- root.tsx: isAdmin read directly from session.user.isAdmin (no extra DB query)
- useDraftAuthRecovery: removed Clerk JWT refresh logic; replaced with cookie-session check
- models/user.ts: removed findUserByClerkId, findOrCreateUser, updateUserByClerkId (webhook pattern)
- Deleted: app/routes/api/webhooks/clerk.ts; uninstalled @clerk/react-router, @clerk/themes, svix
- scripts/migrate.mjs: extended with idempotent Clerk → BetterAuth data migration (FK conversion, email_verified, OAuth accounts)
- scripts/migrate-clerk-passwords.mjs: one-time script to import bcrypt hashes from Clerk CSV export
- BETTERAUTH_MIGRATION.md: dev and production runbooks
- All test mocks updated: vi.mock('~/lib/auth.server') instead of @clerk/react-router/server
- Test fixtures: added emailVerified field
**Follow-up (post-stable)**
- Rename actor_clerk_id column → actor_user_id in commissioner_audit_log
- Drop clerk_id column from users once migration confirmed
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* Add .npmrc with legacy-peer-deps for better-auth/drizzle peer dep conflict
better-auth@1.6.9 declares peerOptional deps on drizzle-orm ^0.45.2 and
drizzle-kit >=0.31.4, but we run drizzle-orm ~0.36.3 / drizzle-kit ~0.28.1.
The adapter works correctly at runtime with our versions — the peer dep is
only for stricter type checking. This unblocks npm ci in CI without a risky
drizzle major-version upgrade.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-24 22:00:49 -07:00
|
|
|
// Mock BetterAuth
|
|
|
|
|
vi.mock('~/lib/auth.server', () => ({
|
|
|
|
|
auth: {
|
|
|
|
|
api: {
|
|
|
|
|
getSession: vi.fn(() => Promise.resolve({
|
|
|
|
|
user: { id: 'test-user-id', email: 'test@example.com', name: 'Test User' },
|
|
|
|
|
session: { userId: 'test-user-id' },
|
|
|
|
|
})),
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-10-21 12:47:11 -07:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
// Mock database context
|
|
|
|
|
vi.mock('~/database/context', () => ({
|
|
|
|
|
database: vi.fn(() => ({
|
|
|
|
|
query: {},
|
|
|
|
|
insert: vi.fn(),
|
|
|
|
|
update: vi.fn(),
|
|
|
|
|
delete: vi.fn(),
|
|
|
|
|
select: vi.fn(),
|
|
|
|
|
})),
|
|
|
|
|
}));
|