2026-07-12 19:53:02 -07:00
|
|
|
import { describe, test, expect } from 'vitest';
|
|
|
|
|
import { FeaturesGrid } from './FeaturesGrid';
|
|
|
|
|
|
|
|
|
|
const toHtml = (FeaturesGrid as any).toHtml;
|
|
|
|
|
|
|
|
|
|
describe('FeaturesGrid.toHtml image sink uses safeImageUrl (data:image/svg+xml allowed)', () => {
|
|
|
|
|
test('feat.image as a data:image/svg+xml value emits a non-empty <img src>', () => {
|
|
|
|
|
const svgDataUri = 'data:image/svg+xml,%3Csvg%2F%3E';
|
|
|
|
|
const features = [
|
|
|
|
|
{ title: 'Feature', description: 'Desc', icon: '⚡', image: svgDataUri, imageAlt: 'alt' },
|
|
|
|
|
];
|
|
|
|
|
const { html } = toHtml({ features }, '');
|
|
|
|
|
expect(html).toContain(`<img src="${svgDataUri}"`);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('feat.buttonUrl stays on safeUrl (data:image/svg+xml blocked as a navigation target)', () => {
|
|
|
|
|
const features = [
|
|
|
|
|
{ title: 'Feature', description: 'Desc', icon: '⚡', buttonText: 'Go', buttonUrl: 'data:image/svg+xml,<svg onload=alert(1)>' },
|
|
|
|
|
];
|
|
|
|
|
const { html } = toHtml({ features }, '');
|
|
|
|
|
expect(html).toMatch(/<a href=""/);
|
|
|
|
|
});
|
|
|
|
|
});
|
2026-07-14 06:47:58 -07:00
|
|
|
|
|
|
|
|
describe('FeaturesGrid.craft.props includes the box-model/animation/visibility rollout props', () => {
|
|
|
|
|
test('animation, animationDelay, and all 3 hideOn* flags are declared (blank/false defaults)', () => {
|
|
|
|
|
const props = (FeaturesGrid as any).craft.props;
|
|
|
|
|
expect(props).toHaveProperty('animation', '');
|
|
|
|
|
expect(props).toHaveProperty('animationDelay', '');
|
|
|
|
|
expect(props).toHaveProperty('hideOnDesktop', false);
|
|
|
|
|
expect(props).toHaveProperty('hideOnTablet', false);
|
|
|
|
|
expect(props).toHaveProperty('hideOnMobile', false);
|
|
|
|
|
});
|
|
|
|
|
});
|