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

escalation_status_spec.js « incidents « components « sidebar « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ef56e30eb0d61b835a401fc99b9fe44892caf2d (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
import { GlCollapsibleListbox, GlListboxItem } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
import EscalationStatus from '~/sidebar/components/incidents/escalation_status.vue';
import { STATUS_LABELS, STATUS_TRIGGERED, STATUS_ACKNOWLEDGED } from '~/sidebar/constants';

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

  function createComponent(props) {
    wrapper = mount(EscalationStatus, {
      propsData: {
        value: STATUS_TRIGGERED,
        ...props,
      },
    });
  }

  const findDropdownComponent = () => wrapper.findComponent(GlCollapsibleListbox);
  const findDropdownItem = (at) => wrapper.findAllComponents(GlListboxItem).at(at);

  describe('status', () => {
    it('shows the current status', () => {
      createComponent({ value: STATUS_ACKNOWLEDGED });

      expect(findDropdownComponent().props('toggleText')).toBe(STATUS_LABELS[STATUS_ACKNOWLEDGED]);
    });

    it('shows the None option when status is null', () => {
      createComponent({ value: null });

      expect(findDropdownComponent().props('toggleText')).toBe('None');
    });
    it('renders headerText when it is provided', () => {
      const headerText = 'some text';
      createComponent({ headerText });

      expect(findDropdownComponent().text()).toContain(headerText);
    });

    it('renders subtext when it is provided', () => {
      const subText = 'some subtext';
      const statusSubtexts = { [STATUS_ACKNOWLEDGED]: subText };
      createComponent({ statusSubtexts });

      expect(findDropdownItem(1).text()).toContain(subText);
    });
  });

  describe('events', () => {
    it('selects an item', () => {
      createComponent();
      findDropdownComponent().vm.$emit('select', STATUS_ACKNOWLEDGED);

      expect(wrapper.emitted().input[0][0]).toBe(STATUS_ACKNOWLEDGED);
    });
  });
});