123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- import { beHidden, beVisible, haveAttribute, haveClasses, haveText, html, notBeVisible, notExist, test } from '../../../utils'
- test('has accessibility attributes',
- [html`
- <div x-data="{ checked: false }">
- <article x-switch:group>
- <label x-switch:label>Enable notifications</label>
- <span description x-switch:description>A description of the switch.</span>
- <button x-switch x-model="checked">Enable Notifications</button>
- </article>
- </div>
- `],
- ({ get }) => {
- get('label').should(haveAttribute('id', 'alpine-switch-label-1'))
- get('[description]').should(haveAttribute('id', 'alpine-switch-description-1'))
- get('button').should(haveAttribute('type', 'button'))
- get('button').should(haveAttribute('aria-labelledby', 'alpine-switch-label-1'))
- get('button').should(haveAttribute('aria-describedby', 'alpine-switch-description-1'))
- get('button').should(haveAttribute('role', 'switch'))
- get('button').should(haveAttribute('tabindex', 0))
- get('button').should(haveAttribute('aria-checked', 'false'))
- get('button').click()
- get('button').should(haveAttribute('aria-checked', 'true'))
- },
- )
- test('works with x-model',
- [html`
- <div x-data="{ checked: false }">
- <button x-switch x-model="checked">Enable notifications</button>
- <article x-show="checked">
- Notifications are enabled.
- </article>
- </div>
- `],
- ({ get }) => {
- get('article').should(notBeVisible())
- get('button').click()
- get('article').should(beVisible())
- get('button').click()
- get('article').should(notBeVisible())
- },
- )
- test('works with internal state/$switch.isChecked',
- [html`
- <div x-data>
- <button x-switch x-bind:class="$switch.isChecked ? 'foo' : 'bar'">
- Enable notifications
- </button>
- </div>
- `],
- ({ get }) => {
- get('button').should(haveClasses(['bar']))
- get('button').click()
- get('button').should(haveClasses(['foo']))
- get('button').click()
- get('button').should(haveClasses(['bar']))
- },
- )
- test('pressing space toggles the switch',
- [html`
- <div x-data="{ checked: false }">
- <div>
- <button x-switch x-model="checked">Enable notifications</button>
- <article x-show="checked">
- Notifications are enabled.
- </article>
- </div>
- </div>
- `],
- ({ get }) => {
- get('article').should(notBeVisible())
- get('button').focus()
- get('button').type(' ')
- get('article').should(beVisible())
- get('button').type(' ')
- get('article').should(notBeVisible())
- },
- )
- test('default-checked',
- [html`
- <div x-data>
- <div>
- <button
- x-switch
- default-checked
- :class="$switch.isChecked ? 'checked' : 'not-checked'"
- >Enable notifications</button>
- </div>
- </div>
- `],
- ({ get }) => {
- get('button').should(haveClasses(['checked']))
- get('button').click()
- get('button').should(haveClasses(['not-checked']))
- },
- )
- test('name and value props',
- [html`
- <div x-data>
- <div>
- <button
- x-switch
- name="notifications"
- value="yes"
- >Enable notifications</button>
- </div>
- </div>
- `],
- ({ get }) => {
- get('input').should(notExist())
- get('button').click()
- get('input').should(beHidden())
- .should(haveAttribute('name', 'notifications'))
- .should(haveAttribute('value', 'yes'))
- .should(haveAttribute('type', 'hidden'))
- get('button').click()
- get('input').should(notExist())
- },
- )
- test('value defaults to "on"',
- [html`
- <div x-data>
- <div>
- <button
- x-switch
- name="notifications"
- >Enable notifications</button>
- </div>
- </div>
- `],
- ({ get }) => {
- get('input').should(notExist())
- get('button').click()
- get('input').should(beHidden())
- .should(haveAttribute('name', 'notifications'))
- .should(haveAttribute('value', 'on'))
- .should(haveAttribute('type', 'hidden'))
- get('button').click()
- get('input').should(notExist())
- },
- )
|