Files
accounted/app/api/company/members/invite/__tests__/route.test.ts
T
Mattsson d29a5bda14 fix(auth): resolve auth-link hosts from the brands table, drop NEXT_PUBLIC_WHITELABEL_DOMAINS (#2376)
* fix(auth): resolve auth-link hosts from the brands table, drop NEXT_PUBLIC_WHITELABEL_DOMAINS

Password reset, invite, email change and signup links now resolve the
request host against brands.domain server-side. The env var was a second
copy of that registry compiled into the browser; every new brand needed
the row, the env var, the GoTrue allowlist and a redeploy, and two
partners shipped with the env var stale, so their reset mails went out
canonical-branded to the canonical host.

- New POST /api/auth/password-reset: the login page no longer calls
  GoTrue directly, so the browser carries no domain list.
- lib/domains/trusted-app-origin.ts is async and registry-backed; it
  also trusts this deployment's own VERCEL_URL / VERCEL_BRANCH_URL so
  previews keep sending links to themselves.
- Signup shares the same resolver instead of following the raw host.
- Docs and .env.example describe the single registry; GoTrue keeps the
  redirect allowlist as backstop (hosted: *.accounted.se wildcard).

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NUNB7qjua8EUaJmZgfFscx

* fix(auth): await the async origin resolver in the billing routes merged from main

PR #2370 added resolveRequestAppOrigin callers in billing/checkout and
billing/portal after this branch made the resolver async. Await them and
move their tests from the removed env var to the brands mock; update the
login source-assert test to the server-routed reset.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NUNB7qjua8EUaJmZgfFscx

* fix(auth): refuse auth links on a failed brand lookup, keep local dev hosts, correct GoTrue allowlist docs

Skeptic and CI findings on #2376, one pass:

- A failed brands lookup now throws BrandLookupFailedError (TRANSIENT_ERROR,
  503, retryable) instead of falling back to the canonical origin: a
  canonical link is the wrong-brand mail this PR removes. Password reset
  and email change answer 503 themselves; withRouteContext routes map the
  code.
- A local canonical (dev) trusts other local hosts and ports on the same
  scheme, so lane servers on 3001-3003 confirm signups on themselves.
- GoTrue matches the full redirect_to including the query and `*` stops
  at `.` and `/`: docs and decision line now prescribe
  https://*.accounted.se/auth/callback** and https://*.accounted.se/invite/**.
- The Turnstile contract test asserts the server-routed reset forwards
  the captcha token (it still asserted the removed browser call).

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NUNB7qjua8EUaJmZgfFscx

---------

Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-07 15:12:22 +02:00

609 lines
23 KiB
TypeScript

/**
* Tests for POST /api/company/members/invite.
*/
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest'
import { NextResponse } from 'next/server'
import { createQueuedMockSupabase, createMockRequest, parseJsonResponse } from '@/tests/helpers'
const { supabase: serviceSupabase, enqueue, reset } = createQueuedMockSupabase()
// The queued mock's auth object only carries getUser; the provisioning path
// (AUTH_SIGNUPS_DISABLED=true) also calls auth.admin.inviteUserByEmail.
const inviteUserByEmailMock = vi.fn()
Object.assign(serviceSupabase.auth, {
admin: { inviteUserByEmail: inviteUserByEmailMock },
})
const requireAuthMock = vi.fn()
vi.mock('@/lib/auth/require-auth', () => ({
requireAuth: (...args: unknown[]) => requireAuthMock(...args),
}))
vi.mock('@/lib/company/context', () => ({
getActiveCompanyId: vi.fn().mockResolvedValue('company-1'),
requireCompanyId: vi.fn().mockResolvedValue('company-1'),
}))
const requireWriteMock = vi.fn()
vi.mock('@/lib/auth/require-write', () => ({
requireWritePermission: (...args: unknown[]) => requireWriteMock(...args),
}))
// Multi-user seat gate: mocked so the queued table mock's enqueue order stays
// untouched for the pre-existing tests; the gate's own behavior is covered in
// lib/entitlements/__tests__/multi-user.test.ts.
const getMultiUserStateMock = vi.hoisted(() => vi.fn())
vi.mock('@/lib/entitlements/multi-user', () => ({
getMultiUserState: (...args: unknown[]) => getMultiUserStateMock(...args),
}))
vi.mock('@/lib/supabase/server', () => ({
createServiceClient: () => serviceSupabase,
}))
vi.mock('@/lib/init', () => ({ ensureInitialized: vi.fn() }))
vi.mock('@/lib/auth/invite-tokens', () => ({
generateInviteToken: () => ({ token: 'tok-plain', hash: 'tok-hash' }),
getInviteExpiry: () => new Date('2026-08-01T00:00:00Z'),
}))
const sendEmailMock = vi.fn()
const isConfiguredMock = vi.fn()
vi.mock('@/lib/email/service', () => ({
getEmailService: () => ({ isConfigured: isConfiguredMock, sendEmail: sendEmailMock }),
}))
const brandSenderMock = vi.hoisted(() => ({
getSenderForCompany: vi.fn(),
getBaseUrlForBrand: vi.fn(),
}))
vi.mock('@/lib/email/brand-sender', () => brandSenderMock)
// The trusted-origin resolver reads the brands table; pin one registered
// brand host so the invite link tests exercise the real resolver logic.
const resolveBrandResultByHostMock = vi.hoisted(() => vi.fn())
vi.mock('@/lib/branding/resolve', () => ({
resolveBrandResultByHost: (...args: unknown[]) => resolveBrandResultByHostMock(...args),
}))
const generateInviteEmailHtmlMock = vi.hoisted(() =>
vi.fn((data: { inviteUrl: string }) => `<p>${data.inviteUrl}</p>`),
)
vi.mock('@/lib/email/invite-templates', () => ({
generateInviteEmailSubject: () => 'subject',
generateInviteEmailHtml: generateInviteEmailHtmlMock,
generateInviteEmailText: () => 'text',
}))
import { POST } from '../route'
const routeParams = { params: Promise.resolve({}) }
function post(body: unknown, url = '/api/company/members/invite') {
return POST(
createMockRequest(url, { method: 'POST', body }),
routeParams,
)
}
const originalAppUrl = process.env.NEXT_PUBLIC_APP_URL
beforeEach(() => {
vi.clearAllMocks()
reset()
delete process.env.AUTH_SIGNUPS_DISABLED
process.env.NEXT_PUBLIC_APP_URL = 'https://app.accounted.test'
resolveBrandResultByHostMock.mockImplementation(async (host: string) => ({
brand: host === 'portal.brand.test' ? { domain: host } : null,
lookupFailed: false,
}))
requireAuthMock.mockResolvedValue({
user: { id: 'user-1', email: 'owner@example.com' },
supabase: {},
error: null,
})
requireWriteMock.mockResolvedValue({ ok: true })
getMultiUserStateMock.mockResolvedValue({ state: 'entitled', graceEndsAt: null })
isConfiguredMock.mockReturnValue(true)
sendEmailMock.mockResolvedValue({ success: true, messageId: 'msg-1' })
brandSenderMock.getSenderForCompany.mockResolvedValue({
fromName: null,
fromAddress: null,
replyTo: null,
brand: null,
})
brandSenderMock.getBaseUrlForBrand.mockReturnValue('http://localhost:3000')
inviteUserByEmailMock.mockResolvedValue({ data: { user: { id: 'new-user' } }, error: null })
})
afterEach(() => {
vi.unstubAllEnvs()
delete process.env.AUTH_SIGNUPS_DISABLED
if (originalAppUrl === undefined) delete process.env.NEXT_PUBLIC_APP_URL
else process.env.NEXT_PUBLIC_APP_URL = originalAppUrl
})
describe('POST /api/company/members/invite', () => {
it('returns 401 when not authenticated', async () => {
requireAuthMock.mockResolvedValue({
user: null,
supabase: {},
error: NextResponse.json({ error: 'Unauthorized' }, { status: 401 }),
})
const res = await post({ email: 'x@y.se' })
expect(res.status).toBe(401)
})
it('refuses non-admin members with 403', async () => {
enqueue({ data: { role: 'member' } }) // caller membership
const { status, body } = await parseJsonResponse<{ error: string }>(
await post({ email: 'x@y.se' })
)
expect(status).toBe(403)
expect(body.error).toBe('Behörighet saknas.')
})
it('blocks invites with 403 + upsell when multi_user is frozen', async () => {
getMultiUserStateMock.mockResolvedValue({ state: 'frozen', graceEndsAt: null })
enqueue({ data: { role: 'owner' } }) // caller membership
const { status, body } = await parseJsonResponse<{
error: string
capability_blocked: boolean
capability: string
}>(await post({ email: 'x@y.se' }))
expect(status).toBe(403)
expect(body.error).toBe('Bjud in fler personer med betald plan.')
expect(body.capability_blocked).toBe(true)
expect(body.capability).toBe('multi_user')
expect(sendEmailMock).not.toHaveBeenCalled()
})
it('still allows invites during the post-lapse grace window', async () => {
getMultiUserStateMock.mockResolvedValue({
state: 'grace',
graceEndsAt: new Date(Date.now() + 5 * 86_400_000).toISOString(),
})
enqueue({ data: { role: 'owner' } }) // caller membership
enqueue({ data: [] }) // existing members
enqueue({ data: null }) // existing invite
enqueue({ data: { name: 'Acme AB' } }) // company name
enqueue({ data: null }) // insert invitation
const { status } = await parseJsonResponse(await post({ email: 'x@y.se' }))
expect(status).toBe(200)
})
it('rejects an invalid email with 400', async () => {
enqueue({ data: { role: 'owner' } })
const { status } = await parseJsonResponse(await post({ email: 'not-an-email' }))
expect(status).toBe(400)
})
it('rejects an unknown role with 400', async () => {
enqueue({ data: { role: 'owner' } })
const { status } = await parseJsonResponse(
await post({ email: 'x@y.se', role: 'superuser' })
)
expect(status).toBe(400)
})
it('creates the invitation and reports email_sent', async () => {
enqueue({ data: { role: 'owner' } }) // caller membership
enqueue({ data: [] }) // existing members
enqueue({ data: null }) // existing invite
enqueue({ data: { name: 'Acme AB' } }) // company name
enqueue({ data: null }) // insert invitation
const { status, body } = await parseJsonResponse<{
data: { email: string; email_sent: boolean; inviteUrl: string }
}>(await post({ email: 'Client@Example.com', role: 'viewer' }))
expect(status).toBe(200)
expect(body.data.email).toBe('client@example.com') // normalized
expect(body.data.email_sent).toBe(true)
expect(sendEmailMock).toHaveBeenCalledWith(
expect.objectContaining({ to: 'client@example.com' })
)
// The accept link is always returned (vitest runs with NODE_ENV=test,
// so this pins the removal of the old development-only gate): the
// inviter can share it directly even when the mail went out.
expect(body.data.inviteUrl).toBe('https://app.accounted.test/invite/tok-plain')
})
it('sends the branded invite: brand link base, brand appName, brand sender', async () => {
brandSenderMock.getSenderForCompany.mockResolvedValue({
fromName: 'Siffra',
fromAddress: 'noreply@post.siffra.se',
replyTo: 'support@siffra.se',
brand: { appName: 'Siffra', domain: 'app.siffra.se' },
})
brandSenderMock.getBaseUrlForBrand.mockReturnValue('https://app.siffra.se')
enqueue({ data: { role: 'owner' } })
enqueue({ data: [] })
enqueue({ data: null })
enqueue({ data: { name: 'Kund AB' } })
enqueue({ data: null })
const { status, body } = await parseJsonResponse<{ data: { inviteUrl: string } }>(
await post({ email: 'client@example.com' })
)
expect(status).toBe(200)
expect(generateInviteEmailHtmlMock).toHaveBeenCalledWith(
expect.objectContaining({
inviteUrl: 'https://app.siffra.se/invite/tok-plain',
appName: 'Siffra',
})
)
// The returned link follows the brand base too, same as the mailed one.
expect(body.data.inviteUrl).toBe('https://app.siffra.se/invite/tok-plain')
expect(sendEmailMock).toHaveBeenCalledWith(
expect.objectContaining({
fromName: 'Siffra',
fromAddress: 'noreply@post.siffra.se',
replyTo: 'support@siffra.se',
})
)
})
it('keeps the canonical link and platform sender for an unbranded company', async () => {
enqueue({ data: { role: 'owner' } })
enqueue({ data: [] })
enqueue({ data: null })
enqueue({ data: { name: 'Kund AB' } })
enqueue({ data: null })
const { status } = await parseJsonResponse(
await post({ email: 'client@example.com' })
)
expect(status).toBe(200)
expect(generateInviteEmailHtmlMock).toHaveBeenCalledWith(
expect.objectContaining({
inviteUrl: 'https://app.accounted.test/invite/tok-plain',
appName: undefined,
})
)
const options = sendEmailMock.mock.calls[0][0]
expect(options.fromName).toBeUndefined()
expect(options.fromAddress).toBeUndefined()
expect(options.replyTo).toBeUndefined()
})
it('reports email_sent=false when the send fails (invite still created)', async () => {
enqueue({ data: { role: 'owner' } })
enqueue({ data: [] })
enqueue({ data: null })
enqueue({ data: { name: 'Acme AB' } })
enqueue({ data: null })
sendEmailMock.mockResolvedValue({ success: false, error: 'smtp down' })
const { status, body } = await parseJsonResponse<{
data: { email_sent: boolean; status: string; inviteUrl: string }
}>(await post({ email: 'client@example.com' }))
expect(status).toBe(200)
expect(body.data.status).toBe('pending')
expect(body.data.email_sent).toBe(false)
// The link is the inviter's recovery path when the mail bounced.
expect(body.data.inviteUrl).toBe('https://app.accounted.test/invite/tok-plain')
})
it('no mail provider configured: invite created, link returned, nothing sent, warn logged (#1710)', async () => {
// NODE_ENV=production is the Docker image's setting and exactly the case
// the old development-only gate hid the link from. It also lets the
// logger emit (info/warn are suppressed under NODE_ENV=test).
vi.stubEnv('NODE_ENV', 'production')
isConfiguredMock.mockReturnValue(false)
const consoleWarnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {})
enqueue({ data: { role: 'owner' } })
enqueue({ data: [] })
enqueue({ data: null })
enqueue({ data: { name: 'Acme AB' } })
enqueue({ data: null })
const { status, body } = await parseJsonResponse<{
data: {
email_sent: boolean
user_provisioned: boolean
status: string
inviteUrl: string
}
}>(await post({ email: 'client@example.com' }))
expect(status).toBe(200)
expect(body.data.status).toBe('pending')
expect(body.data.email_sent).toBe(false)
expect(body.data.user_provisioned).toBe(false)
// Self-hosted without Resend: the in-band link is the ONLY way the
// invitee can ever accept, so it must be present outside development.
expect(body.data.inviteUrl).toBe('https://app.accounted.test/invite/tok-plain')
expect(sendEmailMock).not.toHaveBeenCalled()
const warned = consoleWarnSpy.mock.calls
.flat()
.map((arg) => (typeof arg === 'string' ? arg : JSON.stringify(arg)))
.join(' ')
expect(warned).toContain('email service not configured')
// The raw token never reaches the log: it is stored hashed at rest.
expect(warned).not.toContain('tok-plain')
consoleWarnSpy.mockRestore()
})
it('503s (retryable) when the brand lookup fails instead of mailing a canonical link', async () => {
resolveBrandResultByHostMock.mockResolvedValue({ brand: null, lookupFailed: true })
enqueue({ data: { role: 'owner' } })
enqueue({ data: [] })
enqueue({ data: null })
enqueue({ data: { name: 'Acme AB' } })
enqueue({ data: null })
const { status, body } = await parseJsonResponse<{ error: { code: string } }>(
await post(
{ email: 'client@example.com' },
'https://portal.brand.test/api/company/members/invite',
),
)
expect(status).toBe(503)
expect(body.error.code).toBe('TRANSIENT_ERROR')
expect(sendEmailMock).not.toHaveBeenCalled()
})
it('uses a registered brand request host in the invitation email', async () => {
enqueue({ data: { role: 'owner' } })
enqueue({ data: [] })
enqueue({ data: null })
enqueue({ data: { name: 'Acme AB' } })
enqueue({ data: null })
const { status } = await parseJsonResponse(
await post(
{ email: 'client@example.com' },
'https://portal.brand.test/api/company/members/invite',
),
)
expect(status).toBe(200)
expect(generateInviteEmailHtmlMock).toHaveBeenCalledWith(
expect.objectContaining({
inviteUrl: 'https://portal.brand.test/invite/tok-plain',
}),
)
})
it('falls back to the canonical app for an untrusted spoofed request host', async () => {
enqueue({ data: { role: 'owner' } })
enqueue({ data: [] })
enqueue({ data: null })
enqueue({ data: { name: 'Acme AB' } })
enqueue({ data: null })
const { status } = await parseJsonResponse(
await post(
{ email: 'client@example.com' },
'https://portal.brand.test.attacker.test/api/company/members/invite',
),
)
expect(status).toBe(200)
expect(generateInviteEmailHtmlMock).toHaveBeenCalledWith(
expect.objectContaining({
inviteUrl: 'https://app.accounted.test/invite/tok-plain',
}),
)
})
})
describe('POST /api/company/members/invite: AUTH_SIGNUPS_DISABLED provisioning', () => {
it('leaves behavior unchanged when the flag is unset: no existence check, no admin call', async () => {
enqueue({ data: { role: 'owner' } }) // caller membership
enqueue({ data: [] }) // existing members
enqueue({ data: null }) // existing invite
enqueue({ data: { name: 'Acme AB' } }) // company name
enqueue({ data: null }) // insert invitation
const { status, body } = await parseJsonResponse<{
data: { email_sent: boolean; user_provisioned: boolean }
}>(await post({ email: 'client@example.com' }))
expect(status).toBe(200)
expect(body.data.email_sent).toBe(true)
expect(body.data.user_provisioned).toBe(false)
expect(serviceSupabase.rpc).not.toHaveBeenCalled()
expect(inviteUserByEmailMock).not.toHaveBeenCalled()
})
it('flag on + account exists: skips provisioning, invite proceeds normally', async () => {
process.env.AUTH_SIGNUPS_DISABLED = 'true'
enqueue({ data: { role: 'owner' } }) // caller membership
enqueue({ data: [] }) // existing members
enqueue({ data: null }) // existing invite
enqueue({ data: { name: 'Acme AB' } }) // company name
enqueue({ data: true }) // rpc check_email_exists -> account exists
enqueue({ data: null }) // insert invitation
const { status, body } = await parseJsonResponse<{
data: { email_sent: boolean; user_provisioned: boolean }
}>(await post({ email: 'client@example.com' }))
expect(status).toBe(200)
expect(serviceSupabase.rpc).toHaveBeenCalledWith('check_email_exists', {
email_to_check: 'client@example.com',
})
expect(inviteUserByEmailMock).not.toHaveBeenCalled()
expect(body.data.email_sent).toBe(true)
expect(body.data.user_provisioned).toBe(false)
})
it('flag on + no account: provisions via admin invite with the invite redirect', async () => {
process.env.AUTH_SIGNUPS_DISABLED = 'true'
enqueue({ data: { role: 'owner' } }) // caller membership
enqueue({ data: [] }) // existing members
enqueue({ data: null }) // existing invite
enqueue({ data: { name: 'Acme AB' } }) // company name
enqueue({ data: false }) // rpc check_email_exists -> no account
enqueue({ data: null }) // insert invitation
const { status, body } = await parseJsonResponse<{
data: { email_sent: boolean; user_provisioned: boolean }
}>(await post({ email: 'Client@Example.com' }))
expect(status).toBe(200)
expect(inviteUserByEmailMock).toHaveBeenCalledTimes(1)
// Provision with the lowercased email (the invitation row and GoTrue
// both lowercase; /api/team/accept enforces exact email match) and a
// redirect that lands back on this invitation.
expect(inviteUserByEmailMock).toHaveBeenCalledWith('client@example.com', {
redirectTo: expect.stringContaining('/invite/tok-plain'),
})
expect(body.data.user_provisioned).toBe(true)
expect(body.data.email_sent).toBe(true)
})
it('uses a registered brand request host for the GoTrue invite redirect', async () => {
process.env.AUTH_SIGNUPS_DISABLED = 'true'
enqueue({ data: { role: 'owner' } })
enqueue({ data: [] })
enqueue({ data: null })
enqueue({ data: { name: 'Acme AB' } })
enqueue({ data: false })
enqueue({ data: null })
const { status } = await parseJsonResponse(
await post(
{ email: 'client@example.com' },
'https://portal.brand.test/api/company/members/invite',
),
)
expect(status).toBe(200)
expect(inviteUserByEmailMock).toHaveBeenCalledWith('client@example.com', {
redirectTo: 'https://portal.brand.test/invite/tok-plain',
})
})
it('flag on + provisioning fails: surfaces a Swedish error, sends nothing, logs a masked address', async () => {
process.env.AUTH_SIGNUPS_DISABLED = 'true'
enqueue({ data: { role: 'owner' } }) // caller membership
enqueue({ data: [] }) // existing members
enqueue({ data: null }) // existing invite
enqueue({ data: { name: 'Acme AB' } }) // company name
enqueue({ data: false }) // rpc check_email_exists -> no account
// Mimic a real GoTrue failure (AuthApiError is an Error instance):
// SMTP not configured is the typical self-hosted cause.
const authError = Object.assign(new Error('Error sending invite email'), {
code: 'unexpected_failure',
status: 500,
})
inviteUserByEmailMock.mockResolvedValue({ data: { user: null }, error: authError })
const consoleErrorSpy = vi.spyOn(console, 'error').mockImplementation(() => {})
const { status, body } = await parseJsonResponse<{ error: string }>(
await post({ email: 'client@example.com' })
)
expect(status).toBe(502)
expect(body.error).toContain('SMTP')
expect(sendEmailMock).not.toHaveBeenCalled()
// The failure log carries only a masked invitee address (PII stays out
// of the log record; the mask survives the logger's own redaction).
const logged = consoleErrorSpy.mock.calls
.flat()
.map((arg) => (typeof arg === 'string' ? arg : JSON.stringify(arg)))
.join(' ')
expect(logged).toContain('c***@example.com')
expect(logged).not.toContain('client@example.com')
consoleErrorSpy.mockRestore()
})
it('flag on + existence check errors (RPC missing): warns and provisions anyway', async () => {
process.env.AUTH_SIGNUPS_DISABLED = 'true'
enqueue({ data: { role: 'owner' } }) // caller membership
enqueue({ data: [] }) // existing members
enqueue({ data: null }) // existing invite
enqueue({ data: { name: 'Acme AB' } }) // company name
// The exact failure shape a deployment without migration
// 20260804140000 produces: PostgREST cannot find the function.
enqueue({
data: null,
error: {
message: 'Could not find the function public.check_email_exists(email_to_check) in the schema cache',
code: 'PGRST202',
},
}) // rpc check_email_exists -> error
enqueue({ data: null }) // insert invitation
const { status, body } = await parseJsonResponse<{
data: { email_sent: boolean; user_provisioned: boolean }
}>(await post({ email: 'client@example.com' }))
// The route logs a warning and treats GoTrue as the authority: it
// attempts provisioning anyway rather than silently skipping the
// invitee, and a duplicate would surface from GoTrue itself.
expect(status).toBe(200)
expect(serviceSupabase.rpc).toHaveBeenCalledWith('check_email_exists', {
email_to_check: 'client@example.com',
})
expect(inviteUserByEmailMock).toHaveBeenCalledTimes(1)
expect(body.data.user_provisioned).toBe(true)
expect(body.data.email_sent).toBe(true)
})
it('flag on + admin reports the email already registered: treated as existing account', async () => {
process.env.AUTH_SIGNUPS_DISABLED = 'true'
enqueue({ data: { role: 'owner' } }) // caller membership
enqueue({ data: [] }) // existing members
enqueue({ data: null }) // existing invite
enqueue({ data: { name: 'Acme AB' } }) // company name
enqueue({ data: false }) // rpc check_email_exists -> stale answer
enqueue({ data: null }) // insert invitation
const authError = Object.assign(
new Error('A user with this email address has already been registered'),
{ code: 'email_exists', status: 422 },
)
inviteUserByEmailMock.mockResolvedValue({ data: { user: null }, error: authError })
const { status, body } = await parseJsonResponse<{
data: { email_sent: boolean; user_provisioned: boolean }
}>(await post({ email: 'client@example.com' }))
expect(status).toBe(200)
expect(body.data.user_provisioned).toBe(false)
expect(body.data.email_sent).toBe(true)
})
it('flag on + no account + no mail provider: GoTrue provisions and mails, app sends nothing, link still returned', async () => {
process.env.AUTH_SIGNUPS_DISABLED = 'true'
isConfiguredMock.mockReturnValue(false)
const consoleWarnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {})
enqueue({ data: { role: 'owner' } }) // caller membership
enqueue({ data: [] }) // existing members
enqueue({ data: null }) // existing invite
enqueue({ data: { name: 'Acme AB' } }) // company name
enqueue({ data: false }) // rpc check_email_exists -> no account
enqueue({ data: null }) // insert invitation
const { status, body } = await parseJsonResponse<{
data: { email_sent: boolean; user_provisioned: boolean; inviteUrl: string }
}>(await post({ email: 'client@example.com' }))
expect(status).toBe(200)
expect(inviteUserByEmailMock).toHaveBeenCalledWith('client@example.com', {
redirectTo: 'https://app.accounted.test/invite/tok-plain',
})
// email_sent reports the APP's mail only: GoTrue sent its own invite
// mail via the Supabase SMTP settings, so the UI must not call this a
// failed send (it branches on email_sent === false && !user_provisioned).
expect(body.data.user_provisioned).toBe(true)
expect(body.data.email_sent).toBe(false)
expect(sendEmailMock).not.toHaveBeenCalled()
expect(body.data.inviteUrl).toBe('https://app.accounted.test/invite/tok-plain')
consoleWarnSpy.mockRestore()
})
})