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

collapsible_section_spec.js « log « components « job_details « ci « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5abf2a5ce5397f0027eea8649617deef829c1b67 (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
95
96
97
98
99
100
101
102
103
import { mount } from '@vue/test-utils';
import { nextTick } from 'vue';
import CollapsibleSection from '~/ci/job_details/components/log/collapsible_section.vue';
import LogLine from '~/ci/job_details/components/log/line.vue';
import LogLineHeader from '~/ci/job_details/components/log/line_header.vue';
import { collapsibleSectionClosed, collapsibleSectionOpened } from './mock_data';

describe('Job Log Collapsible Section', () => {
  let wrapper;

  const jobLogEndpoint = 'jobs/335';

  const findLogLineHeader = () => wrapper.findComponent(LogLineHeader);
  const findLogLineHeaderSvg = () => findLogLineHeader().find('svg');
  const findLogLines = () => wrapper.findAllComponents(LogLine);

  const createComponent = (props = {}) => {
    wrapper = mount(CollapsibleSection, {
      propsData: {
        ...props,
      },
    });
  };

  describe('with closed section', () => {
    beforeEach(() => {
      createComponent({
        section: collapsibleSectionClosed,
        jobLogEndpoint,
      });
    });

    it('renders clickable header line', () => {
      expect(findLogLineHeader().text()).toBe('1 foo');
      expect(findLogLineHeader().attributes('role')).toBe('button');
    });

    it('renders an icon with a closed state', () => {
      expect(findLogLineHeaderSvg().attributes('data-testid')).toBe('chevron-lg-right-icon');
    });

    it('does not render collapsed lines', () => {
      expect(findLogLines()).toHaveLength(0);
    });
  });

  describe('with opened section', () => {
    beforeEach(() => {
      createComponent({
        section: collapsibleSectionOpened,
        jobLogEndpoint,
      });
    });

    it('renders clickable header line', () => {
      expect(findLogLineHeader().text()).toContain('foo');
      expect(findLogLineHeader().attributes('role')).toBe('button');
    });

    it('renders an icon with the open state', () => {
      expect(findLogLineHeaderSvg().attributes('data-testid')).toBe('chevron-lg-down-icon');
    });

    it('renders collapsible lines', () => {
      expect(findLogLines().at(0).text()).toContain('this is a collapsible nested section');
      expect(findLogLines()).toHaveLength(collapsibleSectionOpened.lines.length);
    });
  });

  it('emits onClickCollapsibleLine on click', async () => {
    createComponent({
      section: collapsibleSectionOpened,
      jobLogEndpoint,
    });

    findLogLineHeader().trigger('click');

    await nextTick();
    expect(wrapper.emitted('onClickCollapsibleLine').length).toBe(1);
  });

  describe('with search results', () => {
    it('passes isHighlighted prop correctly', () => {
      const mockSearchResults = [
        {
          content: [{ text: 'foo' }],
          lineNumber: 1,
          offset: 5,
          section: 'prepare-script',
          section_header: true,
        },
      ];

      createComponent({
        section: collapsibleSectionOpened,
        jobLogEndpoint,
        searchResults: mockSearchResults,
      });

      expect(findLogLineHeader().props('isHighlighted')).toBe(true);
    });
  });
});