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

handle_streamed_relative_timestamps_spec.js « streaming « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12bd27488b1aee8aadf6335688ecc27c21fe33ec (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
88
89
90
91
92
93
94
import { resetHTMLFixture, setHTMLFixture } from 'helpers/fixtures';
import waitForPromises from 'helpers/wait_for_promises';
import { handleStreamedRelativeTimestamps } from '~/streaming/handle_streamed_relative_timestamps';
import { localTimeAgo } from '~/lib/utils/datetime_utility';
import { useMockIntersectionObserver } from 'helpers/mock_dom_observer';

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

const TIMESTAMP_MOCK = `<div class="js-timeago">Oct 2, 2019</div>`;

describe('handleStreamedRelativeTimestamps', () => {
  const findRoot = () => document.querySelector('#root');
  const findStreamingElement = () => document.querySelector('streaming-element');
  const findTimestamp = () => document.querySelector('.js-timeago');

  afterEach(() => {
    resetHTMLFixture();
  });

  describe('when element is present', () => {
    beforeEach(() => {
      setHTMLFixture(`<div id="root">${TIMESTAMP_MOCK}</div>`);
      handleStreamedRelativeTimestamps(findRoot());
    });

    it('does nothing', async () => {
      await waitForPromises();
      expect(localTimeAgo).not.toHaveBeenCalled();
    });
  });

  describe('when element is streamed', () => {
    let relativeTimestampsHandler;
    const { trigger: triggerIntersection } = useMockIntersectionObserver();

    const insertStreamingElement = () =>
      findRoot().insertAdjacentHTML('afterbegin', `<streaming-element></streaming-element>`);

    beforeEach(() => {
      setHTMLFixture('<div id="root"></div>');
      relativeTimestampsHandler = handleStreamedRelativeTimestamps(findRoot());
    });

    it('formats and unobserved the timestamp when inserted and intersecting', async () => {
      insertStreamingElement();
      await waitForPromises();
      findStreamingElement().insertAdjacentHTML('afterbegin', TIMESTAMP_MOCK);
      await waitForPromises();

      const timestamp = findTimestamp();
      const unobserveMock = jest.fn();

      triggerIntersection(findTimestamp(), {
        entry: { isIntersecting: true },
        observer: { unobserve: unobserveMock },
      });

      expect(unobserveMock).toHaveBeenCalled();
      expect(localTimeAgo).toHaveBeenCalledWith([timestamp]);
    });

    it('does not format the timestamp when inserted but not intersecting', async () => {
      insertStreamingElement();
      await waitForPromises();
      findStreamingElement().insertAdjacentHTML('afterbegin', TIMESTAMP_MOCK);
      await waitForPromises();

      const unobserveMock = jest.fn();

      triggerIntersection(findTimestamp(), {
        entry: { isIntersecting: false },
        observer: { unobserve: unobserveMock },
      });

      expect(unobserveMock).not.toHaveBeenCalled();
      expect(localTimeAgo).not.toHaveBeenCalled();
    });

    it('does not format the time when destroyed', async () => {
      insertStreamingElement();

      const stop = await relativeTimestampsHandler;
      stop();

      await waitForPromises();
      findStreamingElement().insertAdjacentHTML('afterbegin', TIMESTAMP_MOCK);
      await waitForPromises();

      triggerIntersection(findTimestamp(), { entry: { isIntersecting: true } });

      expect(localTimeAgo).not.toHaveBeenCalled();
    });
  });
});