070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
1578 lines
62 KiB
TypeScript
1578 lines
62 KiB
TypeScript
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
|
||
import { installMockOpenDesignHost } from '@open-design/host/testing';
|
||
import {
|
||
archiveFilenameFrom,
|
||
archiveRootFromFilePath,
|
||
buildDesignHandoffContent,
|
||
buildDesignManifestContent,
|
||
downloadImageDataUrl,
|
||
buildSandboxedPreviewDocument,
|
||
downloadDesignSystemArchive,
|
||
downloadProjectArchive,
|
||
exportAsImage,
|
||
exportAsMd,
|
||
exportAsPdf,
|
||
exportProjectImageDataUrl,
|
||
isUsablePrintSize,
|
||
reportPrintSizeWhenStable,
|
||
exportProjectAsHtml,
|
||
exportProjectAsPdf,
|
||
exportProjectAsPptx,
|
||
exportProjectAsZip,
|
||
openSandboxedPreviewInNewTab,
|
||
prepareImageExportTarget,
|
||
planDeckImageCapture,
|
||
requestPreviewSnapshot,
|
||
sourceLooksLikeExportableDeck,
|
||
} from '../../src/runtime/exports';
|
||
|
||
describe('planDeckImageCapture (#4604 current-slide capture for runtime decks)', () => {
|
||
it('whole-deck capture renders off-screen with no index (stitch all)', () => {
|
||
expect(planDeckImageCapture({ deck: true, wholeDeck: true, trackedActive: 3 })).toEqual({
|
||
useOffscreen: true,
|
||
index: undefined,
|
||
});
|
||
});
|
||
|
||
it('Export-as-image of an ordinary page renders the whole page off-screen', () => {
|
||
expect(planDeckImageCapture({ deck: false, wholeDeck: true, trackedActive: null })).toEqual({
|
||
useOffscreen: true,
|
||
index: undefined,
|
||
});
|
||
});
|
||
|
||
it('current-view capture of an ordinary page stays viewport-based (host snapshot)', () => {
|
||
// Copy screenshot / captureViewport annotation must reflect what the user is
|
||
// looking at, NOT an off-screen full-page render of the whole document.
|
||
expect(planDeckImageCapture({ deck: false, wholeDeck: false, trackedActive: null })).toEqual({
|
||
useOffscreen: false,
|
||
index: undefined,
|
||
});
|
||
});
|
||
|
||
it('tracked deck current-slide renders off-screen at the active index', () => {
|
||
expect(planDeckImageCapture({ deck: true, wholeDeck: false, trackedActive: 4 })).toEqual({
|
||
useOffscreen: true,
|
||
index: 4,
|
||
});
|
||
});
|
||
|
||
it('runtime-managed deck (no tracked active) skips off-screen → host snapshot, NOT index 0', () => {
|
||
// The viewer doesn't track a deck-stage / data-screen-label deck's active
|
||
// slide, so a current-slide capture must use the visible host snapshot rather
|
||
// than off-screen-rendering slide 0.
|
||
expect(planDeckImageCapture({ deck: true, wholeDeck: false, trackedActive: null })).toEqual({
|
||
useOffscreen: false,
|
||
index: undefined,
|
||
});
|
||
});
|
||
});
|
||
|
||
function mockResponse(headers: Record<string, string>): Response {
|
||
return { headers: new Headers(headers) } as Response;
|
||
}
|
||
|
||
describe('sourceLooksLikeExportableDeck (#4604 horizontal deck export)', () => {
|
||
// Runtime-managed decks (`<deck-stage>` web component with slotted
|
||
// `<section data-screen-label>` children) carry NO literal class="slide", so
|
||
// the viewer's `.slide`-only nav heuristic misses them and export would force a
|
||
// single page-mode capture of slide 1. This broader signal recognizes them so
|
||
// image/PDF capture every slide.
|
||
it('detects a <deck-stage> runtime deck (no class="slide")', () => {
|
||
const src =
|
||
'<deck-stage width="1920" height="1080">' +
|
||
'<section class="s-cover" data-screen-label="01 Cover">A</section>' +
|
||
'<section class="s-grid" data-screen-label="02 Grid">B</section>' +
|
||
'</deck-stage>';
|
||
expect(sourceLooksLikeExportableDeck(src)).toBe(true);
|
||
});
|
||
|
||
it('detects data-screen-label slide surfaces on their own', () => {
|
||
expect(
|
||
sourceLooksLikeExportableDeck('<section data-screen-label="01 Intro">x</section>'),
|
||
).toBe(true);
|
||
});
|
||
|
||
it('detects explicit deck slide classes, but not plain .slide', () => {
|
||
expect(sourceLooksLikeExportableDeck('<div class="slide">x</div>')).toBe(false);
|
||
expect(sourceLooksLikeExportableDeck('<section class="slide">x</section>')).toBe(false);
|
||
expect(sourceLooksLikeExportableDeck('<div class="s-cover deck-slide">x</div>')).toBe(true);
|
||
expect(sourceLooksLikeExportableDeck('<div class="ppt-slide">x</div>')).toBe(true);
|
||
});
|
||
|
||
it('detects legacy html-ppt slide structure without treating every .slide as a deck', () => {
|
||
expect(
|
||
sourceLooksLikeExportableDeck('<section class="slide" data-title="Cover">x</section>'),
|
||
).toBe(true);
|
||
expect(
|
||
sourceLooksLikeExportableDeck('<section data-title="Cover" class="slide is-active">x</section>'),
|
||
).toBe(true);
|
||
expect(
|
||
sourceLooksLikeExportableDeck('<div class="deck"><section class="slide">x</section></div>'),
|
||
).toBe(true);
|
||
});
|
||
|
||
it('does NOT treat an ordinary page as a deck', () => {
|
||
expect(
|
||
sourceLooksLikeExportableDeck('<main><h1>Landing</h1><p>Hello</p></main>'),
|
||
).toBe(false);
|
||
// `slideshow` is not a `slide` class token.
|
||
expect(sourceLooksLikeExportableDeck('<div class="slideshow">x</div>')).toBe(false);
|
||
});
|
||
|
||
it('returns false for empty / nullish source', () => {
|
||
expect(sourceLooksLikeExportableDeck('')).toBe(false);
|
||
expect(sourceLooksLikeExportableDeck(null)).toBe(false);
|
||
expect(sourceLooksLikeExportableDeck(undefined)).toBe(false);
|
||
});
|
||
});
|
||
|
||
describe('isUsablePrintSize (#4458)', () => {
|
||
// The print-ready handshake reports the artifact's own content size so the
|
||
// desktop bridge can size the PDF page to it. When that size is zero or
|
||
// invalid, the desktop path falls back to measuring the wrapper viewport,
|
||
// which (per inferPageSize's own docs) blanks artifacts whose visible
|
||
// content sits below the fold. Gating on a usable size prevents that.
|
||
it('treats positive finite dimensions as usable', () => {
|
||
expect(isUsablePrintSize(1440, 2000)).toBe(true);
|
||
expect(isUsablePrintSize(1, 1)).toBe(true);
|
||
});
|
||
|
||
it('rejects zero, negative, non-finite, or non-number dimensions', () => {
|
||
expect(isUsablePrintSize(0, 2000)).toBe(false);
|
||
expect(isUsablePrintSize(1440, 0)).toBe(false);
|
||
expect(isUsablePrintSize(-5, 100)).toBe(false);
|
||
expect(isUsablePrintSize(Number.NaN, 100)).toBe(false);
|
||
expect(isUsablePrintSize(Number.POSITIVE_INFINITY, 100)).toBe(false);
|
||
expect(isUsablePrintSize('1440' as unknown as number, 2000)).toBe(false);
|
||
expect(isUsablePrintSize(undefined as unknown as number, undefined as unknown as number)).toBe(false);
|
||
});
|
||
});
|
||
|
||
describe('reportPrintSizeWhenStable (#4458)', () => {
|
||
it('reports only once the content has a usable size, polling animation frames', () => {
|
||
// Simulate content that has not finished layout: size is 0 for the first
|
||
// frames, then becomes positive once laid out. The handshake must not
|
||
// report the early zero size (which would blank the PDF).
|
||
const sizes = [
|
||
{ width: 0, height: 0 },
|
||
{ width: 0, height: 0 },
|
||
{ width: 1440, height: 2000 },
|
||
];
|
||
let call = 0;
|
||
const measure = (): { width: number; height: number } => sizes[Math.min(call++, sizes.length - 1)]!;
|
||
const reported: Array<{ width: number; height: number }> = [];
|
||
const raf = (cb: () => void): void => cb(); // run synchronously
|
||
reportPrintSizeWhenStable(measure, (s) => reported.push(s), 30, raf);
|
||
expect(reported).toEqual([{ width: 1440, height: 2000 }]);
|
||
});
|
||
|
||
it('reports the last measured size when frames are exhausted (genuinely empty content)', () => {
|
||
// A truly empty artifact never gains a usable size; rather than hang
|
||
// forever, report best-effort after the frame budget so the desktop
|
||
// path is not left waiting on the readiness handshake indefinitely.
|
||
const measure = (): { width: number; height: number } => ({ width: 0, height: 0 });
|
||
const reported: Array<{ width: number; height: number }> = [];
|
||
const raf = (cb: () => void): void => cb();
|
||
reportPrintSizeWhenStable(measure, (s) => reported.push(s), 3, raf);
|
||
expect(reported).toEqual([{ width: 0, height: 0 }]);
|
||
});
|
||
});
|
||
|
||
describe('injected print-ready parent cache script — runtime behavior (#4458)', () => {
|
||
// Issue #4458 calls out that the existing coverage only proves script
|
||
// *strings* are injected, never that the injected script *behaves*. These
|
||
// specs extract the real parent-cache <script> from a live export, run it,
|
||
// and drive it with postMessage to assert the runtime size gate: a usable
|
||
// size is cached for the desktop inferPageSize(); a zero or non-finite size
|
||
// is rejected so it cannot blank the page (viewport fallback) or poison it.
|
||
async function extractCacheScript(): Promise<{ body: string; nonce: string }> {
|
||
const printPdfMock = vi.fn().mockResolvedValue({ ok: true });
|
||
const restoreHost = installMockOpenDesignHost({ host: { pdf: { print: printPdfMock } } });
|
||
try {
|
||
await exportAsPdf('<div style="height:4000px">tall artifact</div>', 'Cache Eval');
|
||
} finally {
|
||
restoreHost();
|
||
}
|
||
const htmlArg = printPdfMock.mock.calls[0]![0] as string;
|
||
const match = /<script>(window\.__odPrintReady=false;[\s\S]*?)<\/script>/.exec(htmlArg);
|
||
if (!match) throw new Error('parent cache script not found in exported HTML');
|
||
const body = match[1]!;
|
||
const nonceMatch = /nonce===['"]([^'"]+)['"]/.exec(body);
|
||
if (!nonceMatch) throw new Error('nonce not found in parent cache script');
|
||
return { body, nonce: nonceMatch[1]! };
|
||
}
|
||
|
||
// This suite runs in the node environment (no DOM), so we drive the real
|
||
// injected script against a minimal fake `window`: a plain object with a
|
||
// message-listener registry. The script wires its handler through
|
||
// `window.addEventListener('message', …)`, so dispatching a message means
|
||
// invoking the registered handler with a `{ data, source }` event — exactly
|
||
// what a real `postMessage` delivers, including the source-identity check.
|
||
type FakeWindow = Record<string, unknown> & {
|
||
__odPrintReady?: unknown;
|
||
__odPrintSize?: unknown;
|
||
};
|
||
|
||
function loadCache(body: string): { win: FakeWindow; fire: (event: unknown) => void } {
|
||
const handlers: Array<(event: unknown) => void> = [];
|
||
const win: FakeWindow = {
|
||
addEventListener: (type: string, fn: (event: unknown) => void) => {
|
||
if (type === 'message') handlers.push(fn);
|
||
},
|
||
removeEventListener: () => undefined,
|
||
};
|
||
win.frames = [win];
|
||
// eslint-disable-next-line @typescript-eslint/no-implied-eval, no-new-func
|
||
new Function('window', body)(win);
|
||
return { win, fire: (event) => handlers.slice().forEach((h) => h(event)) };
|
||
}
|
||
|
||
function readyEvent(
|
||
nonce: string,
|
||
width: unknown,
|
||
height: unknown,
|
||
source: unknown,
|
||
): { data: unknown; source: unknown } {
|
||
return { data: { type: 'OD_PRINT_READY', nonce, width, height }, source };
|
||
}
|
||
|
||
it('caches a usable content size so the desktop bridge sizes the page to the artifact', async () => {
|
||
const { body, nonce } = await extractCacheScript();
|
||
const { win, fire } = loadCache(body);
|
||
fire(readyEvent(nonce, 1440, 2000, win));
|
||
expect(win.__odPrintReady).toBe(true);
|
||
expect(win.__odPrintSize).toEqual({ width: 1440, height: 2000 });
|
||
});
|
||
|
||
it('rejects a zero size so the page does not fall back to the wrapper viewport and blank', async () => {
|
||
const { body, nonce } = await extractCacheScript();
|
||
const { win, fire } = loadCache(body);
|
||
fire(readyEvent(nonce, 0, 0, win));
|
||
// Readiness still resolves (so the desktop bridge never hangs), but the
|
||
// size is withheld so inferPageSize cannot adopt a blank wrapper viewport.
|
||
expect(win.__odPrintReady).toBe(true);
|
||
expect(win.__odPrintSize).toBeNull();
|
||
});
|
||
|
||
it('rejects a non-finite size so Infinity cannot poison the page size', async () => {
|
||
const { body, nonce } = await extractCacheScript();
|
||
const { win, fire } = loadCache(body);
|
||
fire(readyEvent(nonce, Number.POSITIVE_INFINITY, 100, win));
|
||
expect(win.__odPrintSize).toBeNull();
|
||
});
|
||
|
||
it('ignores a print-ready message carrying the wrong nonce (anti-spoof)', async () => {
|
||
const { body } = await extractCacheScript();
|
||
const { win, fire } = loadCache(body);
|
||
fire(readyEvent('not-the-real-nonce', 1440, 2000, win));
|
||
expect(win.__odPrintReady).toBe(false);
|
||
expect(win.__odPrintSize).toBeNull();
|
||
});
|
||
});
|
||
|
||
describe('archiveRootFromFilePath', () => {
|
||
it('returns the top-level directory name when present', () => {
|
||
expect(archiveRootFromFilePath('ui-design/index.html')).toBe('ui-design');
|
||
expect(archiveRootFromFilePath('ui-design/src/app.css')).toBe('ui-design');
|
||
});
|
||
|
||
it('returns empty for files at the project root', () => {
|
||
expect(archiveRootFromFilePath('index.html')).toBe('');
|
||
expect(archiveRootFromFilePath('README.md')).toBe('');
|
||
});
|
||
|
||
it('strips a leading slash before scanning', () => {
|
||
expect(archiveRootFromFilePath('/ui-design/index.html')).toBe('ui-design');
|
||
expect(archiveRootFromFilePath('//ui-design/index.html')).toBe('ui-design');
|
||
});
|
||
|
||
it('returns empty for empty/garbage input', () => {
|
||
expect(archiveRootFromFilePath('')).toBe('');
|
||
expect(archiveRootFromFilePath('/')).toBe('');
|
||
});
|
||
});
|
||
|
||
describe('archiveFilenameFrom', () => {
|
||
it('decodes the RFC 5987 UTF-8 filename* form (preserves multi-byte chars)', () => {
|
||
// 'café-design.zip' encoded — the é is a 2-byte UTF-8 sequence (%C3%A9),
|
||
// which is enough to fail under naive ASCII-only handling.
|
||
const resp = mockResponse({
|
||
'content-disposition':
|
||
"attachment; filename=\"project.zip\"; filename*=UTF-8''caf%C3%A9-design.zip",
|
||
});
|
||
expect(archiveFilenameFrom(resp, 'fallback', 'ui-design')).toBe('café-design.zip');
|
||
});
|
||
|
||
it('falls back to the legacy quoted filename= when filename* is absent', () => {
|
||
const resp = mockResponse({
|
||
'content-disposition': 'attachment; filename="ui-design.zip"',
|
||
});
|
||
expect(archiveFilenameFrom(resp, 'fallback', 'ui-design')).toBe('ui-design.zip');
|
||
});
|
||
|
||
it('falls back to the active root slug when the header is missing', () => {
|
||
const resp = mockResponse({});
|
||
expect(archiveFilenameFrom(resp, 'fallback-title', 'ui-design')).toBe('ui-design.zip');
|
||
});
|
||
|
||
it('falls back to the title slug when both header and root are absent', () => {
|
||
const resp = mockResponse({});
|
||
expect(archiveFilenameFrom(resp, 'My Artifact', '')).toBe('My-Artifact.zip');
|
||
});
|
||
|
||
it('falls through to the slug when filename* is malformed', () => {
|
||
// Truncated percent-escape — decodeURIComponent throws; we should not
|
||
// surface the exception, just fall back to the next strategy.
|
||
const resp = mockResponse({
|
||
'content-disposition': "attachment; filename*=UTF-8''%E9%9D",
|
||
});
|
||
expect(archiveFilenameFrom(resp, 'fallback', 'ui-design')).toBe('ui-design.zip');
|
||
});
|
||
});
|
||
|
||
describe('buildDesignHandoffContent', () => {
|
||
it('documents coding handoff and responsive verification expectations', () => {
|
||
const content = buildDesignHandoffContent({
|
||
title: 'Checkout Design',
|
||
entryFile: 'index.html',
|
||
files: ['index.html', 'src/app.css', 'src/app.js'],
|
||
});
|
||
|
||
expect(content).toContain('Checkout Design implementation handoff');
|
||
expect(content).toContain('Mobile compact: 360×800');
|
||
expect(content).toContain('Tablet portrait: 820×1180');
|
||
expect(content).toContain('Wide desktop: 1920×1080');
|
||
expect(content).toContain('`src/app.css`');
|
||
expect(content).toContain('visual system');
|
||
expect(content).toContain('Design fidelity contract');
|
||
expect(content).toContain('CJX-ready UX contract');
|
||
expect(content).toContain('DESIGN-MANIFEST.json');
|
||
expect(content).toContain('in-app modules/components');
|
||
expect(content).toContain('OS widgets are home-screen/lock-screen/quick-access surfaces');
|
||
expect(content).toContain('Color and brand contract');
|
||
expect(content).toContain('Do not introduce warm beige / cream / peach / pink / orange-brown background washes');
|
||
expect(content).toContain('Build product screens and domain-specific in-app modules');
|
||
});
|
||
|
||
it('builds a machine-readable design manifest for coding tools', () => {
|
||
const manifest = JSON.parse(buildDesignManifestContent({
|
||
title: 'Checkout Design',
|
||
entryFile: 'index.html',
|
||
files: ['index.html', 'src/app.css', 'src/app.js'],
|
||
}));
|
||
|
||
expect(manifest.schema).toBe('open-design.design-manifest.v1');
|
||
expect(manifest.entryFile).toBe('index.html');
|
||
expect(manifest.sourceFiles.css).toEqual(['src/app.css']);
|
||
expect(manifest.sourceFiles.scriptsAndComponents).toEqual(['src/app.js']);
|
||
expect(manifest.appModules.join(' ')).toContain('domain-specific in-app modules');
|
||
expect(manifest.osWidgets.join(' ')).toContain('home-screen');
|
||
expect(manifest.responsiveViewports).toContainEqual({
|
||
name: 'tablet-portrait',
|
||
width: 820,
|
||
height: 1180,
|
||
category: 'tablet',
|
||
mustAvoidHorizontalScroll: true,
|
||
});
|
||
expect(manifest.implementationChecklist.join(' ')).toContain('landing pages, in-app modules, and OS widgets');
|
||
});
|
||
|
||
it('does not classify plain home.html as a landing page in the manifest', () => {
|
||
const manifest = JSON.parse(buildDesignManifestContent({
|
||
title: 'Product App',
|
||
entryFile: 'home.html',
|
||
files: ['home.html', 'dashboard.html', 'marketing.html'],
|
||
}));
|
||
|
||
const screens = new Map(manifest.screens.map((screen: { file: string; role: string }) => [screen.file, screen.role]));
|
||
expect(screens.get('home.html')).not.toBe('landing-page');
|
||
expect(screens.get('marketing.html')).toBe('landing-page');
|
||
expect(screens.get('dashboard.html')).toBe('product-screen');
|
||
});
|
||
|
||
it('keeps frame wrapper HTML out of client export manifest screens', () => {
|
||
const manifest = JSON.parse(buildDesignManifestContent({
|
||
title: 'Framed App',
|
||
entryFile: 'index.html',
|
||
files: ['index.html', 'frames/iphone-15-pro.html', 'browser-chrome.html', 'src/app.css'],
|
||
}));
|
||
|
||
expect(manifest.sourceFiles.html).toEqual(['browser-chrome.html', 'frames/iphone-15-pro.html', 'index.html']);
|
||
expect(manifest.screens.map((screen: { file: string }) => screen.file)).toEqual(['index.html']);
|
||
});
|
||
|
||
it('normalizes a frame-wrapper active file to the implementable screen entry in manifest and handoff', () => {
|
||
const manifest = JSON.parse(buildDesignManifestContent({
|
||
title: 'Framed App',
|
||
entryFile: 'frames/iphone-15-pro.html',
|
||
files: ['index.html', 'landing.html', 'frames/iphone-15-pro.html', 'src/app.css'],
|
||
}));
|
||
const handoff = buildDesignHandoffContent({
|
||
title: 'Framed App',
|
||
entryFile: 'frames/iphone-15-pro.html',
|
||
files: ['index.html', 'landing.html', 'frames/iphone-15-pro.html', 'src/app.css'],
|
||
});
|
||
|
||
expect(manifest.entryFile).toBe('index.html');
|
||
expect(manifest.screens.map((screen: { file: string }) => screen.file)).toEqual(['index.html', 'landing.html']);
|
||
expect(handoff).toContain('Primary entry: `index.html`');
|
||
expect(handoff).toContain('Open `index.html` and `DESIGN-MANIFEST.json`');
|
||
expect(handoff).not.toContain('Primary entry: `frames/iphone-15-pro.html`');
|
||
});
|
||
|
||
it('keeps phone.html and iphone-upgrade.html as real screens when outside frames/ directory', () => {
|
||
// phone.html as a carrier storefront screen, iphone-upgrade.html as a
|
||
// product surface — neither should be silently dropped from screens just
|
||
// because the filename resembles a device name.
|
||
const manifest = JSON.parse(buildDesignManifestContent({
|
||
title: 'Carrier Storefront',
|
||
entryFile: 'phone.html',
|
||
files: ['phone.html', 'iphone-upgrade.html', 'frames/browser-shell.html', 'src/app.css'],
|
||
}));
|
||
|
||
const screenFiles = manifest.screens.map((screen: { file: string }) => screen.file);
|
||
expect(screenFiles).toContain('phone.html');
|
||
expect(screenFiles).toContain('iphone-upgrade.html');
|
||
// frame wrapper inside frames/ is still excluded
|
||
expect(screenFiles).not.toContain('frames/browser-shell.html');
|
||
// both real screens appear in sourceFiles.html
|
||
expect(manifest.sourceFiles.html).toContain('phone.html');
|
||
expect(manifest.sourceFiles.html).toContain('iphone-upgrade.html');
|
||
expect(manifest.sourceFiles.html).toContain('frames/browser-shell.html');
|
||
});
|
||
});
|
||
|
||
describe('exportProjectAsPdf', () => {
|
||
afterEach(() => {
|
||
vi.unstubAllGlobals();
|
||
vi.restoreAllMocks();
|
||
});
|
||
|
||
it('uses the daemon desktop PDF export API before falling back to browser print', async () => {
|
||
const fallback = vi.fn();
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response(JSON.stringify({ ok: true }), { status: 200 })));
|
||
|
||
const result = await exportProjectAsPdf({
|
||
deck: true,
|
||
fallbackPdf: fallback,
|
||
filePath: 'deck/index.html',
|
||
projectId: 'proj-1',
|
||
title: 'Seed Deck',
|
||
});
|
||
|
||
expect(result).toBe('desktop');
|
||
expect(fallback).not.toHaveBeenCalled();
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/proj-1/export/pdf', {
|
||
body: JSON.stringify({ deck: true, fileName: 'deck/index.html', title: 'Seed Deck' }),
|
||
headers: { 'content-type': 'application/json' },
|
||
method: 'POST',
|
||
});
|
||
});
|
||
|
||
it('passes versionId to the daemon desktop PDF export API', async () => {
|
||
const fallback = vi.fn();
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response(JSON.stringify({ ok: true }), { status: 200 })));
|
||
|
||
const result = await exportProjectAsPdf({
|
||
deck: false,
|
||
fallbackPdf: fallback,
|
||
filePath: 'index.html',
|
||
projectId: 'proj-1',
|
||
title: 'Landing v1',
|
||
versionId: 'v1',
|
||
});
|
||
|
||
expect(result).toBe('desktop');
|
||
expect(fallback).not.toHaveBeenCalled();
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/proj-1/export/pdf', {
|
||
body: JSON.stringify({ deck: false, fileName: 'index.html', title: 'Landing v1', versionId: 'v1' }),
|
||
headers: { 'content-type': 'application/json' },
|
||
method: 'POST',
|
||
});
|
||
});
|
||
|
||
it('treats a canceled desktop PDF save dialog as a silent no-op', async () => {
|
||
const fallback = vi.fn();
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response(JSON.stringify({ ok: true, canceled: true }), { status: 200 })));
|
||
|
||
const result = await exportProjectAsPdf({
|
||
deck: true,
|
||
fallbackPdf: fallback,
|
||
filePath: 'deck/index.html',
|
||
projectId: 'proj-1',
|
||
title: 'Seed Deck',
|
||
});
|
||
|
||
expect(result).toBe('cancelled');
|
||
expect(fallback).not.toHaveBeenCalled();
|
||
});
|
||
|
||
it('falls back to browser print when the desktop PDF export API is unavailable', async () => {
|
||
const fallback = vi.fn();
|
||
vi.spyOn(console, 'warn').mockImplementation(() => {});
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response(JSON.stringify({ error: { message: 'unavailable' } }), { status: 501 })));
|
||
|
||
const result = await exportProjectAsPdf({
|
||
deck: false,
|
||
fallbackPdf: fallback,
|
||
filePath: 'index.html',
|
||
projectId: 'proj-1',
|
||
title: 'Landing',
|
||
});
|
||
|
||
expect(result).toBe('fallback');
|
||
expect(fallback).toHaveBeenCalledTimes(1);
|
||
});
|
||
});
|
||
|
||
describe('exportProjectAsHtml', () => {
|
||
let capturedBlob: Blob | undefined;
|
||
let capturedFilename: string | undefined;
|
||
|
||
beforeEach(() => {
|
||
capturedBlob = undefined;
|
||
capturedFilename = undefined;
|
||
vi.stubGlobal('URL', {
|
||
createObjectURL: (blob: Blob) => {
|
||
capturedBlob = blob;
|
||
return 'blob:test';
|
||
},
|
||
revokeObjectURL: () => {},
|
||
});
|
||
vi.stubGlobal('document', {
|
||
createElement: () => {
|
||
const anchor = { href: '', click: () => {} } as { href: string; download?: string; click: () => void };
|
||
Object.defineProperty(anchor, 'download', {
|
||
set(value: string) {
|
||
capturedFilename = value;
|
||
},
|
||
get() {
|
||
return capturedFilename ?? '';
|
||
},
|
||
});
|
||
return anchor;
|
||
},
|
||
body: { appendChild: () => {}, removeChild: () => {} },
|
||
});
|
||
});
|
||
|
||
afterEach(() => {
|
||
vi.unstubAllGlobals();
|
||
vi.restoreAllMocks();
|
||
});
|
||
|
||
it('downloads daemon-inlined project HTML instead of the raw source body', async () => {
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response('<!doctype html><p>inlined</p>', {
|
||
headers: { 'content-type': 'text/html' },
|
||
status: 200,
|
||
})));
|
||
|
||
await exportProjectAsHtml({
|
||
projectId: 'proj 1',
|
||
filePath: 'screens/main page.html',
|
||
fallbackHtml: '<script type="module" src="/src/main.tsx"></script>',
|
||
fallbackTitle: 'Main Page',
|
||
});
|
||
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/proj%201/export/screens/main%20page.html?inline=1');
|
||
expect(capturedFilename).toBe('Main-Page.html');
|
||
expect(await capturedBlob!.text()).toBe('<!doctype html><p>inlined</p>');
|
||
});
|
||
|
||
it('passes versionId to the daemon inline HTML export endpoint', async () => {
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response('<!doctype html><p>version</p>', {
|
||
headers: { 'content-type': 'text/html' },
|
||
status: 200,
|
||
})));
|
||
|
||
await exportProjectAsHtml({
|
||
projectId: 'proj 1',
|
||
filePath: 'screens/main page.html',
|
||
fallbackHtml: '<main>fallback</main>',
|
||
fallbackTitle: 'Main Page v1',
|
||
versionId: 'v1',
|
||
});
|
||
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/proj%201/export/screens/main%20page.html?inline=1&versionId=v1');
|
||
expect(capturedFilename).toBe('Main-Page-v1.html');
|
||
expect(await capturedBlob!.text()).toBe('<!doctype html><p>version</p>');
|
||
});
|
||
|
||
it('falls back to the source HTML export when the daemon inline endpoint fails', async () => {
|
||
vi.spyOn(console, 'warn').mockImplementation(() => {});
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response('nope', { status: 500 })));
|
||
|
||
await exportProjectAsHtml({
|
||
projectId: 'proj-1',
|
||
filePath: 'index.html',
|
||
fallbackHtml: '<main>fallback</main>',
|
||
fallbackTitle: 'Fallback',
|
||
});
|
||
|
||
expect(capturedFilename).toBe('Fallback.html');
|
||
expect(await capturedBlob!.text()).toContain('<main>fallback</main>');
|
||
});
|
||
});
|
||
|
||
describe('exportProjectImageDataUrl', () => {
|
||
afterEach(() => {
|
||
vi.unstubAllGlobals();
|
||
vi.restoreAllMocks();
|
||
});
|
||
|
||
it('passes versionId to the daemon image export endpoint', async () => {
|
||
vi.stubGlobal(
|
||
'fetch',
|
||
vi.fn(async () => new Response(JSON.stringify({ error: { message: 'desktop only' } }), { status: 501 })),
|
||
);
|
||
|
||
const result = await exportProjectImageDataUrl({
|
||
projectId: 'proj 1',
|
||
fileName: 'screens/main page.html',
|
||
index: 2,
|
||
deck: false,
|
||
versionId: 'v1',
|
||
});
|
||
|
||
expect(result).toEqual({ ok: false, unavailable: true });
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/proj%201/export/image', {
|
||
method: 'POST',
|
||
headers: { 'content-type': 'application/json' },
|
||
body: JSON.stringify({
|
||
fileName: 'screens/main page.html',
|
||
index: 2,
|
||
deck: false,
|
||
versionId: 'v1',
|
||
}),
|
||
});
|
||
});
|
||
});
|
||
|
||
describe('binary project/design-system downloads', () => {
|
||
let capturedBlob: Blob | undefined;
|
||
let capturedFilename: string | undefined;
|
||
|
||
beforeEach(() => {
|
||
capturedBlob = undefined;
|
||
capturedFilename = undefined;
|
||
vi.stubGlobal('URL', {
|
||
createObjectURL: (blob: Blob) => {
|
||
capturedBlob = blob;
|
||
return 'blob:test';
|
||
},
|
||
revokeObjectURL: () => {},
|
||
});
|
||
vi.stubGlobal('document', {
|
||
createElement: () => {
|
||
const anchor = { href: '', click: () => {} } as { href: string; download?: string; click: () => void };
|
||
Object.defineProperty(anchor, 'download', {
|
||
set(value: string) {
|
||
capturedFilename = value;
|
||
},
|
||
get() {
|
||
return capturedFilename ?? '';
|
||
},
|
||
});
|
||
return anchor;
|
||
},
|
||
body: { appendChild: () => {}, removeChild: () => {} },
|
||
});
|
||
});
|
||
|
||
afterEach(() => {
|
||
vi.unstubAllGlobals();
|
||
vi.restoreAllMocks();
|
||
});
|
||
|
||
it('POSTs to the pptx export route and downloads the returned bytes', async () => {
|
||
vi.stubGlobal(
|
||
'fetch',
|
||
vi.fn(async () => new Response('PK-fake-pptx', { status: 200 })),
|
||
);
|
||
|
||
const res = await exportProjectAsPptx({ projectId: 'proj 1', fileName: 'decks/pitch.html' });
|
||
|
||
expect(res.ok).toBe(true);
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/proj%201/export/pptx', {
|
||
method: 'POST',
|
||
headers: { 'content-type': 'application/json' },
|
||
body: JSON.stringify({ fileName: 'decks/pitch.html', deck: true }),
|
||
});
|
||
expect(capturedFilename).toBe('pitch.pptx');
|
||
expect(await capturedBlob!.text()).toBe('PK-fake-pptx');
|
||
});
|
||
|
||
it('requests editable PPTX when the caller selects native shapes and text', async () => {
|
||
vi.stubGlobal(
|
||
'fetch',
|
||
vi.fn(async () => new Response('PK-editable-pptx', { status: 200 })),
|
||
);
|
||
|
||
const res = await exportProjectAsPptx({
|
||
projectId: 'proj 1',
|
||
fileName: 'decks/pitch.html',
|
||
editable: true,
|
||
});
|
||
|
||
expect(res.ok).toBe(true);
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/proj%201/export/pptx', {
|
||
method: 'POST',
|
||
headers: { 'content-type': 'application/json' },
|
||
body: JSON.stringify({ fileName: 'decks/pitch.html', deck: true, editable: true }),
|
||
});
|
||
expect(capturedFilename).toBe('pitch.pptx');
|
||
expect(await capturedBlob!.text()).toBe('PK-editable-pptx');
|
||
});
|
||
|
||
it('passes versionId to the screenshot export route', async () => {
|
||
vi.stubGlobal(
|
||
'fetch',
|
||
vi.fn(async () => new Response('PK-version-pptx', { status: 200 })),
|
||
);
|
||
|
||
const res = await exportProjectAsPptx({
|
||
projectId: 'proj 1',
|
||
fileName: 'decks/pitch.html',
|
||
versionId: 'v1',
|
||
});
|
||
|
||
expect(res.ok).toBe(true);
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/proj%201/export/pptx', {
|
||
method: 'POST',
|
||
headers: { 'content-type': 'application/json' },
|
||
body: JSON.stringify({ fileName: 'decks/pitch.html', versionId: 'v1', deck: true }),
|
||
});
|
||
expect(capturedFilename).toBe('pitch.pptx');
|
||
});
|
||
|
||
it('honors the server UTF-8 Content-Disposition filename over the local fallback', async () => {
|
||
// Production always returns a Content-Disposition (title/RFC-5987 based); the
|
||
// happy-path test above only exercises the no-header fallback. This pins the
|
||
// branch the download actually uses in the desktop runtime.
|
||
vi.stubGlobal(
|
||
'fetch',
|
||
vi.fn(
|
||
async () =>
|
||
new Response('PK-fake-pptx', {
|
||
status: 200,
|
||
headers: {
|
||
'content-disposition':
|
||
"attachment; filename=\"Caf_ Deck __.pptx\"; filename*=UTF-8''Caf%C3%A9%20Deck%20%E7%AE%80%E6%8A%A5.pptx",
|
||
},
|
||
}),
|
||
),
|
||
);
|
||
|
||
const res = await exportProjectAsPptx({ projectId: 'p', fileName: 'decks/pitch.html', title: 'Café Deck 简报' });
|
||
|
||
expect(res.ok).toBe(true);
|
||
expect(capturedFilename).toBe('Café Deck 简报.pptx');
|
||
});
|
||
|
||
it('routes pdf format to the raster pdf-image endpoint', async () => {
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response('%PDF-fake', { status: 200 })));
|
||
|
||
await exportProjectAsPptx({ projectId: 'p', fileName: 'deck.html', format: 'pdf' });
|
||
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/p/export/pdf-image', expect.anything());
|
||
expect(capturedFilename).toBe('deck.pdf');
|
||
});
|
||
|
||
it('reports 501 (no off-screen renderer) as unavailable, not a semantic error', async () => {
|
||
// The caller may fall back to the vector/browser PDF only on genuine
|
||
// unavailability — so 501 must surface as `unavailable`, with no error.
|
||
vi.stubGlobal(
|
||
'fetch',
|
||
vi.fn(async () => new Response(JSON.stringify({ error: { message: 'desktop only' } }), { status: 501 })),
|
||
);
|
||
|
||
const res = await exportProjectAsPptx({ projectId: 'p', fileName: 'deck.html' });
|
||
|
||
expect(res).toEqual({ ok: false, unavailable: true });
|
||
});
|
||
|
||
it('surfaces a semantic failure (non-501) as an error, not unavailable', async () => {
|
||
// A bad-deck 422 / renderer 502 must NOT be masked as "fall back to vector";
|
||
// it carries the daemon message so the caller can surface it.
|
||
vi.stubGlobal(
|
||
'fetch',
|
||
vi.fn(async () => new Response(JSON.stringify({ error: { message: 'this artifact is not a slide deck' } }), { status: 422 })),
|
||
);
|
||
|
||
const res = await exportProjectAsPptx({ projectId: 'p', fileName: 'deck.html' });
|
||
|
||
expect(res).toEqual({ ok: false, error: 'this artifact is not a slide deck' });
|
||
});
|
||
|
||
it('treats a transport failure as unavailable', async () => {
|
||
vi.stubGlobal('fetch', vi.fn(async () => { throw new Error('offline'); }));
|
||
|
||
const res = await exportProjectAsPptx({ projectId: 'p', fileName: 'deck.html' });
|
||
|
||
expect(res).toEqual({ ok: false, unavailable: true });
|
||
});
|
||
|
||
it('a post-response failure (renderer already produced bytes) is an error, not unavailable', async () => {
|
||
// The 200 came back — a failure reading the body / triggering the download
|
||
// must NOT be reported as `unavailable`, or the caller silently downgrades to
|
||
// the lower-fidelity vector PDF instead of surfacing the failure.
|
||
vi.stubGlobal(
|
||
'fetch',
|
||
vi.fn(async () => ({
|
||
ok: true,
|
||
status: 200,
|
||
headers: new Headers(),
|
||
blob: async () => {
|
||
throw new Error('corrupt response body');
|
||
},
|
||
})),
|
||
);
|
||
|
||
const res = await exportProjectAsPptx({ projectId: 'p', fileName: 'deck.html', format: 'pdf' });
|
||
|
||
expect(res).toEqual({ ok: false, error: 'corrupt response body' });
|
||
});
|
||
|
||
it('fetches the design-system archive endpoint and downloads the daemon-named zip', async () => {
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response('PKzip-bytes', {
|
||
status: 200,
|
||
headers: {
|
||
'content-type': 'application/zip',
|
||
'content-disposition': "attachment; filename=\"Acme.zip\"; filename*=UTF-8''Acme.zip",
|
||
},
|
||
})));
|
||
|
||
const ok = await downloadDesignSystemArchive({
|
||
designSystemId: 'user:acme brand',
|
||
fallbackTitle: 'Acme Brand',
|
||
});
|
||
|
||
expect(ok).toBe(true);
|
||
expect(fetch).toHaveBeenCalledWith('/api/design-systems/user%3Aacme%20brand/archive');
|
||
expect(capturedFilename).toBe('Acme.zip');
|
||
expect(await capturedBlob!.text()).toContain('zip-bytes');
|
||
});
|
||
|
||
it('returns false and does not download when the request fails', async () => {
|
||
vi.spyOn(console, 'warn').mockImplementation(() => {});
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response('not found', { status: 404 })));
|
||
|
||
const ok = await downloadDesignSystemArchive({
|
||
designSystemId: 'user:missing',
|
||
fallbackTitle: 'Missing',
|
||
});
|
||
|
||
expect(ok).toBe(false);
|
||
expect(capturedBlob).toBeUndefined();
|
||
});
|
||
|
||
it('downloads the backing project archive with the daemon filename', async () => {
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response('project-zip', {
|
||
status: 200,
|
||
headers: {
|
||
'content-type': 'application/zip',
|
||
'content-disposition': "attachment; filename=\"Project.zip\"; filename*=UTF-8''Project.zip",
|
||
},
|
||
})));
|
||
|
||
const ok = await downloadProjectArchive({
|
||
projectId: 'project 123',
|
||
fallbackTitle: 'Fallback Project',
|
||
});
|
||
|
||
expect(ok).toBe(true);
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/project%20123/archive');
|
||
expect(capturedFilename).toBe('Project.zip');
|
||
expect(await capturedBlob!.text()).toContain('project-zip');
|
||
});
|
||
|
||
it('passes an optional root when downloading a project subfolder archive', async () => {
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response('folder-zip', {
|
||
status: 200,
|
||
headers: {
|
||
'content-type': 'application/zip',
|
||
},
|
||
})));
|
||
|
||
const ok = await downloadProjectArchive({
|
||
projectId: 'project-1',
|
||
fallbackTitle: 'Fallback Project',
|
||
root: '/system/',
|
||
});
|
||
|
||
expect(ok).toBe(true);
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/project-1/archive?root=system');
|
||
expect(capturedFilename).toBe('system.zip');
|
||
});
|
||
|
||
it('downloads version ZIPs from the daemon inline HTML export endpoint', async () => {
|
||
vi.stubGlobal('fetch', vi.fn(async () => new Response('<!doctype html><p>version</p>', {
|
||
status: 200,
|
||
headers: { 'content-type': 'text/html' },
|
||
})));
|
||
|
||
await exportProjectAsZip({
|
||
projectId: 'proj 1',
|
||
filePath: 'screens/main page.html',
|
||
fallbackHtml: '<main>fallback</main>',
|
||
fallbackTitle: 'Main Page v1',
|
||
versionId: 'v1',
|
||
});
|
||
|
||
expect(fetch).toHaveBeenCalledWith('/api/projects/proj%201/export/screens/main%20page.html?inline=1&versionId=v1');
|
||
expect(capturedFilename).toBe('Main-Page-v1.zip');
|
||
expect(capturedBlob?.type).toBe('application/zip');
|
||
});
|
||
});
|
||
|
||
// `exportAsMd` is a pass-through (the file body is the artifact source
|
||
// verbatim, only the extension and Content-Type flip). Tests exercise it
|
||
// end-to-end by stubbing the few DOM globals `triggerDownload` touches —
|
||
// we run under `environment: 'node'`, so `document` and `URL` aren't
|
||
// available by default. See issue #279.
|
||
describe('exportAsMd', () => {
|
||
let capturedBlob: Blob | undefined;
|
||
let capturedFilename: string | undefined;
|
||
|
||
beforeEach(() => {
|
||
capturedBlob = undefined;
|
||
capturedFilename = undefined;
|
||
vi.stubGlobal('URL', {
|
||
createObjectURL: (blob: Blob) => {
|
||
capturedBlob = blob;
|
||
return 'blob:test';
|
||
},
|
||
revokeObjectURL: () => {},
|
||
});
|
||
vi.stubGlobal('document', {
|
||
createElement: () => {
|
||
const anchor = { href: '', click: () => {} } as { href: string; download?: string; click: () => void };
|
||
Object.defineProperty(anchor, 'download', {
|
||
set(value: string) {
|
||
capturedFilename = value;
|
||
},
|
||
get() {
|
||
return capturedFilename ?? '';
|
||
},
|
||
});
|
||
return anchor;
|
||
},
|
||
body: { appendChild: () => {}, removeChild: () => {} },
|
||
});
|
||
});
|
||
|
||
afterEach(() => {
|
||
vi.unstubAllGlobals();
|
||
});
|
||
|
||
it('downloads the source bytes verbatim under a `.md` extension', async () => {
|
||
const source = '<!doctype html>\n<html lang="en"><body>hi</body></html>\n';
|
||
|
||
exportAsMd(source, 'TTC — Seed Round · 2026');
|
||
|
||
expect(capturedBlob).toBeDefined();
|
||
expect(capturedBlob!.type).toBe('text/markdown;charset=utf-8');
|
||
// Critical: no transformation, no normalization, no trimming. Whatever
|
||
// the Source view shows is what lands in the .md.
|
||
expect(await capturedBlob!.text()).toBe(source);
|
||
expect(capturedFilename).toBe('TTC-Seed-Round-2026.md');
|
||
});
|
||
|
||
it('falls back to "artifact.md" when the title is empty or unsafe', () => {
|
||
exportAsMd('hello', '');
|
||
expect(capturedFilename).toBe('artifact.md');
|
||
|
||
exportAsMd('hello', '???');
|
||
expect(capturedFilename).toBe('artifact.md');
|
||
});
|
||
|
||
it('keeps multi-byte content (UTF-8) intact end-to-end', async () => {
|
||
const source = '# 中文标题\n\n这是 markdown 文件 — でも本当は HTML 源代码 (مرحبا)。\n';
|
||
|
||
exportAsMd(source, 'mixed');
|
||
|
||
expect(await capturedBlob!.text()).toBe(source);
|
||
});
|
||
});
|
||
|
||
describe('sandboxed preview Blob exports', () => {
|
||
let capturedBlob: Blob | undefined;
|
||
let openedFeatures: string | undefined;
|
||
let mockWin: { opener: unknown; location: { href: string } };
|
||
let openCalls: string[][];
|
||
|
||
beforeEach(() => {
|
||
capturedBlob = undefined;
|
||
openedFeatures = undefined;
|
||
openCalls = [];
|
||
mockWin = { opener: {}, location: { href: '' } };
|
||
vi.stubGlobal('URL', {
|
||
createObjectURL: (blob: Blob) => {
|
||
capturedBlob = blob;
|
||
return 'blob:test';
|
||
},
|
||
revokeObjectURL: vi.fn(),
|
||
});
|
||
vi.stubGlobal('window', {
|
||
location: {
|
||
href: 'https://open-design.test/plugins/example',
|
||
origin: 'https://open-design.test',
|
||
},
|
||
open: (_url: string, _target: string, features?: string) => {
|
||
openCalls.push([_url, _target]);
|
||
openedFeatures = features;
|
||
return mockWin;
|
||
},
|
||
addEventListener: () => {},
|
||
});
|
||
vi.stubGlobal('alert', vi.fn());
|
||
});
|
||
|
||
afterEach(() => {
|
||
vi.unstubAllGlobals();
|
||
});
|
||
|
||
it('wraps generated HTML in an opaque-origin sandbox for new-tab previews', async () => {
|
||
openSandboxedPreviewInNewTab('<script>window.parent.localStorage.clear()</script>', 'Unsafe preview');
|
||
|
||
expect(openedFeatures).toBe('noopener,noreferrer');
|
||
expect(capturedBlob).toBeDefined();
|
||
const wrapper = await capturedBlob!.text();
|
||
expect(wrapper).toContain('sandbox="allow-scripts"');
|
||
expect(wrapper).not.toContain('allow-same-origin');
|
||
expect(wrapper).toContain('<script>window.parent.localStorage.clear()</script>');
|
||
expect(wrapper).not.toContain('<script>window.parent.localStorage.clear()</script>');
|
||
});
|
||
|
||
it('anchors new-tab srcdoc previews to the current origin when no explicit base is provided', async () => {
|
||
openSandboxedPreviewInNewTab('<img src="/api/plugins/example/assets/hero.png"><img src="assets/card.png">', 'Plugin preview');
|
||
|
||
expect(capturedBlob).toBeDefined();
|
||
const wrapper = await capturedBlob!.text();
|
||
expect(wrapper).toContain('<base href="https://open-design.test/">');
|
||
});
|
||
|
||
it('passes srcdoc options through the sandboxed new-tab wrapper', async () => {
|
||
openSandboxedPreviewInNewTab('<section class="slide">One</section>', 'Deck preview', {
|
||
deck: true,
|
||
baseHref: '/artifacts/project/assets/',
|
||
initialSlideIndex: 2,
|
||
});
|
||
|
||
expect(openedFeatures).toBe('noopener,noreferrer');
|
||
expect(capturedBlob).toBeDefined();
|
||
const wrapper = await capturedBlob!.text();
|
||
expect(wrapper).toContain('sandbox="allow-scripts"');
|
||
expect(wrapper).not.toContain('allow-same-origin');
|
||
expect(wrapper).toContain('<base href="/artifacts/project/assets/">');
|
||
expect(wrapper).toContain('od:slide');
|
||
});
|
||
|
||
it('can build a print wrapper without granting same-origin access', () => {
|
||
const wrapper = buildSandboxedPreviewDocument('<!doctype html><title>x</title>', 'Print', {
|
||
allowModals: true,
|
||
});
|
||
|
||
expect(wrapper).toContain('sandbox="allow-scripts allow-modals"');
|
||
expect(wrapper).not.toContain('allow-same-origin');
|
||
});
|
||
|
||
it('uses a sandboxed Blob wrapper with synchronous popup detection for PDF exports', async () => {
|
||
await exportAsPdf('<script>window.parent.document.body.innerHTML="owned"</script>', 'PDF');
|
||
|
||
expect(openCalls).toEqual([['', '_blank']]);
|
||
expect(mockWin.opener).toBeNull();
|
||
expect(mockWin.location.href).toBe('blob:test');
|
||
expect(capturedBlob).toBeDefined();
|
||
const wrapper = await capturedBlob!.text();
|
||
expect(wrapper).toContain('sandbox="allow-scripts allow-modals"');
|
||
expect(wrapper).not.toContain('allow-same-origin');
|
||
expect(wrapper).toContain('<script>window.parent.document.body.innerHTML="owned"</script>');
|
||
expect(wrapper).not.toContain('<script>window.parent.document.body.innerHTML="owned"</script>');
|
||
});
|
||
|
||
it('preserves deck print handling inside sandboxed PDF exports', async () => {
|
||
await exportAsPdf('<section class="slide">One</section>', 'Deck PDF', { deck: true });
|
||
|
||
expect(openCalls).toEqual([['', '_blank']]);
|
||
expect(mockWin.opener).toBeNull();
|
||
expect(mockWin.location.href).toBe('blob:test');
|
||
expect(capturedBlob).toBeDefined();
|
||
const wrapper = await capturedBlob!.text();
|
||
expect(wrapper).toContain('sandbox="allow-scripts allow-modals"');
|
||
expect(wrapper).toContain('data-deck-print="injected"');
|
||
expect(wrapper).toContain('page-break-after: always;');
|
||
});
|
||
|
||
it('waits for the injected print-ready cache before calling window.print() in the browser fallback', async () => {
|
||
await exportAsPdf('<div><img src="https://example.com/slow.png" alt="slow"/></div>', 'Ready PDF');
|
||
|
||
expect(capturedBlob).toBeDefined();
|
||
const wrapper = await capturedBlob!.text();
|
||
expect(wrapper).toContain('__odPrintReady');
|
||
expect(wrapper).toContain('__odPrintReadyStarted');
|
||
expect(wrapper).toContain("window.__odPrintReady===true");
|
||
expect(wrapper).toContain("window.__odPrintReadyStarted===false");
|
||
expect(wrapper).toContain("e.data.type==='OD_PRINT_READY'");
|
||
expect(wrapper).toContain("e.data.type==='OD_PRINT_READY_STARTED'");
|
||
expect(wrapper).toContain('window.addEventListener(\'message\'');
|
||
expect(wrapper).toContain('document.fonts');
|
||
expect(wrapper).toContain('waitForCssBackgroundImages');
|
||
expect(wrapper).toContain("setTimeout(doPrint,300)");
|
||
expect(wrapper).toContain('window.print()');
|
||
});
|
||
|
||
it('allows explicit trusted PDF opt-out without changing the secure default', async () => {
|
||
await exportAsPdf('<main>Trusted local document</main>', 'Trusted PDF', {
|
||
sandboxedPreview: false,
|
||
});
|
||
|
||
expect(openCalls).toEqual([['', '_blank']]);
|
||
expect(mockWin.opener).toEqual({});
|
||
expect(mockWin.location.href).toBe('blob:test');
|
||
expect(capturedBlob).toBeDefined();
|
||
const doc = await capturedBlob!.text();
|
||
expect(doc).not.toContain('sandbox="allow-scripts allow-modals"');
|
||
expect(doc).toContain('<main>Trusted local document</main>');
|
||
expect(doc).toContain('__odPrintReady');
|
||
expect(doc).toContain("window.__odPrintReady===true");
|
||
});
|
||
|
||
it('shows an alert and revokes the blob URL when the popup is blocked', async () => {
|
||
vi.stubGlobal('window', {
|
||
open: () => null,
|
||
addEventListener: () => {},
|
||
});
|
||
|
||
const revokeSpy = URL.revokeObjectURL as ReturnType<typeof vi.fn>;
|
||
revokeSpy.mockClear();
|
||
|
||
await exportAsPdf('<p>test</p>', 'Blocked');
|
||
|
||
expect(alert).toHaveBeenCalledWith('Popup blocked! Click the popup-blocked icon in your browser address bar (or browser menu), choose "Always allow pop-ups" for this site, then retry Export PDF.');
|
||
expect(revokeSpy).toHaveBeenCalledWith('blob:test');
|
||
});
|
||
|
||
it('uses the desktop native print bridge when the host PDF bridge is available', async () => {
|
||
const printPdfMock = vi.fn().mockResolvedValue({ ok: true });
|
||
const restoreHost = installMockOpenDesignHost({
|
||
host: { pdf: { print: printPdfMock } },
|
||
});
|
||
|
||
try {
|
||
await exportAsPdf('<script>window.parent.document.body.innerHTML="owned"</script>', 'Desktop PDF');
|
||
} finally {
|
||
restoreHost();
|
||
}
|
||
|
||
expect(printPdfMock).toHaveBeenCalledTimes(1);
|
||
expect(openCalls).toEqual([]);
|
||
|
||
const htmlArg = printPdfMock.mock.calls[0]![0];
|
||
expect(htmlArg).toContain('sandbox="allow-scripts"');
|
||
expect(htmlArg).not.toContain('allow-modals');
|
||
expect(htmlArg).toContain('<script>window.parent.document.body.innerHTML="owned"</script>');
|
||
expect(htmlArg).not.toContain('<script>window.parent.document.body.innerHTML="owned"</script>');
|
||
// Verify the readiness handshake is present — the sandboxed iframe posts
|
||
// 'OD_PRINT_READY' to the parent once fonts and images are loaded.
|
||
expect(htmlArg).toContain('OD_PRINT_READY');
|
||
// Verify the parent-wrapper cache script is present so the handshake is
|
||
// never missed even if 'OD_PRINT_READY' fires before the listener attaches.
|
||
expect(htmlArg).toContain('__odPrintReady');
|
||
// Verify the print script is NOT injected — Electron renders via the
|
||
// native printToPDF path, so a self-printing document would trigger a
|
||
// second print dialog.
|
||
expect(htmlArg).not.toContain('window.print()');
|
||
});
|
||
|
||
it('passes deck intent through the desktop native print bridge', async () => {
|
||
const printPdfMock = vi.fn().mockResolvedValue({ ok: true });
|
||
const restoreHost = installMockOpenDesignHost({
|
||
host: { pdf: { print: printPdfMock } },
|
||
});
|
||
|
||
try {
|
||
await exportAsPdf('<section class="slide">One</section>', 'Desktop Deck', { deck: true });
|
||
} finally {
|
||
restoreHost();
|
||
}
|
||
|
||
expect(printPdfMock).toHaveBeenCalledTimes(1);
|
||
expect(printPdfMock.mock.calls[0]![2]).toEqual({ deck: true });
|
||
expect(printPdfMock.mock.calls[0]![0]).toContain('data-deck-print="injected"');
|
||
});
|
||
|
||
it('injects image-waiting logic into the print-ready handshake for the desktop bridge', async () => {
|
||
const printPdfMock = vi.fn().mockResolvedValue({ ok: true });
|
||
const restoreHost = installMockOpenDesignHost({
|
||
host: { pdf: { print: printPdfMock } },
|
||
});
|
||
|
||
// HTML with an intentionally non-loadable image to exercise the
|
||
// incomplete-image detection in the injected handshake.
|
||
const html = '<div><img src="https://example.com/will-not-load.png" alt="test"/></div>';
|
||
try {
|
||
await exportAsPdf(html, 'Image Test');
|
||
} finally {
|
||
restoreHost();
|
||
}
|
||
|
||
const htmlArg = printPdfMock.mock.calls[0]![0];
|
||
// In the sandboxed wrapper the srcdoc attribute is HTML-escaped, so the
|
||
// handshake script content is present as unescaped JS fragments.
|
||
expect(htmlArg).toContain('document.images');
|
||
expect(htmlArg).toContain("img.loading==='lazy'");
|
||
expect(htmlArg).toContain("img.loading='eager'");
|
||
expect(htmlArg).toContain("img.addEventListener('load'");
|
||
expect(htmlArg).toContain("img.addEventListener('error'");
|
||
expect(htmlArg).toContain('img.complete');
|
||
expect(htmlArg).toContain('waitForCssBackgroundImages');
|
||
expect(htmlArg).toContain('window.getComputedStyle');
|
||
expect(htmlArg).toContain('style.backgroundImage');
|
||
expect(htmlArg).toContain('style.borderImageSource');
|
||
expect(htmlArg).toContain('style.listStyleImage');
|
||
expect(htmlArg).toContain('new Image()');
|
||
expect(htmlArg).toContain('requestAnimationFrame');
|
||
// The original font- and load-waiting logic must still be present.
|
||
expect(htmlArg).toContain('document.fonts');
|
||
expect(htmlArg).toContain('OD_PRINT_READY');
|
||
// The handshake posts an object with a per-export nonce to prevent
|
||
// spoofing by untrusted artifact code.
|
||
expect(htmlArg).toContain("type:'OD_PRINT_READY'");
|
||
expect(htmlArg).toContain("nonce:'");
|
||
// The cache script also validates the nonce and event source.
|
||
expect(htmlArg).toContain("e.data.type==='OD_PRINT_READY'");
|
||
expect(htmlArg).toContain("e.data.nonce===");
|
||
expect(htmlArg).toContain('e.source===');
|
||
// The parent cache should still be injected.
|
||
expect(htmlArg).toContain('__odPrintReady');
|
||
// No window.print() since the desktop bridge handles printing natively.
|
||
expect(htmlArg).not.toContain('window.print()');
|
||
});
|
||
|
||
it('reports the artifact content size through the handshake so the desktop page is sized to the content, not the wrapper viewport (issue #4067)', async () => {
|
||
const printPdfMock = vi.fn().mockResolvedValue({ ok: true });
|
||
const restoreHost = installMockOpenDesignHost({
|
||
host: { pdf: { print: printPdfMock } },
|
||
});
|
||
|
||
try {
|
||
await exportAsPdf('<div style="height:4000px">tall artifact</div>', 'Tall PDF');
|
||
} finally {
|
||
restoreHost();
|
||
}
|
||
|
||
const htmlArg = printPdfMock.mock.calls[0]![0];
|
||
// The in-iframe handshake measures the artifact's own document dimensions.
|
||
// The parent wrapper cannot do this itself: the sandboxed preview iframe is
|
||
// `allow-scripts` with no `allow-same-origin`, so iframe.contentDocument is
|
||
// null. Measuring from inside is the only way to learn the real size.
|
||
expect(htmlArg).toContain('document.documentElement');
|
||
expect(htmlArg).toContain('scrollHeight');
|
||
expect(htmlArg).toContain('offsetHeight');
|
||
// ...and it ships that size to the parent, but only once the content has a
|
||
// usable (non-zero) size, by driving the measurement through
|
||
// reportPrintSizeWhenStable. The polling/gating behavior itself is covered
|
||
// by the reportPrintSizeWhenStable unit tests above (real-logic behavior
|
||
// assertions, not string presence); here we assert the handshake is wired
|
||
// to it so a heavier artifact that lays out late is not reported at size 0,
|
||
// which would blank the PDF (#4458).
|
||
expect(htmlArg).toContain('reportPrintSizeWhenStable');
|
||
expect(htmlArg).toContain('width:size.width');
|
||
expect(htmlArg).toContain('height:size.height');
|
||
// The parent wrapper caches the reported size for inferPageSize() to read,
|
||
// gating it through isUsablePrintSize so a malformed/oversized message
|
||
// cannot poison the page size. The finite check matters: `Infinity > 0` is
|
||
// true, so a bare `typeof === 'number'` guard would cache a non-finite
|
||
// dimension and let it leak into the page size. (isUsablePrintSize's own
|
||
// boundary behavior is covered by its unit tests above.)
|
||
expect(htmlArg).toContain('window.__odPrintSize');
|
||
expect(htmlArg).toContain('__odUsable(e.data.width,e.data.height)');
|
||
expect(htmlArg).toContain('Number.isFinite(width)');
|
||
});
|
||
|
||
it('injects the readiness cache for non-sandboxed desktop exports too', async () => {
|
||
const printPdfMock = vi.fn().mockResolvedValue({ ok: true });
|
||
const restoreHost = installMockOpenDesignHost({
|
||
host: { pdf: { print: printPdfMock } },
|
||
});
|
||
|
||
try {
|
||
await exportAsPdf('<main>Trusted local document</main>', 'Trusted', {
|
||
sandboxedPreview: false,
|
||
});
|
||
} finally {
|
||
restoreHost();
|
||
}
|
||
|
||
expect(printPdfMock).toHaveBeenCalledTimes(1);
|
||
const htmlArg = printPdfMock.mock.calls[0]![0];
|
||
// No sandbox wrapper — the document is passed through directly.
|
||
expect(htmlArg).not.toContain('sandbox="allow-scripts"');
|
||
expect(htmlArg).toContain('<main>Trusted local document</main>');
|
||
// The readiness handshake must still be injected.
|
||
expect(htmlArg).toContain('OD_PRINT_READY');
|
||
// The cache must be present so waitForPrintReadyHandshake never hangs.
|
||
expect(htmlArg).toContain('__odPrintReady');
|
||
// No window.print() since the desktop bridge handles printing natively.
|
||
expect(htmlArg).not.toContain('window.print()');
|
||
});
|
||
});
|
||
|
||
// ---------------------------------------------------------------------------
|
||
// Image screenshot export
|
||
// ---------------------------------------------------------------------------
|
||
|
||
describe('requestPreviewSnapshot', () => {
|
||
let listeners: Map<string, Set<(ev: unknown) => void>>;
|
||
|
||
beforeEach(() => {
|
||
listeners = new Map();
|
||
vi.stubGlobal('window', {
|
||
addEventListener: (type: string, fn: (ev: unknown) => void) => {
|
||
if (!listeners.has(type)) listeners.set(type, new Set());
|
||
listeners.get(type)!.add(fn);
|
||
},
|
||
removeEventListener: (type: string, fn: (ev: unknown) => void) => {
|
||
listeners.get(type)?.delete(fn);
|
||
},
|
||
dispatchEvent: (ev: { type: string }) => {
|
||
for (const fn of listeners.get(ev.type) ?? []) fn(ev);
|
||
},
|
||
});
|
||
});
|
||
|
||
afterEach(() => {
|
||
vi.unstubAllGlobals();
|
||
vi.restoreAllMocks();
|
||
});
|
||
|
||
it('returns null when the iframe has no contentWindow', async () => {
|
||
const iframe = { contentWindow: null } as unknown as HTMLIFrameElement;
|
||
const result = await requestPreviewSnapshot(iframe);
|
||
expect(result).toBeNull();
|
||
});
|
||
|
||
it('resolves with snapshot data when the bridge responds', async () => {
|
||
const postMessageMock = vi.fn();
|
||
const contentWindow = { postMessage: postMessageMock };
|
||
const iframe = { contentWindow } as unknown as HTMLIFrameElement;
|
||
|
||
const promise = requestPreviewSnapshot(iframe);
|
||
|
||
expect(postMessageMock).toHaveBeenCalledOnce();
|
||
const { id } = postMessageMock.mock.calls[0]![0] as { type: string; id: string };
|
||
|
||
// Simulate the bridge responding — source must match iframe.contentWindow
|
||
window.dispatchEvent(
|
||
{ type: 'message', source: contentWindow, data: { type: 'od:snapshot:result', id, dataUrl: 'data:image/png;base64,abc', w: 100, h: 50 } } as unknown as Event,
|
||
);
|
||
|
||
const result = await promise;
|
||
expect(result).toEqual({ dataUrl: 'data:image/png;base64,abc', w: 100, h: 50 });
|
||
});
|
||
|
||
it('can request a full-document snapshot from the bridge', async () => {
|
||
const postMessageMock = vi.fn();
|
||
const contentWindow = { postMessage: postMessageMock };
|
||
const iframe = { contentWindow } as unknown as HTMLIFrameElement;
|
||
|
||
const promise = requestPreviewSnapshot(iframe, 100, { full: true });
|
||
|
||
expect(postMessageMock).toHaveBeenCalledOnce();
|
||
const message = postMessageMock.mock.calls[0]![0] as { type: string; id: string; full?: boolean };
|
||
expect(message).toMatchObject({ type: 'od:snapshot', full: true });
|
||
|
||
window.dispatchEvent(
|
||
{ type: 'message', source: contentWindow, data: { type: 'od:snapshot:result', id: message.id, dataUrl: 'data:image/png;base64,abc', w: 100, h: 200 } } as unknown as Event,
|
||
);
|
||
|
||
const result = await promise;
|
||
expect(result).toEqual({ dataUrl: 'data:image/png;base64,abc', w: 100, h: 200 });
|
||
});
|
||
|
||
it('resolves null when the bridge responds with an error', async () => {
|
||
const postMessageMock = vi.fn();
|
||
const contentWindow = { postMessage: postMessageMock };
|
||
const iframe = { contentWindow } as unknown as HTMLIFrameElement;
|
||
|
||
const promise = requestPreviewSnapshot(iframe);
|
||
const { id } = postMessageMock.mock.calls[0]![0] as { type: string; id: string };
|
||
|
||
window.dispatchEvent(
|
||
{ type: 'message', source: contentWindow, data: { type: 'od:snapshot:result', id, error: 'snapshot image failed' } } as unknown as Event,
|
||
);
|
||
|
||
const result = await promise;
|
||
expect(result).toBeNull();
|
||
});
|
||
|
||
it('resolves null on timeout', async () => {
|
||
vi.useFakeTimers();
|
||
const iframe = {
|
||
contentWindow: { postMessage: vi.fn() },
|
||
} as unknown as HTMLIFrameElement;
|
||
|
||
const promise = requestPreviewSnapshot(iframe, 100);
|
||
vi.advanceTimersByTime(150);
|
||
|
||
const result = await promise;
|
||
expect(result).toBeNull();
|
||
vi.useRealTimers();
|
||
});
|
||
|
||
it('ignores messages with a mismatched id', async () => {
|
||
vi.useFakeTimers();
|
||
const postMessageMock = vi.fn();
|
||
const contentWindow = { postMessage: postMessageMock };
|
||
const iframe = { contentWindow } as unknown as HTMLIFrameElement;
|
||
|
||
const promise = requestPreviewSnapshot(iframe, 100);
|
||
|
||
// Correct source but wrong id — should be ignored
|
||
window.dispatchEvent(
|
||
{ type: 'message', source: contentWindow, data: { type: 'od:snapshot:result', id: 'wrong-id', dataUrl: 'data:image/png;base64,abc', w: 100, h: 50 } } as unknown as Event,
|
||
);
|
||
|
||
vi.advanceTimersByTime(150);
|
||
const result = await promise;
|
||
expect(result).toBeNull();
|
||
vi.useRealTimers();
|
||
});
|
||
|
||
it('ignores messages from a different source window', async () => {
|
||
vi.useFakeTimers();
|
||
const postMessageMock = vi.fn();
|
||
const contentWindow = { postMessage: postMessageMock };
|
||
const iframe = { contentWindow } as unknown as HTMLIFrameElement;
|
||
|
||
const promise = requestPreviewSnapshot(iframe, 100);
|
||
const { id } = postMessageMock.mock.calls[0]![0] as { type: string; id: string };
|
||
|
||
// Correct id but wrong source — should be ignored
|
||
window.dispatchEvent(
|
||
{ type: 'message', source: { other: true }, data: { type: 'od:snapshot:result', id, dataUrl: 'data:image/png;base64,abc', w: 100, h: 50 } } as unknown as Event,
|
||
);
|
||
|
||
vi.advanceTimersByTime(150);
|
||
const result = await promise;
|
||
expect(result).toBeNull();
|
||
vi.useRealTimers();
|
||
});
|
||
});
|
||
|
||
describe('exportAsImage', () => {
|
||
let clickMock: ReturnType<typeof vi.fn>;
|
||
let createObjectURLMock: ReturnType<typeof vi.fn>;
|
||
let anchors: Array<{ href: string; download: string; click: ReturnType<typeof vi.fn> }>;
|
||
|
||
beforeEach(() => {
|
||
clickMock = vi.fn();
|
||
createObjectURLMock = vi.fn(() => 'blob:mock-url');
|
||
anchors = [];
|
||
vi.stubGlobal('URL', { createObjectURL: createObjectURLMock, revokeObjectURL: vi.fn() });
|
||
vi.stubGlobal('document', {
|
||
createElement: () => {
|
||
const el = { href: '', download: '', click: clickMock };
|
||
anchors.push(el);
|
||
return el;
|
||
},
|
||
body: {
|
||
appendChild: vi.fn(),
|
||
removeChild: vi.fn(),
|
||
},
|
||
});
|
||
// triggerDownload calls setTimeout for deferred revoke
|
||
vi.stubGlobal('setTimeout', (fn: () => void) => fn());
|
||
});
|
||
|
||
afterEach(() => {
|
||
vi.unstubAllGlobals();
|
||
vi.restoreAllMocks();
|
||
});
|
||
|
||
it('triggers a download with a .png filename', () => {
|
||
const dataUrl = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==';
|
||
exportAsImage(dataUrl, 'My Design');
|
||
|
||
expect(clickMock).toHaveBeenCalledOnce();
|
||
expect(anchors).toHaveLength(1);
|
||
expect(anchors[0]!.download).toBe('My-Design.png');
|
||
});
|
||
|
||
it('sanitizes the title into a safe filename', () => {
|
||
exportAsImage('data:image/png;base64,AA==', 'Hello <World> / Test!');
|
||
|
||
expect(anchors[0]!.download).toBe('Hello-World-Test.png');
|
||
});
|
||
|
||
it('does not download an empty image snapshot', () => {
|
||
expect(() => exportAsImage('data:image/png;base64,', 'Empty')).toThrow('Image snapshot is empty');
|
||
|
||
expect(clickMock).not.toHaveBeenCalled();
|
||
expect(anchors).toHaveLength(0);
|
||
});
|
||
|
||
it('downloads a validated image data URL without creating a blob URL', () => {
|
||
const dataUrl = 'data:image/png;base64,AA==';
|
||
|
||
downloadImageDataUrl(dataUrl, 'workspace.png');
|
||
|
||
expect(clickMock).toHaveBeenCalledOnce();
|
||
expect(createObjectURLMock).not.toHaveBeenCalled();
|
||
expect(anchors[0]!.href).toBe(dataUrl);
|
||
expect(anchors[0]!.download).toBe('workspace.png');
|
||
});
|
||
|
||
it('does not download an empty image data URL', () => {
|
||
expect(() => downloadImageDataUrl('data:image/png;base64,', 'workspace.png')).toThrow('Image snapshot is empty');
|
||
|
||
expect(clickMock).not.toHaveBeenCalled();
|
||
expect(anchors).toHaveLength(0);
|
||
});
|
||
|
||
it('falls back to download when the native save picker is blocked', async () => {
|
||
const showSaveFilePicker = vi.fn().mockRejectedValue(
|
||
new DOMException('Must be handling a user gesture to show a file picker.', 'SecurityError'),
|
||
);
|
||
vi.stubGlobal('window', { showSaveFilePicker });
|
||
|
||
const target = await prepareImageExportTarget('My Design', 'jpeg');
|
||
|
||
expect(showSaveFilePicker).toHaveBeenCalledOnce();
|
||
expect(target?.method).toBe('download');
|
||
expect(target?.filename).toBe('My-Design.jpg');
|
||
|
||
await target?.save(new Blob(['jpeg'], { type: 'image/jpeg' }));
|
||
|
||
expect(clickMock).toHaveBeenCalledOnce();
|
||
expect(anchors[0]!.download).toBe('My-Design.jpg');
|
||
});
|
||
|
||
it('falls back to download when the native save picker reports a cross-realm SecurityError', async () => {
|
||
const securityError = Object.assign(new Error('Must be handling a user gesture to show a file picker.'), {
|
||
name: 'SecurityError',
|
||
});
|
||
const showSaveFilePicker = vi.fn().mockRejectedValue(securityError);
|
||
vi.stubGlobal('window', { showSaveFilePicker });
|
||
|
||
const target = await prepareImageExportTarget('My Design', 'webp');
|
||
|
||
expect(showSaveFilePicker).toHaveBeenCalledOnce();
|
||
expect(target?.method).toBe('download');
|
||
expect(target?.filename).toBe('My-Design.webp');
|
||
});
|
||
|
||
it('can skip the native save picker to avoid pre-creating empty files', async () => {
|
||
const showSaveFilePicker = vi.fn();
|
||
vi.stubGlobal('window', { showSaveFilePicker });
|
||
|
||
const target = await prepareImageExportTarget('My Design', 'png', { useNativePicker: false });
|
||
|
||
expect(showSaveFilePicker).not.toHaveBeenCalled();
|
||
expect(target?.method).toBe('download');
|
||
expect(target?.filename).toBe('My-Design.png');
|
||
});
|
||
});
|