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

highlight_bar_spec.js « incidents « components « issue_show « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d50df5e406752e566d45c717e912d74fbafc8c3 (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
import { shallowMount } from '@vue/test-utils';
import { GlLink } from '@gitlab/ui';
import HighlightBar from '~/issue_show/components/incidents/highlight_bar.vue';
import { formatDate } from '~/lib/utils/datetime_utility';

jest.mock('~/lib/utils/datetime_utility');

describe('Highlight Bar', () => {
  let wrapper;

  const alert = {
    startedAt: '2020-05-29T10:39:22Z',
    detailsUrl: 'http://127.0.0.1:3000/root/unique-alerts/-/alert_management/1/details',
    eventCount: 1,
    title: 'Alert 1',
  };

  const mountComponent = () => {
    wrapper = shallowMount(HighlightBar, {
      propsData: {
        alert,
      },
    });
  };

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

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

  const findLink = () => wrapper.find(GlLink);

  it('renders a link to the alert page', () => {
    expect(findLink().exists()).toBe(true);
    expect(findLink().attributes('href')).toBe(alert.detailsUrl);
    expect(findLink().text()).toContain(alert.title);
  });

  it('renders formatted start time of the alert', () => {
    const formattedDate = '2020-05-29 UTC';
    formatDate.mockReturnValueOnce(formattedDate);
    mountComponent();
    expect(formatDate).toHaveBeenCalledWith(alert.startedAt, 'yyyy-mm-dd Z');
    expect(wrapper.text()).toContain(formattedDate);
  });

  it('renders a number of alert events', () => {
    expect(wrapper.text()).toContain(alert.eventCount);
  });
});