a1a816b4a5
* Implement company and account deletion features - Add event types for company and account deletion to CoreEvent. - Enhance Supabase middleware to handle company context resolution and cookie management for archived companies. - Create API routes for deleting accounts and companies, including necessary validations and event emissions. - Implement tests for account and company deletion endpoints to ensure proper functionality and error handling. - Add retention notice component to inform users about bookkeeping data retention during destructive actions. - Create database migrations to support soft deletion of companies and anonymization of user accounts, ensuring compliance with retention laws. * feat: enhance account deletion process and update user notifications * Add service client for onboarding completion check and update escape hatch visibility * Enhance invite flow and email handling for company members * Refactor company context and RLS policies for active company isolation - Update `switchCompany` to remove unnecessary revalidation as client handles navigation. - Revise `getActiveCompanyId` to prioritize `user_preferences` and validate against non-archived memberships. - Modify `setActiveCompany` to ensure `user_preferences` is the authoritative source while maintaining cookie compatibility. - Enhance middleware to resolve active company using `user_preferences` and fallback to first non-archived membership. - Introduce new API route `/api/company/current` to fetch the active company ID for cross-tab synchronization. - Implement `CompanyTabSync` component for real-time active company enforcement across tabs. - Create migration for RLS policies to enforce single-active-company isolation using `current_active_company_id()`. * feat: implement viewer role enforcement for write permissions - Added `useCanWrite` hook to determine if the current user has write permissions based on their role in the active company. - Updated various components (JournalEntryForm, CustomerForm, DeadlineForm, etc.) to disable write actions and show a lock icon with a tooltip for users without write permissions. - Introduced `requireWritePermission` function to enforce write permissions at the API level, returning a 403 response for viewers. - Created tests to verify the behavior of the viewer role and write permissions. - Added database migration to enforce read-only access for viewers at the database level.
82 lines
2.7 KiB
TypeScript
82 lines
2.7 KiB
TypeScript
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
import { createMockSupabase } from '@/tests/helpers'
|
|
|
|
vi.mock('@/lib/company/context', () => ({
|
|
getActiveCompanyId: vi.fn(),
|
|
}))
|
|
|
|
import { requireWritePermission } from '../require-write'
|
|
import { getActiveCompanyId } from '@/lib/company/context'
|
|
|
|
describe('requireWritePermission', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
})
|
|
|
|
it('returns ok for owner', async () => {
|
|
const { supabase, mockResult } = createMockSupabase()
|
|
vi.mocked(getActiveCompanyId).mockResolvedValue('company-1')
|
|
mockResult({ data: { role: 'owner' } })
|
|
|
|
const result = await requireWritePermission(supabase, 'user-1')
|
|
expect(result.ok).toBe(true)
|
|
})
|
|
|
|
it('returns ok for admin', async () => {
|
|
const { supabase, mockResult } = createMockSupabase()
|
|
vi.mocked(getActiveCompanyId).mockResolvedValue('company-1')
|
|
mockResult({ data: { role: 'admin' } })
|
|
|
|
const result = await requireWritePermission(supabase, 'user-1')
|
|
expect(result.ok).toBe(true)
|
|
})
|
|
|
|
it('returns ok for member', async () => {
|
|
const { supabase, mockResult } = createMockSupabase()
|
|
vi.mocked(getActiveCompanyId).mockResolvedValue('company-1')
|
|
mockResult({ data: { role: 'member' } })
|
|
|
|
const result = await requireWritePermission(supabase, 'user-1')
|
|
expect(result.ok).toBe(true)
|
|
})
|
|
|
|
it('returns 403 for viewer', async () => {
|
|
const { supabase, mockResult } = createMockSupabase()
|
|
vi.mocked(getActiveCompanyId).mockResolvedValue('company-1')
|
|
mockResult({ data: { role: 'viewer' } })
|
|
|
|
const result = await requireWritePermission(supabase, 'user-1')
|
|
expect(result.ok).toBe(false)
|
|
if (!result.ok) {
|
|
expect(result.response.status).toBe(403)
|
|
const body = await result.response.json()
|
|
expect(body.error).toContain('läsbehörighet')
|
|
}
|
|
})
|
|
|
|
it('returns 403 when user has no membership', async () => {
|
|
const { supabase, mockResult } = createMockSupabase()
|
|
vi.mocked(getActiveCompanyId).mockResolvedValue('company-1')
|
|
mockResult({ data: null })
|
|
|
|
const result = await requireWritePermission(supabase, 'user-1')
|
|
expect(result.ok).toBe(false)
|
|
if (!result.ok) {
|
|
expect(result.response.status).toBe(403)
|
|
}
|
|
})
|
|
|
|
it('returns 403 when there is no active company', async () => {
|
|
const { supabase } = createMockSupabase()
|
|
vi.mocked(getActiveCompanyId).mockResolvedValue(null)
|
|
|
|
const result = await requireWritePermission(supabase, 'user-1')
|
|
expect(result.ok).toBe(false)
|
|
if (!result.ok) {
|
|
expect(result.response.status).toBe(403)
|
|
const body = await result.response.json()
|
|
expect(body.error).toContain('aktivt företag')
|
|
}
|
|
})
|
|
})
|