import { nextTick } from 'vue'; import { mount } from '@vue/test-utils'; import { Icon, iconLoaded } from '../../'; import { mockAPIData } from '@iconify/core/lib/api/modules/mock'; import { provider, nextPrefix } from './load'; const iconData = { body: '', width: 24, height: 24, }; const iconData2 = { body: '', width: 32, height: 32, }; describe('Rendering icon', () => { 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( '' ); 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( '' ); fulfill(true); }) .catch(reject); break; default: throw new Error(`Unexpected onLoad('${name}') call`); } onLoadCalled = name; }; mockAPIData({ type: 'icons', provider, prefix, response: { prefix, icons: { [name]: iconData, }, }, delay: (next) => { // Icon should not have loaded yet expect(iconLoaded(iconName)).toEqual(false); // onLoad should not have been called yet expect(onLoadCalled).toEqual(''); // Send icon data next(); // Make sure icon data is available expect(iconLoaded(iconName)).toEqual(true); }, }); mockAPIData({ type: 'icons', provider, prefix, response: { prefix, icons: { [name2]: iconData2, }, }, delay: (next) => { // Icon should not have loaded yet expect(iconLoaded(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(iconLoaded(iconName2)).toEqual(true); }, }); // Check if icon has been loaded expect(iconLoaded(iconName)).toEqual(false); // Render component const Wrapper = { components: { Icon }, template: ``, methods: { onLoad, }, }; const wrapper = mount(Wrapper, {}); // onLoad should not have been called yet expect(onLoadCalled).toEqual(''); }); }); 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( '' ); fulfill(true); }) .catch(reject); break; default: throw new Error(`Unexpected onLoad('${name}') call`); } }; mockAPIData({ type: 'icons', provider, prefix, response: { prefix, icons: { [name]: iconData, }, }, delay: (next) => { // Should have been called asynchronously, which means icon name has changed expect(isSync).toEqual(false); // Send icon data next(); }, }); mockAPIData({ type: 'icons', provider, prefix, response: { prefix, icons: { [name2]: iconData2, }, }, delay: (next) => { // Should have been called asynchronously expect(isSync).toEqual(false); // Icon should not have loaded yet expect(iconLoaded(iconName2)).toEqual(false); // Send icon data next(); // Make sure icon was loaded expect(iconLoaded(iconName2)).toEqual(true); }, }); // Check if icon has been loaded expect(iconLoaded(iconName)).toEqual(false); // Render component const Wrapper = { components: { Icon }, template: ``, methods: { onLoad, }, }; const wrapper = mount(Wrapper, {}); // Change icon name wrapper.setProps({ icon: iconName2, }); // Async isSync = false; }); }); 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( '' ); // 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( '' ); fulfill(true); } catch (err) { reject(err); } })(); }; mockAPIData({ type: 'icons', provider, prefix, response: { prefix, icons: { [name]: iconData, }, }, delay: (next) => { // Icon should not have loaded yet expect(iconLoaded(iconName)).toEqual(false); // Send icon data next(); // Make sure icon was loaded expect(iconLoaded(iconName)).toEqual(true); }, }); // Check if icon has been loaded expect(iconLoaded(iconName)).toEqual(false); // Render component with placeholder text const Wrapper = { components: { Icon }, template: ``, methods: { onLoad, }, }; const wrapper = mount(Wrapper, {}); }); }); });