2
0
mirror of https://github.com/iconify/iconify.git synced 2024-10-23 17:12:03 +00:00
iconify/components/svelte/tests/api/20-rendering-from-api.test.ts

222 lines
5.6 KiB
TypeScript
Raw Normal View History

/**
* @jest-environment jsdom
*/
2022-02-28 09:48:59 +00:00
import { tick } from 'svelte';
2021-05-01 20:38:56 +00:00
import { render } from '@testing-library/svelte';
2022-12-25 22:32:45 +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 = {
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', () => {
2022-12-25 22:32:45 +00:00
test('rendering icon after loading it', () => {
return new Promise((fulfill, reject) => {
const prefix = nextPrefix();
const name = 'render-test';
const iconName = `@${provider}:${prefix}:${name}`;
const className = `iconify iconify--${prefix} iconify--${provider}`;
let onLoadCalled = false;
mockAPIData({
type: 'icons',
provider,
2021-05-01 20:38:56 +00:00
prefix,
2022-12-25 22:32:45 +00:00
response: {
prefix,
icons: {
[name]: iconData,
},
2021-05-01 20:38:56 +00:00
},
2022-12-25 22:32:45 +00:00
});
// Check if icon has been loaded
expect(iconExists(iconName)).toBe(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)).toBe(true);
2021-05-01 20:38:56 +00:00
2022-12-25 22:32:45 +00:00
// Render component
const component = render(Icon, {
icon: iconName,
onLoad: (name: string) => {
expect(name).toBe(iconName);
expect(onLoadCalled).toBe(false);
onLoadCalled = true;
},
});
const node = component.container.querySelector('svg')!;
const html = (node.parentNode as HTMLDivElement).innerHTML;
// Check HTML immediately
expect(html).toBe(
'<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" width="1em" height="1em" viewBox="0 0 24 24" class="' +
2022-12-25 22:32:45 +00:00
className +
'"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
);
// Make sure onLoad has been called
expect(onLoadCalled).toBe(true);
fulfill(true);
});
});
});
2021-05-01 20:38:56 +00:00
2022-12-25 22:32:45 +00:00
test('rendering icon before loading it', () => {
return new Promise((fulfill, reject) => {
const prefix = nextPrefix();
const name = 'mock-test';
const iconName = `@${provider}:${prefix}:${name}`;
const className = `iconify iconify--${prefix} iconify--${provider}`;
let onLoadCalled = false;
mockAPIData({
type: 'icons',
provider,
prefix,
response: {
2021-05-01 20:38:56 +00:00
prefix,
2022-12-25 22:32:45 +00:00
icons: {
[name]: iconData,
},
2021-05-01 20:38:56 +00:00
},
2022-12-25 22:32:45 +00:00
delay: (next) => {
// Icon should not have loaded yet
expect(iconExists(iconName)).toBe(false);
// onLoad should not have been called yet
expect(onLoadCalled).toBe(false);
// Send icon data
next();
// Test it again
expect(iconExists(iconName)).toBe(true);
},
});
// Check if icon has been loaded
expect(iconExists(iconName)).toBe(false);
2021-05-01 20:38:56 +00:00
// Render component
const component = render(Icon, {
icon: iconName,
2022-12-25 22:32:45 +00:00
// Also testing simple class
class: 'test',
onLoad: (name: string) => {
expect(name).toBe(iconName);
expect(onLoadCalled).toBe(false);
onLoadCalled = true;
2022-12-25 22:32:45 +00:00
// Check component on next tick
tick()
.then(() => {
const node =
component.container.querySelector('svg')!;
const html = (node.parentNode as HTMLDivElement)
.innerHTML;
// Check HTML
expect(html).toBe(
'<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" class="test ' +
2022-12-25 22:32:45 +00:00
className +
'" width="1em" height="1em" viewBox="0 0 24 24"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
);
fulfill(true);
})
.catch(reject);
},
});
2021-05-01 20:38:56 +00:00
2022-12-25 22:32:45 +00:00
// Should render empty icon
const html = component.container.innerHTML;
expect(html.replace(/<!--(.*?)-->/gm, '')).toBe('<div></div>');
2021-05-01 20:38:56 +00:00
2022-12-25 22:32:45 +00:00
// onLoad should not have been called yet
expect(onLoadCalled).toBe(false);
2021-05-01 20:38:56 +00:00
});
});
2022-12-25 22:32:45 +00:00
test('missing icon', () => {
return new Promise((fulfill, reject) => {
const prefix = nextPrefix();
const name = 'missing-icon';
const iconName = `@${provider}:${prefix}:${name}`;
mockAPIData({
type: 'icons',
provider,
2021-05-01 20:38:56 +00:00
prefix,
2022-12-25 22:32:45 +00:00
response: 404,
delay: (next) => {
// Icon should not have loaded yet
expect(iconExists(iconName)).toBe(false);
// Send icon data
next();
// Test it again
expect(iconExists(iconName)).toBe(false);
// Check if state was changed on next few ticks
tick()
.then(() => {
const html = component.container.innerHTML;
expect(html.replace(/<!--(.*?)-->/gm, '')).toBe(
'<div></div>'
);
return tick();
})
.then(() => {
const html = component.container.innerHTML;
expect(html.replace(/<!--(.*?)-->/gm, '')).toBe(
'<div></div>'
);
return tick();
})
.then(() => {
const html = component.container.innerHTML;
expect(html.replace(/<!--(.*?)-->/gm, '')).toBe(
'<div></div>'
);
fulfill(true);
})
.catch(reject);
2021-05-01 20:38:56 +00:00
},
2022-12-25 22:32:45 +00:00
});
2021-05-01 20:38:56 +00:00
2022-12-25 22:32:45 +00:00
// Check if icon has been loaded
expect(iconExists(iconName)).toBe(false);
2021-05-01 20:38:56 +00:00
2022-12-25 22:32:45 +00:00
// Render component
const component = render(Icon, {
icon: iconName,
onLoad: () => {
throw new Error('onLoad called for empty icon!');
},
});
2021-05-01 20:38:56 +00:00
2022-12-25 22:32:45 +00:00
// Should render empty icon
const html = component.container.innerHTML;
expect(html.replace(/<!--(.*?)-->/gm, '')).toBe('<div></div>');
});
2021-05-01 20:38:56 +00:00
});
});