import { expect, fixture, html, defineCE } from '@open-wc/testing';
import { LionButton } from '@lion/button';
import { LionSelectInvoker } from '../src/LionSelectInvoker.js';
import '../lion-select-invoker.js';
describe('lion-select-invoker', () => {
it('should behave as a button', async () => {
const el = await fixture(html`
`);
expect(el instanceof LionButton).to.be.true;
});
it('renders invoker info based on selectedElement child elements', async () => {
const el = await fixture(html`
`);
el.selectedElement = await fixture(`
`);
await el.updateComplete;
expect(el.contentWrapper).lightDom.to.equal(
`
I am
2 lines
`,
{
ignoreAttributes: ['class'], // ShadyCss automatically adds classes
},
);
});
it('renders invoker info based on selectedElement textContent', async () => {
const el = await fixture(html`
`);
el.selectedElement = await fixture(`just textContent
`);
await el.updateComplete;
expect(el.contentWrapper).lightDom.to.equal('just textContent');
});
it('has tabindex="0"', async () => {
const el = await fixture(html`
`);
expect(el.tabIndex).to.equal(0);
expect(el.getAttribute('tabindex')).to.equal('0');
});
describe('Subclassers', () => {
it('supports a custom _contentTemplate', async () => {
const myTag = defineCE(
class extends LionSelectInvoker {
_contentTemplate() {
if (this.selectedElement && this.selectedElement.textContent === 'cat') {
return html`
cat selected
`;
}
return `no valid selection`;
}
},
);
const el = await fixture(`<${myTag}>${myTag}>`);
el.selectedElement = await fixture(`cat
`);
await el.updateComplete;
expect(el.contentWrapper).lightDom.to.equal('cat selected');
el.selectedElement = await fixture(`dog
`);
await el.updateComplete;
expect(el.contentWrapper).lightDom.to.equal('no valid selection');
});
});
});