import { expect, fixture, html } from '@open-wc/testing'; import './nile-stepper'; import '../nile-stepper-item/nile-stepper-item'; import type { NileStepper } from './nile-stepper'; describe('NileStepper', () => { 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-stepper'); }); it('4. isVertical defaults false', async () => { const el = await fixture(html``); expect(el.isVertical).to.be.false; }); it('5. contentBelow defaults false', async () => { const el = await fixture(html``); expect(el.contentBelow).to.be.false; }); it('6. currentStep defaults 0', async () => { const el = await fixture(html``); expect(el.currentStep).to.equal(0); }); it('7. completedStep defaults 0', async () => { const el = await fixture(html``); expect(el.completedStep).to.equal(0); }); it('8. size defaults lg', async () => { const el = await fixture(html``); expect(el.size).to.equal('lg'); }); it('9. icon defaults tick', async () => { const el = await fixture(html``); expect(el.icon).to.equal('tick'); }); it('10. manual defaults false', async () => { const el = await fixture(html``); expect(el.manual).to.be.false; }); it('11. nile-stepper class', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('.nile-stepper')).to.exist; }); it('12. horizontal class', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('.nile-stepper--horizontal')).to.exist; }); it('13. vertical class', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('.nile-stepper--vertical')).to.exist; }); it('14. default slot', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('slot')).to.exist; }); it('15. part stepper', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('[part="stepper"]')).to.exist; }); it('16. set currentStep', async () => { const el = await fixture(html``); expect(el.currentStep).to.equal(2); }); it('17. set completedStep', async () => { const el = await fixture(html``); expect(el.completedStep).to.equal(1); }); it('18. set size sm', async () => { const el = await fixture(html``); expect(el.size).to.equal('sm'); }); it('19. set vertical', async () => { const el = await fixture(html``); expect(el.isVertical).to.be.true; }); it('20. set contentBelow', async () => { const el = await fixture(html``); expect(el.contentBelow).to.be.true; }); it('21. set manual', async () => { const el = await fixture(html``); expect(el.manual).to.be.true; }); it('22. currentStep reflects', async () => { const el = await fixture(html``); expect(el.hasAttribute('currentstep')).to.be.true; }); it('23. completedStep reflects', async () => { const el = await fixture(html``); expect(el.hasAttribute('completedstep')).to.be.true; }); it('24. size reflects', async () => { const el = await fixture(html``); expect(el.hasAttribute('size')).to.be.true; }); it('25. has styles', async () => { expect((await import('./nile-stepper')).NileStepper.styles).to.exist; }); it('26. is defined', async () => { expect(customElements.get('nile-stepper')).to.exist; }); it('27. shadow mode', async () => { const el = await fixture(html``); expect(el.shadowRoot!.mode).to.equal('open'); }); it('28. isConnected', async () => { const el = await fixture(html``); expect(el.isConnected).to.be.true; }); it('29. removal', async () => { const el = await fixture(html``); el.remove(); expect(el.isConnected).to.be.false; }); it('30. outerHTML', async () => { const el = await fixture(html``); expect(el.outerHTML).to.contain('nile-stepper'); }); it('31. matches', async () => { const el = await fixture(html``); expect(el.matches('.x')).to.be.true; }); it('32. closest', async () => { const el = await fixture(html``); expect(el.closest('nile-stepper')).to.equal(el); }); it('33. cloneNode', async () => { const el = await fixture(html``); expect((el.cloneNode(true) as Element).tagName.toLowerCase()).to.equal('nile-stepper'); }); it('34. 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('35. updateComplete', async () => { const el = await fixture(html``); const r = await el.updateComplete; expect(r).to.not.be.undefined; }); it('36. render method', async () => { const el = await fixture(html``); expect(el.render).to.be.a('function'); }); it('37. shadowRoot host', async () => { const el = await fixture(html``); expect(el.shadowRoot!.host).to.equal(el); }); it('38. class attr', async () => { const el = await fixture(html``); expect(el.classList.contains('st')).to.be.true; }); it('39. id attr', async () => { const el = await fixture(html``); expect(el.id).to.equal('st1'); }); it('40. hidden', async () => { const el = await fixture(html``); expect(el.hidden).to.be.true; }); it('41. nodeType', async () => { const el = await fixture(html``); expect(el.nodeType).to.equal(1); }); it('42. localName', async () => { const el = await fixture(html``); expect(el.localName).to.equal('nile-stepper'); }); it('43. namespaceURI', async () => { const el = await fixture(html``); expect(el.namespaceURI).to.equal('http://www.w3.org/1999/xhtml'); }); it('44. ownerDocument', async () => { const el = await fixture(html``); expect(el.ownerDocument).to.equal(document); }); it('45. multiple instances', async () => { const c = await fixture(html`
`); expect(c.querySelectorAll('nile-stepper').length).to.equal(2); }); it('46. parent-child', async () => { const c = await fixture(html`
`); expect(c.querySelector('nile-stepper')!.parentElement).to.equal(c); }); it('47. createElement', async () => { const el = document.createElement('nile-stepper') as NileStepper; document.body.appendChild(el); await el.updateComplete; expect(el.shadowRoot).to.not.be.null; document.body.removeChild(el); }); it('48. dataset', async () => { const el = await fixture(html``); expect(el.dataset.idx).to.equal('0'); }); it('49. classList add', async () => { const el = await fixture(html``); el.classList.add('z'); expect(el.classList.contains('z')).to.be.true; }); it('50. getBoundingClientRect', async () => { const el = await fixture(html``); expect(el.getBoundingClientRect()).to.exist; }); it('51. no form', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('form')).to.be.null; }); it('52. no input', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('input')).to.be.null; }); it('53. no button', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('button')).to.be.null; }); it('54. no anchor', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('a')).to.be.null; }); it('55. no img', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('img')).to.be.null; }); it('56. no svg', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('svg')).to.be.null; }); it('57. style attr', async () => { const el = await fixture(html``); expect(el.style.color).to.equal('red'); }); it('58. data attr', async () => { const el = await fixture(html``); expect(el.getAttribute('data-x')).to.equal('1'); }); it('59. aria-label', async () => { const el = await fixture(html``); expect(el.getAttribute('aria-label')).to.equal('Stepper'); }); it('60. role', async () => { const el = await fixture(html``); expect(el.getAttribute('role')).to.equal('navigation'); }); it('61. dir', async () => { const el = await fixture(html``); expect(el.dir).to.equal('rtl'); }); it('62. title attr', async () => { const el = await fixture(html``); expect(el.title).to.equal('ST'); }); it('63. lang attr', async () => { const el = await fixture(html``); expect(el.lang).to.equal('en'); }); it('64. tabindex', async () => { const el = await fixture(html``); expect(el.getAttribute('tabindex')).to.equal('0'); }); it('65. requestUpdate', async () => { const el = await fixture(html``); el.requestUpdate(); await el.updateComplete; expect(el.shadowRoot).to.not.be.null; }); it('66. shadow childNodes', async () => { const el = await fixture(html``); expect(el.shadowRoot!.childNodes.length).to.be.greaterThan(0); }); it('67. scrollIntoView', async () => { const el = await fixture(html``); expect(el.scrollIntoView).to.be.a('function'); }); it('68. focus method', async () => { const el = await fixture(html``); expect(el.focus).to.be.a('function'); }); it('69. blur method', async () => { const el = await fixture(html``); expect(el.blur).to.be.a('function'); }); it('70. class toggle', async () => { const el = await fixture(html``); el.classList.toggle('a'); expect(el.classList.contains('a')).to.be.true; }); it('71. toggle hidden', async () => { const el = await fixture(html``); el.hidden = true; expect(el.hidden).to.be.true; }); it('72. 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('73. nested in div', async () => { const c = await fixture(html`
`); expect(c.querySelector('nile-stepper')).to.exist; }); it('74. no table', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('table')).to.be.null; }); it('75. no ul', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('ul')).to.be.null; }); it('76. no canvas', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('canvas')).to.be.null; }); it('77. no video', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('video')).to.be.null; }); it('78. no audio', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('audio')).to.be.null; }); it('79. no nav', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('nav')).to.be.null; }); it('80. no aside', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('aside')).to.be.null; }); it('81. no textarea', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('textarea')).to.be.null; }); it('82. no select', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('select')).to.be.null; }); it('83. setAttribute data', async () => { const el = await fixture(html``); el.setAttribute('data-test', '1'); expect(el.dataset.test).to.equal('1'); }); it('84. removeAttribute hidden', async () => { const el = await fixture(html``); el.removeAttribute('hidden'); expect(el.hidden).to.be.false; }); it('85. setAttribute class', async () => { const el = await fixture(html``); el.setAttribute('class', 'test'); expect(el.classList.contains('test')).to.be.true; }); it('86. aria-describedby', async () => { const el = await fixture(html``); expect(el.getAttribute('aria-describedby')).to.equal('d'); }); it('87. 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('88. div element', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('div')).to.exist; }); it('89. no span', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('span')).to.be.null; }); it('90. no h1', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('h1')).to.be.null; }); it('91. no p', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('p')).to.be.null; }); it('92. no hr', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('hr')).to.be.null; }); it('93. no pre', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('pre')).to.be.null; }); it('94. no code', async () => { const el = await fixture(html``); expect(el.shadowRoot!.querySelector('code')).to.be.null; }); it('95. contains', async () => { const el = await fixture(html``); expect(el.contains(el.querySelector('nile-stepper-item'))).to.be.true; }); it('96. childElementCount', async () => { const el = await fixture(html``); expect(el.childElementCount).to.equal(2); }); it('97. dynamic currentStep', async () => { const el = await fixture(html``); el.currentStep = 2; await el.updateComplete; expect(el.currentStep).to.equal(2); }); it('98. nile-current-change event', async () => { const el = await fixture(html``); let fired = false; el.addEventListener('nile-current-change', () => { fired = true; }); el.currentStep = 1; await el.updateComplete; expect(fired).to.be.true; }); it('99. nile-completed-change event', async () => { const el = await fixture(html``); let fired = false; el.addEventListener('nile-completed-change', () => { fired = true; }); el.completedStep = 1; await el.updateComplete; expect(fired).to.be.true; }); it('100. full integration', async () => { const el = await fixture(html``); expect(el.currentStep).to.equal(2); expect(el.completedStep).to.equal(1); expect(el.size).to.equal('sm'); expect(el.id).to.equal('st1'); expect(el.childElementCount).to.equal(3); expect(el.shadowRoot!.querySelector('.nile-stepper')).to.exist; }); });