summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/directives/autofocusonshow_spec.js
blob: 90530b7d5c2c677f5b4d68273012c3eebb5b81c9 (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
import autofocusonshow from '~/vue_shared/directives/autofocusonshow';

/**
 * We're testing this directive's hooks as pure functions
 * since behaviour of this directive is highly-dependent
 * on underlying DOM methods.
 */
describe('AutofocusOnShow directive', () => {
  describe('with input invisible on component render', () => {
    let el;

    beforeEach(() => {
      setFixtures('<div id="container" style="display: none;"><input id="inputel"/></div>');
      el = document.querySelector('#inputel');

      window.IntersectionObserver = class {
        observe = jest.fn();
      };
    });

    afterEach(() => {
      delete window.IntersectionObserver;
    });

    it('should bind IntersectionObserver on input element', () => {
      jest.spyOn(el, 'focus').mockImplementation(() => {});

      autofocusonshow.inserted(el);

      expect(el.visibilityObserver).toBeDefined();
      expect(el.focus).not.toHaveBeenCalled();
    });

    it('should stop IntersectionObserver on input element on unbind hook', () => {
      el.visibilityObserver = {
        disconnect: () => {},
      };
      jest.spyOn(el.visibilityObserver, 'disconnect').mockImplementation(() => {});

      autofocusonshow.unbind(el);

      expect(el.visibilityObserver).toBeDefined();
      expect(el.visibilityObserver.disconnect).toHaveBeenCalled();
    });
  });
});