import { Required } from '@lion/form-core'; import { expect, html, triggerBlurFor, triggerFocusFor, fixture } from '@open-wc/testing'; import { browserDetection } from '@lion/core'; import '@lion/core/differentKeyEventNamesShimIE'; import '@lion/listbox/lion-option'; import '@lion/listbox/lion-options'; import '../lion-select-rich.js'; /** * @typedef {import('../src/LionSelectRich').LionSelectRich} LionSelectRich * @typedef {import('@lion/listbox').LionOption} LionOption */ /** * @param {LionSelectRich} lionSelectEl */ function getNodes(lionSelectEl) { // @ts-ignore protected members allowed in test const { _invokerNode: invoker, _feedbackNode: feedback, _labelNode: label, _helpTextNode: helpText, _listboxNode: listbox, } = lionSelectEl; return { invoker, feedback, label, helpText, listbox, }; } describe('lion-select-rich interactions', () => { describe('Interaction mode', () => { it('autodetects interactionMode if not defined', async () => { const originalIsMac = browserDetection.isMac; browserDetection.isMac = true; const el = /** @type {LionSelectRich} */ (await fixture(html` Item 1 `)); expect(el.interactionMode).to.equal('mac'); const el2 = /** @type {LionSelectRich} */ (await fixture(html` Item 1 `)); expect(el2.interactionMode).to.equal('windows/linux'); browserDetection.isMac = false; const el3 = /** @type {LionSelectRich} */ (await fixture(html` Item 1 `)); expect(el3.interactionMode).to.equal('windows/linux'); const el4 = /** @type {LionSelectRich} */ (await fixture(html` Item 1 `)); expect(el4.interactionMode).to.equal('mac'); browserDetection.isMac = originalIsMac; }); it('derives selectionFollowsFocus and navigateWithinInvoker from interactionMode', async () => { const el = /** @type {LionSelectRich} */ (await fixture(html` Item 1 `)); expect(el.selectionFollowsFocus).to.be.true; expect(el.navigateWithinInvoker).to.be.true; const el2 = /** @type {LionSelectRich} */ (await fixture(html` Item 1 `)); expect(el2.selectionFollowsFocus).to.be.false; expect(el2.navigateWithinInvoker).to.be.false; }); }); describe('Invoker Keyboard navigation Windows', () => { it('navigates through list with [ArrowDown] [ArrowUp] keys checks the option while listbox unopened', async () => { /** * @param {LionOption[]} options * @param {number} selectedIndex */ function expectOnlyGivenOneOptionToBeChecked(options, selectedIndex) { /** * @param {{ checked: any; }} option * @param {any} i */ options.forEach((option, i) => { if (i === selectedIndex) { expect(option.checked).to.be.true; } else { expect(option.checked).to.be.false; } }); } const el = /** @type {LionSelectRich} */ (await fixture(html` Item 1 Item 2 Item 3 `)); const options = el.formElements; expect(el.checkedIndex).to.equal(0); expectOnlyGivenOneOptionToBeChecked(options, 0); el.dispatchEvent(new KeyboardEvent('keyup', { key: 'ArrowDown' })); expect(el.checkedIndex).to.equal(1); expectOnlyGivenOneOptionToBeChecked(options, 1); el.dispatchEvent(new KeyboardEvent('keyup', { key: 'ArrowUp' })); expect(el.checkedIndex).to.equal(0); expectOnlyGivenOneOptionToBeChecked(options, 0); }); }); describe('Disabled', () => { it('invoker cannot be focused if disabled', async () => { const el = /** @type {LionSelectRich} */ (await fixture(html` `)); const { invoker } = getNodes(el); expect(invoker.tabIndex).to.equal(-1); }); it('cannot be opened via click if disabled', async () => { const el = /** @type {LionSelectRich} */ (await fixture(html` `)); const { invoker } = getNodes(el); invoker.click(); expect(el.opened).to.be.false; }); it('reflects disabled attribute to invoker', async () => { const el = /** @type {LionSelectRich} */ (await fixture(html` `)); const { invoker } = getNodes(el); expect(invoker.hasAttribute('disabled')).to.be.true; el.removeAttribute('disabled'); await el.updateComplete; expect(invoker.hasAttribute('disabled')).to.be.false; }); }); describe('Interaction states', () => { it('becomes touched if blurred once', async () => { const el = /** @type {LionSelectRich} */ (await fixture(html` Item 1 Item 2 `)); const { invoker } = getNodes(el); expect(el.touched).to.be.false; await triggerFocusFor(invoker); await triggerBlurFor(invoker); expect(el.touched).to.be.true; }); }); describe('Accessibility', () => { it('sets [aria-invalid="true"] to "._invokerNode" when there is an error', async () => { const el = /** @type {LionSelectRich} */ (await fixture(html` Please select a value Item 1 `)); const { invoker } = getNodes(el); const options = el.formElements; await el.feedbackComplete; await el.updateComplete; expect(invoker.getAttribute('aria-invalid')).to.equal('false'); options[0].checked = true; await el.feedbackComplete; await el.updateComplete; expect(invoker.getAttribute('aria-invalid')).to.equal('true'); options[1].checked = true; await el.feedbackComplete; await el.updateComplete; expect(invoker.getAttribute('aria-invalid')).to.equal('false'); }); }); });