2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-29 13:39:08 +00:00
iconify/components/svelte/tests/offline/20-transformations.test.ts

137 lines
3.7 KiB
TypeScript
Raw Normal View History

import { describe, test, expect } from 'vitest';
2021-04-30 09:51:31 +00:00
import { render } from '@testing-library/svelte';
import Icon from '../../offline';
2021-04-30 09:51:31 +00:00
const iconData = {
body: '<path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"/>',
2021-04-30 09:51:31 +00:00
width: 24,
height: 32,
};
describe('Rotation', () => {
test('number', () => {
const component = render(Icon, { icon: iconData, rotate: 1 });
const node = component.container.querySelector('svg')!;
2021-04-30 09:51:31 +00:00
// Find first child node
const child = node.childNodes[0] as SVGGElement;
expect(child.tagName).toBe('g');
expect(child.getAttribute('transform')).toBe('rotate(90 16 16)');
2021-04-30 09:51:31 +00:00
});
test('string', () => {
const component = render(Icon, {
icon: iconData,
// @ts-expect-error
rotate: '180deg',
});
const node = component.container.querySelector('svg')!;
2021-04-30 09:51:31 +00:00
// Find first child node
const child = node.childNodes[0] as SVGGElement;
expect(child.tagName).toBe('g');
expect(child.getAttribute('transform')).toBe('rotate(180 12 16)');
2021-04-30 09:51:31 +00:00
});
});
describe('Flip', () => {
test('boolean', () => {
const component = render(Icon, { icon: iconData, hFlip: true });
const node = component.container.querySelector('svg')!;
2021-04-30 09:51:31 +00:00
// Find first child node
const child = node.childNodes[0] as SVGGElement;
expect(child.tagName).toBe('g');
expect(child.getAttribute('transform')).toBe(
2021-04-30 09:51:31 +00:00
'translate(24 0) scale(-1 1)'
);
});
test('string', () => {
const component = render(Icon, { icon: iconData, flip: 'vertical' });
const node = component.container.querySelector('svg')!;
2021-04-30 09:51:31 +00:00
// Find first child node
const child = node.childNodes[0] as SVGGElement;
expect(child.tagName).toBe('g');
expect(child.getAttribute('transform')).toBe(
2021-04-30 09:51:31 +00:00
'translate(0 32) scale(1 -1)'
);
});
test('string and boolean', () => {
const component = render(Icon, {
icon: iconData,
flip: 'horizontal',
vFlip: true,
});
const node = component.container.querySelector('svg')!;
2021-04-30 09:51:31 +00:00
// Find first child node
const child = node.childNodes[0] as SVGGElement;
expect(child.tagName).toBe('g');
2021-04-30 09:51:31 +00:00
// horizontal + vertical = 180deg rotation
expect(child.getAttribute('transform')).toBe('rotate(180 12 16)');
2021-04-30 09:51:31 +00:00
});
test('string for boolean attribute', () => {
const component = render(Icon, {
icon: iconData,
// @ts-expect-error
2021-04-30 09:51:31 +00:00
hFlip: 'true',
});
const node = component.container.querySelector('svg')!;
2021-04-30 09:51:31 +00:00
// Find first child node
const child = node.childNodes[0] as SVGGElement;
expect(child.tagName).toBe('g');
expect(child.getAttribute('transform')).toBe(
2021-04-30 09:51:31 +00:00
'translate(24 0) scale(-1 1)'
);
});
test('shorthand and boolean', () => {
// 'flip' is processed after 'hFlip' because of order of elements in object, overwriting value
2021-04-30 09:51:31 +00:00
const component = render(Icon, {
icon: iconData,
hFlip: false,
flip: 'horizontal',
2021-04-30 09:51:31 +00:00
});
const node = component.container.querySelector('svg')!;
2021-04-30 09:51:31 +00:00
// Find first child node
const child = node.childNodes[0] as SVGGElement;
expect(child.tagName).toBe('g');
expect(child.getAttribute('transform')).toBe(
2021-04-30 09:51:31 +00:00
'translate(24 0) scale(-1 1)'
);
});
test('shorthand and boolean as string', () => {
const component = render(Icon, {
icon: iconData,
flip: 'vertical',
hFlip: true,
});
const node = component.container.querySelector('svg')!;
2021-04-30 09:51:31 +00:00
// Find first child node
const child = node.childNodes[0] as SVGGElement;
expect(child.tagName).toBe('g');
expect(child.getAttribute('transform')).toBe('rotate(180 12 16)');
2021-04-30 09:51:31 +00:00
});
test('wrong case', () => {
const component = render(Icon, {
icon: iconData,
// @ts-expect-error
2021-04-30 09:51:31 +00:00
vflip: true,
});
const node = component.container.querySelector('svg')!;
2021-04-30 09:51:31 +00:00
// Find first child node
const child = node.childNodes[0] as SVGGElement;
expect(child.tagName).toBe('path');
2021-04-30 09:51:31 +00:00
});
});