2
0
mirror of https://github.com/iconify/iconify.git synced 2024-10-23 17:12:03 +00:00
iconify/components/vue/tests/api/30-changing-props-test.ts

341 lines
8.6 KiB
TypeScript
Raw Normal View History

import { nextTick } from 'vue';
2021-05-06 08:21:39 +00:00
import { mount } from '@vue/test-utils';
import { Icon, iconExists } from '../../';
2021-05-06 08:21:39 +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-06 08:21: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-06 08:21:39 +00:00
width: 32,
height: 32,
};
describe('Rendering icon', () => {
2022-09-07 19:11:48 +00:00
test('changing icon property', () => {
return new Promise((fulfill, reject) => {
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).toEqual('');
// Wait 1 tick, then test rendered icon
nextTick()
.then(() => {
expect(
wrapper.html().replace(/\s*\n\s*/g, '')
).toEqual(
'<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 +
'"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
);
wrapper.setProps({
icon: iconName2,
});
})
.catch(reject);
break;
// Second onLoad call
case iconName2:
expect(onLoadCalled).toEqual(iconName);
// Wait 1 tick, then test rendered icon
nextTick()
.then(() => {
expect(
wrapper.html().replace(/\s*\n\s*/g, '')
).toEqual(
'<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 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>'
);
fulfill(true);
})
.catch(reject);
break;
default:
throw new Error(`Unexpected onLoad('${name}') call`);
}
onLoadCalled = name;
};
2022-09-07 19:11:48 +00:00
mockAPIData({
type: 'icons',
provider,
2021-05-06 08:21:39 +00:00
prefix,
2022-09-07 19:11:48 +00:00
response: {
prefix,
icons: {
[name]: iconData,
},
2021-05-06 08:21:39 +00:00
},
2022-09-07 19:11:48 +00:00
delay: (next) => {
// Icon should not have loaded yet
expect(iconExists(iconName)).toEqual(false);
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// onLoad should not have been called yet
expect(onLoadCalled).toEqual('');
2022-09-07 19:11:48 +00:00
// Send icon data
next();
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Make sure icon data is available
expect(iconExists(iconName)).toEqual(true);
},
});
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
mockAPIData({
type: 'icons',
provider,
2021-05-06 08:21:39 +00:00
prefix,
2022-09-07 19:11:48 +00:00
response: {
prefix,
icons: {
[name2]: iconData2,
},
},
delay: (next) => {
// Icon should not have loaded yet
expect(iconExists(iconName2)).toEqual(false);
// onLoad should have been called only once for previous icon
expect(onLoadCalled).toEqual(iconName);
// Send icon data
next();
// Make sure icon data is available
expect(iconExists(iconName2)).toEqual(true);
2021-05-06 08:21:39 +00:00
},
2022-09-07 19:11:48 +00:00
});
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Check if icon has been loaded
expect(iconExists(iconName)).toEqual(false);
2022-09-07 19:11:48 +00:00
// Render component
const Wrapper = {
components: { Icon },
template: `<Icon icon="${iconName}" :onLoad="onLoad" />`,
methods: {
onLoad,
},
};
const wrapper = mount(Wrapper, {});
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// onLoad should not have been called yet
expect(onLoadCalled).toEqual('');
2021-05-06 08:21:39 +00:00
});
});
2022-09-07 19:11:48 +00:00
test('changing icon property while loading', () => {
return new Promise((fulfill, reject) => {
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 isSync = true;
const onLoad = (name) => {
switch (name) {
case iconName:
reject('onLoad should not be called for initial icon');
break;
case iconName2:
// Wait 1 tick, then test rendered icon
nextTick()
.then(() => {
expect(
wrapper.html().replace(/\s*\n\s*/g, '')
).toEqual(
'<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 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>'
);
fulfill(true);
})
.catch(reject);
break;
default:
throw new Error(`Unexpected onLoad('${name}') call`);
}
};
mockAPIData({
type: 'icons',
provider,
2021-05-06 08:21:39 +00:00
prefix,
2022-09-07 19:11:48 +00:00
response: {
prefix,
icons: {
[name]: iconData,
},
2021-05-06 08:21:39 +00:00
},
2022-09-07 19:11:48 +00:00
delay: (next) => {
// Should have been called asynchronously, which means icon name has changed
expect(isSync).toEqual(false);
// Send icon data
next();
},
});
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
mockAPIData({
type: 'icons',
provider,
2021-05-06 08:21:39 +00:00
prefix,
2022-09-07 19:11:48 +00:00
response: {
prefix,
icons: {
[name2]: iconData2,
},
2021-05-06 08:21:39 +00:00
},
2022-09-07 19:11:48 +00:00
delay: (next) => {
// Should have been called asynchronously
expect(isSync).toEqual(false);
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Icon should not have loaded yet
expect(iconExists(iconName2)).toEqual(false);
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Send icon data
next();
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Make sure icon was loaded
expect(iconExists(iconName2)).toEqual(true);
},
});
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Check if icon has been loaded
expect(iconExists(iconName)).toEqual(false);
// Render component
const Wrapper = {
components: { Icon },
template: `<Icon icon="${iconName}" :onLoad="onLoad" />`,
methods: {
onLoad,
},
};
const wrapper = mount(Wrapper, {});
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Change icon name
wrapper.setProps({
icon: iconName2,
});
// Async
isSync = false;
});
2021-05-06 08:21:39 +00:00
});
2022-09-07 19:11:48 +00:00
test('changing multiple properties', () => {
return new Promise((fulfill, reject) => {
const prefix = nextPrefix();
const name = 'multiple-props';
const iconName = `@${provider}:${prefix}:${name}`;
const className = `iconify iconify--${prefix} iconify--${provider}`;
const onLoad = (name) => {
expect(name).toBe(iconName);
(async () => {
try {
// Wait 1 tick, test rendered icon
await nextTick();
expect(wrapper.html().replace(/\s*\n\s*/g, '')).toEqual(
'<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 +
'"><path d="M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z" fill="currentColor"></path></svg>'
);
// Add horizontal flip and style
wrapper.setProps({
icon: iconName,
hFlip: true,
style: {
color: 'red',
},
});
// Wait 1 tick
await nextTick();
// Test
expect(wrapper.html().replace(/\s*\n\s*/g, '')).toEqual(
'<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 +
'" 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>'
);
fulfill(true);
} catch (err) {
reject(err);
}
})();
};
mockAPIData({
type: 'icons',
provider,
2021-05-06 08:21:39 +00:00
prefix,
2022-09-07 19:11:48 +00:00
response: {
prefix,
icons: {
[name]: iconData,
},
2021-05-06 08:21:39 +00:00
},
2022-09-07 19:11:48 +00:00
delay: (next) => {
// Icon should not have loaded yet
expect(iconExists(iconName)).toEqual(false);
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Send icon data
next();
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Make sure icon was loaded
expect(iconExists(iconName)).toEqual(true);
},
});
// Check if icon has been loaded
expect(iconExists(iconName)).toEqual(false);
2021-05-06 08:21:39 +00:00
2022-09-07 19:11:48 +00:00
// Render component with placeholder text
const Wrapper = {
components: { Icon },
template: `<Icon icon="${iconName}" :onLoad="onLoad" />`,
methods: {
onLoad,
},
};
const wrapper = mount(Wrapper, {});
});
2021-05-06 08:21:39 +00:00
});
});