2018-12-05 23:21:45 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import sidebarDetailsBlock from '~/jobs/components/sidebar.vue';
|
|
|
|
import createStore from '~/jobs/store';
|
|
|
|
import job, { stages, jobsInStage } from '../mock_data';
|
|
|
|
import { mountComponentWithStore } from '../../helpers/vue_mount_component_helper';
|
|
|
|
import { trimText } from '../../helpers/vue_component_helper';
|
|
|
|
|
|
|
|
describe('Sidebar details block', () => {
|
|
|
|
const SidebarComponent = Vue.extend(sidebarDetailsBlock);
|
|
|
|
let vm;
|
|
|
|
let store;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
store = createStore();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when there is no retry path retry', () => {
|
|
|
|
it('should not render a retry button', () => {
|
|
|
|
const copy = Object.assign({}, job);
|
|
|
|
delete copy.retry_path;
|
|
|
|
|
|
|
|
store.dispatch('receiveJobSuccess', copy);
|
|
|
|
vm = mountComponentWithStore(SidebarComponent, {
|
|
|
|
store,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-retry-job')).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('without terminal path', () => {
|
|
|
|
it('does not render terminal link', () => {
|
|
|
|
store.dispatch('receiveJobSuccess', job);
|
|
|
|
vm = mountComponentWithStore(SidebarComponent, { store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-terminal-link')).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with terminal path', () => {
|
|
|
|
it('renders terminal link', () => {
|
2018-12-13 13:39:08 +05:30
|
|
|
store.dispatch(
|
|
|
|
'receiveJobSuccess',
|
|
|
|
Object.assign({}, job, { terminal_path: 'job/43123/terminal' }),
|
|
|
|
);
|
2018-12-05 23:21:45 +05:30
|
|
|
vm = mountComponentWithStore(SidebarComponent, {
|
|
|
|
store,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-terminal-link')).not.toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
store.dispatch('receiveJobSuccess', job);
|
|
|
|
vm = mountComponentWithStore(SidebarComponent, { store });
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('actions', () => {
|
|
|
|
it('should render link to new issue', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-new-issue').getAttribute('href')).toEqual(
|
|
|
|
job.new_issue_path,
|
|
|
|
);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(vm.$el.querySelector('.js-new-issue').textContent.trim()).toEqual('New issue');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render link to retry job', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-retry-job').getAttribute('href')).toEqual(job.retry_path);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render link to cancel job', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-cancel-job').getAttribute('href')).toEqual(job.cancel_path);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('information', () => {
|
|
|
|
it('should render merge request link', () => {
|
|
|
|
expect(trimText(vm.$el.querySelector('.js-job-mr').textContent)).toEqual('Merge Request: !2');
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-job-mr a').getAttribute('href')).toEqual(
|
|
|
|
job.merge_request.path,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render job duration', () => {
|
|
|
|
expect(trimText(vm.$el.querySelector('.js-job-duration').textContent)).toEqual(
|
|
|
|
'Duration: 6 seconds',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render erased date', () => {
|
|
|
|
expect(trimText(vm.$el.querySelector('.js-job-erased').textContent)).toEqual(
|
|
|
|
'Erased: 3 weeks ago',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render finished date', () => {
|
|
|
|
expect(trimText(vm.$el.querySelector('.js-job-finished').textContent)).toEqual(
|
|
|
|
'Finished: 3 weeks ago',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render queued date', () => {
|
|
|
|
expect(trimText(vm.$el.querySelector('.js-job-queued').textContent)).toEqual(
|
|
|
|
'Queued: 9 seconds',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render runner ID', () => {
|
|
|
|
expect(trimText(vm.$el.querySelector('.js-job-runner').textContent)).toEqual(
|
|
|
|
'Runner: local ci runner (#1)',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render timeout information', () => {
|
|
|
|
expect(trimText(vm.$el.querySelector('.js-job-timeout').textContent)).toEqual(
|
|
|
|
'Timeout: 1m 40s (from runner)',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render coverage', () => {
|
|
|
|
expect(trimText(vm.$el.querySelector('.js-job-coverage').textContent)).toEqual(
|
|
|
|
'Coverage: 20%',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render tags', () => {
|
|
|
|
expect(trimText(vm.$el.querySelector('.js-job-tags').textContent)).toEqual('Tags: tag');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('stages dropdown', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
store.dispatch('receiveJobSuccess', job);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('while fetching stages', () => {
|
|
|
|
it('it does not render dropdown', () => {
|
|
|
|
store.dispatch('requestStages');
|
|
|
|
vm = mountComponentWithStore(SidebarComponent, { store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-selected-stage')).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with stages', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
store.dispatch('receiveStagesSuccess', stages);
|
|
|
|
vm = mountComponentWithStore(SidebarComponent, { store });
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders value provided as selectedStage as selected', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-selected-stage').textContent.trim()).toEqual(
|
|
|
|
vm.selectedStage,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('without jobs for stages', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
store.dispatch('receiveJobSuccess', job);
|
|
|
|
store.dispatch('receiveStagesSuccess', stages);
|
|
|
|
vm = mountComponentWithStore(SidebarComponent, { store });
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not render job container', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-jobs-container')).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with jobs for stages', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
store.dispatch('receiveJobSuccess', job);
|
|
|
|
store.dispatch('receiveStagesSuccess', stages);
|
|
|
|
store.dispatch('receiveJobsForStageSuccess', jobsInStage.latest_statuses);
|
|
|
|
vm = mountComponentWithStore(SidebarComponent, { store });
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders list of jobs', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-jobs-container')).not.toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|