debian-mirror-gitlab/spec/frontend/jobs/components/job_app_spec.js

455 lines
15 KiB
JavaScript
Raw Normal View History

2020-10-24 23:57:45 +05:30
import { GlLoadingIcon } from '@gitlab/ui';
2021-03-11 19:13:27 +05:30
import { mount, createLocalVue } from '@vue/test-utils';
2018-12-13 13:39:08 +05:30
import MockAdapter from 'axios-mock-adapter';
2021-03-11 19:13:27 +05:30
import Vuex from 'vuex';
2020-03-13 15:44:24 +05:30
import { getJSONFixture } from 'helpers/fixtures';
2021-03-08 18:12:59 +05:30
import { TEST_HOST } from 'helpers/test_constants';
2021-03-11 19:13:27 +05:30
import EmptyState from '~/jobs/components/empty_state.vue';
import EnvironmentsBlock from '~/jobs/components/environments_block.vue';
import ErasedBlock from '~/jobs/components/erased_block.vue';
2020-03-13 15:44:24 +05:30
import JobApp from '~/jobs/components/job_app.vue';
2020-10-24 23:57:45 +05:30
import Sidebar from '~/jobs/components/sidebar.vue';
import StuckBlock from '~/jobs/components/stuck_block.vue';
import UnmetPrerequisitesBlock from '~/jobs/components/unmet_prerequisites_block.vue';
2018-12-05 23:21:45 +05:30
import createStore from '~/jobs/store';
2021-03-11 19:13:27 +05:30
import axios from '~/lib/utils/axios_utils';
2018-12-13 13:39:08 +05:30
import job from '../mock_data';
2018-12-05 23:21:45 +05:30
2020-03-13 15:44:24 +05:30
describe('Job App', () => {
const localVue = createLocalVue();
localVue.use(Vuex);
2018-12-13 13:39:08 +05:30
const delayedJobFixture = getJSONFixture('jobs/delayed.json');
2020-03-13 15:44:24 +05:30
2018-12-05 23:21:45 +05:30
let store;
2020-03-13 15:44:24 +05:30
let wrapper;
2018-12-13 13:39:08 +05:30
let mock;
2021-09-30 23:02:18 +05:30
let origGon;
2018-12-05 23:21:45 +05:30
2020-03-13 15:44:24 +05:30
const initSettings = {
2020-07-28 23:09:34 +05:30
endpoint: `${TEST_HOST}jobs/123.json`,
pagePath: `${TEST_HOST}jobs/123`,
2020-03-13 15:44:24 +05:30
logState:
'eyJvZmZzZXQiOjE3NDUxLCJuX29wZW5fdGFncyI6MCwiZmdfY29sb3IiOm51bGwsImJnX2NvbG9yIjpudWxsLCJzdHlsZV9tYXNrIjowfQ%3D%3D',
};
const props = {
2020-11-24 15:15:51 +05:30
artifactHelpUrl: 'help/artifact',
2019-07-07 11:18:12 +05:30
deploymentHelpUrl: 'help/deployment',
2021-06-08 01:23:25 +05:30
codeQualityHelpPath: '/help/code_quality',
2018-12-05 23:21:45 +05:30
runnerSettingsUrl: 'settings/ci-cd/runners',
2018-12-13 13:39:08 +05:30
terminalPath: 'jobs/123/terminal',
2019-10-12 21:52:04 +05:30
projectPath: 'user-name/project-name',
2019-12-04 20:38:33 +05:30
subscriptionsMoreMinutesUrl: 'https://customers.gitlab.com/buy_pipeline_minutes',
2018-12-05 23:21:45 +05:30
};
2020-03-13 15:44:24 +05:30
const createComponent = () => {
wrapper = mount(JobApp, { propsData: { ...props }, store });
};
2019-10-12 21:52:04 +05:30
const setupAndMount = ({ jobData = {}, traceData = {} } = {}) => {
2020-03-13 15:44:24 +05:30
mock.onGet(initSettings.endpoint).replyOnce(200, { ...job, ...jobData });
mock.onGet(`${initSettings.pagePath}/trace.json`).reply(200, traceData);
2019-10-12 21:52:04 +05:30
2020-03-13 15:44:24 +05:30
const asyncInit = store.dispatch('init', initSettings);
2019-10-12 21:52:04 +05:30
2020-03-13 15:44:24 +05:30
createComponent();
return asyncInit
.then(() => {
jest.runOnlyPendingTimers();
})
.then(() => axios.waitForAll())
.then(() => wrapper.vm.$nextTick());
2019-10-12 21:52:04 +05:30
};
2020-10-24 23:57:45 +05:30
const findLoadingComponent = () => wrapper.find(GlLoadingIcon);
const findSidebar = () => wrapper.find(Sidebar);
const findJobContent = () => wrapper.find('[data-testid="job-content"');
const findStuckBlockComponent = () => wrapper.find(StuckBlock);
const findStuckBlockWithTags = () => wrapper.find('[data-testid="job-stuck-with-tags"');
const findStuckBlockNoActiveRunners = () =>
wrapper.find('[data-testid="job-stuck-no-active-runners"');
const findFailedJobComponent = () => wrapper.find(UnmetPrerequisitesBlock);
const findEnvironmentsBlockComponent = () => wrapper.find(EnvironmentsBlock);
const findErasedBlock = () => wrapper.find(ErasedBlock);
const findArchivedJob = () => wrapper.find('[data-testid="archived-job"]');
const findEmptyState = () => wrapper.find(EmptyState);
const findJobNewIssueLink = () => wrapper.find('[data-testid="job-new-issue"]');
const findJobEmptyStateTitle = () => wrapper.find('[data-testid="job-empty-state-title"]');
const findJobTraceScrollTop = () => wrapper.find('[data-testid="job-controller-scroll-top"]');
const findJobTraceScrollBottom = () =>
wrapper.find('[data-testid="job-controller-scroll-bottom"]');
const findJobTraceController = () => wrapper.find('[data-testid="job-raw-link-controller"]');
const findJobTraceEraseLink = () => wrapper.find('[data-testid="job-log-erase-link"]');
2018-12-05 23:21:45 +05:30
beforeEach(() => {
2018-12-13 13:39:08 +05:30
mock = new MockAdapter(axios);
2018-12-05 23:21:45 +05:30
store = createStore();
2021-09-30 23:02:18 +05:30
origGon = window.gon;
window.gon = { features: { infinitelyCollapsibleSections: false } }; // NOTE: All of this passes with the feature flag
2018-12-05 23:21:45 +05:30
});
afterEach(() => {
2020-03-13 15:44:24 +05:30
wrapper.destroy();
2018-12-13 13:39:08 +05:30
mock.restore();
2021-09-30 23:02:18 +05:30
window.gon = origGon;
2018-12-05 23:21:45 +05:30
});
2018-12-13 13:39:08 +05:30
describe('while loading', () => {
beforeEach(() => {
2020-03-13 15:44:24 +05:30
store.state.isLoading = true;
createComponent();
2018-12-13 13:39:08 +05:30
});
2019-10-12 21:52:04 +05:30
it('renders loading icon', () => {
2020-10-24 23:57:45 +05:30
expect(findLoadingComponent().exists()).toBe(true);
expect(findSidebar().exists()).toBe(false);
expect(findJobContent().exists()).toBe(false);
2018-12-13 13:39:08 +05:30
});
});
describe('with successful request', () => {
describe('Header section', () => {
describe('job callout message', () => {
2020-03-13 15:44:24 +05:30
it('should not render the reason when reason is absent', () =>
setupAndMount().then(() => {
expect(wrapper.vm.shouldRenderCalloutMessage).toBe(false);
}));
2018-12-13 13:39:08 +05:30
2020-03-13 15:44:24 +05:30
it('should render the reason when reason is present', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
callout_message: 'There is an unkown failure, please try again',
},
2020-03-13 15:44:24 +05:30
}).then(() => {
expect(wrapper.vm.shouldRenderCalloutMessage).toBe(true);
}));
2018-12-13 13:39:08 +05:30
});
describe('triggered job', () => {
2020-03-13 15:44:24 +05:30
beforeEach(() => {
2019-06-05 12:25:43 +05:30
const aYearAgo = new Date();
aYearAgo.setFullYear(aYearAgo.getFullYear() - 1);
2020-03-13 15:44:24 +05:30
return setupAndMount({ jobData: { started: aYearAgo.toISOString() } });
2018-12-13 13:39:08 +05:30
});
2019-10-12 21:52:04 +05:30
it('should render provided job information', () => {
2021-03-08 18:12:59 +05:30
expect(wrapper.find('.header-main-content').text().replace(/\s+/g, ' ').trim()).toContain(
2021-11-11 11:23:49 +05:30
'passed Job test triggered 1 year ago by Root',
2021-03-08 18:12:59 +05:30
);
2018-12-13 13:39:08 +05:30
});
2019-10-12 21:52:04 +05:30
it('should render new issue link', () => {
2020-10-24 23:57:45 +05:30
expect(findJobNewIssueLink().attributes('href')).toEqual(job.new_issue_path);
2018-12-13 13:39:08 +05:30
});
});
describe('created job', () => {
2020-03-13 15:44:24 +05:30
it('should render created key', () =>
setupAndMount().then(() => {
expect(
2021-03-08 18:12:59 +05:30
wrapper.find('.header-main-content').text().replace(/\s+/g, ' ').trim(),
2021-11-11 11:23:49 +05:30
).toContain('passed Job test created 3 weeks ago by Root');
2020-03-13 15:44:24 +05:30
}));
2018-12-13 13:39:08 +05:30
});
});
describe('stuck block', () => {
2020-10-24 23:57:45 +05:30
describe('without active runners available', () => {
2020-03-13 15:44:24 +05:30
it('renders stuck block when there are no runners', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
2018-12-13 13:39:08 +05:30
status: {
group: 'pending',
icon: 'status_pending',
label: 'pending',
text: 'pending',
details_path: 'path',
},
stuck: true,
runners: {
available: false,
online: false,
},
tags: [],
2019-10-12 21:52:04 +05:30
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findStuckBlockComponent().exists()).toBe(true);
expect(findStuckBlockNoActiveRunners().exists()).toBe(true);
2020-03-13 15:44:24 +05:30
}));
2018-12-13 13:39:08 +05:30
});
describe('when available runners can not run specified tag', () => {
2020-03-13 15:44:24 +05:30
it('renders tags in stuck block when there are no runners', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
2018-12-13 13:39:08 +05:30
status: {
group: 'pending',
icon: 'status_pending',
label: 'pending',
text: 'pending',
details_path: 'path',
},
stuck: true,
runners: {
available: false,
online: false,
},
2019-10-12 21:52:04 +05:30
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findStuckBlockComponent().text()).toContain(job.tags[0]);
expect(findStuckBlockWithTags().exists()).toBe(true);
2020-03-13 15:44:24 +05:30
}));
2018-12-13 13:39:08 +05:30
});
describe('when runners are offline and build has tags', () => {
2020-03-13 15:44:24 +05:30
it('renders message about job being stuck because of no runners with the specified tags', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
2018-12-13 13:39:08 +05:30
status: {
group: 'pending',
icon: 'status_pending',
label: 'pending',
text: 'pending',
details_path: 'path',
},
stuck: true,
runners: {
available: true,
online: true,
},
2019-10-12 21:52:04 +05:30
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findStuckBlockComponent().text()).toContain(job.tags[0]);
expect(findStuckBlockWithTags().exists()).toBe(true);
2020-03-13 15:44:24 +05:30
}));
2018-12-13 13:39:08 +05:30
});
2020-03-13 15:44:24 +05:30
it('does not renders stuck block when there are no runners', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
2018-12-13 13:39:08 +05:30
runners: { available: true },
2019-10-12 21:52:04 +05:30
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findStuckBlockComponent().exists()).toBe(false);
2020-03-13 15:44:24 +05:30
}));
2018-12-13 13:39:08 +05:30
});
2018-12-05 23:21:45 +05:30
2019-07-07 11:18:12 +05:30
describe('unmet prerequisites block', () => {
2020-03-13 15:44:24 +05:30
it('renders unmet prerequisites block when there is an unmet prerequisites failure', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
2019-07-07 11:18:12 +05:30
status: {
group: 'failed',
icon: 'status_failed',
label: 'failed',
text: 'failed',
details_path: 'path',
illustration: {
content: 'Retry this job in order to create the necessary resources.',
image: 'path',
size: 'svg-430',
title: 'Failed to create resources',
},
},
failure_reason: 'unmet_prerequisites',
has_trace: false,
runners: {
available: true,
},
tags: [],
2019-10-12 21:52:04 +05:30
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findFailedJobComponent().exists()).toBe(true);
2020-03-13 15:44:24 +05:30
}));
2019-07-07 11:18:12 +05:30
});
2018-12-13 13:39:08 +05:30
describe('environments block', () => {
2020-03-13 15:44:24 +05:30
it('renders environment block when job has environment', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
2018-12-13 13:39:08 +05:30
deployment_status: {
environment: {
environment_path: '/path',
name: 'foo',
},
},
2019-10-12 21:52:04 +05:30
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findEnvironmentsBlockComponent().exists()).toBe(true);
2020-03-13 15:44:24 +05:30
}));
it('does not render environment block when job has environment', () =>
setupAndMount().then(() => {
2020-10-24 23:57:45 +05:30
expect(findEnvironmentsBlockComponent().exists()).toBe(false);
2020-03-13 15:44:24 +05:30
}));
2018-12-13 13:39:08 +05:30
});
2018-12-05 23:21:45 +05:30
2018-12-13 13:39:08 +05:30
describe('erased block', () => {
2020-03-13 15:44:24 +05:30
it('renders erased block when `erased` is true', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
2018-12-13 13:39:08 +05:30
erased_by: {
username: 'root',
web_url: 'gitlab.com/root',
},
erased_at: '2016-11-07T11:11:16.525Z',
2019-10-12 21:52:04 +05:30
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findErasedBlock().exists()).toBe(true);
2020-03-13 15:44:24 +05:30
}));
2018-12-05 23:21:45 +05:30
2020-03-13 15:44:24 +05:30
it('does not render erased block when `erased` is false', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
erased_at: null,
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findErasedBlock().exists()).toBe(false);
2020-03-13 15:44:24 +05:30
}));
2018-12-05 23:21:45 +05:30
});
2018-12-13 13:39:08 +05:30
describe('empty states block', () => {
2020-03-13 15:44:24 +05:30
it('renders empty state when job does not have trace and is not running', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
2018-12-13 13:39:08 +05:30
has_trace: false,
status: {
group: 'pending',
icon: 'status_pending',
label: 'pending',
text: 'pending',
details_path: 'path',
illustration: {
image: 'path',
size: '340',
title: 'Empty State',
content: 'This is an empty state',
},
action: {
button_title: 'Retry job',
method: 'post',
path: '/path',
},
},
2019-10-12 21:52:04 +05:30
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findEmptyState().exists()).toBe(true);
2020-03-13 15:44:24 +05:30
}));
2018-12-05 23:21:45 +05:30
2020-03-13 15:44:24 +05:30
it('does not render empty state when job does not have trace but it is running', () =>
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
2018-12-13 13:39:08 +05:30
has_trace: false,
status: {
group: 'running',
icon: 'status_running',
label: 'running',
text: 'running',
details_path: 'path',
},
2019-10-12 21:52:04 +05:30
},
2020-03-13 15:44:24 +05:30
}).then(() => {
2020-10-24 23:57:45 +05:30
expect(findEmptyState().exists()).toBe(false);
2020-03-13 15:44:24 +05:30
}));
2018-12-05 23:21:45 +05:30
2020-03-13 15:44:24 +05:30
it('does not render empty state when job has trace but it is not running', () =>
setupAndMount({ jobData: { has_trace: true } }).then(() => {
2020-10-24 23:57:45 +05:30
expect(findEmptyState().exists()).toBe(false);
2020-03-13 15:44:24 +05:30
}));
2018-12-05 23:21:45 +05:30
2020-03-13 15:44:24 +05:30
it('displays remaining time for a delayed job', () => {
2018-12-13 13:39:08 +05:30
const oneHourInMilliseconds = 3600000;
2020-03-13 15:44:24 +05:30
jest
.spyOn(Date, 'now')
.mockImplementation(
() => new Date(delayedJobFixture.scheduled_at).getTime() - oneHourInMilliseconds,
);
return setupAndMount({ jobData: delayedJobFixture }).then(() => {
2020-10-24 23:57:45 +05:30
expect(findEmptyState().exists()).toBe(true);
2018-12-05 23:21:45 +05:30
2020-10-24 23:57:45 +05:30
const title = findJobEmptyStateTitle().text();
2018-12-05 23:21:45 +05:30
2020-03-13 15:44:24 +05:30
expect(title).toEqual('This is a delayed job to run in 01:00:00');
});
2019-10-12 21:52:04 +05:30
});
});
2018-12-05 23:21:45 +05:30
2019-10-12 21:52:04 +05:30
describe('sidebar', () => {
2021-03-08 18:12:59 +05:30
it('has no blank blocks', (done) => {
2019-10-12 21:52:04 +05:30
setupAndMount({
jobData: {
duration: null,
finished_at: null,
erased_at: null,
queued: null,
runner: null,
coverage: null,
tags: [],
cancel_path: null,
},
})
.then(() => {
2020-03-13 15:44:24 +05:30
const blocks = wrapper.findAll('.blocks-container > *').wrappers;
expect(blocks.length).toBeGreaterThan(0);
2021-03-08 18:12:59 +05:30
blocks.forEach((block) => {
2020-03-13 15:44:24 +05:30
expect(block.text().trim()).not.toBe('');
2019-10-12 21:52:04 +05:30
});
})
.then(done)
.catch(done.fail);
2018-12-05 23:21:45 +05:30
});
});
});
2018-12-13 13:39:08 +05:30
describe('archived job', () => {
2020-03-13 15:44:24 +05:30
beforeEach(() => setupAndMount({ jobData: { archived: true } }));
2018-12-05 23:21:45 +05:30
2019-10-12 21:52:04 +05:30
it('renders warning about job being archived', () => {
2020-10-24 23:57:45 +05:30
expect(findArchivedJob().exists()).toBe(true);
2018-12-13 13:39:08 +05:30
});
});
2018-12-05 23:21:45 +05:30
2018-12-13 13:39:08 +05:30
describe('non-archived job', () => {
2020-03-13 15:44:24 +05:30
beforeEach(() => setupAndMount());
2018-12-05 23:21:45 +05:30
2019-10-12 21:52:04 +05:30
it('does not warning about job being archived', () => {
2020-10-24 23:57:45 +05:30
expect(findArchivedJob().exists()).toBe(false);
2018-12-05 23:21:45 +05:30
});
});
2020-07-28 23:09:34 +05:30
describe('trace controls', () => {
beforeEach(() =>
setupAndMount({
traceData: {
html: '<span>Update</span>',
status: 'success',
append: false,
size: 50,
total: 100,
complete: true,
},
}),
);
it('should render scroll buttons', () => {
2020-10-24 23:57:45 +05:30
expect(findJobTraceScrollTop().exists()).toBe(true);
expect(findJobTraceScrollBottom().exists()).toBe(true);
2018-12-05 23:21:45 +05:30
});
2020-07-28 23:09:34 +05:30
it('should render link to raw ouput', () => {
2020-10-24 23:57:45 +05:30
expect(findJobTraceController().exists()).toBe(true);
2018-12-05 23:21:45 +05:30
});
2020-07-28 23:09:34 +05:30
it('should render link to erase job', () => {
2020-10-24 23:57:45 +05:30
expect(findJobTraceEraseLink().exists()).toBe(true);
2018-12-05 23:21:45 +05:30
});
});
});