2021-03-01 13:11:21 -05:00
|
|
|
import { GlTable } from '@gitlab/ui';
|
2020-05-04 14:10:20 -04:00
|
|
|
import { mount } from '@vue/test-utils';
|
2021-03-01 13:11:21 -05:00
|
|
|
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
|
2021-03-11 13:09:23 -05:00
|
|
|
import PipelineMiniGraph from '~/pipelines/components/pipelines_list/pipeline_mini_graph.vue';
|
2021-03-03 13:11:16 -05:00
|
|
|
import PipelineOperations from '~/pipelines/components/pipelines_list/pipeline_operations.vue';
|
|
|
|
import PipelineTriggerer from '~/pipelines/components/pipelines_list/pipeline_triggerer.vue';
|
|
|
|
import PipelineUrl from '~/pipelines/components/pipelines_list/pipeline_url.vue';
|
|
|
|
import PipelinesStatusBadge from '~/pipelines/components/pipelines_list/pipelines_status_badge.vue';
|
2020-06-23 20:08:43 -04:00
|
|
|
import PipelinesTable from '~/pipelines/components/pipelines_list/pipelines_table.vue';
|
2021-03-03 13:11:16 -05:00
|
|
|
import PipelinesTimeago from '~/pipelines/components/pipelines_list/time_ago.vue';
|
2021-03-11 13:09:23 -05:00
|
|
|
|
|
|
|
import eventHub from '~/pipelines/event_hub';
|
2021-03-03 13:11:16 -05:00
|
|
|
import CommitComponent from '~/vue_shared/components/commit.vue';
|
2020-05-04 14:10:20 -04:00
|
|
|
|
2021-03-11 13:09:23 -05:00
|
|
|
jest.mock('~/pipelines/event_hub');
|
|
|
|
|
2020-05-04 14:10:20 -04:00
|
|
|
describe('Pipelines Table', () => {
|
|
|
|
let pipeline;
|
|
|
|
let wrapper;
|
|
|
|
|
|
|
|
const jsonFixtureName = 'pipelines/pipelines.json';
|
|
|
|
|
|
|
|
const defaultProps = {
|
|
|
|
pipelines: [],
|
|
|
|
viewType: 'root',
|
|
|
|
};
|
|
|
|
|
2021-03-11 13:09:23 -05:00
|
|
|
const createMockPipeline = () => {
|
|
|
|
const { pipelines } = getJSONFixture(jsonFixtureName);
|
|
|
|
return pipelines.find((p) => p.user !== null && p.commit !== null);
|
|
|
|
};
|
|
|
|
|
|
|
|
const createComponent = (props = {}, flagState = false) => {
|
2021-03-01 13:11:21 -05:00
|
|
|
wrapper = extendedWrapper(
|
|
|
|
mount(PipelinesTable, {
|
2021-03-11 13:09:23 -05:00
|
|
|
propsData: {
|
|
|
|
...defaultProps,
|
|
|
|
...props,
|
|
|
|
},
|
2021-03-01 13:11:21 -05:00
|
|
|
provide: {
|
|
|
|
glFeatures: {
|
|
|
|
newPipelinesTable: flagState,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
2020-05-04 14:10:20 -04:00
|
|
|
};
|
2021-03-01 13:11:21 -05:00
|
|
|
|
2020-05-04 14:10:20 -04:00
|
|
|
const findRows = () => wrapper.findAll('.commit.gl-responsive-table-row');
|
2021-03-01 13:11:21 -05:00
|
|
|
const findGlTable = () => wrapper.findComponent(GlTable);
|
2021-03-03 13:11:16 -05:00
|
|
|
const findStatusBadge = () => wrapper.findComponent(PipelinesStatusBadge);
|
|
|
|
const findPipelineInfo = () => wrapper.findComponent(PipelineUrl);
|
|
|
|
const findTriggerer = () => wrapper.findComponent(PipelineTriggerer);
|
|
|
|
const findCommit = () => wrapper.findComponent(CommitComponent);
|
2021-03-11 13:09:23 -05:00
|
|
|
const findPipelineMiniGraph = () => wrapper.findComponent(PipelineMiniGraph);
|
2021-03-03 13:11:16 -05:00
|
|
|
const findTimeAgo = () => wrapper.findComponent(PipelinesTimeago);
|
|
|
|
const findActions = () => wrapper.findComponent(PipelineOperations);
|
|
|
|
|
|
|
|
const findLegacyTable = () => wrapper.findByTestId('legacy-ci-table');
|
|
|
|
const findTableRows = () => wrapper.findAll('[data-testid="pipeline-table-row"]');
|
|
|
|
const findStatusTh = () => wrapper.findByTestId('status-th');
|
|
|
|
const findPipelineTh = () => wrapper.findByTestId('pipeline-th');
|
|
|
|
const findTriggererTh = () => wrapper.findByTestId('triggerer-th');
|
|
|
|
const findCommitTh = () => wrapper.findByTestId('commit-th');
|
|
|
|
const findStagesTh = () => wrapper.findByTestId('stages-th');
|
|
|
|
const findTimeAgoTh = () => wrapper.findByTestId('timeago-th');
|
|
|
|
const findActionsTh = () => wrapper.findByTestId('actions-th');
|
2020-05-04 14:10:20 -04:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2021-03-11 13:09:23 -05:00
|
|
|
pipeline = createMockPipeline();
|
2020-05-04 14:10:20 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
wrapper.destroy();
|
|
|
|
wrapper = null;
|
|
|
|
});
|
|
|
|
|
2021-03-01 13:11:21 -05:00
|
|
|
describe('table with feature flag off', () => {
|
|
|
|
describe('renders the table correctly', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
createComponent();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render a table', () => {
|
|
|
|
expect(wrapper.classes()).toContain('ci-table');
|
|
|
|
});
|
2020-05-04 14:10:20 -04:00
|
|
|
|
2021-03-01 13:11:21 -05:00
|
|
|
it('should render table head with correct columns', () => {
|
|
|
|
expect(wrapper.find('.table-section.js-pipeline-status').text()).toEqual('Status');
|
2020-05-04 14:10:20 -04:00
|
|
|
|
2021-03-01 13:11:21 -05:00
|
|
|
expect(wrapper.find('.table-section.js-pipeline-info').text()).toEqual('Pipeline');
|
2020-05-04 14:10:20 -04:00
|
|
|
|
2021-03-01 13:11:21 -05:00
|
|
|
expect(wrapper.find('.table-section.js-pipeline-commit').text()).toEqual('Commit');
|
2020-05-04 14:10:20 -04:00
|
|
|
|
2021-03-01 13:11:21 -05:00
|
|
|
expect(wrapper.find('.table-section.js-pipeline-stages').text()).toEqual('Stages');
|
|
|
|
});
|
2020-05-04 14:10:20 -04:00
|
|
|
});
|
|
|
|
|
2021-03-01 13:11:21 -05:00
|
|
|
describe('without data', () => {
|
|
|
|
it('should render an empty table', () => {
|
|
|
|
createComponent();
|
|
|
|
|
|
|
|
expect(findRows()).toHaveLength(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with data', () => {
|
|
|
|
it('should render rows', () => {
|
|
|
|
createComponent({ pipelines: [pipeline], viewType: 'root' });
|
|
|
|
|
|
|
|
expect(findRows()).toHaveLength(1);
|
|
|
|
});
|
2020-05-04 14:10:20 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-01 13:11:21 -05:00
|
|
|
describe('table with feature flag on', () => {
|
2021-03-03 13:11:16 -05:00
|
|
|
beforeEach(() => {
|
|
|
|
createComponent({ pipelines: [pipeline], viewType: 'root' }, true);
|
|
|
|
});
|
2020-05-04 14:10:20 -04:00
|
|
|
|
2021-03-03 13:11:16 -05:00
|
|
|
it('displays new table', () => {
|
2021-03-01 13:11:21 -05:00
|
|
|
expect(findGlTable().exists()).toBe(true);
|
|
|
|
expect(findLegacyTable().exists()).toBe(false);
|
2020-05-04 14:10:20 -04:00
|
|
|
});
|
2021-03-03 13:11:16 -05:00
|
|
|
|
|
|
|
it('should render table head with correct columns', () => {
|
|
|
|
expect(findStatusTh().text()).toBe('Status');
|
|
|
|
expect(findPipelineTh().text()).toBe('Pipeline');
|
|
|
|
expect(findTriggererTh().text()).toBe('Triggerer');
|
|
|
|
expect(findCommitTh().text()).toBe('Commit');
|
|
|
|
expect(findStagesTh().text()).toBe('Stages');
|
|
|
|
expect(findTimeAgoTh().text()).toBe('Duration');
|
2021-03-05 16:09:03 -05:00
|
|
|
expect(findActionsTh().text()).toBe('Actions');
|
2021-03-03 13:11:16 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should display a table row', () => {
|
|
|
|
expect(findTableRows()).toHaveLength(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('status cell', () => {
|
|
|
|
it('should render a status badge', () => {
|
|
|
|
expect(findStatusBadge().exists()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render status badge with correct path', () => {
|
|
|
|
expect(findStatusBadge().attributes('href')).toBe(pipeline.path);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('pipeline cell', () => {
|
|
|
|
it('should render pipeline information', () => {
|
|
|
|
expect(findPipelineInfo().exists()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should display the pipeline id', () => {
|
|
|
|
expect(findPipelineInfo().text()).toContain(`#${pipeline.id}`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('triggerer cell', () => {
|
|
|
|
it('should render the pipeline triggerer', () => {
|
|
|
|
expect(findTriggerer().exists()).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('commit cell', () => {
|
|
|
|
it('should render commit information', () => {
|
|
|
|
expect(findCommit().exists()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should display and link to commit', () => {
|
|
|
|
expect(findCommit().text()).toContain(pipeline.commit.short_id);
|
|
|
|
expect(findCommit().props('commitUrl')).toBe(pipeline.commit.commit_path);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should display the commit author', () => {
|
|
|
|
expect(findCommit().props('author')).toEqual(pipeline.commit.author);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-11 13:09:23 -05:00
|
|
|
describe('stages cell', () => {
|
|
|
|
it('should render a pipeline mini graph', () => {
|
|
|
|
expect(findPipelineMiniGraph().exists()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render the right number of stages', () => {
|
|
|
|
const stagesLength = pipeline.details.stages.length;
|
|
|
|
expect(
|
|
|
|
findPipelineMiniGraph().findAll('[data-testid="mini-pipeline-graph-dropdown"]'),
|
|
|
|
).toHaveLength(stagesLength);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when pipeline does not have stages', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
pipeline = createMockPipeline();
|
|
|
|
pipeline.details.stages = null;
|
|
|
|
|
|
|
|
createComponent({ pipelines: [pipeline] }, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('stages are not rendered', () => {
|
|
|
|
expect(findPipelineMiniGraph().exists()).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not update dropdown', () => {
|
|
|
|
expect(findPipelineMiniGraph().props('updateDropdown')).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('when update graph dropdown is set, should update graph dropdown', () => {
|
|
|
|
createComponent({ pipelines: [pipeline], updateGraphDropdown: true }, true);
|
|
|
|
|
|
|
|
expect(findPipelineMiniGraph().props('updateDropdown')).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('when action request is complete, should refresh table', () => {
|
|
|
|
findPipelineMiniGraph().vm.$emit('pipelineActionRequestComplete');
|
|
|
|
|
|
|
|
expect(eventHub.$emit).toHaveBeenCalledWith('refreshPipelinesTable');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-03-03 13:11:16 -05:00
|
|
|
describe('duration cell', () => {
|
|
|
|
it('should render duration information', () => {
|
|
|
|
expect(findTimeAgo().exists()).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('operations cell', () => {
|
|
|
|
it('should render pipeline operations', () => {
|
|
|
|
expect(findActions().exists()).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
2020-05-04 14:10:20 -04:00
|
|
|
});
|
|
|
|
});
|