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

line_spec.js « log « components « jobs « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 314b23ec29bb185e087b117ec0df48386642bba9 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import { shallowMount } from '@vue/test-utils';
import Line from '~/jobs/components/log/line.vue';
import LineNumber from '~/jobs/components/log/line_number.vue';

const httpUrl = 'http://example.com';
const httpsUrl = 'https://example.com';

const mockProps = ({ text = 'Running with gitlab-runner 12.1.0 (de7731dd)' } = {}) => ({
  line: {
    content: [
      {
        text,
        style: 'term-fg-l-green',
      },
    ],
    lineNumber: 0,
  },
  path: '/jashkenas/underscore/-/jobs/335',
});

describe('Job Log Line', () => {
  let wrapper;
  let data;
  let originalGon;

  const createComponent = (props = {}) => {
    wrapper = shallowMount(Line, {
      propsData: {
        ...props,
      },
    });
  };

  const findLine = () => wrapper.find('span');
  const findLink = () => findLine().find('a');
  const findLinksAt = i =>
    findLine()
      .findAll('a')
      .at(i);

  beforeEach(() => {
    originalGon = window.gon;
    window.gon.features = {
      ciJobLineLinks: false,
    };

    data = mockProps();
    createComponent(data);
  });

  afterEach(() => {
    window.gon = originalGon;
  });

  it('renders the line number component', () => {
    expect(wrapper.find(LineNumber).exists()).toBe(true);
  });

  it('renders a span the provided text', () => {
    expect(findLine().text()).toBe(data.line.content[0].text);
  });

  it('renders the provided style as a class attribute', () => {
    expect(findLine().classes()).toContain(data.line.content[0].style);
  });

  describe.each([true, false])('when feature ci_job_line_links enabled = %p', ciJobLineLinks => {
    beforeEach(() => {
      window.gon.features = {
        ciJobLineLinks,
      };
    });

    it('renders text with symbols', () => {
      const text = 'apt-get update < /dev/null > /dev/null';
      createComponent(mockProps({ text }));

      expect(findLine().text()).toBe(text);
    });

    it.each`
      tag         | text
      ${'a'}      | ${'<a href="#">linked</a>'}
      ${'script'} | ${'<script>doEvil();</script>'}
      ${'strong'} | ${'<strong>highlighted</strong>'}
    `('escapes `<$tag>` tags in text', ({ tag, text }) => {
      createComponent(mockProps({ text }));

      expect(
        findLine()
          .find(tag)
          .exists(),
      ).toBe(false);
      expect(findLine().text()).toBe(text);
    });
  });

  describe('when ci_job_line_links is enabled', () => {
    beforeEach(() => {
      window.gon.features = {
        ciJobLineLinks: true,
      };
    });

    it('renders an http link', () => {
      createComponent(mockProps({ text: httpUrl }));

      expect(findLink().text()).toBe(httpUrl);
      expect(findLink().attributes().href).toBe(httpUrl);
    });

    it('renders an https link', () => {
      createComponent(mockProps({ text: httpsUrl }));

      expect(findLink().text()).toBe(httpsUrl);
      expect(findLink().attributes().href).toBe(httpsUrl);
    });

    it('renders a multiple links surrounded by text', () => {
      createComponent(mockProps({ text: `My HTTP url: ${httpUrl} and my HTTPS url: ${httpsUrl}` }));
      expect(findLine().text()).toBe(
        'My HTTP url: http://example.com and my HTTPS url: https://example.com',
      );
      expect(findLinksAt(0).attributes().href).toBe(httpUrl);
      expect(findLinksAt(1).attributes().href).toBe(httpsUrl);
    });

    it('renders a link with rel nofollow and noopener', () => {
      createComponent(mockProps({ text: httpsUrl }));

      expect(findLink().attributes().rel).toBe('nofollow noopener noreferrer');
    });

    it('renders a link with corresponding styles', () => {
      createComponent(mockProps({ text: httpsUrl }));

      expect(findLink().classes()).toEqual(['gl-reset-color!', 'gl-text-decoration-underline']);
    });

    it('render links surrounded by text', () => {
      createComponent(
        mockProps({ text: `My HTTP url: ${httpUrl} and my HTTPS url: ${httpsUrl} are here.` }),
      );
      expect(findLine().text()).toBe(
        'My HTTP url: http://example.com and my HTTPS url: https://example.com are here.',
      );
      expect(findLinksAt(0).attributes().href).toBe(httpUrl);
      expect(findLinksAt(1).attributes().href).toBe(httpsUrl);
    });

    const jshref = 'javascript:doEvil();'; // eslint-disable-line no-script-url

    test.each`
      type           | text
      ${'js'}        | ${jshref}
      ${'file'}      | ${'file:///a-file'}
      ${'ftp'}       | ${'ftp://example.com/file'}
      ${'email'}     | ${'email@example.com'}
      ${'no scheme'} | ${'example.com/page'}
    `('does not render a $type link', ({ text }) => {
      createComponent(mockProps({ text }));
      expect(findLink().exists()).toBe(false);
    });
  });
});