2
0
mirror of https://github.com/iconify/iconify.git synced 2024-10-24 09:32:02 +00:00
iconify/components/vue2/tests/api/20-rendering-from-api.test.js

223 lines
5.5 KiB
JavaScript
Raw Normal View History

/**
* @jest-environment jsdom
*/
import Vue from 'vue';
2021-05-07 08:28:39 +00:00
import { mount } from '@vue/test-utils';
import { Icon, loadIcons, iconExists } from '../../';
2022-03-19 11:39:02 +00:00
import { mockAPIData } from '@iconify/core/lib/api/modules/mock.cjs';
2021-05-07 08:28:39 +00:00
import { provider, nextPrefix } from './load';
import { defaultIconResult } from '../empty';
2021-05-07 08:28:39 +00:00
const iconData = {
2022-09-07 19:11:48 +00:00
body: '<path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"/>',
2021-05-07 08:28:39 +00:00
width: 24,
height: 24,
};
describe('Rendering icon', () => {
2022-09-07 19:11:48 +00:00
test('rendering icon after loading it', () => {
return new Promise((fulfill) => {
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-07 08:28:39 +00:00
prefix,
2022-09-07 19:11:48 +00:00
response: {
prefix,
icons: {
[name]: iconData,
},
2021-05-07 08:28:39 +00:00
},
2022-09-07 19:11:48 +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);
// Render component
const Wrapper = {
components: { Icon },
// Also test class string
template: `<Icon icon="${iconName}" :onLoad="onLoad" class="test" />`,
methods: {
onLoad(name) {
expect(name).toBe(iconName);
expect(onLoadCalled).toBe(false);
onLoadCalled = true;
},
},
};
const wrapper = mount(Wrapper, {});
const html = wrapper.html().replace(/\s*\n\s*/g, '');
// Check HTML on next tick
Vue.nextTick(() => {
expect(html).toBe(
'<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" viewBox="0 0 24 24" class="test ' +
className +
'"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
);
2021-05-07 08:28:39 +00:00
2022-09-07 19:11:48 +00:00
// Make sure onLoad has been called
expect(onLoadCalled).toBe(true);
2021-05-07 08:28:39 +00:00
2022-09-07 19:11:48 +00:00
fulfill(true);
});
});
});
});
test('rendering icon before loading it', () => {
return new Promise((fulfill) => {
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-07 08:28:39 +00:00
prefix,
2022-09-07 19:11:48 +00:00
icons: {
[name]: iconData,
},
2021-05-07 08:28:39 +00:00
},
2022-09-07 19:11:48 +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-07 08:28:39 +00:00
// Render component
const Wrapper = {
components: { Icon },
2022-09-07 19:11:48 +00:00
template: `<Icon icon="${iconName}" :onLoad="onLoad" :class="testClass" />`,
methods: {
onLoad(name) {
expect(name).toBe(iconName);
expect(onLoadCalled).toBe(false);
onLoadCalled = true;
2022-09-07 19:11:48 +00:00
// Test component on next tick
Vue.nextTick(() => {
// Check HTML
expect(
wrapper.html().replace(/\s*\n\s*/g, '')
).toBe(
'<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" viewBox="0 0 24 24" class="' +
className +
// 'foo' is appended because of weird Vue 2 behavior. Fixed in Vue 3
' foo"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
);
// onLoad should have been called
expect(onLoadCalled).toBe(true);
fulfill(true);
});
},
},
2022-09-07 19:11:48 +00:00
data() {
// Test dynamic class
return {
testClass: {
foo: true,
bar: false,
},
};
},
2021-05-07 08:28:39 +00:00
};
const wrapper = mount(Wrapper, {});
2022-09-07 19:11:48 +00:00
// onLoad should not have been called yet
expect(onLoadCalled).toBe(false);
2021-05-07 08:28:39 +00:00
});
});
2022-09-07 19:11:48 +00:00
test('missing icon', () => {
return new Promise((fulfill) => {
const prefix = nextPrefix();
const name = 'missing-icon';
const iconName = `@${provider}:${prefix}:${name}`;
mockAPIData({
type: 'icons',
provider,
2021-05-07 08:28:39 +00:00
prefix,
2022-09-07 19:11:48 +00:00
response: 404,
delay: (next) => {
// Icon should not have loaded yet
expect(iconExists(iconName)).toBe(false);
2021-05-07 08:28:39 +00:00
2022-09-07 19:11:48 +00:00
// Send icon data
next();
2021-05-07 08:28:39 +00:00
2022-09-07 19:11:48 +00:00
// Test it again
expect(iconExists(iconName)).toBe(false);
2021-05-07 08:28:39 +00:00
2022-09-07 19:11:48 +00:00
// Check if state was changed after few ticks
Vue.nextTick(() => {
Vue.nextTick(() => {
2022-09-07 19:11:48 +00:00
Vue.nextTick(() => {
expect(wrapper.html()).toBe(defaultIconResult);
2021-05-07 08:28:39 +00:00
2022-09-07 19:11:48 +00:00
fulfill(true);
});
});
});
2022-09-07 19:11:48 +00:00
},
});
2021-05-07 08:28:39 +00:00
2022-09-07 19:11:48 +00:00
// Check if icon has been loaded
expect(iconExists(iconName)).toBe(false);
2021-05-07 08:28:39 +00:00
2022-09-07 19:11:48 +00:00
// Render component
const Wrapper = {
components: { Icon },
template: `<Icon icon="${iconName}" :onLoad="onLoad" />`,
methods: {
onLoad() {
throw new Error('onLoad called for empty icon!');
},
},
2022-09-07 19:11:48 +00:00
};
const wrapper = mount(Wrapper, {});
2021-05-07 08:28:39 +00:00
2022-09-07 19:11:48 +00:00
// Should render empty icon
expect(wrapper.html()).toBe(defaultIconResult);
});
2021-05-07 08:28:39 +00:00
});
});