Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/jobs/components/job/job_container_item_spec.js')
-rw-r--r--spec/frontend/jobs/components/job/job_container_item_spec.js98
1 files changed, 98 insertions, 0 deletions
diff --git a/spec/frontend/jobs/components/job/job_container_item_spec.js b/spec/frontend/jobs/components/job/job_container_item_spec.js
new file mode 100644
index 00000000000..05c38dd74b7
--- /dev/null
+++ b/spec/frontend/jobs/components/job/job_container_item_spec.js
@@ -0,0 +1,98 @@
+import { GlIcon, GlLink } from '@gitlab/ui';
+import { shallowMount } from '@vue/test-utils';
+import { nextTick } from 'vue';
+import delayedJobFixture from 'test_fixtures/jobs/delayed.json';
+import JobContainerItem from '~/jobs/components/job/sidebar/job_container_item.vue';
+import CiIcon from '~/vue_shared/components/ci_icon.vue';
+import job from '../../mock_data';
+
+describe('JobContainerItem', () => {
+ let wrapper;
+
+ const findCiIconComponent = () => wrapper.findComponent(CiIcon);
+ const findGlIconComponent = () => wrapper.findComponent(GlIcon);
+
+ function createComponent(jobData = {}, props = { isActive: false, retried: false }) {
+ wrapper = shallowMount(JobContainerItem, {
+ propsData: {
+ job: {
+ ...jobData,
+ retried: props.retried,
+ },
+ isActive: props.isActive,
+ },
+ });
+ }
+
+ afterEach(() => {
+ wrapper.destroy();
+ wrapper = null;
+ });
+
+ describe('when a job is not active and not retried', () => {
+ beforeEach(() => {
+ createComponent(job);
+ });
+
+ it('displays a status icon', () => {
+ const ciIcon = findCiIconComponent();
+
+ expect(ciIcon.props('status')).toBe(job.status);
+ });
+
+ it('displays the job name', () => {
+ expect(wrapper.text()).toContain(job.name);
+ });
+
+ it('displays a link to the job', () => {
+ const link = wrapper.findComponent(GlLink);
+
+ expect(link.attributes('href')).toBe(job.status.details_path);
+ });
+ });
+
+ describe('when a job is active', () => {
+ beforeEach(() => {
+ createComponent(job, { isActive: true });
+ });
+
+ it('displays an arrow sprite icon', () => {
+ const icon = findGlIconComponent();
+
+ expect(icon.props('name')).toBe('arrow-right');
+ });
+ });
+
+ describe('when a job is retried', () => {
+ beforeEach(() => {
+ createComponent(job, { isActive: false, retried: true });
+ });
+
+ it('displays a retry icon', () => {
+ const icon = findGlIconComponent();
+
+ expect(icon.props('name')).toBe('retry');
+ });
+ });
+
+ describe('for a delayed job', () => {
+ beforeEach(() => {
+ const remainingMilliseconds = 1337000;
+ jest
+ .spyOn(Date, 'now')
+ .mockImplementation(
+ () => new Date(delayedJobFixture.scheduled_at).getTime() - remainingMilliseconds,
+ );
+
+ createComponent(delayedJobFixture);
+ });
+
+ it('displays remaining time in tooltip', async () => {
+ await nextTick();
+
+ const link = wrapper.findComponent(GlLink);
+
+ expect(link.attributes('title')).toMatch('delayed job - delayed manual action (00:22:17)');
+ });
+ });
+});