Welcome to mirror list, hosted at ThFree Co, Russian Federation.

focustrap.spec.js « util « unit « tests « js - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48b68560f3fe342b67559fbb41dbc60f077fd592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
import FocusTrap from '../../../src/util/focustrap.js'
import EventHandler from '../../../src/dom/event-handler.js'
import SelectorEngine from '../../../src/dom/selector-engine.js'
import { clearFixture, getFixture, createEvent } from '../../helpers/fixture.js'

describe('FocusTrap', () => {
  let fixtureEl

  beforeAll(() => {
    fixtureEl = getFixture()
  })

  afterEach(() => {
    clearFixture()
  })

  describe('activate', () => {
    it('should autofocus itself by default', () => {
      fixtureEl.innerHTML = '<div id="focustrap" tabindex="-1"></div>'

      const trapElement = fixtureEl.querySelector('div')

      spyOn(trapElement, 'focus')

      const focustrap = new FocusTrap({ trapElement })
      focustrap.activate()

      expect(trapElement.focus).toHaveBeenCalled()
    })

    it('if configured not to autofocus, should not autofocus itself', () => {
      fixtureEl.innerHTML = '<div id="focustrap" tabindex="-1"></div>'

      const trapElement = fixtureEl.querySelector('div')

      spyOn(trapElement, 'focus')

      const focustrap = new FocusTrap({ trapElement, autofocus: false })
      focustrap.activate()

      expect(trapElement.focus).not.toHaveBeenCalled()
    })

    it('should force focus inside focus trap if it can', done => {
      fixtureEl.innerHTML = [
        '<a href="#" id="outside">outside</a>',
        '<div id="focustrap" tabindex="-1">',
        '  <a href="#" id="inside">inside</a>',
        '</div>'
      ].join('')

      const trapElement = fixtureEl.querySelector('div')
      const focustrap = new FocusTrap({ trapElement })
      focustrap.activate()

      const inside = document.getElementById('inside')

      const focusInListener = () => {
        expect(inside.focus).toHaveBeenCalled()
        document.removeEventListener('focusin', focusInListener)
        done()
      }

      spyOn(inside, 'focus')
      spyOn(SelectorEngine, 'focusableChildren').and.callFake(() => [inside])

      document.addEventListener('focusin', focusInListener)

      const focusInEvent = createEvent('focusin', { bubbles: true })
      Object.defineProperty(focusInEvent, 'target', {
        value: document.getElementById('outside')
      })

      document.dispatchEvent(focusInEvent)
    })

    it('should wrap focus around forward on tab', done => {
      fixtureEl.innerHTML = [
        '<a href="#" id="outside">outside</a>',
        '<div id="focustrap" tabindex="-1">',
        '  <a href="#" id="first">first</a>',
        '  <a href="#" id="inside">inside</a>',
        '  <a href="#" id="last">last</a>',
        '</div>'
      ].join('')

      const trapElement = fixtureEl.querySelector('div')
      const focustrap = new FocusTrap({ trapElement })
      focustrap.activate()

      const first = document.getElementById('first')
      const inside = document.getElementById('inside')
      const last = document.getElementById('last')
      const outside = document.getElementById('outside')

      spyOn(SelectorEngine, 'focusableChildren').and.callFake(() => [first, inside, last])
      spyOn(first, 'focus').and.callThrough()

      const focusInListener = () => {
        expect(first.focus).toHaveBeenCalled()
        first.removeEventListener('focusin', focusInListener)
        done()
      }

      first.addEventListener('focusin', focusInListener)

      const keydown = createEvent('keydown')
      keydown.key = 'Tab'

      document.dispatchEvent(keydown)
      outside.focus()
    })

    it('should wrap focus around backwards on shift-tab', done => {
      fixtureEl.innerHTML = [
        '<a href="#" id="outside">outside</a>',
        '<div id="focustrap" tabindex="-1">',
        '  <a href="#" id="first">first</a>',
        '  <a href="#" id="inside">inside</a>',
        '  <a href="#" id="last">last</a>',
        '</div>'
      ].join('')

      const trapElement = fixtureEl.querySelector('div')
      const focustrap = new FocusTrap({ trapElement })
      focustrap.activate()

      const first = document.getElementById('first')
      const inside = document.getElementById('inside')
      const last = document.getElementById('last')
      const outside = document.getElementById('outside')

      spyOn(SelectorEngine, 'focusableChildren').and.callFake(() => [first, inside, last])
      spyOn(last, 'focus').and.callThrough()

      const focusInListener = () => {
        expect(last.focus).toHaveBeenCalled()
        last.removeEventListener('focusin', focusInListener)
        done()
      }

      last.addEventListener('focusin', focusInListener)

      const keydown = createEvent('keydown')
      keydown.key = 'Tab'
      keydown.shiftKey = true

      document.dispatchEvent(keydown)
      outside.focus()
    })

    it('should force focus on itself if there is no focusable content', done => {
      fixtureEl.innerHTML = [
        '<a href="#" id="outside">outside</a>',
        '<div id="focustrap" tabindex="-1"></div>'
      ].join('')

      const trapElement = fixtureEl.querySelector('div')
      const focustrap = new FocusTrap({ trapElement })
      focustrap.activate()

      const focusInListener = () => {
        expect(focustrap._config.trapElement.focus).toHaveBeenCalled()
        document.removeEventListener('focusin', focusInListener)
        done()
      }

      spyOn(focustrap._config.trapElement, 'focus')

      document.addEventListener('focusin', focusInListener)

      const focusInEvent = createEvent('focusin', { bubbles: true })
      Object.defineProperty(focusInEvent, 'target', {
        value: document.getElementById('outside')
      })

      document.dispatchEvent(focusInEvent)
    })
  })

  describe('deactivate', () => {
    it('should flag itself as no longer active', () => {
      const focustrap = new FocusTrap({ trapElement: fixtureEl })
      focustrap.activate()
      expect(focustrap._isActive).toBeTrue()

      focustrap.deactivate()
      expect(focustrap._isActive).toBeFalse()
    })

    it('should remove all event listeners', () => {
      const focustrap = new FocusTrap({ trapElement: fixtureEl })
      focustrap.activate()

      spyOn(EventHandler, 'off')
      focustrap.deactivate()

      expect(EventHandler.off).toHaveBeenCalled()
    })

    it('doesn\'t try removing event listeners unless it needs to (in case it hasn\'t been activated)', () => {
      const focustrap = new FocusTrap({ trapElement: fixtureEl })

      spyOn(EventHandler, 'off')
      focustrap.deactivate()

      expect(EventHandler.off).not.toHaveBeenCalled()
    })
  })
})