debian-mirror-gitlab/spec/frontend/pipelines/pipelines_ci_templates_spec.js

108 lines
3.3 KiB
JavaScript
Raw Normal View History

2021-09-30 23:02:18 +05:30
import '~/commons';
2021-04-29 21:17:54 +05:30
import { shallowMount } from '@vue/test-utils';
2021-09-30 23:02:18 +05:30
import { mockTracking } from 'helpers/tracking_helper';
2021-04-29 21:17:54 +05:30
import PipelinesCiTemplate from '~/pipelines/components/pipelines_list/pipelines_ci_templates.vue';
2021-09-30 23:02:18 +05:30
const pipelineEditorPath = '/-/ci/editor';
2021-04-29 21:17:54 +05:30
const suggestedCiTemplates = [
{ name: 'Android', logo: '/assets/illustrations/logos/android.svg' },
{ name: 'Bash', logo: '/assets/illustrations/logos/bash.svg' },
{ name: 'C++', logo: '/assets/illustrations/logos/c_plus_plus.svg' },
];
describe('Pipelines CI Templates', () => {
let wrapper;
2021-09-30 23:02:18 +05:30
let trackingSpy;
2021-04-29 21:17:54 +05:30
const createWrapper = () => {
return shallowMount(PipelinesCiTemplate, {
provide: {
2021-09-30 23:02:18 +05:30
pipelineEditorPath,
2021-04-29 21:17:54 +05:30
suggestedCiTemplates,
},
});
};
const findTestTemplateLinks = () => wrapper.findAll('[data-testid="test-template-link"]');
const findTemplateDescriptions = () => wrapper.findAll('[data-testid="template-description"]');
const findTemplateLinks = () => wrapper.findAll('[data-testid="template-link"]');
const findTemplateNames = () => wrapper.findAll('[data-testid="template-name"]');
const findTemplateLogos = () => wrapper.findAll('[data-testid="template-logo"]');
afterEach(() => {
wrapper.destroy();
wrapper = null;
});
describe('renders test template', () => {
beforeEach(() => {
wrapper = createWrapper();
});
2021-09-30 23:02:18 +05:30
it('links to the getting started template', () => {
2021-04-29 21:17:54 +05:30
expect(findTestTemplateLinks().at(0).attributes('href')).toBe(
2021-09-30 23:02:18 +05:30
pipelineEditorPath.concat('?template=Getting-Started'),
2021-04-29 21:17:54 +05:30
);
});
});
describe('renders template list', () => {
beforeEach(() => {
wrapper = createWrapper();
});
it('renders all suggested templates', () => {
const content = wrapper.text();
expect(content).toContain('Android', 'Bash', 'C++');
});
it('has the correct template name', () => {
expect(findTemplateNames().at(0).text()).toBe('Android');
});
it('links to the correct template', () => {
expect(findTemplateLinks().at(0).attributes('href')).toBe(
2021-09-30 23:02:18 +05:30
pipelineEditorPath.concat('?template=Android'),
2021-04-29 21:17:54 +05:30
);
});
it('has the description of the template', () => {
expect(findTemplateDescriptions().at(0).text()).toBe(
'CI/CD template to test and deploy your Android project.',
);
});
it('has the right logo of the template', () => {
expect(findTemplateLogos().at(0).attributes('src')).toBe(
'/assets/illustrations/logos/android.svg',
);
});
});
describe('tracking', () => {
beforeEach(() => {
wrapper = createWrapper();
2021-09-30 23:02:18 +05:30
trackingSpy = mockTracking(undefined, wrapper.element, jest.spyOn);
2021-04-29 21:17:54 +05:30
});
it('sends an event when template is clicked', () => {
findTemplateLinks().at(0).vm.$emit('click');
2021-09-30 23:02:18 +05:30
expect(trackingSpy).toHaveBeenCalledTimes(1);
expect(trackingSpy).toHaveBeenCalledWith(undefined, 'template_clicked', {
2021-04-29 21:17:54 +05:30
label: 'Android',
});
});
2021-09-30 23:02:18 +05:30
it('sends an event when Getting-Started template is clicked', () => {
2021-04-29 21:17:54 +05:30
findTestTemplateLinks().at(0).vm.$emit('click');
2021-09-30 23:02:18 +05:30
expect(trackingSpy).toHaveBeenCalledTimes(1);
expect(trackingSpy).toHaveBeenCalledWith(undefined, 'template_clicked', {
label: 'Getting-Started',
2021-04-29 21:17:54 +05:30
});
});
});
});