2022-04-19 12:46:57 +08:00
|
|
|
import { afterEach, beforeEach, describe, expect, it } from 'vitest'
|
2022-01-04 09:15:15 +08:00
|
|
|
import {
|
|
|
|
focusFirstDescendant,
|
|
|
|
getEdges,
|
2022-03-25 15:35:56 +08:00
|
|
|
obtainAllFocusableElements,
|
2022-01-04 09:15:15 +08:00
|
|
|
} from '../src/utils'
|
|
|
|
|
|
|
|
describe('focus-trap utils', () => {
|
|
|
|
const buildDOM = () => {
|
|
|
|
const parser = new DOMParser()
|
|
|
|
return parser.parseFromString(
|
|
|
|
`
|
|
|
|
<div class="root">
|
|
|
|
<span>some val</span>
|
|
|
|
<input class="focusable-input" />
|
|
|
|
<span tabindex="0" class="focusable-span">other val</span>
|
|
|
|
<span hidden tabindex="0"> hidden span</span>
|
|
|
|
<input disabled />
|
|
|
|
<input hidden />
|
|
|
|
</div>
|
|
|
|
`,
|
|
|
|
'text/html'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
const dom = buildDOM()
|
|
|
|
|
|
|
|
Array.from(dom.children).forEach((child) => {
|
|
|
|
document.body.appendChild(child)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
document.body.innerHTML = ''
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should be able to focus', () => {
|
|
|
|
const focusable = obtainAllFocusableElements(document.body)
|
|
|
|
expect(focusable).toHaveLength(2)
|
2022-04-19 12:46:57 +08:00
|
|
|
expect(focusable[0].classList.contains('focusable-input')).toBeTruthy()
|
2022-01-04 09:15:15 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should be able to get focusable edge', () => {
|
|
|
|
const [first, last] = getEdges(document.body)
|
2022-04-19 12:46:57 +08:00
|
|
|
expect(first?.classList.contains('focusable-input')).toBeTruthy()
|
|
|
|
expect(last?.classList.contains('focusable-span')).toBeTruthy()
|
2022-01-04 09:15:15 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should be able to focus on the first descendant', () => {
|
|
|
|
expect(document.activeElement).toBe(document.body)
|
|
|
|
const focusable = obtainAllFocusableElements(document.body)
|
|
|
|
focusFirstDescendant(focusable)
|
|
|
|
expect(document.activeElement).toBe(focusable[0])
|
|
|
|
})
|
|
|
|
})
|