summaryrefslogtreecommitdiff
path: root/spec/frontend/alert_management/components/alert_management_empty_state_spec.js
blob: 6712282503d02babdc4cb943fa4921b04491d894 (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
import { shallowMount } from '@vue/test-utils';
import { GlEmptyState } from '@gitlab/ui';
import AlertManagementEmptyState from '~/alert_management/components/alert_management_empty_state.vue';

describe('AlertManagementEmptyState', () => {
  let wrapper;

  function mountComponent({
    props = {
      alertManagementEnabled: false,
      userCanEnableAlertManagement: false,
    },
    stubs = {},
  } = {}) {
    wrapper = shallowMount(AlertManagementEmptyState, {
      propsData: {
        enableAlertManagementPath: '/link',
        alertsHelpUrl: '/link',
        emptyAlertSvgPath: 'illustration/path',
        ...props,
      },
      stubs,
    });
  }

  beforeEach(() => {
    mountComponent();
  });

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

  const EmptyState = () => wrapper.find(GlEmptyState);

  describe('Empty state', () => {
    it('shows empty state', () => {
      expect(EmptyState().exists()).toBe(true);
    });

    it('show OpsGenie integration state when OpsGenie mcv is true', () => {
      mountComponent({
        props: {
          alertManagementEnabled: false,
          userCanEnableAlertManagement: false,
          opsgenieMvcEnabled: true,
          opsgenieMvcTargetUrl: 'https://opsgenie-url.com',
        },
      });
      expect(EmptyState().props('title')).toBe('Opsgenie is enabled');
    });
  });
});