debian-mirror-gitlab/spec/frontend/jobs/components/log/line_spec.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

225 lines
7.1 KiB
JavaScript
Raw Normal View History

2019-12-04 20:38:33 +05:30
import { shallowMount } from '@vue/test-utils';
import Line from '~/jobs/components/log/line.vue';
import LineNumber from '~/jobs/components/log/line_number.vue';
2021-01-29 00:20:46 +05:30
const httpUrl = 'http://example.com';
const httpsUrl = 'https://example.com';
2021-02-22 17:27:13 +05:30
const queryUrl = 'https://example.com?param=val';
2021-01-29 00:20:46 +05:30
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',
});
2019-12-04 20:38:33 +05:30
describe('Job Log Line', () => {
let wrapper;
2021-01-29 00:20:46 +05:30
let data;
2019-12-04 20:38:33 +05:30
const createComponent = (props = {}) => {
wrapper = shallowMount(Line, {
propsData: {
...props,
},
});
};
2021-01-29 00:20:46 +05:30
const findLine = () => wrapper.find('span');
const findLink = () => findLine().find('a');
2021-02-22 17:27:13 +05:30
const findLinks = () => findLine().findAll('a');
2021-03-08 18:12:59 +05:30
const findLinkAttributeByIndex = (i) => findLinks().at(i).attributes();
2021-01-29 00:20:46 +05:30
2019-12-04 20:38:33 +05:30
beforeEach(() => {
2021-01-29 00:20:46 +05:30
data = mockProps();
2019-12-04 20:38:33 +05:30
createComponent(data);
});
it('renders the line number component', () => {
2022-10-11 01:57:18 +05:30
expect(wrapper.findComponent(LineNumber).exists()).toBe(true);
2019-12-04 20:38:33 +05:30
});
it('renders a span the provided text', () => {
2021-01-29 00:20:46 +05:30
expect(findLine().text()).toBe(data.line.content[0].text);
2019-12-04 20:38:33 +05:30
});
it('renders the provided style as a class attribute', () => {
2021-01-29 00:20:46 +05:30
expect(findLine().classes()).toContain(data.line.content[0].style);
});
2021-02-22 17:27:13 +05:30
describe('job urls as links', () => {
2021-01-29 00:20:46 +05:30
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 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']);
});
2021-02-22 17:27:13 +05:30
it('renders links with queries, surrounded by questions marks', () => {
createComponent(mockProps({ text: `Did you see my url ${queryUrl}??` }));
expect(findLine().text()).toBe('Did you see my url https://example.com?param=val??');
expect(findLinkAttributeByIndex(0).href).toBe(queryUrl);
});
it('renders links with queries, surrounded by exclamation marks', () => {
createComponent(mockProps({ text: `No! The ${queryUrl}!?` }));
expect(findLine().text()).toBe('No! The https://example.com?param=val!?');
expect(findLinkAttributeByIndex(0).href).toBe(queryUrl);
});
2021-09-30 23:02:18 +05:30
it('renders links that have brackets `[]` in their parameters', () => {
const url = `${httpUrl}?label_name[]=frontend`;
createComponent(mockProps({ text: url }));
expect(findLine().text()).toBe(url);
expect(findLinks().at(0).text()).toBe(url);
expect(findLinks().at(0).attributes('href')).toBe(url);
});
2021-02-22 17:27:13 +05:30
it('renders multiple links surrounded by text', () => {
2021-01-29 00:20:46 +05:30
createComponent(
2021-02-22 17:27:13 +05:30
mockProps({ text: `Well, my HTTP url: ${httpUrl} and my HTTPS url: ${httpsUrl}` }),
2021-01-29 00:20:46 +05:30
);
expect(findLine().text()).toBe(
2021-02-22 17:27:13 +05:30
'Well, my HTTP url: http://example.com and my HTTPS url: https://example.com',
2021-01-29 00:20:46 +05:30
);
2021-02-22 17:27:13 +05:30
expect(findLinks()).toHaveLength(2);
expect(findLinkAttributeByIndex(0).href).toBe(httpUrl);
expect(findLinkAttributeByIndex(1).href).toBe(httpsUrl);
});
it('renders multiple links surrounded by text, with other symbols', () => {
createComponent(
mockProps({ text: `${httpUrl}, ${httpUrl}: ${httpsUrl}; ${httpsUrl}. ${httpsUrl}...` }),
);
expect(findLine().text()).toBe(
'http://example.com, http://example.com: https://example.com; https://example.com. https://example.com...',
);
expect(findLinks()).toHaveLength(5);
expect(findLinkAttributeByIndex(0).href).toBe(httpUrl);
expect(findLinkAttributeByIndex(1).href).toBe(httpUrl);
expect(findLinkAttributeByIndex(2).href).toBe(httpsUrl);
expect(findLinkAttributeByIndex(3).href).toBe(httpsUrl);
expect(findLinkAttributeByIndex(4).href).toBe(httpsUrl);
});
2021-09-30 23:02:18 +05:30
it('renders multiple links surrounded by brackets', () => {
createComponent(mockProps({ text: `(${httpUrl}) <${httpUrl}> {${httpsUrl}}` }));
expect(findLine().text()).toBe(
'(http://example.com) <http://example.com> {https://example.com}',
);
const links = findLinks();
expect(links).toHaveLength(3);
expect(links.at(0).text()).toBe(httpUrl);
expect(links.at(0).attributes('href')).toBe(httpUrl);
expect(links.at(1).text()).toBe(httpUrl);
expect(links.at(1).attributes('href')).toBe(httpUrl);
expect(links.at(2).text()).toBe(httpsUrl);
expect(links.at(2).attributes('href')).toBe(httpsUrl);
});
2021-02-22 17:27:13 +05:30
it('renders text with symbols in it', () => {
const text = 'apt-get update < /dev/null > /dev/null';
createComponent(mockProps({ text }));
expect(findLine().text()).toBe(text);
2021-01-29 00:20:46 +05:30
});
const jshref = 'javascript:doEvil();'; // eslint-disable-line no-script-url
2021-02-22 17:27:13 +05:30
it.each`
type | text
${'html link'} | ${'<a href="#">linked</a>'}
${'html script'} | ${'<script>doEvil();</script>'}
${'html strong'} | ${'<strong>highlighted</strong>'}
${'js'} | ${jshref}
${'file'} | ${'file:///a-file'}
${'ftp'} | ${'ftp://example.com/file'}
${'email'} | ${'email@example.com'}
${'no scheme'} | ${'example.com/page'}
2021-01-29 00:20:46 +05:30
`('does not render a $type link', ({ text }) => {
createComponent(mockProps({ text }));
expect(findLink().exists()).toBe(false);
});
2019-12-04 20:38:33 +05:30
});
2022-08-13 15:12:31 +05:30
describe('job log search', () => {
const mockSearchResults = [
{
offset: 1533,
content: [{ text: '$ echo "82.71"', style: 'term-fg-l-green term-bold' }],
section: 'step-script',
lineNumber: 20,
},
{ offset: 1560, content: [{ text: '82.71' }], section: 'step-script', lineNumber: 21 },
];
it('applies highlight class to search result elements', () => {
createComponent({
line: {
offset: 1560,
content: [{ text: '82.71' }],
section: 'step-script',
lineNumber: 21,
},
path: '/root/ci-project/-/jobs/1089',
searchResults: mockSearchResults,
});
expect(wrapper.classes()).toContain('gl-bg-gray-500');
});
it('does not apply highlight class to search result elements', () => {
createComponent({
line: {
offset: 1560,
content: [{ text: 'docker' }],
section: 'step-script',
lineNumber: 29,
},
path: '/root/ci-project/-/jobs/1089',
searchResults: mockSearchResults,
});
expect(wrapper.classes()).not.toContain('gl-bg-gray-500');
});
});
2019-12-04 20:38:33 +05:30
});