2021-05-01 20:38:56 +00:00
|
|
|
import { render } from '@testing-library/svelte';
|
2021-05-14 18:39:12 +00:00
|
|
|
import { iconExists } from '../../dist/';
|
2021-05-01 20:38:56 +00:00
|
|
|
import { mockAPIData } from '@iconify/core/lib/api/modules/mock';
|
|
|
|
import { provider, nextPrefix } from './load';
|
|
|
|
import ChangeIcon from './fixtures/ChangeIcon.svelte';
|
|
|
|
import ChangeProps from './fixtures/ChangeProps.svelte';
|
|
|
|
|
|
|
|
const iconData = {
|
2021-05-13 12:46:50 +00:00
|
|
|
body: '<path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"/>',
|
2021-05-01 20:38:56 +00:00
|
|
|
width: 24,
|
|
|
|
height: 24,
|
|
|
|
};
|
|
|
|
|
|
|
|
const iconData2 = {
|
2021-05-13 12:46:50 +00:00
|
|
|
body: '<path d="M19.031 4.281l-11 11l-.687.719l.687.719l11 11l1.438-1.438L10.187 16L20.47 5.719z" fill="currentColor"/>',
|
2021-05-01 20:38:56 +00:00
|
|
|
width: 32,
|
|
|
|
height: 32,
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('Rendering icon', () => {
|
|
|
|
test('changing icon property', (done) => {
|
|
|
|
const prefix = nextPrefix();
|
|
|
|
const name = 'changing-prop';
|
|
|
|
const name2 = 'changing-prop2';
|
|
|
|
const iconName = `@${provider}:${prefix}:${name}`;
|
|
|
|
const iconName2 = `@${provider}:${prefix}:${name2}`;
|
2021-05-13 12:46:50 +00:00
|
|
|
const className = `iconify iconify--${prefix} iconify--${provider}`;
|
2021-05-10 15:29:30 +00:00
|
|
|
let onLoadCalled = ''; // Name of icon from last onLoad call
|
2021-05-01 20:38:56 +00:00
|
|
|
let triggerSwap;
|
|
|
|
|
|
|
|
mockAPIData({
|
|
|
|
provider,
|
|
|
|
prefix,
|
|
|
|
response: {
|
|
|
|
prefix,
|
|
|
|
icons: {
|
|
|
|
[name]: iconData,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
delay: (next) => {
|
|
|
|
// Fixture callback should have been called
|
|
|
|
expect(typeof triggerSwap).toEqual('function');
|
|
|
|
|
|
|
|
// Icon should not have loaded yet
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
2021-05-10 15:29:30 +00:00
|
|
|
// onLoad should not have been called yet
|
|
|
|
expect(onLoadCalled).toEqual('');
|
|
|
|
|
2021-05-01 20:38:56 +00:00
|
|
|
// Send icon data
|
|
|
|
next();
|
|
|
|
|
|
|
|
// Test it again
|
|
|
|
expect(iconExists(iconName)).toEqual(true);
|
|
|
|
|
|
|
|
// Check if state was changed
|
|
|
|
// Wrapped in double setTimeout() because re-render takes 2 ticks
|
|
|
|
setTimeout(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
const node = component.container.querySelector('svg');
|
|
|
|
const html = node.parentNode.innerHTML;
|
|
|
|
|
|
|
|
// Check HTML
|
|
|
|
expect(html).toEqual(
|
2021-05-13 12:46:50 +00:00
|
|
|
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="' +
|
|
|
|
className +
|
|
|
|
'"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
|
2021-05-01 20:38:56 +00:00
|
|
|
);
|
|
|
|
|
2021-05-10 15:29:30 +00:00
|
|
|
// onLoad should have been called
|
|
|
|
expect(onLoadCalled).toEqual(iconName);
|
|
|
|
|
2021-05-01 20:38:56 +00:00
|
|
|
// Change property
|
|
|
|
triggerSwap();
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
mockAPIData({
|
|
|
|
provider,
|
|
|
|
prefix,
|
|
|
|
response: {
|
|
|
|
prefix,
|
|
|
|
icons: {
|
|
|
|
[name2]: iconData2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
delay: (next) => {
|
|
|
|
// Icon should not have loaded yet
|
|
|
|
expect(iconExists(iconName2)).toEqual(false);
|
|
|
|
|
2021-05-10 15:29:30 +00:00
|
|
|
// onLoad should have been called only once for previous icon
|
|
|
|
expect(onLoadCalled).toEqual(iconName);
|
|
|
|
|
2021-05-01 20:38:56 +00:00
|
|
|
// Send icon data
|
|
|
|
next();
|
|
|
|
|
|
|
|
// Test it again
|
|
|
|
expect(iconExists(iconName2)).toEqual(true);
|
|
|
|
|
|
|
|
// Check if state was changed
|
|
|
|
// Wrapped in double setTimeout() because re-render takes 2 ticks
|
|
|
|
setTimeout(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
const node = component.container.querySelector('svg');
|
|
|
|
const html = node.parentNode.innerHTML;
|
|
|
|
|
|
|
|
// Check HTML
|
|
|
|
expect(html).toEqual(
|
2021-05-13 12:46:50 +00:00
|
|
|
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" class="' +
|
|
|
|
className +
|
|
|
|
'"><path d="M19.031 4.281l-11 11l-.687.719l.687.719l11 11l1.438-1.438L10.187 16L20.47 5.719z" fill="currentColor"></path></svg>'
|
2021-05-01 20:38:56 +00:00
|
|
|
);
|
|
|
|
|
2021-05-10 15:29:30 +00:00
|
|
|
// onLoad should have been called for second icon
|
|
|
|
expect(onLoadCalled).toEqual(iconName2);
|
|
|
|
|
2021-05-01 20:38:56 +00:00
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check if icon has been loaded
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Render component
|
|
|
|
const component = render(ChangeIcon, {
|
|
|
|
icon1: iconName,
|
|
|
|
icon2: iconName2,
|
|
|
|
expose: (swap) => {
|
|
|
|
triggerSwap = swap;
|
|
|
|
},
|
2021-05-10 15:29:30 +00:00
|
|
|
onLoad: (name) => {
|
|
|
|
// onLoad should be called only once per icon
|
|
|
|
switch (name) {
|
|
|
|
// First onLoad call
|
|
|
|
case iconName:
|
|
|
|
expect(onLoadCalled).toEqual('');
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Second onLoad call
|
|
|
|
case iconName2:
|
|
|
|
expect(onLoadCalled).toEqual(iconName);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw new Error(`Unexpected onLoad('${name}') call`);
|
|
|
|
}
|
|
|
|
onLoadCalled = name;
|
|
|
|
},
|
2021-05-01 20:38:56 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Should render empty icon
|
|
|
|
const html = component.container.innerHTML;
|
|
|
|
expect(html).toEqual('<div></div>');
|
2021-05-10 15:29:30 +00:00
|
|
|
|
|
|
|
// onLoad should not have been called yet
|
|
|
|
expect(onLoadCalled).toEqual('');
|
2021-05-01 20:38:56 +00:00
|
|
|
});
|
|
|
|
|
2021-05-02 17:47:48 +00:00
|
|
|
test('changing icon property while loading', (done) => {
|
|
|
|
const prefix = nextPrefix();
|
|
|
|
const name = 'changing-prop';
|
|
|
|
const name2 = 'changing-prop2';
|
|
|
|
const iconName = `@${provider}:${prefix}:${name}`;
|
|
|
|
const iconName2 = `@${provider}:${prefix}:${name2}`;
|
2021-05-13 12:46:50 +00:00
|
|
|
const className = `iconify iconify--${prefix} iconify--${provider}`;
|
2021-05-10 15:29:30 +00:00
|
|
|
let onLoadCalled = ''; // Name of icon from last onLoad call
|
2021-05-02 17:47:48 +00:00
|
|
|
let isSync = true;
|
|
|
|
let triggerSwap;
|
|
|
|
|
|
|
|
mockAPIData({
|
|
|
|
provider,
|
|
|
|
prefix,
|
|
|
|
response: {
|
|
|
|
prefix,
|
|
|
|
icons: {
|
|
|
|
[name]: iconData,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
delay: (next) => {
|
|
|
|
// Should have been called asynchronously
|
|
|
|
expect(isSync).toEqual(false);
|
|
|
|
|
|
|
|
// Icon should not have loaded yet
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Send icon data
|
|
|
|
next();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
mockAPIData({
|
|
|
|
provider,
|
|
|
|
prefix,
|
|
|
|
response: {
|
|
|
|
prefix,
|
|
|
|
icons: {
|
|
|
|
[name2]: iconData2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
delay: (next) => {
|
|
|
|
// Should have been called asynchronously
|
|
|
|
expect(isSync).toEqual(false);
|
|
|
|
|
|
|
|
// Icon should not have loaded yet
|
|
|
|
expect(iconExists(iconName2)).toEqual(false);
|
|
|
|
|
|
|
|
// Send icon data
|
|
|
|
next();
|
|
|
|
|
|
|
|
// Test it again
|
|
|
|
expect(iconExists(iconName2)).toEqual(true);
|
|
|
|
|
|
|
|
// Check if state was changed
|
|
|
|
// Wrapped in double setTimeout() because re-render takes 2 ticks
|
|
|
|
setTimeout(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
const node = component.container.querySelector('svg');
|
|
|
|
const html = node.parentNode.innerHTML;
|
|
|
|
|
|
|
|
// Check HTML
|
|
|
|
expect(html).toEqual(
|
2021-05-13 12:46:50 +00:00
|
|
|
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" class="' +
|
|
|
|
className +
|
|
|
|
'"><path d="M19.031 4.281l-11 11l-.687.719l.687.719l11 11l1.438-1.438L10.187 16L20.47 5.719z" fill="currentColor"></path></svg>'
|
2021-05-02 17:47:48 +00:00
|
|
|
);
|
|
|
|
|
2021-05-10 15:29:30 +00:00
|
|
|
// onLoad should have been called for second icon
|
|
|
|
expect(onLoadCalled).toEqual(iconName2);
|
|
|
|
|
2021-05-02 17:47:48 +00:00
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check if icon has been loaded
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Render component
|
|
|
|
const component = render(ChangeIcon, {
|
|
|
|
icon1: iconName,
|
|
|
|
icon2: iconName2,
|
|
|
|
expose: (swap) => {
|
|
|
|
triggerSwap = swap;
|
|
|
|
},
|
2021-05-10 15:29:30 +00:00
|
|
|
onLoad: (name) => {
|
|
|
|
// onLoad should be called only for second icon
|
|
|
|
expect(name).toEqual(iconName2);
|
|
|
|
onLoadCalled = name;
|
|
|
|
},
|
2021-05-02 17:47:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Should render empty icon
|
|
|
|
const html = component.container.innerHTML;
|
|
|
|
expect(html).toEqual('<div></div>');
|
|
|
|
|
|
|
|
// Fixture callback should have been called
|
|
|
|
expect(typeof triggerSwap).toEqual('function');
|
|
|
|
|
|
|
|
// Change property
|
|
|
|
triggerSwap();
|
|
|
|
|
|
|
|
// Async
|
|
|
|
isSync = false;
|
2021-05-10 15:29:30 +00:00
|
|
|
|
|
|
|
// onLoad should not have been called yet
|
|
|
|
expect(onLoadCalled).toEqual('');
|
2021-05-02 17:47:48 +00:00
|
|
|
});
|
|
|
|
|
2021-05-01 20:38:56 +00:00
|
|
|
test('changing multiple properties', (done) => {
|
|
|
|
const prefix = nextPrefix();
|
|
|
|
const name = 'multiple-props';
|
|
|
|
const iconName = `@${provider}:${prefix}:${name}`;
|
2021-05-13 12:46:50 +00:00
|
|
|
const className = `iconify iconify--${prefix} iconify--${provider}`;
|
2021-05-10 15:29:30 +00:00
|
|
|
let onLoadCalled = false;
|
2021-05-01 20:38:56 +00:00
|
|
|
let triggerSwap;
|
|
|
|
|
|
|
|
mockAPIData({
|
|
|
|
provider,
|
|
|
|
prefix,
|
|
|
|
response: {
|
|
|
|
prefix,
|
|
|
|
icons: {
|
|
|
|
[name]: iconData,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
delay: (next) => {
|
|
|
|
// Fixture callback should have been called
|
|
|
|
expect(typeof triggerSwap).toEqual('function');
|
|
|
|
|
|
|
|
// Icon should not have loaded yet
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Send icon data
|
|
|
|
next();
|
|
|
|
|
|
|
|
// Test it again
|
|
|
|
expect(iconExists(iconName)).toEqual(true);
|
|
|
|
|
|
|
|
// Check if state was changed
|
|
|
|
// Wrapped in double setTimeout() because re-render takes 2 ticks
|
|
|
|
setTimeout(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
const node = component.container.querySelector('svg');
|
|
|
|
const html = node.parentNode.innerHTML;
|
|
|
|
|
|
|
|
// Check HTML
|
|
|
|
expect(html).toEqual(
|
2021-05-13 12:46:50 +00:00
|
|
|
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="' +
|
|
|
|
className +
|
|
|
|
'"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
|
2021-05-01 20:38:56 +00:00
|
|
|
);
|
|
|
|
|
2021-05-10 15:29:30 +00:00
|
|
|
// onLoad should have been called
|
|
|
|
expect(onLoadCalled).toEqual(true);
|
|
|
|
|
2021-05-01 20:38:56 +00:00
|
|
|
// Add horizontal flip and style
|
|
|
|
triggerSwap();
|
|
|
|
|
|
|
|
// Wait for component to re-render
|
|
|
|
setTimeout(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
// Check HTML again
|
2021-05-13 12:46:50 +00:00
|
|
|
const node =
|
|
|
|
component.container.querySelector('svg');
|
2021-05-01 20:38:56 +00:00
|
|
|
const html = node.parentNode.innerHTML;
|
|
|
|
|
|
|
|
expect(html).toEqual(
|
2021-05-13 12:46:50 +00:00
|
|
|
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="' +
|
|
|
|
className +
|
|
|
|
'"><g transform="translate(24 0) scale(-1 1)"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></g></svg>'
|
2021-05-01 20:38:56 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check if icon has been loaded
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Render component
|
|
|
|
const component = render(ChangeProps, {
|
|
|
|
icon: iconName,
|
|
|
|
expose: (swap) => {
|
|
|
|
triggerSwap = swap;
|
|
|
|
},
|
2021-05-10 15:29:30 +00:00
|
|
|
onLoad: (name) => {
|
|
|
|
expect(name).toEqual(iconName);
|
|
|
|
// Should be called only once
|
|
|
|
expect(onLoadCalled).toEqual(false);
|
|
|
|
onLoadCalled = true;
|
|
|
|
},
|
2021-05-01 20:38:56 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Should render empty icon
|
|
|
|
const html = component.container.innerHTML;
|
|
|
|
expect(html).toEqual('<div></div>');
|
2021-05-10 15:29:30 +00:00
|
|
|
|
|
|
|
// onLoad should not have been called yet
|
|
|
|
expect(onLoadCalled).toEqual(false);
|
2021-05-01 20:38:56 +00:00
|
|
|
});
|
|
|
|
});
|