Commit 4f98d2f4 authored by Jose Vargas's avatar Jose Vargas

Refactor job_container_item spec with vue utils

parent dcbe2ae0
import Vue from 'vue'; import { GlIcon, GlLink } from '@gitlab/ui';
import mountComponent from 'helpers/vue_mount_component_helper'; import { shallowMount } from '@vue/test-utils';
import JobContainerItem from '~/jobs/components/job_container_item.vue'; import JobContainerItem from '~/jobs/components/job_container_item.vue';
import CiIcon from '~/vue_shared/components/ci_icon.vue';
import job from '../mock_data'; import job from '../mock_data';
describe('JobContainerItem', () => { describe('JobContainerItem', () => {
let wrapper;
const delayedJobFixture = getJSONFixture('jobs/delayed.json'); const delayedJobFixture = getJSONFixture('jobs/delayed.json');
const Component = Vue.extend(JobContainerItem);
let vm; 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(() => { afterEach(() => {
vm.$destroy(); wrapper.destroy();
wrapper = null;
}); });
const sharedTests = () => { describe('when a job is not active and not retried', () => {
beforeEach(() => {
createComponent(job);
});
it('displays a status icon', () => { it('displays a status icon', () => {
expect(vm.$el).toHaveSpriteIcon(job.status.icon); const ciIcon = findCiIconComponent();
expect(ciIcon.props('status')).toBe(job.status);
}); });
it('displays the job name', () => { it('displays the job name', () => {
expect(vm.$el.innerText).toContain(job.name); expect(wrapper.text()).toContain(job.name);
}); });
it('displays a link to the job', () => { it('displays a link to the job', () => {
const link = vm.$el.querySelector('.js-job-link'); const link = wrapper.findComponent(GlLink);
expect(link.href).toBe(job.status.details_path); expect(link.attributes('href')).toBe(job.status.details_path);
}); });
};
describe('when a job is not active and not retied', () => {
beforeEach(() => {
vm = mountComponent(Component, {
job,
isActive: false,
});
});
sharedTests();
}); });
describe('when a job is active', () => { describe('when a job is active', () => {
beforeEach(() => { beforeEach(() => {
vm = mountComponent(Component, { createComponent(job, { isActive: true });
job,
isActive: true,
});
}); });
sharedTests(); it('displays an arrow sprite icon', () => {
const icon = findGlIconComponent();
it('displays an arrow', () => { expect(icon.props('name')).toBe('arrow-right');
expect(vm.$el).toHaveSpriteIcon('arrow-right');
}); });
}); });
describe('when a job is retried', () => { describe('when a job is retried', () => {
beforeEach(() => { beforeEach(() => {
vm = mountComponent(Component, { createComponent(job, { isActive: false, retried: true });
job: {
...job,
retried: true,
},
isActive: false,
});
}); });
sharedTests(); it('displays a retry icon', () => {
const icon = findGlIconComponent();
it('displays an icon', () => { expect(icon.props('name')).toBe('retry');
expect(vm.$el).toHaveSpriteIcon('retry');
}); });
}); });
describe('for delayed job', () => { describe('for a delayed job', () => {
beforeEach(() => { beforeEach(() => {
const remainingMilliseconds = 1337000; const remainingMilliseconds = 1337000;
jest jest
...@@ -80,22 +82,16 @@ describe('JobContainerItem', () => { ...@@ -80,22 +82,16 @@ describe('JobContainerItem', () => {
.mockImplementation( .mockImplementation(
() => new Date(delayedJobFixture.scheduled_at).getTime() - remainingMilliseconds, () => new Date(delayedJobFixture.scheduled_at).getTime() - remainingMilliseconds,
); );
createComponent(delayedJobFixture);
}); });
it('displays remaining time in tooltip', (done) => { it('displays remaining time in tooltip', async () => {
vm = mountComponent(Component, { await wrapper.vm.$nextTick();
job: delayedJobFixture,
isActive: false, const link = wrapper.findComponent(GlLink);
});
expect(link.attributes('title')).toMatch('delayed job - delayed manual action (00:22:17)');
Vue.nextTick()
.then(() => {
expect(vm.$el.querySelector('.js-job-link').getAttribute('title')).toEqual(
'delayed job - delayed manual action (00:22:17)',
);
})
.then(done)
.catch(done.fail);
}); });
}); });
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment