summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_mr_widget/components/mr_widget_status_icon_spec.js
blob: c25e10c52497da9d6db0abf7a2e196e2ee5361b9 (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
import { GlLoadingIcon } from '@gitlab/ui';
import { shallowMount, mount } from '@vue/test-utils';
import mrStatusIcon from '~/vue_merge_request_widget/components/mr_widget_status_icon.vue';

describe('MR widget status icon component', () => {
  let wrapper;

  const findLoadingIcon = () => wrapper.find(GlLoadingIcon);
  const findDisabledMergeButton = () => wrapper.find('[data-testid="disabled-merge-button"]');

  const createWrapper = (props, mountFn = shallowMount) => {
    wrapper = mountFn(mrStatusIcon, {
      propsData: {
        ...props,
      },
    });
  };

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

  describe('while loading', () => {
    it('renders loading icon', () => {
      createWrapper({ status: 'loading' });

      expect(findLoadingIcon().exists()).toBe(true);
    });
  });

  describe('with status icon', () => {
    it('renders success status icon', () => {
      createWrapper({ status: 'success' }, mount);

      expect(wrapper.find('[data-testid="status_success-icon"]').exists()).toBe(true);
    });

    it('renders failed status icon', () => {
      createWrapper({ status: 'failed' }, mount);

      expect(wrapper.find('[data-testid="status_failed-icon"]').exists()).toBe(true);
    });
  });

  describe('with disabled button', () => {
    it('renders a disabled button', () => {
      createWrapper({ status: 'failed', showDisabledButton: true });

      expect(findDisabledMergeButton().exists()).toBe(true);
    });
  });

  describe('without disabled button', () => {
    it('does not render a disabled button', () => {
      createWrapper({ status: 'failed' });

      expect(findDisabledMergeButton().exists()).toBe(false);
    });
  });
});