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');
|
|
|
|
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', () => {
|
2020-11-24 15:15:51 +05:30
|
|
|
expect(wrapper.find(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);
|
|
|
|
});
|
|
|
|
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
|
|
|
|
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
|
|
|
});
|
|
|
|
});
|