import { expect, fixture, html } from '@open-wc/testing'; import './nile-popover'; import type { NilePopover } from './nile-popover'; describe('NilePopover', () => { it('1. renders', async () => { const el = await fixture(html``); expect(el).to.exist; }); it('2. shadow root', async () => { const el = await fixture(html``); expect(el.shadowRoot).to.not.be.null; }); it('3. tag name', async () => { const el = await fixture(html``); expect(el.tagName.toLowerCase()).to.equal('nile-popover'); }); it('4. placement defaults top', async () => { const el = await fixture(html``); expect(el.placement).to.equal('top'); }); it('5. distance defaults 18', async () => { const el = await fixture(html``); expect(el.distance).to.equal(18); }); it('6. preventOverlayClose defaults false', async () => { const el = await fixture(html``); expect(el.preventOverlayClose).to.equal(false); }); it('7. arrow defaults true', async () => { const el = await fixture(html``); expect(el.arrow).to.equal(true); }); it('8. title defaults empty', async () => { const el = await fixture(html``); expect(el.title).to.equal(''); }); it('9. open defaults false', async () => { const el = await fixture(html``); expect(el.open).to.equal(false); }); it('10. arrowPlacement defaults anchor', async () => { const el = await fixture(html``); expect(el.arrowPlacement).to.equal('anchor'); }); it('11. set placement', async () => { const el = await fixture(html``); expect(el.placement).to.equal('bottom'); }); it('12. set distance', async () => { const el = await fixture(html``); expect(el.distance).to.equal(20); }); it('13. set arrow false', async () => { const el = await fixture(html``); el.arrow = false; await el.updateComplete; expect(el.arrow).to.be.false; }); it('14. set title', async () => { const el = await fixture(html``); expect(el.title).to.equal('Info'); }); it('15. set preventOverlayClose', async () => { const el = await fixture(html``); expect(el.preventOverlayClose).to.be.true; }); it('16. has styles', async () => { expect((await import('./nile-popover')).NilePopover.styles).to.exist; }); it('17. is defined', async () => { expect(customElements.get('nile-popover')).to.exist; }); it('18. shadow mode', async () => { const el = await fixture(html``); expect(el.shadowRoot!.mode).to.equal('open'); }); it('19. isConnected', async () => { const el = await fixture(html``); expect(el.isConnected).to.be.true; }); it('20. removal', async () => { const el = await fixture(html``); el.remove(); expect(el.isConnected).to.be.false; }); it('21. outerHTML', async () => { const el = await fixture(html``); expect(el.outerHTML).to.contain('nile-popover'); }); it('22. matches', async () => { const el = await fixture(html``); expect(el.matches('.x')).to.be.true; }); it('23. closest', async () => { const el = await fixture(html``); expect(el.closest('nile-popover')).to.equal(el); }); it('24. cloneNode', async () => { const el = await fixture(html``); expect((el.cloneNode(true) as Element).tagName.toLowerCase()).to.equal('nile-popover'); }); it('25. dispatchEvent', async () => { const el = await fixture(html``); let f = false; el.addEventListener('c', () => (f = true)); el.dispatchEvent(new Event('c')); expect(f).to.be.true; }); it('26. updateComplete', async () => { const el = await fixture(html``); const r = await el.updateComplete; expect(r).to.not.be.undefined; }); it('27. render method', async () => { const el = await fixture(html``); expect(el.render).to.be.a('function'); }); it('28. shadowRoot host', async () => { const el = await fixture(html``); expect(el.shadowRoot!.host).to.equal(el); }); it('29. class attr', async () => { const el = await fixture(html``); expect(el.classList.contains('po')).to.be.true; }); it('30. id attr', async () => { const el = await fixture(html``); expect(el.id).to.equal('po1'); }); it('31. hidden', async () => { const el = await fixture(html``); expect(el.hidden).to.be.true; }); it('32. nodeType', async () => { const el = await fixture(html``); expect(el.nodeType).to.equal(1); }); it('33. localName', async () => { const el = await fixture(html``); expect(el.localName).to.equal('nile-popover'); }); it('34. namespaceURI', async () => { const el = await fixture(html``); expect(el.namespaceURI).to.equal('http://www.w3.org/1999/xhtml'); }); it('35. ownerDocument', async () => { const el = await fixture(html``); expect(el.ownerDocument).to.equal(document); }); it('36. dynamic placement', async () => { const el = await fixture(html``); el.placement = 'left'; await el.updateComplete; expect(el.placement).to.equal('left'); }); it('37. dynamic distance', async () => { const el = await fixture(html``); el.distance = 30; await el.updateComplete; expect(el.distance).to.equal(30); }); it('38. dynamic title', async () => { const el = await fixture(html``); el.title = 'New'; await el.updateComplete; expect(el.title).to.equal('New'); }); it('39. multiple instances', async () => { const c = await fixture(html`
`); expect(c.querySelectorAll('nile-popover').length).to.equal(2); }); it('40. parent-child', async () => { const c = await fixture(html`
`); expect(c.querySelector('nile-popover')!.parentElement).to.equal(c); }); it('41. createElement', async () => { const el = document.createElement('nile-popover') as NilePopover; document.body.appendChild(el); await el.updateComplete; expect(el.shadowRoot).to.not.be.null; document.body.removeChild(el); }); it('42. dataset', async () => { const el = await fixture(html``); expect(el.dataset.idx).to.equal('0'); }); it('43. classList add', async () => { const el = await fixture(html``); el.classList.add('z'); expect(el.classList.contains('z')).to.be.true; }); it('44. getBoundingClientRect', async () => { const el = await fixture(html``); expect(el.getBoundingClientRect()).to.exist; }); it('45. no form', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('form')).to.be.null; }); it('46. no input', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('input')).to.be.null; }); it('47. no anchor', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('a')).to.be.null; }); it('48. no img', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('img')).to.be.null; }); it('49. no svg', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('svg')).to.be.null; }); it('50. style attr', async () => { const el = await fixture(html``); expect(el.style.color).to.equal('red'); }); it('51. data attr', async () => { const el = await fixture(html``); expect(el.getAttribute('data-x')).to.equal('1'); }); it('52. aria-label', async () => { const el = await fixture(html``); expect(el.getAttribute('aria-label')).to.equal('Pop'); }); it('53. dir', async () => { const el = await fixture(html``); expect(el.dir).to.equal('rtl'); }); it('54. lang attr', async () => { const el = await fixture(html``); expect(el.lang).to.equal('en'); }); it('55. tabindex', async () => { const el = await fixture(html``); expect(el.getAttribute('tabindex')).to.equal('0'); }); it('56. requestUpdate', async () => { const el = await fixture(html``); el.requestUpdate(); await el.updateComplete; expect(el.shadowRoot).to.not.be.null; }); it('57. shadow childNodes', async () => { const el = await fixture(html``); expect(el.shadowRoot!.childNodes.length).to.be.greaterThan(0); }); it('58. scrollIntoView', async () => { const el = await fixture(html``); expect(el.scrollIntoView).to.be.a('function'); }); it('59. focus method', async () => { const el = await fixture(html``); expect(el.focus).to.be.a('function'); }); it('60. blur method', async () => { const el = await fixture(html``); expect(el.blur).to.be.a('function'); }); it('61. class toggle', async () => { const el = await fixture(html``); el.classList.toggle('a'); expect(el.classList.contains('a')).to.be.true; }); it('62. toggle hidden', async () => { const el = await fixture(html``); el.hidden = true; expect(el.hidden).to.be.true; }); it('63. dispatchCustomEvent', async () => { const el = await fixture(html``); let d: any; el.addEventListener('t', ((e: CustomEvent) => { d = e.detail; }) as EventListener); el.dispatchEvent(new CustomEvent('t', { detail: 'x' })); expect(d).to.equal('x'); }); it('64. nested in div', async () => { const c = await fixture(html`
`); expect(c.querySelector('nile-popover')).to.exist; }); it('65. no table', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('table')).to.be.null; }); it('66. no ul', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('ul')).to.be.null; }); it('67. no canvas', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('canvas')).to.be.null; }); it('68. no video', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('video')).to.be.null; }); it('69. no audio', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('audio')).to.be.null; }); it('70. no nav', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('nav')).to.be.null; }); it('71. no aside', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('aside')).to.be.null; }); it('72. no textarea', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('textarea')).to.be.null; }); it('73. no select', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('select')).to.be.null; }); it('74. setAttribute data', async () => { const el = await fixture(html``); el.setAttribute('data-test', '1'); expect(el.dataset.test).to.equal('1'); }); it('75. removeAttribute hidden', async () => { const el = await fixture(html``); el.removeAttribute('hidden'); expect(el.hidden).to.be.false; }); it('76. setAttribute class', async () => { const el = await fixture(html``); el.setAttribute('class', 'test'); expect(el.classList.contains('test')).to.be.true; }); it('77. aria-describedby', async () => { const el = await fixture(html``); expect(el.getAttribute('aria-describedby')).to.equal('d'); }); it('78. multiple re-renders', async () => { const el = await fixture(html``); for (let i = 0; i < 3; i++) { el.requestUpdate(); await el.updateComplete; } expect(el.shadowRoot).to.not.be.null; }); it('79. no h1', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('h1')).to.be.null; }); it('80. no pre', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('pre')).to.be.null; }); it('81. no code', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('code')).to.be.null; }); it('82. no hr', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('hr')).to.be.null; }); it('83. no p', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('p')).to.be.null; }); it('84. placement left', async () => { const el = await fixture(html``); expect(el.placement).to.equal('left'); }); it('85. placement right', async () => { const el = await fixture(html``); expect(el.placement).to.equal('right'); }); it('86. placement bottom-start', async () => { const el = await fixture(html``); expect(el.placement).to.equal('bottom-start'); }); it('87. placement top-end', async () => { const el = await fixture(html``); expect(el.placement).to.equal('top-end'); }); it('88. arrowPlacement start', async () => { const el = await fixture(html``); expect(el.arrowPlacement).to.equal('start'); }); it('89. arrowPlacement end', async () => { const el = await fixture(html``); expect(el.arrowPlacement).to.equal('end'); }); it('90. arrowPlacement center', async () => { const el = await fixture(html``); expect(el.arrowPlacement).to.equal('center'); }); it('91. dynamic open', async () => { const el = await fixture(html``); el.open = true; await el.updateComplete; expect(el.open).to.be.true; }); it('92. dynamic preventOverlayClose', async () => { const el = await fixture(html``); el.preventOverlayClose = true; await el.updateComplete; expect(el.preventOverlayClose).to.be.true; }); it('93. dynamic arrowPlacement', async () => { const el = await fixture(html``); el.arrowPlacement = 'center'; await el.updateComplete; expect(el.arrowPlacement).to.equal('center'); }); it('94. no button', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('button')).to.be.null; }); it('95. has slots', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelectorAll('slot').length).to.be.greaterThan(0); }); it('96. content slot', async () => { const el = await fixture(html``); const slots = el.shadowRoot!.querySelectorAll('slot'); expect(slots.length).to.be.greaterThan(0); }); it('97. role attr', async () => { const el = await fixture(html``); expect(el.getAttribute('role')).to.equal('dialog'); }); it('98. isShow defaults false', async () => { const el = await fixture(html``); expect(el.isShow).to.equal(false); }); it('99. preventOverlayClose reflects', async () => { const el = await fixture(html``); expect(el.hasAttribute('preventoverlayclose')).to.be.true; }); it('100. full integration', async () => { const el = await fixture(html``); expect(el.placement).to.equal('bottom'); expect(el.distance).to.equal(20); expect(el.title).to.equal('Info'); expect(el.arrowPlacement).to.equal('center'); expect(el.id).to.equal('po1'); }); });