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

confirm_modal_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: d3dea73e4a6c01fe3114b977bc4252e66f8be9ff (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
import { shallowMount } from '@vue/test-utils';
import { GlModal } from '@gitlab/ui';
import { TEST_HOST } from 'helpers/test_constants';
import ConfirmModal from '~/vue_shared/components/confirm_modal.vue';

jest.mock('~/lib/utils/csrf', () => ({ token: 'test-csrf-token' }));

describe('vue_shared/components/confirm_modal', () => {
  const testModalProps = {
    path: `${TEST_HOST}/1`,
    method: 'delete',
    modalAttributes: {
      modalId: 'test-confirm-modal',
      title: 'Are you sure?',
      message: 'This will remove item 1',
      okVariant: 'danger',
      okTitle: 'Remove item',
    },
  };

  const actionSpies = {
    openModal: jest.fn(),
  };

  let wrapper;

  const createComponent = (props = {}) => {
    wrapper = shallowMount(ConfirmModal, {
      propsData: {
        ...testModalProps,
        ...props,
      },
      methods: {
        ...actionSpies,
      },
    });
  };

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

  const findModal = () => wrapper.find(GlModal);
  const findForm = () => wrapper.find('form');
  const findFormData = () =>
    findForm()
      .findAll('input')
      .wrappers.map(x => ({ name: x.attributes('name'), value: x.attributes('value') }));

  describe('template', () => {
    describe('when showModal is false', () => {
      beforeEach(() => {
        createComponent();
      });

      it('does not render GlModal', () => {
        expect(findModal().exists()).toBeFalsy();
      });
    });

    describe('when showModal is true', () => {
      beforeEach(() => {
        createComponent({ showModal: true });
      });

      it('renders GlModal', () => {
        expect(findModal().exists()).toBeTruthy();
        expect(findModal().attributes()).toEqual(
          expect.objectContaining({
            modalid: testModalProps.modalAttributes.modalId,
            oktitle: testModalProps.modalAttributes.okTitle,
            okvariant: testModalProps.modalAttributes.okVariant,
          }),
        );
      });
    });
  });

  describe('methods', () => {
    beforeEach(() => {
      createComponent({ showModal: true });
    });

    it('does not submit form', () => {
      expect(findForm().element.submit).not.toHaveBeenCalled();
    });

    describe('when modal submitted', () => {
      beforeEach(() => {
        findModal().vm.$emit('primary');
      });

      it('submits form', () => {
        expect(findFormData()).toEqual([
          { name: '_method', value: testModalProps.method },
          { name: 'authenticity_token', value: 'test-csrf-token' },
        ]);
        expect(findForm().element.submit).toHaveBeenCalled();
      });
    });
  });
});