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

timeline_events_list_spec.js « incidents « components « show « issues « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6610ea0b832ff21381712a17ac081a421fe70ea9 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import timezoneMock from 'timezone-mock';
import merge from 'lodash/merge';
import { shallowMountExtended, extendedWrapper } from 'helpers/vue_test_utils_helper';
import IncidentTimelineEventList from '~/issues/show/components/incidents/timeline_events_list.vue';
import { mockEvents } from './mock_data';

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

  const mountComponent = () => {
    wrapper = shallowMountExtended(
      IncidentTimelineEventList,
      merge({
        provide: {
          fullPath: 'group/project',
          issuableId: '1',
        },
        propsData: {
          timelineEvents: mockEvents,
        },
      }),
    );
  };

  const findGroups = () => wrapper.findAllByTestId('timeline-group');
  const findItems = (base = wrapper) => base.findAllByTestId('timeline-event');
  const findFirstGroup = () => extendedWrapper(findGroups().at(0));
  const findSecondGroup = () => extendedWrapper(findGroups().at(1));
  const findDates = () => wrapper.findAllByTestId('event-date');

  describe('template', () => {
    it('groups items correctly', () => {
      mountComponent();

      expect(findGroups()).toHaveLength(2);

      expect(findItems(findFirstGroup())).toHaveLength(1);
      expect(findItems(findSecondGroup())).toHaveLength(2);
    });

    it('sets the isLastItem prop correctly', () => {
      mountComponent();

      expect(findItems().at(0).props('isLastItem')).toBe(false);
      expect(findItems().at(1).props('isLastItem')).toBe(false);
      expect(findItems().at(2).props('isLastItem')).toBe(true);
    });

    it('sets the event props correctly', () => {
      mountComponent();

      expect(findItems().at(1).props('occurredAt')).toBe(mockEvents[1].occurredAt);
      expect(findItems().at(1).props('action')).toBe(mockEvents[1].action);
      expect(findItems().at(1).props('noteHtml')).toBe(mockEvents[1].noteHtml);
    });

    it('formats dates correctly', () => {
      mountComponent();

      expect(findDates().at(0).text()).toBe('2022-03-22');
      expect(findDates().at(1).text()).toBe('2022-03-23');
    });

    describe.each`
      timezone
      ${'Europe/London'}
      ${'US/Pacific'}
      ${'Australia/Adelaide'}
    `('when viewing in timezone', ({ timezone }) => {
      describe(timezone, () => {
        beforeEach(() => {
          timezoneMock.register(timezone);

          mountComponent();
        });

        afterEach(() => {
          timezoneMock.unregister();
        });

        it('displays the correct time', () => {
          expect(findDates().at(0).text()).toBe('2022-03-22');
        });
      });
    });
  });
});