mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
281 lines
7.1 KiB
TypeScript
281 lines
7.1 KiB
TypeScript
import type { IconifyIconBuildResult } from '../lib/svg/build';
|
|
import { iconToSVG } from '../lib/svg/build';
|
|
import type { FullIconifyIcon } from '../lib/icon';
|
|
import { fullIcon, iconDefaults } from '../lib/icon';
|
|
import type { FullIconCustomisations } from '../lib/customisations';
|
|
import { defaults, mergeCustomisations } from '../lib/customisations';
|
|
|
|
describe('Testing iconToSVG', () => {
|
|
test('Empty icon', () => {
|
|
const custom: FullIconCustomisations = defaults;
|
|
const icon: FullIconifyIcon = { ...iconDefaults, body: '' };
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '1em',
|
|
height: '1em',
|
|
preserveAspectRatio: 'xMidYMid meet',
|
|
viewBox: '0 0 16 16',
|
|
},
|
|
body: '',
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Auto size, inline, body', () => {
|
|
const custom: FullIconCustomisations = mergeCustomisations(defaults, {
|
|
inline: true,
|
|
height: 'auto',
|
|
});
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
body: '<path d="" />',
|
|
});
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '16',
|
|
height: '16',
|
|
preserveAspectRatio: 'xMidYMid meet',
|
|
viewBox: '0 0 16 16',
|
|
},
|
|
body: '<path d="" />',
|
|
inline: true,
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Auto size, inline, body', () => {
|
|
const custom: FullIconCustomisations = mergeCustomisations(defaults, {
|
|
inline: true,
|
|
height: 'auto',
|
|
});
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
body: '<path d="" />',
|
|
});
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '16',
|
|
height: '16',
|
|
preserveAspectRatio: 'xMidYMid meet',
|
|
viewBox: '0 0 16 16',
|
|
},
|
|
body: '<path d="" />',
|
|
inline: true,
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Custom size, alignment', () => {
|
|
const custom: FullIconCustomisations = mergeCustomisations(defaults, {
|
|
height: 'auto',
|
|
hAlign: 'left',
|
|
slice: true,
|
|
});
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
width: 20,
|
|
height: 16,
|
|
body: '<path d="..." />',
|
|
});
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '20',
|
|
height: '16',
|
|
preserveAspectRatio: 'xMinYMid slice',
|
|
viewBox: '0 0 20 16',
|
|
},
|
|
body: '<path d="..." />',
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Rotation, alignment', () => {
|
|
const custom: FullIconCustomisations = mergeCustomisations(defaults, {
|
|
height: '40px',
|
|
vAlign: 'bottom',
|
|
rotate: 1,
|
|
});
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
width: 20,
|
|
height: 16,
|
|
body: '<path d="..." />',
|
|
});
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '32px',
|
|
height: '40px',
|
|
preserveAspectRatio: 'xMidYMax meet',
|
|
viewBox: '0 0 16 20',
|
|
},
|
|
body: '<g transform="rotate(90 8 8)"><path d="..." /></g>',
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Negative rotation', () => {
|
|
const custom: FullIconCustomisations = mergeCustomisations(defaults, {
|
|
height: '40px',
|
|
rotate: -1,
|
|
});
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
width: 20,
|
|
height: 16,
|
|
body: '<path d="..." />',
|
|
});
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '32px',
|
|
height: '40px',
|
|
preserveAspectRatio: 'xMidYMid meet',
|
|
viewBox: '0 0 16 20',
|
|
},
|
|
body: '<g transform="rotate(-90 10 10)"><path d="..." /></g>',
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Flip, alignment', () => {
|
|
const custom: FullIconCustomisations = mergeCustomisations(defaults, {
|
|
height: '32',
|
|
vAlign: 'top',
|
|
hAlign: 'right',
|
|
hFlip: true,
|
|
});
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
width: 20,
|
|
height: 16,
|
|
body: '<path d="..." />',
|
|
});
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '40',
|
|
height: '32',
|
|
preserveAspectRatio: 'xMaxYMin meet',
|
|
viewBox: '0 0 20 16',
|
|
},
|
|
body: '<g transform="translate(20 0) scale(-1 1)"><path d="..." /></g>',
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Flip, rotation', () => {
|
|
const custom: FullIconCustomisations = mergeCustomisations(defaults, {
|
|
hFlip: true,
|
|
rotate: 1,
|
|
});
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
width: 20,
|
|
height: 16,
|
|
body: '<path d="..." />',
|
|
});
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '0.8em',
|
|
height: '1em',
|
|
preserveAspectRatio: 'xMidYMid meet',
|
|
viewBox: '0 0 16 20',
|
|
},
|
|
body: '<g transform="rotate(90 8 8) translate(20 0) scale(-1 1)"><path d="..." /></g>',
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Flip icon that is rotated by default', () => {
|
|
const custom: FullIconCustomisations = mergeCustomisations(defaults, {
|
|
hFlip: true,
|
|
});
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
width: 20,
|
|
height: 16,
|
|
body: '<path d="..." />',
|
|
rotate: 1,
|
|
});
|
|
|
|
// Horizontally flipping icon that has 90 or 270 degrees rotation will result in vertical flip.
|
|
// Therefore result should be rotation + vertical flip to visually match horizontal flip on normal icon.
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '0.8em',
|
|
height: '1em',
|
|
preserveAspectRatio: 'xMidYMid meet',
|
|
viewBox: '0 0 16 20',
|
|
},
|
|
body: '<g transform="translate(16 0) scale(-1 1)"><g transform="rotate(90 8 8)"><path d="..." /></g></g>',
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Flip and rotation canceling eachother', () => {
|
|
const custom: FullIconCustomisations = mergeCustomisations(defaults, {
|
|
width: '1em',
|
|
height: 'auto',
|
|
hFlip: true,
|
|
vFlip: true,
|
|
rotate: 2,
|
|
});
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
width: 20,
|
|
height: 16,
|
|
body: '<path d="..." />',
|
|
});
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '1em',
|
|
height: '16',
|
|
preserveAspectRatio: 'xMidYMid meet',
|
|
viewBox: '0 0 20 16',
|
|
},
|
|
body: '<path d="..." />',
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
|
|
test('Flip with real icon', () => {
|
|
const iconBody =
|
|
'<g stroke="currentColor" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" fill="none" fill-rule="evenodd"><path d="M40 64l48-48" class="animation-delay-0 animation-duration-10 animate-stroke stroke-length-102"/><path d="M40 64l48 48" class="animation-delay-0 animation-duration-10 animate-stroke stroke-length-102"/></g>';
|
|
|
|
const custom: FullIconCustomisations = mergeCustomisations(
|
|
defaults,
|
|
{}
|
|
);
|
|
const icon: FullIconifyIcon = fullIcon({
|
|
body: iconBody,
|
|
width: 128,
|
|
height: 128,
|
|
hFlip: true,
|
|
});
|
|
const expected: IconifyIconBuildResult = {
|
|
attributes: {
|
|
width: '1em',
|
|
height: '1em',
|
|
preserveAspectRatio: 'xMidYMid meet',
|
|
viewBox: '0 0 128 128',
|
|
},
|
|
body:
|
|
'<g transform="translate(128 0) scale(-1 1)">' +
|
|
iconBody +
|
|
'</g>',
|
|
};
|
|
|
|
const result = iconToSVG(icon, custom);
|
|
expect(result).toEqual(expected);
|
|
});
|
|
});
|