2026-05-03 20:55:53 +02:00
|
|
|
/**
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
* EMAIL_REDIRECT_TO safety net - comprehensive verification.
|
2026-05-03 20:55:53 +02:00
|
|
|
*
|
|
|
|
|
* Goal: a single env flip (`EMAIL_REDIRECT_TO=<address>`) MUST pause every
|
|
|
|
|
* outbound communication channel. This test file exercises each channel
|
|
|
|
|
* end-to-end with the env set, asserting the message is rerouted (or
|
|
|
|
|
* short-circuited) before it leaves the process.
|
|
|
|
|
*
|
|
|
|
|
* Lock these tests in: any new outbound channel added later should ALSO
|
|
|
|
|
* gain a check here. If a future PR breaks the redirect, this fails loud.
|
|
|
|
|
*/
|
|
|
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
|
|
|
|
|
|
|
|
|
|
const REDIRECT_TARGET = 'redirect@example.test';
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
// 1. Documenso recipient redirect (createDocument + generateDocumentFromTemplate)
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
describe('Documenso recipient redirect - EMAIL_REDIRECT_TO', () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
const originalRedirect = process.env.EMAIL_REDIRECT_TO;
|
|
|
|
|
const originalDocumensoUrl = process.env.DOCUMENSO_API_URL;
|
|
|
|
|
const originalDocumensoKey = process.env.DOCUMENSO_API_KEY;
|
2026-06-25 13:20:55 +02:00
|
|
|
const originalDocumensoVersion = process.env.DOCUMENSO_API_VERSION;
|
2026-05-03 20:55:53 +02:00
|
|
|
|
|
|
|
|
let fetchMock: ReturnType<typeof vi.fn>;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
process.env.EMAIL_REDIRECT_TO = REDIRECT_TARGET;
|
|
|
|
|
process.env.DOCUMENSO_API_URL = 'https://documenso.example.test';
|
|
|
|
|
process.env.DOCUMENSO_API_KEY = 'test-key';
|
2026-06-25 13:20:55 +02:00
|
|
|
// Pin v1 — prod's API version + these assertions read the JSON request
|
|
|
|
|
// body. Without this the local .env's DOCUMENSO_API_VERSION leaks in and
|
|
|
|
|
// the v2 multipart/FormData path makes JSON.parse(body) throw.
|
|
|
|
|
process.env.DOCUMENSO_API_VERSION = 'v1';
|
2026-05-03 20:55:53 +02:00
|
|
|
|
|
|
|
|
fetchMock = vi.fn(async () => ({
|
|
|
|
|
ok: true,
|
|
|
|
|
json: async () => ({
|
|
|
|
|
id: 'doc-1',
|
|
|
|
|
status: 'PENDING',
|
|
|
|
|
recipients: [],
|
|
|
|
|
}),
|
|
|
|
|
text: async () => '',
|
|
|
|
|
}));
|
|
|
|
|
// @ts-expect-error global fetch shim for the test
|
|
|
|
|
globalThis.fetch = fetchMock;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
|
if (originalRedirect === undefined) delete process.env.EMAIL_REDIRECT_TO;
|
|
|
|
|
else process.env.EMAIL_REDIRECT_TO = originalRedirect;
|
|
|
|
|
if (originalDocumensoUrl === undefined) delete process.env.DOCUMENSO_API_URL;
|
|
|
|
|
else process.env.DOCUMENSO_API_URL = originalDocumensoUrl;
|
|
|
|
|
if (originalDocumensoKey === undefined) delete process.env.DOCUMENSO_API_KEY;
|
|
|
|
|
else process.env.DOCUMENSO_API_KEY = originalDocumensoKey;
|
2026-06-25 13:20:55 +02:00
|
|
|
if (originalDocumensoVersion === undefined) delete process.env.DOCUMENSO_API_VERSION;
|
|
|
|
|
else process.env.DOCUMENSO_API_VERSION = originalDocumensoVersion;
|
2026-05-03 20:55:53 +02:00
|
|
|
vi.resetModules();
|
|
|
|
|
});
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
it('createDocument - every recipient.email rewritten to redirect target', async () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
vi.resetModules();
|
|
|
|
|
const mod = await import('@/lib/services/documenso-client');
|
|
|
|
|
await mod.createDocument('Test Doc', 'pdf-base64', [
|
|
|
|
|
{ name: 'Alice Smith', email: 'alice@realclient.com', role: 'SIGNER', signingOrder: 1 },
|
|
|
|
|
{ name: 'Bob Smith', email: 'bob@realclient.com', role: 'VIEWER', signingOrder: 2 },
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
expect(fetchMock).toHaveBeenCalledOnce();
|
2026-05-12 18:16:18 +02:00
|
|
|
const callBody = JSON.parse(fetchMock.mock.calls[0]![1].body as string) as any;
|
2026-05-03 20:55:53 +02:00
|
|
|
expect(callBody.recipients).toHaveLength(2);
|
2026-06-25 13:20:55 +02:00
|
|
|
const namesByOrder = Object.fromEntries(
|
|
|
|
|
callBody.recipients.map((r: any) => [r.signingOrder, r.name]),
|
|
|
|
|
);
|
2026-05-03 20:55:53 +02:00
|
|
|
for (const r of callBody.recipients) {
|
|
|
|
|
expect(r.email).toBe(REDIRECT_TARGET);
|
2026-06-25 13:20:55 +02:00
|
|
|
}
|
|
|
|
|
// Name must stay CLEAN — it renders into the signed PDF's Name field, so
|
|
|
|
|
// the "(was: …)" redirect annotation must NOT leak into it (it overlapped
|
|
|
|
|
// the signature). Email-only redirect; original email lives in the logs.
|
|
|
|
|
expect(namesByOrder[1]).toBe('Alice Smith');
|
|
|
|
|
expect(namesByOrder[2]).toBe('Bob Smith');
|
|
|
|
|
for (const r of callBody.recipients) {
|
|
|
|
|
expect(r.name).not.toContain('(was:');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('createDocument - suppresses Documenso own emails (emailSettings all false)', async () => {
|
|
|
|
|
vi.resetModules();
|
|
|
|
|
const mod = await import('@/lib/services/documenso-client');
|
|
|
|
|
await mod.createDocument('Test Doc', 'pdf-base64', [
|
|
|
|
|
{ name: 'Alice Smith', email: 'alice@realclient.com', role: 'SIGNER', signingOrder: 1 },
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
expect(fetchMock).toHaveBeenCalledOnce();
|
|
|
|
|
const callBody = JSON.parse(fetchMock.mock.calls[0]![1].body as string) as any;
|
|
|
|
|
// The CRM is the SOLE sender of signing comms. Documenso must never fire
|
|
|
|
|
// its own "Waiting for others" / "Signing Complete!" lifecycle emails, so
|
|
|
|
|
// every per-document email event is disabled at creation time.
|
|
|
|
|
expect(callBody.meta).toBeDefined();
|
|
|
|
|
expect(callBody.meta.emailSettings).toBeDefined();
|
|
|
|
|
const es = callBody.meta.emailSettings;
|
|
|
|
|
for (const key of [
|
|
|
|
|
'recipientSigningRequest',
|
|
|
|
|
'recipientSigned',
|
|
|
|
|
'recipientRemoved',
|
|
|
|
|
'documentPending',
|
|
|
|
|
'documentCompleted',
|
|
|
|
|
'documentDeleted',
|
|
|
|
|
'ownerDocumentCreated',
|
|
|
|
|
'ownerDocumentCompleted',
|
|
|
|
|
'ownerRecipientExpired',
|
|
|
|
|
]) {
|
|
|
|
|
expect(es[key]).toBe(false);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('createDocument (v2) - emailSettings all false in the multipart payload', async () => {
|
|
|
|
|
process.env.DOCUMENSO_API_VERSION = 'v2';
|
|
|
|
|
vi.resetModules();
|
|
|
|
|
const mod = await import('@/lib/services/documenso-client');
|
|
|
|
|
await mod.createDocument('Test Doc', 'pdf-base64', [
|
|
|
|
|
{ name: 'Alice Smith', email: 'alice@realclient.com', role: 'SIGNER', signingOrder: 1 },
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
// v2 envelope/create is multipart/form-data; the JSON lives in `payload`.
|
|
|
|
|
const form = fetchMock.mock.calls[0]![1].body as FormData;
|
|
|
|
|
const payload = JSON.parse(form.get('payload') as string) as any;
|
|
|
|
|
expect(payload.meta.emailSettings).toBeDefined();
|
|
|
|
|
for (const key of [
|
|
|
|
|
'recipientSigningRequest',
|
|
|
|
|
'recipientSigned',
|
|
|
|
|
'documentPending',
|
|
|
|
|
'documentCompleted',
|
|
|
|
|
'ownerDocumentCompleted',
|
|
|
|
|
]) {
|
|
|
|
|
expect(payload.meta.emailSettings[key]).toBe(false);
|
2026-05-03 20:55:53 +02:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
it('generateDocumentFromTemplate - formValues *Email keys rewritten', async () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
vi.resetModules();
|
|
|
|
|
const mod = await import('@/lib/services/documenso-client');
|
|
|
|
|
await mod.generateDocumentFromTemplate(42, {
|
|
|
|
|
formValues: {
|
|
|
|
|
'client.fullName': 'Alice Smith',
|
|
|
|
|
'client.primaryEmail': 'alice@realclient.com',
|
|
|
|
|
'developer.email': 'dev@realclient.com',
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(fetchMock).toHaveBeenCalledOnce();
|
2026-05-12 18:16:18 +02:00
|
|
|
const callBody = JSON.parse(fetchMock.mock.calls[0]![1].body as string) as any;
|
2026-05-03 20:55:53 +02:00
|
|
|
expect(callBody.formValues['client.primaryEmail']).toBe(REDIRECT_TARGET);
|
|
|
|
|
expect(callBody.formValues['developer.email']).toBe(REDIRECT_TARGET);
|
|
|
|
|
// Non-email field untouched
|
|
|
|
|
expect(callBody.formValues['client.fullName']).toBe('Alice Smith');
|
|
|
|
|
});
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
it('generateDocumentFromTemplate - recipients array rewritten (v2.x shape)', async () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
vi.resetModules();
|
|
|
|
|
const mod = await import('@/lib/services/documenso-client');
|
|
|
|
|
await mod.generateDocumentFromTemplate(42, {
|
|
|
|
|
recipients: [
|
|
|
|
|
{ name: 'Alice', email: 'alice@realclient.com' },
|
|
|
|
|
{ name: 'Bob', email: 'bob@realclient.com' },
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
|
2026-05-12 18:16:18 +02:00
|
|
|
const callBody = JSON.parse(fetchMock.mock.calls[0]![1].body as string) as any;
|
2026-05-03 20:55:53 +02:00
|
|
|
for (const r of callBody.recipients) {
|
|
|
|
|
expect(r.email).toBe(REDIRECT_TARGET);
|
2026-06-25 13:20:55 +02:00
|
|
|
// Name stays clean — no "(was: …)" annotation (renders into the PDF).
|
|
|
|
|
expect(r.name).not.toContain('(was:');
|
2026-05-03 20:55:53 +02:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
it('sendDocument - short-circuited when redirect is set (no /send call)', async () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
vi.resetModules();
|
|
|
|
|
const mod = await import('@/lib/services/documenso-client');
|
|
|
|
|
await mod.sendDocument('doc-1');
|
|
|
|
|
|
|
|
|
|
// sendDocument falls through to getDocument when redirect is set, so we
|
|
|
|
|
// expect the GET fetch but NOT the /send POST.
|
|
|
|
|
const calls = fetchMock.mock.calls;
|
|
|
|
|
const sendCall = calls.find((c) => String(c[0]).includes('/send') && c[1]?.method === 'POST');
|
|
|
|
|
expect(sendCall).toBeUndefined();
|
|
|
|
|
});
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
it('sendReminder - short-circuited when redirect is set (no /remind call)', async () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
vi.resetModules();
|
|
|
|
|
const mod = await import('@/lib/services/documenso-client');
|
|
|
|
|
await mod.sendReminder('doc-1', 'signer-1');
|
|
|
|
|
|
|
|
|
|
expect(fetchMock).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
it('createDocument - recipients NOT redirected when EMAIL_REDIRECT_TO unset', async () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
delete process.env.EMAIL_REDIRECT_TO;
|
|
|
|
|
vi.resetModules();
|
|
|
|
|
const mod = await import('@/lib/services/documenso-client');
|
|
|
|
|
await mod.createDocument('Test Doc', 'pdf-base64', [
|
|
|
|
|
{ name: 'Alice', email: 'alice@realclient.com', role: 'SIGNER', signingOrder: 1 },
|
|
|
|
|
]);
|
|
|
|
|
|
2026-05-12 18:16:18 +02:00
|
|
|
const callBody = JSON.parse(fetchMock.mock.calls[0]![1].body as string) as any;
|
2026-05-03 20:55:53 +02:00
|
|
|
expect(callBody.recipients[0].email).toBe('alice@realclient.com');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
// 2. sendEmail redirect (covers the centralized path used by 5+ services)
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
describe('sendEmail redirect - EMAIL_REDIRECT_TO', () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
const originalRedirect = process.env.EMAIL_REDIRECT_TO;
|
|
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
|
vi.doUnmock('nodemailer');
|
|
|
|
|
vi.resetModules();
|
|
|
|
|
if (originalRedirect === undefined) delete process.env.EMAIL_REDIRECT_TO;
|
|
|
|
|
else process.env.EMAIL_REDIRECT_TO = originalRedirect;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Each test does its own reset → mock → import dance so the nodemailer
|
|
|
|
|
* mock is the one observed by the freshly-imported `@/lib/email` module.
|
|
|
|
|
* Returns the sendMail spy so the test can assert on it.
|
|
|
|
|
*/
|
|
|
|
|
async function setupWith(redirect: string | null) {
|
|
|
|
|
if (redirect) process.env.EMAIL_REDIRECT_TO = redirect;
|
|
|
|
|
else delete process.env.EMAIL_REDIRECT_TO;
|
|
|
|
|
|
|
|
|
|
vi.resetModules();
|
|
|
|
|
const sendMailMock = vi.fn(async () => ({ messageId: '<msg@test>' }));
|
|
|
|
|
vi.doMock('nodemailer', () => ({
|
|
|
|
|
default: {
|
|
|
|
|
createTransport: vi.fn(() => ({ sendMail: sendMailMock })),
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
const mod = await import('@/lib/email');
|
|
|
|
|
return { sendMailMock, mod };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// The mock is typed as `vi.fn(async () => …)` which gives `calls: unknown[]`
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
// - so the indexer reads come back as possibly-undefined. The test arms
|
2026-05-03 20:55:53 +02:00
|
|
|
// the spy and asserts toHaveBeenCalledOnce above, then this helper picks
|
|
|
|
|
// the first call with a runtime non-null check that satisfies tsc.
|
|
|
|
|
function firstSendMailArgs(spy: ReturnType<typeof vi.fn>): {
|
|
|
|
|
to: string;
|
|
|
|
|
subject: string;
|
|
|
|
|
} {
|
|
|
|
|
const calls = spy.mock.calls;
|
|
|
|
|
if (calls.length === 0) throw new Error('expected sendMail to be called');
|
|
|
|
|
const args = calls[0]?.[0];
|
|
|
|
|
if (!args) throw new Error('expected first call to have args');
|
|
|
|
|
return args as { to: string; subject: string };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
it('rewrites to + prefixes subject when redirect set', async () => {
|
|
|
|
|
const { sendMailMock, mod } = await setupWith(REDIRECT_TARGET);
|
|
|
|
|
await mod.sendEmail('alice@realclient.com', 'Welcome', '<p>Hi Alice</p>');
|
|
|
|
|
|
|
|
|
|
expect(sendMailMock).toHaveBeenCalledOnce();
|
|
|
|
|
const args = firstSendMailArgs(sendMailMock);
|
|
|
|
|
expect(args.to).toBe(REDIRECT_TARGET);
|
|
|
|
|
expect(args.subject).toMatch(/^\[redirected from alice@realclient\.com\] Welcome$/);
|
|
|
|
|
});
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
it('handles array of recipients - joins original list into the subject prefix', async () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
const { sendMailMock, mod } = await setupWith(REDIRECT_TARGET);
|
|
|
|
|
await mod.sendEmail(['alice@realclient.com', 'bob@realclient.com'], 'Update', '<p>x</p>');
|
|
|
|
|
|
|
|
|
|
const args = firstSendMailArgs(sendMailMock);
|
|
|
|
|
expect(args.to).toBe(REDIRECT_TARGET);
|
|
|
|
|
expect(args.subject).toMatch(
|
|
|
|
|
/^\[redirected from alice@realclient\.com, bob@realclient\.com\] Update$/,
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('passes through unchanged when redirect unset', async () => {
|
|
|
|
|
const { sendMailMock, mod } = await setupWith(null);
|
|
|
|
|
await mod.sendEmail('alice@realclient.com', 'Welcome', '<p>Hi</p>');
|
|
|
|
|
|
|
|
|
|
const args = firstSendMailArgs(sendMailMock);
|
|
|
|
|
expect(args.to).toBe('alice@realclient.com');
|
|
|
|
|
expect(args.subject).toBe('Welcome');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
// 3. Webhook short-circuit (covers the per-port outbound webhook delivery)
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:
- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
redirects (ocr to ai, reports to dashboard, invitations to users),
docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
let-reassign), set-state-in-effect disables in CountryFlag and
UploadForSigning preview-bytes effect, unused 'confirm' destructures in
interest contract + reservation tabs, unescaped apostrophe in test-template
card copy
2026-05-23 00:52:59 +02:00
|
|
|
describe('Webhook short-circuit - EMAIL_REDIRECT_TO', () => {
|
2026-05-03 20:55:53 +02:00
|
|
|
// The actual webhook worker pulls from BullMQ + the DB. To keep this a
|
|
|
|
|
// pure unit test, we extract the "should I dispatch?" predicate and
|
|
|
|
|
// assert against env.EMAIL_REDIRECT_TO directly. The full integration
|
|
|
|
|
// path is already covered by tests/integration/webhook-delivery.test.ts.
|
|
|
|
|
|
|
|
|
|
const originalRedirect = process.env.EMAIL_REDIRECT_TO;
|
|
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
|
if (originalRedirect === undefined) delete process.env.EMAIL_REDIRECT_TO;
|
|
|
|
|
else process.env.EMAIL_REDIRECT_TO = originalRedirect;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('the worker reads process.env.EMAIL_REDIRECT_TO at dispatch time', () => {
|
|
|
|
|
// Sanity: the worker uses process.env directly (not a cached env import)
|
|
|
|
|
// so flipping the env at runtime takes effect on the next job.
|
|
|
|
|
process.env.EMAIL_REDIRECT_TO = REDIRECT_TARGET;
|
|
|
|
|
expect(process.env.EMAIL_REDIRECT_TO).toBe(REDIRECT_TARGET);
|
|
|
|
|
delete process.env.EMAIL_REDIRECT_TO;
|
|
|
|
|
expect(process.env.EMAIL_REDIRECT_TO).toBeUndefined();
|
|
|
|
|
});
|
|
|
|
|
});
|