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

remove_modal_spec.js « components « projects « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 339aee65b991933ae5851bf5af198aa03d99a982 (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
import { shallowMount } from '@vue/test-utils';
import { GlButton, GlModal } from '@gitlab/ui';
import ProjectRemoveModal from '~/projects/components/remove_modal.vue';

describe('Project remove modal', () => {
  let wrapper;

  const findFormElement = () => wrapper.find('form').element;
  const findConfirmButton = () => wrapper.find(GlModal).find(GlButton);

  const defaultProps = {
    formPath: 'some/path',
    confirmPhrase: 'foo',
    warningMessage: 'This can lead to data loss.',
  };

  const createComponent = (data = {}) => {
    wrapper = shallowMount(ProjectRemoveModal, {
      propsData: defaultProps,
      data: () => data,
      stubs: {
        GlButton,
        GlModal,
      },
    });
  };

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

  describe('initialized', () => {
    beforeEach(() => {
      createComponent();
    });

    it('matches the snapshot', () => {
      expect(wrapper.element).toMatchSnapshot();
    });
  });

  describe('user input matches the confirmPhrase', () => {
    beforeEach(() => {
      createComponent({ userInput: defaultProps.confirmPhrase });
    });

    it('the confirm button is not dislabled', () => {
      expect(findConfirmButton().attributes('disabled')).toBe(undefined);
    });

    describe('and when the confirmation button is clicked', () => {
      beforeEach(() => {
        findConfirmButton().vm.$emit('click');
      });

      it('submits the form element', () => {
        expect(findFormElement().submit).toHaveBeenCalled();
      });
    });
  });
});