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

modal_copy_button_spec.js « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca9f8ff54d474319c3c4c8301a006e7729c962de (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
import { shallowMount, createWrapper } from '@vue/test-utils';
import ModalCopyButton from '~/vue_shared/components/modal_copy_button.vue';

describe('modal copy button', () => {
  let wrapper;

  afterEach(() => {
    wrapper.destroy();
  });

  beforeEach(() => {
    wrapper = shallowMount(ModalCopyButton, {
      propsData: {
        text: 'copy me',
        title: 'Copy this value',
        id: 'test-id',
      },
    });
  });

  describe('clipboard', () => {
    it('should fire a `success` event on click', () => {
      const root = createWrapper(wrapper.vm.$root);
      document.execCommand = jest.fn(() => true);
      window.getSelection = jest.fn(() => ({
        toString: jest.fn(() => 'test'),
        removeAllRanges: jest.fn(),
      }));
      wrapper.trigger('click');

      return wrapper.vm.$nextTick().then(() => {
        expect(wrapper.emitted().success).not.toBeEmpty();
        expect(document.execCommand).toHaveBeenCalledWith('copy');
        expect(root.emitted('bv::hide::tooltip')).toEqual([['test-id']]);
      });
    });
    it("should propagate the clipboard error event if execCommand doesn't work", () => {
      document.execCommand = jest.fn(() => false);
      wrapper.trigger('click');

      return wrapper.vm.$nextTick().then(() => {
        expect(wrapper.emitted().error).not.toBeEmpty();
        expect(document.execCommand).toHaveBeenCalledWith('copy');
      });
    });
  });
});