2
0
mirror of https://github.com/iconify/iconify.git synced 2024-10-24 01:22:04 +00:00
iconify/packages/vue2/tests/api/30-changing-props.test.js

329 lines
8.4 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, 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 = {
body:
'<path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"/>',
2021-05-07 08:28:39 +00:00
width: 24,
height: 24,
};
const iconData2 = {
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-07 08:28:39 +00:00
width: 32,
height: 32,
};
describe('Rendering icon', () => {
test('changing icon property', done => {
2021-05-07 08:28:39 +00:00
const prefix = nextPrefix();
const name = 'changing-prop';
const name2 = 'changing-prop2';
const iconName = `@${provider}:${prefix}:${name}`;
const iconName2 = `@${provider}:${prefix}:${name2}`;
const className = `iconify iconify--${prefix} iconify--${provider}`;
let onLoadCalled = ''; // Name of icon from last onLoad call
const onLoad = name => {
// onLoad should be called only once per icon
switch (name) {
// First onLoad call
case iconName:
expect(onLoadCalled).toBe('');
// Wait 1 tick, then test rendered icon
Vue.nextTick(() => {
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" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="' +
className +
'"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
);
// onLoad should have been called
expect(onLoadCalled).toBe(iconName);
wrapper.setProps({
icon: iconName2,
});
});
break;
// Second onLoad call
case iconName2:
expect(onLoadCalled).toBe(iconName);
// Wait 1 tick, then test rendered icon
Vue.nextTick(() => {
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" 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>'
);
// onLoad should have been called for second icon
expect(onLoadCalled).toBe(iconName2);
done();
});
break;
default:
throw new Error(`Unexpected onLoad('${name}') call`);
}
onLoadCalled = name;
};
2021-05-07 08:28:39 +00:00
mockAPIData({
type: 'icons',
2021-05-07 08:28:39 +00:00
provider,
prefix,
response: {
prefix,
icons: {
[name]: iconData,
},
},
delay: next => {
2021-05-07 08:28:39 +00:00
// Icon should not have loaded yet
expect(iconExists(iconName)).toBe(false);
2021-05-07 08:28:39 +00:00
// onLoad should not have been called yet
expect(onLoadCalled).toBe('');
2021-05-07 08:28:39 +00:00
// Send icon data
next();
// Make sure icon data is available
expect(iconExists(iconName)).toBe(true);
2021-05-07 08:28:39 +00:00
},
});
mockAPIData({
type: 'icons',
2021-05-07 08:28:39 +00:00
provider,
prefix,
response: {
prefix,
icons: {
[name2]: iconData2,
},
},
delay: next => {
2021-05-07 08:28:39 +00:00
// Icon should not have loaded yet
expect(iconExists(iconName2)).toBe(false);
2021-05-07 08:28:39 +00:00
// onLoad should have been called only once for previous icon
expect(onLoadCalled).toBe(iconName);
2021-05-07 08:28:39 +00:00
// Send icon data
next();
// Make sure icon data is available
expect(iconExists(iconName2)).toBe(true);
2021-05-07 08:28:39 +00:00
},
});
// Check if icon has been loaded
expect(iconExists(iconName)).toBe(false);
2021-05-07 08:28:39 +00:00
// Render component
const wrapper = mount(Icon, {
propsData: {
icon: iconName,
onLoad,
2021-05-07 08:28:39 +00:00
},
});
// Should render placeholder
expect(wrapper.html()).toBe(defaultIconResult);
// onLoad should not have been called yet
expect(onLoadCalled).toBe('');
2021-05-07 08:28:39 +00:00
});
test('changing icon property while loading', done => {
2021-05-07 08:28:39 +00:00
const prefix = nextPrefix();
const name = 'changing-prop';
const name2 = 'changing-prop2';
const iconName = `@${provider}:${prefix}:${name}`;
const iconName2 = `@${provider}:${prefix}:${name2}`;
const className = `iconify iconify--${prefix} iconify--${provider}`;
2021-05-07 08:28:39 +00:00
let isSync = true;
const onLoad = name => {
switch (name) {
case iconName:
done('onLoad should not be called for initial icon');
break;
case iconName2:
// Wait 1 tick, then test rendered icon
Vue.nextTick(() => {
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" 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>'
);
done();
});
break;
default:
throw new Error(`Unexpected onLoad('${name}') call`);
}
};
2021-05-07 08:28:39 +00:00
mockAPIData({
type: 'icons',
2021-05-07 08:28:39 +00:00
provider,
prefix,
response: {
prefix,
icons: {
[name]: iconData,
},
},
delay: next => {
2021-05-07 08:28:39 +00:00
// Should have been called asynchronously, which means icon name has changed
expect(isSync).toBe(false);
2021-05-07 08:28:39 +00:00
// Send icon data
next();
},
});
mockAPIData({
type: 'icons',
2021-05-07 08:28:39 +00:00
provider,
prefix,
response: {
prefix,
icons: {
[name2]: iconData2,
},
},
delay: next => {
2021-05-07 08:28:39 +00:00
// Should have been called asynchronously
expect(isSync).toBe(false);
2021-05-07 08:28:39 +00:00
// Icon should not have loaded yet
expect(iconExists(iconName2)).toBe(false);
2021-05-07 08:28:39 +00:00
// Send icon data
next();
// Test it again
expect(iconExists(iconName2)).toBe(true);
2021-05-07 08:28:39 +00:00
},
});
// Check if icon has been loaded
expect(iconExists(iconName)).toBe(false);
2021-05-07 08:28:39 +00:00
// Render component
const wrapper = mount(Icon, {
propsData: {
icon: iconName,
onLoad,
2021-05-07 08:28:39 +00:00
},
});
// Should render placeholder
expect(wrapper.html()).toBe(defaultIconResult);
2021-05-07 08:28:39 +00:00
// Change icon name
wrapper.setProps({
icon: iconName2,
});
// Async
isSync = false;
});
test('changing multiple properties', done => {
2021-05-07 08:28:39 +00:00
const prefix = nextPrefix();
const name = 'multiple-props';
const iconName = `@${provider}:${prefix}:${name}`;
const className = `iconify iconify--${prefix} iconify--${provider}`;
2021-05-07 08:28:39 +00:00
const onLoad = name => {
expect(name).toBe(iconName);
// Wait 1 tick, test rendered icon
Vue.nextTick(() => {
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" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="' +
className +
'"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
);
// Add horizontal flip and style
wrapper.setProps({
icon: iconName,
hFlip: true,
// Vue 2 issue: changing style in unit test doesn't work, so changing color
// TODO: test changing style in live demo to see if its a unit test bug or component issue
color: 'red',
});
// Wait for 1 tick and test again
Vue.nextTick(() => {
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" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="' +
className +
'" style="color: red;"><g transform="translate(24 0) scale(-1 1)"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></g></svg>'
);
done();
});
});
};
2021-05-07 08:28:39 +00:00
mockAPIData({
type: 'icons',
2021-05-07 08:28:39 +00:00
provider,
prefix,
response: {
prefix,
icons: {
[name]: iconData,
},
},
delay: next => {
2021-05-07 08:28:39 +00:00
// Icon should not have loaded yet
expect(iconExists(iconName)).toBe(false);
2021-05-07 08:28:39 +00:00
// Send icon data
next();
// Make sure icon was loaded
expect(iconExists(iconName)).toBe(true);
2021-05-07 08:28:39 +00:00
},
});
// Check if icon has been loaded
expect(iconExists(iconName)).toBe(false);
2021-05-07 08:28:39 +00:00
// Render component with placeholder text
const wrapper = mount(Icon, {
propsData: {
icon: iconName,
onLoad,
2021-05-07 08:28:39 +00:00
},
});
// Should be empty
expect(wrapper.html()).toBe(defaultIconResult);
2021-05-07 08:28:39 +00:00
});
});