2021-05-01 20:38:56 +00:00
|
|
|
import { render } from '@testing-library/svelte';
|
2021-05-14 18:39:12 +00:00
|
|
|
import Icon, { loadIcons, 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';
|
|
|
|
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('Rendering icon', () => {
|
|
|
|
test('rendering icon after loading it', (done) => {
|
|
|
|
const prefix = nextPrefix();
|
|
|
|
const name = 'render-test';
|
|
|
|
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
|
|
|
mockAPIData({
|
2021-09-05 16:09:25 +00:00
|
|
|
type: 'icons',
|
2021-05-01 20:38:56 +00:00
|
|
|
provider,
|
|
|
|
prefix,
|
|
|
|
response: {
|
|
|
|
prefix,
|
|
|
|
icons: {
|
|
|
|
[name]: iconData,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check if icon has been loaded
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Load icon
|
|
|
|
loadIcons([iconName], (loaded, missing, pending) => {
|
|
|
|
// Make sure icon has been loaded
|
|
|
|
expect(loaded).toMatchObject([
|
|
|
|
{
|
|
|
|
provider,
|
|
|
|
prefix,
|
|
|
|
name,
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
expect(missing).toMatchObject([]);
|
|
|
|
expect(pending).toMatchObject([]);
|
|
|
|
expect(iconExists(iconName)).toEqual(true);
|
|
|
|
|
|
|
|
// Render component
|
2021-05-10 15:29:30 +00:00
|
|
|
const component = render(Icon, {
|
|
|
|
icon: iconName,
|
|
|
|
onLoad: (name) => {
|
|
|
|
expect(name).toEqual(iconName);
|
|
|
|
expect(onLoadCalled).toEqual(false);
|
|
|
|
onLoadCalled = true;
|
|
|
|
},
|
|
|
|
});
|
2021-05-01 20:38:56 +00:00
|
|
|
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
|
|
|
// Make sure onLoad has been called
|
|
|
|
expect(onLoadCalled).toEqual(true);
|
|
|
|
|
2021-05-01 20:38:56 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('rendering icon before loading it', (done) => {
|
|
|
|
const prefix = nextPrefix();
|
|
|
|
const name = 'mock-test';
|
|
|
|
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
|
|
|
mockAPIData({
|
2021-09-05 16:09:25 +00:00
|
|
|
type: 'icons',
|
2021-05-01 20:38:56 +00:00
|
|
|
provider,
|
|
|
|
prefix,
|
|
|
|
response: {
|
|
|
|
prefix,
|
|
|
|
icons: {
|
|
|
|
[name]: iconData,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
delay: (next) => {
|
|
|
|
// 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(false);
|
|
|
|
|
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" class="test ' +
|
|
|
|
className +
|
|
|
|
'" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><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
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check if icon has been loaded
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Render component
|
2021-05-10 15:29:30 +00:00
|
|
|
const component = render(Icon, {
|
|
|
|
icon: iconName,
|
2021-05-13 12:46:50 +00:00
|
|
|
// Also testing simple class
|
|
|
|
class: 'test',
|
2021-05-10 15:29:30 +00:00
|
|
|
onLoad: (name) => {
|
|
|
|
expect(name).toEqual(iconName);
|
|
|
|
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
|
|
|
});
|
|
|
|
|
|
|
|
test('missing icon', (done) => {
|
|
|
|
const prefix = nextPrefix();
|
|
|
|
const name = 'missing-icon';
|
|
|
|
const iconName = `@${provider}:${prefix}:${name}`;
|
2021-05-10 15:29:30 +00:00
|
|
|
|
2021-05-01 20:38:56 +00:00
|
|
|
mockAPIData({
|
2021-09-05 16:09:25 +00:00
|
|
|
type: 'icons',
|
2021-05-01 20:38:56 +00:00
|
|
|
provider,
|
|
|
|
prefix,
|
|
|
|
response: 404,
|
|
|
|
delay: (next) => {
|
|
|
|
// Icon should not have loaded yet
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Send icon data
|
|
|
|
next();
|
|
|
|
|
|
|
|
// Test it again
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Check if state was changed
|
|
|
|
// Wrapped in double setTimeout() because re-render takes 2 ticks
|
|
|
|
setTimeout(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
const html = component.container.innerHTML;
|
|
|
|
expect(html).toEqual('<div></div>');
|
|
|
|
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
}, 0);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check if icon has been loaded
|
|
|
|
expect(iconExists(iconName)).toEqual(false);
|
|
|
|
|
|
|
|
// Render component
|
2021-05-10 15:29:30 +00:00
|
|
|
const component = render(Icon, {
|
|
|
|
icon: iconName,
|
|
|
|
onLoad: () => {
|
|
|
|
throw new Error('onLoad called for empty icon!');
|
|
|
|
},
|
|
|
|
});
|
2021-05-01 20:38:56 +00:00
|
|
|
|
|
|
|
// Should render empty icon
|
|
|
|
const html = component.container.innerHTML;
|
|
|
|
expect(html).toEqual('<div></div>');
|
|
|
|
});
|
|
|
|
});
|