summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/modal_copy_button_spec.js
blob: 3c71cb16bd5b85237c529645be5f684a7e6c2cb4 (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
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',
      },
      attachToDocument: true,
      sync: false,
    });
  });

  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');
      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');
      expect(wrapper.emitted().error).not.toBeEmpty();
      expect(document.execCommand).toHaveBeenCalledWith('copy');
    });
  });
});