94 lines
2.6 KiB
JavaScript
94 lines
2.6 KiB
JavaScript
|
import Vue from 'vue';
|
||
|
import navControlsComp from '~/vue_pipelines_index/components/nav_controls';
|
||
|
|
||
|
describe('Pipelines Nav Controls', () => {
|
||
|
let NavControlsComponent;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
NavControlsComponent = Vue.extend(navControlsComp);
|
||
|
});
|
||
|
|
||
|
it('should render link to create a new pipeline', () => {
|
||
|
const mockData = {
|
||
|
newPipelinePath: 'foo',
|
||
|
hasCIEnabled: true,
|
||
|
helpPagePath: 'foo',
|
||
|
ciLintPath: 'foo',
|
||
|
canCreatePipeline: true,
|
||
|
};
|
||
|
|
||
|
const component = new NavControlsComponent({
|
||
|
propsData: mockData,
|
||
|
}).$mount();
|
||
|
|
||
|
expect(component.$el.querySelector('.btn-create').textContent).toContain('Run Pipeline');
|
||
|
expect(component.$el.querySelector('.btn-create').getAttribute('href')).toEqual(mockData.newPipelinePath);
|
||
|
});
|
||
|
|
||
|
it('should not render link to create pipeline if no permission is provided', () => {
|
||
|
const mockData = {
|
||
|
newPipelinePath: 'foo',
|
||
|
hasCIEnabled: true,
|
||
|
helpPagePath: 'foo',
|
||
|
ciLintPath: 'foo',
|
||
|
canCreatePipeline: false,
|
||
|
};
|
||
|
|
||
|
const component = new NavControlsComponent({
|
||
|
propsData: mockData,
|
||
|
}).$mount();
|
||
|
|
||
|
expect(component.$el.querySelector('.btn-create')).toEqual(null);
|
||
|
});
|
||
|
|
||
|
it('should render link for CI lint', () => {
|
||
|
const mockData = {
|
||
|
newPipelinePath: 'foo',
|
||
|
hasCIEnabled: true,
|
||
|
helpPagePath: 'foo',
|
||
|
ciLintPath: 'foo',
|
||
|
canCreatePipeline: true,
|
||
|
};
|
||
|
|
||
|
const component = new NavControlsComponent({
|
||
|
propsData: mockData,
|
||
|
}).$mount();
|
||
|
|
||
|
expect(component.$el.querySelector('.btn-default').textContent).toContain('CI Lint');
|
||
|
expect(component.$el.querySelector('.btn-default').getAttribute('href')).toEqual(mockData.ciLintPath);
|
||
|
});
|
||
|
|
||
|
it('should render link to help page when CI is not enabled', () => {
|
||
|
const mockData = {
|
||
|
newPipelinePath: 'foo',
|
||
|
hasCIEnabled: false,
|
||
|
helpPagePath: 'foo',
|
||
|
ciLintPath: 'foo',
|
||
|
canCreatePipeline: true,
|
||
|
};
|
||
|
|
||
|
const component = new NavControlsComponent({
|
||
|
propsData: mockData,
|
||
|
}).$mount();
|
||
|
|
||
|
expect(component.$el.querySelector('.btn-info').textContent).toContain('Get started with Pipelines');
|
||
|
expect(component.$el.querySelector('.btn-info').getAttribute('href')).toEqual(mockData.helpPagePath);
|
||
|
});
|
||
|
|
||
|
it('should not render link to help page when CI is enabled', () => {
|
||
|
const mockData = {
|
||
|
newPipelinePath: 'foo',
|
||
|
hasCIEnabled: true,
|
||
|
helpPagePath: 'foo',
|
||
|
ciLintPath: 'foo',
|
||
|
canCreatePipeline: true,
|
||
|
};
|
||
|
|
||
|
const component = new NavControlsComponent({
|
||
|
propsData: mockData,
|
||
|
}).$mount();
|
||
|
|
||
|
expect(component.$el.querySelector('.btn-info')).toEqual(null);
|
||
|
});
|
||
|
});
|