177eda93d0
ContentSlider: autoplay's setInterval now pauses on mouseenter and on document visibilitychange (tab hidden), resumes on mouseleave/visible, and is always clearable (timer var + clearInterval). The aria-live region is "off" while autoplay is silently auto-rotating and only flips to "polite" on manual next/prev/dot navigation, so screen readers aren't spammed with an announcement every `interval` ms (F-export review Minor). Updates the one existing test that hard-coded aria-live="polite" as always-on to match this intentional behavior change. (Countdown's ticking-interval-stops-at-zero nit shipped in the previous commit alongside its node-id migration, since both touched the same inline script.) Adds regression tests locking in that MapEmbed/VideoBlock iframe src attributes (built by string concatenation with literal `&` query params) are HTML-entity-encoded via the existing escapeAttr(safeUrl()) pipeline -- verified already correct, no source change needed there. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
89 lines
3.7 KiB
TypeScript
89 lines
3.7 KiB
TypeScript
import { describe, test, expect } from 'vitest';
|
|
import { VideoBlock } from './VideoBlock';
|
|
|
|
const toHtml = (VideoBlock as any).toHtml;
|
|
|
|
function embedSrc(videoUrl: string): string {
|
|
const { html } = toHtml({ videoUrl }, '');
|
|
const m = html.match(/<iframe src="([^"]+)"/) || html.match(/<video src="([^"]+)"/);
|
|
return m ? m[1].replace(/&/g, '&') : '';
|
|
}
|
|
|
|
describe('VideoBlock URL parsing (D4)', () => {
|
|
test('youtube.com/watch?v=ID (existing case) resolves to embed URL', () => {
|
|
expect(embedSrc('https://www.youtube.com/watch?v=dQw4w9WgXcQ')).toContain('youtube.com/embed/dQw4w9WgXcQ');
|
|
});
|
|
|
|
test('youtu.be/ID resolves to embed URL', () => {
|
|
expect(embedSrc('https://youtu.be/dQw4w9WgXcQ')).toContain('youtube.com/embed/dQw4w9WgXcQ');
|
|
});
|
|
|
|
test('youtube.com/embed/ID (existing case) resolves to embed URL', () => {
|
|
expect(embedSrc('https://www.youtube.com/embed/dQw4w9WgXcQ')).toContain('youtube.com/embed/dQw4w9WgXcQ');
|
|
});
|
|
|
|
test('youtube.com/shorts/ID resolves to embed URL', () => {
|
|
expect(embedSrc('https://www.youtube.com/shorts/dQw4w9WgXcQ')).toContain('youtube.com/embed/dQw4w9WgXcQ');
|
|
});
|
|
|
|
test('youtube.com/live/ID resolves to embed URL', () => {
|
|
expect(embedSrc('https://www.youtube.com/live/dQw4w9WgXcQ')).toContain('youtube.com/embed/dQw4w9WgXcQ');
|
|
});
|
|
|
|
test('youtube.com/watch?...&v=ID (v not first param) resolves to embed URL', () => {
|
|
expect(embedSrc('https://www.youtube.com/watch?list=PLxyz&v=dQw4w9WgXcQ&index=3')).toContain('youtube.com/embed/dQw4w9WgXcQ');
|
|
});
|
|
|
|
test('vimeo.com/ID (existing case) resolves to player URL', () => {
|
|
expect(embedSrc('https://vimeo.com/123456789')).toContain('https://player.vimeo.com/video/123456789');
|
|
});
|
|
|
|
test('vimeo.com/ID/HASH (private video) resolves to player URL with hash param', () => {
|
|
const src = embedSrc('https://vimeo.com/123456789/abcdef1234');
|
|
expect(src).toContain('https://player.vimeo.com/video/123456789');
|
|
expect(src).toContain('h=abcdef1234');
|
|
});
|
|
|
|
test('direct .mp4 file still works', () => {
|
|
const { html } = toHtml({ videoUrl: 'https://example.com/clip.mp4' }, '');
|
|
expect(html).toContain('<video src="https://example.com/clip.mp4"');
|
|
});
|
|
|
|
test('unrecognized URL yields no output (type "none")', () => {
|
|
const { html } = toHtml({ videoUrl: 'not-a-real-video-url' }, '');
|
|
expect(html).toBe('');
|
|
});
|
|
|
|
test('emitted src is safeUrl-wrapped: javascript: scheme never reaches output', () => {
|
|
const { html } = toHtml({ videoUrl: 'javascript:alert(1)' }, '');
|
|
expect(html).not.toContain('javascript:');
|
|
});
|
|
});
|
|
|
|
describe('VideoBlock.toHtml iframe accessibility (F2.4)', () => {
|
|
test('normal-mode YouTube/Vimeo iframe has a title attribute', () => {
|
|
const { html } = toHtml({ videoUrl: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ' }, '');
|
|
expect(html).toMatch(/<iframe[^>]*title="[^"]+"/);
|
|
});
|
|
|
|
test('background-mode YouTube/Vimeo iframe has a title attribute', () => {
|
|
const { html } = toHtml({ videoUrl: 'https://vimeo.com/123456789', isBackground: true }, '');
|
|
expect(html).toMatch(/<iframe[^>]*title="[^"]+"/);
|
|
});
|
|
});
|
|
|
|
describe('VideoBlock.toHtml iframe src ampersand encoding (F-export review Minor)', () => {
|
|
test('embed params joined with literal & are HTML-entity-encoded in the emitted src attribute', () => {
|
|
// autoplay+muted+controls=false forces buildEmbedParams to concatenate
|
|
// multiple query params onto the URL with literal `&`s.
|
|
const { html } = toHtml(
|
|
{ videoUrl: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ', autoplay: true, muted: true, controls: false },
|
|
''
|
|
);
|
|
const srcMatch = html.match(/<iframe src="([^"]+)"/);
|
|
expect(srcMatch).toBeTruthy();
|
|
expect(srcMatch![1]).toMatch(/&/);
|
|
expect(srcMatch![1]).not.toMatch(/&(?!amp;)/);
|
|
});
|
|
});
|