mirror of
https://github.com/iconify/iconify.git
synced 2024-11-08 14:20:57 +00:00
88 lines
2.6 KiB
TypeScript
88 lines
2.6 KiB
TypeScript
import { promises as fs } from 'fs';
|
|
import { getCustomIcon } from '../lib';
|
|
import type { IconifyLoaderOptions } from '../lib';
|
|
|
|
const fixturesDir = './tests/fixtures';
|
|
|
|
describe('Testing getCustomIcon', () => {
|
|
test('CustomIconLoader', async () => {
|
|
const svg = await fs.readFile(fixturesDir + '/circle.svg', 'utf8');
|
|
const result = await getCustomIcon(() => svg, 'a', 'b');
|
|
expect(svg).toEqual(result);
|
|
});
|
|
|
|
test('CustomIconLoader without xmlns', async () => {
|
|
const svg =
|
|
'<svg viewBox="0 0 120 120"><circle cx="60" cy="60" r="50"/></svg>';
|
|
const result = await getCustomIcon(() => svg, 'a', 'b', {
|
|
addXmlNs: true,
|
|
});
|
|
expect(result).toEqual(
|
|
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><circle cx="60" cy="60" r="50"/></svg>'
|
|
);
|
|
});
|
|
|
|
test('CustomIconLoader should apply trim', async () => {
|
|
const svg = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120">
|
|
<circle cx="60" cy="60" r="50"/>
|
|
</svg>
|
|
`;
|
|
const result = await getCustomIcon(() => svg, 'a', 'b', {
|
|
customizations: { trimCustomSvg: true },
|
|
});
|
|
expect(result).toEqual(
|
|
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><circle cx="60" cy="60" r="50"/></svg>'
|
|
);
|
|
});
|
|
|
|
test("CustomIconLoader with transform: scale/width/height shouldn't take effect", async () => {
|
|
const svg = await fs.readFile(fixturesDir + '/circle.svg', 'utf8');
|
|
const options: IconifyLoaderOptions = {
|
|
scale: 2,
|
|
customizations: {
|
|
additionalProps: {
|
|
width: '4em',
|
|
height: '4em',
|
|
},
|
|
transform(svg) {
|
|
return svg.replace(
|
|
'<svg ',
|
|
'<svg width="1em" height="1em" '
|
|
);
|
|
},
|
|
},
|
|
usedProps: {},
|
|
};
|
|
const result = await getCustomIcon(() => svg, 'a', 'b', options);
|
|
expect(result && result.indexOf('width="1em"') > -1).toBeTruthy();
|
|
expect(result && result.indexOf('height="1em"') > -1).toBeTruthy();
|
|
|
|
expect(options.usedProps).toBeTruthy();
|
|
|
|
const usedProps = options.usedProps as Record<string, string>;
|
|
expect(usedProps).toHaveProperty('width');
|
|
expect(usedProps).toHaveProperty('height');
|
|
expect(usedProps.width).toEqual('4em');
|
|
expect(usedProps.height).toEqual('4em');
|
|
});
|
|
|
|
test('Icon with XML heading', async () => {
|
|
// Intercept console.warn
|
|
let warned = false;
|
|
const warn = console.warn;
|
|
console.warn = (/*...args*/) => {
|
|
// warn.apply(this, args);
|
|
warned = true;
|
|
};
|
|
|
|
const svg = await fs.readFile(fixturesDir + '/1f3eb.svg', 'utf8');
|
|
const result = await getCustomIcon(() => svg, 'a', 'b');
|
|
|
|
// Restore console.warn
|
|
console.warn = warn;
|
|
|
|
expect(svg).toEqual(result);
|
|
expect(warned).toEqual(true);
|
|
});
|
|
});
|