import { expect, fixture, fixtureSync, aTimeout, html } from '@open-wc/testing';
import { until, render } from '@lion/core';
import heartSvg from './heart.svg.js';
import hammerSvg from './hammer.svg.js';
import '../lion-icon.js';
describe('lion-icon', () => {
it('displays an svg icon with an aria label attribute', async () => {
const el = await fixture(
html`
`,
);
expect(el.children[0].getAttribute('data-test-id')).to.equal('svg-heart');
expect(el.getAttribute('role')).to.equal('img');
expect(el.getAttribute('aria-label')).to.equal('Love');
expect(el.getAttribute('aria-hidden')).to.equal('false');
});
it('displays an svg icon with an aria hidden attribute', async () => {
const el = await fixture(
html`
`,
);
expect(el.children[0].getAttribute('data-test-id')).to.equal('svg-hammer');
expect(el.getAttribute('aria-hidden')).to.equal('true');
expect(el.hasAttribute('aria-label')).to.equal(false);
});
it('expects svg-icons to have the attribute `focusable="false"` so the icon doesn\'t appear in tab-order in IE/Edge', async () => {
const icon = await fixture(
html`
`,
);
expect(icon.children[0].getAttribute('focusable')).to.equal('false');
});
it('can change the displayed icon', async () => {
const el = await fixture(
html`
`,
);
expect(el.children[0].getAttribute('data-test-id')).to.equal('svg-heart');
el.svg = hammerSvg;
await el.updateComplete;
expect(el.children[0].getAttribute('data-test-id')).to.equal('svg-hammer');
});
it('can add or remove the aria-label attribute', async () => {
const el = await fixture(
html`
`,
);
const elHammer = await fixture(
html`
`,
);
// verify initial values
expect(el.getAttribute('aria-label')).to.equal('Love');
expect(el.getAttribute('aria-hidden')).to.equal('false');
expect(elHammer.getAttribute('aria-hidden')).to.equal('true');
expect(elHammer.hasAttribute('aria-label')).to.equal(false);
// swap label and hidden on both icons
el.ariaLabel = '';
elHammer.ariaLabel = 'Hammer';
await el.updateComplete;
expect(el.getAttribute('aria-hidden')).to.equal('true');
expect(el.hasAttribute('aria-label')).to.equal(false);
await elHammer.updateComplete;
expect(elHammer.getAttribute('aria-label')).to.equal('Hammer');
expect(elHammer.getAttribute('aria-hidden')).to.equal('false');
});
it('supports dynamic icons using promises', async () => {
const el = await fixture(
html`
e.default)}
aria-label="Love"
>
`,
);
await el.svg;
await el.updateComplete;
expect(el.children[0].getAttribute('data-test-id')).to.equal('svg-heart');
});
it('uses the default export, by default', async () => {
const el = await fixture(
html`
`,
);
await el.svg;
await el.updateComplete;
expect(el.children[0].getAttribute('data-test-id')).to.equal('svg-heart');
});
it('supports dynamic icon bundles', async () => {
const el = await fixture(
html`
e.heart)}
aria-label="Love"
>
`,
);
await el.svg;
await el.updateComplete;
expect(el.children[0].getAttribute('data-test-id')).to.equal('svg-heart');
});
it('supports dynamic icons using until directive', async () => {
const svgLoading = new Promise(resolve => {
window.addEventListener('importDone', resolve);
});
const el = await fixture(
html`
{
dispatchEvent(new CustomEvent('importDone'));
return e.default;
}),
'',
)}
aria-label="Love"
>
`,
);
await svgLoading;
// We need to await the until directive is resolved and rendered to the dom
// You can not use updateComplete as until renders on it's own
await aTimeout();
expect(el.children[0].getAttribute('data-test-id')).to.equal('svg-heart');
});
it('does not render "undefined" if changed from valid input to undefined', async () => {
const el = await fixture(
html`
`,
);
await el.updateComplete;
el.svg = undefined;
await el.updateComplete;
expect(el.innerHTML).to.equal('');
});
describe('race conditions with dynamic promisified icons', () => {
async function prepareRaceCondition(...svgs) {
const container = fixtureSync(`
`);
const resolves = svgs.map(svg => {
let resolveSvg;
const svgProperty =
Promise.resolve(svg) === svg
? new Promise(resolve => {
resolveSvg = () => resolve(svg);
})
: svg;
render(
html`
`,
container,
);
return resolveSvg;
});
const icon = container.children[0];
await icon.updateComplete;
return [icon, ...resolves];
}
it('renders in the order of rendering instead of the order of resolution', async () => {
let resolveHeartSvg;
let resolveHammerSvg;
let icon;
let svg;
[icon, resolveHeartSvg, resolveHammerSvg] = await prepareRaceCondition(
Promise.resolve(heartSvg),
Promise.resolve(hammerSvg),
);
resolveHeartSvg();
resolveHammerSvg();
await aTimeout();
[svg] = icon.children;
expect(svg).to.exist;
expect(svg.getAttribute('data-test-id')).to.equal('svg-hammer');
[icon, resolveHeartSvg, resolveHammerSvg] = await prepareRaceCondition(
Promise.resolve(heartSvg),
Promise.resolve(hammerSvg),
);
resolveHammerSvg();
resolveHeartSvg();
await aTimeout();
[svg] = icon.children;
expect(svg).to.exist;
expect(svg.getAttribute('data-test-id')).to.equal('svg-hammer');
});
it('renders if a resolved promise was replaced by a string', async () => {
const [icon, resolveHeartSvg] = await prepareRaceCondition(
Promise.resolve(heartSvg),
hammerSvg,
);
resolveHeartSvg();
await aTimeout();
const [svg] = icon.children;
expect(svg).to.exist;
expect(svg.getAttribute('data-test-id')).to.equal('svg-hammer');
});
it('does not render if a resolved promise was replaced by another unresolved promise', async () => {
const [icon, resolveHeartSvg] = await prepareRaceCondition(
Promise.resolve(heartSvg),
Promise.resolve(hammerSvg),
);
resolveHeartSvg();
await aTimeout();
const [svg] = icon.children;
expect(svg).to.not.exist;
});
});
});