summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/modal_copy_button_spec.js
blob: e5a8860f42e9de6f4779a27281445445aa9ba8c8 (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 Vue from 'vue';
import { shallowMount } from '@vue/test-utils';
import modalCopyButton from '~/vue_shared/components/modal_copy_button.vue';

describe('modal copy button', () => {
  const Component = Vue.extend(modalCopyButton);
  let wrapper;

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

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

  describe('clipboard', () => {
    it('should fire a `success` event on click', () => {
      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');
      });
    });
    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');
      });
    });
  });
});