2022-07-16 23:28:13 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import VueApollo from 'vue-apollo';
|
|
|
|
import { GlButton, GlLoadingIcon, GlTooltip } from '@gitlab/ui';
|
2021-03-11 19:13:27 +05:30
|
|
|
import { mount } from '@vue/test-utils';
|
2022-07-16 23:28:13 +05:30
|
|
|
import createMockApollo from 'helpers/mock_apollo_helper';
|
|
|
|
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
|
|
|
|
import { convertToGraphQLId } from '~/graphql_shared/utils';
|
2021-03-11 19:13:27 +05:30
|
|
|
import { BV_HIDE_TOOLTIP } from '~/lib/utils/constants';
|
2022-07-16 23:28:13 +05:30
|
|
|
import { ACTION_FAILURE, UPSTREAM, DOWNSTREAM } from '~/pipelines/components/graph/constants';
|
2020-01-01 13:55:28 +05:30
|
|
|
import LinkedPipelineComponent from '~/pipelines/components/graph/linked_pipeline.vue';
|
2022-07-16 23:28:13 +05:30
|
|
|
import { PIPELINE_GRAPHQL_TYPE } from '~/pipelines/constants';
|
|
|
|
import CancelPipelineMutation from '~/pipelines/graphql/mutations/cancel_pipeline.mutation.graphql';
|
|
|
|
import RetryPipelineMutation from '~/pipelines/graphql/mutations/retry_pipeline.mutation.graphql';
|
2020-04-22 19:07:51 +05:30
|
|
|
import CiStatus from '~/vue_shared/components/ci_icon.vue';
|
2021-11-11 11:23:49 +05:30
|
|
|
import mockPipeline from './linked_pipelines_mock_data';
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
Vue.use(VueApollo);
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
describe('Linked pipeline', () => {
|
|
|
|
let wrapper;
|
2020-07-28 23:09:34 +05:30
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
const downstreamProps = {
|
|
|
|
pipeline: {
|
|
|
|
...mockPipeline,
|
|
|
|
multiproject: false,
|
|
|
|
},
|
|
|
|
columnTitle: 'Downstream',
|
|
|
|
type: DOWNSTREAM,
|
|
|
|
expanded: false,
|
|
|
|
isLoading: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
const upstreamProps = {
|
|
|
|
...downstreamProps,
|
|
|
|
columnTitle: 'Upstream',
|
|
|
|
type: UPSTREAM,
|
|
|
|
};
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
const findButton = () => wrapper.findComponent(GlButton);
|
2022-07-16 23:28:13 +05:30
|
|
|
const findCancelButton = () => wrapper.findByLabelText('Cancel downstream pipeline');
|
|
|
|
const findCardTooltip = () => wrapper.findComponent(GlTooltip);
|
|
|
|
const findDownstreamPipelineTitle = () => wrapper.findByTestId('downstream-title');
|
|
|
|
const findExpandButton = () => wrapper.findByTestId('expand-pipeline-button');
|
2022-10-11 01:57:18 +05:30
|
|
|
const findLinkedPipeline = () => wrapper.findComponent({ ref: 'linkedPipeline' });
|
|
|
|
const findLoadingIcon = () => wrapper.findComponent(GlLoadingIcon);
|
2022-07-16 23:28:13 +05:30
|
|
|
const findPipelineLabel = () => wrapper.findByTestId('downstream-pipeline-label');
|
|
|
|
const findPipelineLink = () => wrapper.findByTestId('pipelineLink');
|
|
|
|
const findRetryButton = () => wrapper.findByLabelText('Retry downstream pipeline');
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
const createWrapper = ({ propsData }) => {
|
2022-07-16 23:28:13 +05:30
|
|
|
const mockApollo = createMockApollo();
|
|
|
|
|
|
|
|
wrapper = extendedWrapper(
|
|
|
|
mount(LinkedPipelineComponent, {
|
|
|
|
propsData,
|
|
|
|
apolloProvider: mockApollo,
|
|
|
|
}),
|
|
|
|
);
|
2020-03-13 15:44:24 +05:30
|
|
|
};
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
afterEach(() => {
|
|
|
|
wrapper.destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('rendered output', () => {
|
|
|
|
const props = {
|
|
|
|
pipeline: mockPipeline,
|
2020-03-13 15:44:24 +05:30
|
|
|
columnTitle: 'Downstream',
|
2021-01-29 00:20:46 +05:30
|
|
|
type: DOWNSTREAM,
|
2021-02-22 17:27:13 +05:30
|
|
|
expanded: false,
|
2021-11-11 11:23:49 +05:30
|
|
|
isLoading: false,
|
2020-01-01 13:55:28 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2022-07-16 23:28:13 +05:30
|
|
|
createWrapper({ propsData: props });
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should render the project name', () => {
|
|
|
|
expect(wrapper.text()).toContain(props.pipeline.project.name);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render an svg within the status container', () => {
|
2022-10-11 01:57:18 +05:30
|
|
|
const pipelineStatusElement = wrapper.findComponent(CiStatus);
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
expect(pipelineStatusElement.find('svg').exists()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render the pipeline status icon svg', () => {
|
2021-11-11 11:23:49 +05:30
|
|
|
expect(wrapper.find('.ci-status-icon-success svg').exists()).toBe(true);
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should have a ci-status child component', () => {
|
2022-10-11 01:57:18 +05:30
|
|
|
expect(wrapper.findComponent(CiStatus).exists()).toBe(true);
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should render the pipeline id', () => {
|
|
|
|
expect(wrapper.text()).toContain(`#${props.pipeline.id}`);
|
|
|
|
});
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
it('adds the card tooltip text to the DOM', () => {
|
|
|
|
expect(findCardTooltip().exists()).toBe(true);
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
expect(findCardTooltip().text()).toContain(mockPipeline.project.name);
|
|
|
|
expect(findCardTooltip().text()).toContain(mockPipeline.status.label);
|
|
|
|
expect(findCardTooltip().text()).toContain(mockPipeline.sourceJob.name);
|
2022-08-13 15:12:31 +05:30
|
|
|
expect(findCardTooltip().text()).toContain(mockPipeline.id.toString());
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
it('should display multi-project label when pipeline project id is not the same as triggered pipeline project id', () => {
|
|
|
|
expect(findPipelineLabel().text()).toBe('Multi-project');
|
2020-03-13 15:44:24 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
describe('upstream pipelines', () => {
|
|
|
|
beforeEach(() => {
|
2022-07-16 23:28:13 +05:30
|
|
|
createWrapper({ propsData: upstreamProps });
|
2022-04-04 11:22:00 +05:30
|
|
|
});
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
it('should display parent label when pipeline project id is the same as triggered_by pipeline project id', () => {
|
|
|
|
expect(findPipelineLabel().exists()).toBe(true);
|
|
|
|
});
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
it('upstream pipeline should contain the correct link', () => {
|
|
|
|
expect(findPipelineLink().attributes('href')).toBe(upstreamProps.pipeline.path);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('applies the reverse-row css class to the card', () => {
|
|
|
|
expect(findLinkedPipeline().classes()).toContain('gl-flex-direction-row-reverse');
|
|
|
|
expect(findLinkedPipeline().classes()).not.toContain('gl-flex-direction-row');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('downstream pipelines', () => {
|
2022-07-16 23:28:13 +05:30
|
|
|
describe('styling', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
createWrapper({ propsData: downstreamProps });
|
|
|
|
});
|
|
|
|
|
|
|
|
it('parent/child label container should exist', () => {
|
|
|
|
expect(findPipelineLabel().exists()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should display child label when pipeline project id is the same as triggered pipeline project id', () => {
|
|
|
|
expect(findPipelineLabel().exists()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should have the name of the trigger job on the card when it is a child pipeline', () => {
|
|
|
|
expect(findDownstreamPipelineTitle().text()).toBe(mockPipeline.sourceJob.name);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('downstream pipeline should contain the correct link', () => {
|
|
|
|
expect(findPipelineLink().attributes('href')).toBe(downstreamProps.pipeline.path);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('applies the flex-row css class to the card', () => {
|
|
|
|
expect(findLinkedPipeline().classes()).toContain('gl-flex-direction-row');
|
|
|
|
expect(findLinkedPipeline().classes()).not.toContain('gl-flex-direction-row-reverse');
|
|
|
|
});
|
2020-11-24 15:15:51 +05:30
|
|
|
});
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
describe('action button', () => {
|
2022-07-23 23:45:48 +05:30
|
|
|
describe('with permissions', () => {
|
|
|
|
describe('on an upstream', () => {
|
|
|
|
describe('when retryable', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
const retryablePipeline = {
|
|
|
|
...upstreamProps,
|
|
|
|
pipeline: { ...mockPipeline, retryable: true },
|
|
|
|
};
|
|
|
|
|
|
|
|
createWrapper({ propsData: retryablePipeline });
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
it('does not show the retry or cancel button', () => {
|
|
|
|
expect(findCancelButton().exists()).toBe(false);
|
|
|
|
expect(findRetryButton().exists()).toBe(false);
|
2022-07-16 23:28:13 +05:30
|
|
|
});
|
|
|
|
});
|
2022-07-23 23:45:48 +05:30
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
describe('on a downstream', () => {
|
|
|
|
describe('when retryable', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
const retryablePipeline = {
|
|
|
|
...downstreamProps,
|
|
|
|
pipeline: { ...mockPipeline, retryable: true },
|
|
|
|
};
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
createWrapper({ propsData: retryablePipeline });
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
it('shows only the retry button', () => {
|
|
|
|
expect(findCancelButton().exists()).toBe(false);
|
|
|
|
expect(findRetryButton().exists()).toBe(true);
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
it.each`
|
|
|
|
findElement | name
|
|
|
|
${findRetryButton} | ${'retry button'}
|
|
|
|
${findExpandButton} | ${'expand button'}
|
|
|
|
`('hides the card tooltip when $name is hovered', async ({ findElement }) => {
|
|
|
|
expect(findCardTooltip().exists()).toBe(true);
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
await findElement().trigger('mouseover');
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
expect(findCardTooltip().exists()).toBe(false);
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
describe('and the retry button is clicked', () => {
|
|
|
|
describe('on success', () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
jest.spyOn(wrapper.vm.$apollo, 'mutate').mockResolvedValue();
|
|
|
|
jest.spyOn(wrapper.vm, '$emit');
|
|
|
|
await findRetryButton().trigger('click');
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
it('calls the retry mutation', () => {
|
2022-07-23 23:45:48 +05:30
|
|
|
expect(wrapper.vm.$apollo.mutate).toHaveBeenCalledTimes(1);
|
|
|
|
expect(wrapper.vm.$apollo.mutate).toHaveBeenCalledWith({
|
|
|
|
mutation: RetryPipelineMutation,
|
|
|
|
variables: {
|
|
|
|
id: convertToGraphQLId(PIPELINE_GRAPHQL_TYPE, mockPipeline.id),
|
|
|
|
},
|
2022-07-16 23:28:13 +05:30
|
|
|
});
|
2022-07-23 23:45:48 +05:30
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
it('emits the refreshPipelineGraph event', () => {
|
|
|
|
expect(wrapper.vm.$emit).toHaveBeenCalledWith('refreshPipelineGraph');
|
2022-07-16 23:28:13 +05:30
|
|
|
});
|
2022-07-23 23:45:48 +05:30
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
describe('on failure', () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
jest.spyOn(wrapper.vm.$apollo, 'mutate').mockRejectedValue({ errors: [] });
|
|
|
|
jest.spyOn(wrapper.vm, '$emit');
|
|
|
|
await findRetryButton().trigger('click');
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
it('emits an error event', () => {
|
|
|
|
expect(wrapper.vm.$emit).toHaveBeenCalledWith('error', {
|
|
|
|
type: ACTION_FAILURE,
|
2022-07-16 23:28:13 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2022-07-23 23:45:48 +05:30
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
describe('when cancelable', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
const cancelablePipeline = {
|
|
|
|
...downstreamProps,
|
|
|
|
pipeline: { ...mockPipeline, cancelable: true },
|
|
|
|
};
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
createWrapper({ propsData: cancelablePipeline });
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
it('shows only the cancel button', () => {
|
2022-07-23 23:45:48 +05:30
|
|
|
expect(findCancelButton().exists()).toBe(true);
|
|
|
|
expect(findRetryButton().exists()).toBe(false);
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
it.each`
|
|
|
|
findElement | name
|
|
|
|
${findCancelButton} | ${'cancel button'}
|
|
|
|
${findExpandButton} | ${'expand button'}
|
|
|
|
`('hides the card tooltip when $name is hovered', async ({ findElement }) => {
|
|
|
|
expect(findCardTooltip().exists()).toBe(true);
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
await findElement().trigger('mouseover');
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
expect(findCardTooltip().exists()).toBe(false);
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
describe('and the cancel button is clicked', () => {
|
|
|
|
describe('on success', () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
jest.spyOn(wrapper.vm.$apollo, 'mutate').mockResolvedValue();
|
|
|
|
jest.spyOn(wrapper.vm, '$emit');
|
|
|
|
await findCancelButton().trigger('click');
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
it('calls the cancel mutation', () => {
|
|
|
|
expect(wrapper.vm.$apollo.mutate).toHaveBeenCalledTimes(1);
|
|
|
|
expect(wrapper.vm.$apollo.mutate).toHaveBeenCalledWith({
|
|
|
|
mutation: CancelPipelineMutation,
|
|
|
|
variables: {
|
|
|
|
id: convertToGraphQLId(PIPELINE_GRAPHQL_TYPE, mockPipeline.id),
|
|
|
|
},
|
2022-07-16 23:28:13 +05:30
|
|
|
});
|
|
|
|
});
|
2022-07-23 23:45:48 +05:30
|
|
|
it('emits the refreshPipelineGraph event', () => {
|
|
|
|
expect(wrapper.vm.$emit).toHaveBeenCalledWith('refreshPipelineGraph');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
describe('on failure', () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
jest.spyOn(wrapper.vm.$apollo, 'mutate').mockRejectedValue({ errors: [] });
|
|
|
|
jest.spyOn(wrapper.vm, '$emit');
|
|
|
|
await findCancelButton().trigger('click');
|
|
|
|
});
|
|
|
|
it('emits an error event', () => {
|
|
|
|
expect(wrapper.vm.$emit).toHaveBeenCalledWith('error', {
|
|
|
|
type: ACTION_FAILURE,
|
2022-07-16 23:28:13 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2022-07-23 23:45:48 +05:30
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
describe('when both cancellable and retryable', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
const pipelineWithTwoActions = {
|
|
|
|
...downstreamProps,
|
|
|
|
pipeline: { ...mockPipeline, cancelable: true, retryable: true },
|
|
|
|
};
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
createWrapper({ propsData: pipelineWithTwoActions });
|
2022-07-16 23:28:13 +05:30
|
|
|
});
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
it('only shows the cancel button', () => {
|
|
|
|
expect(findRetryButton().exists()).toBe(false);
|
|
|
|
expect(findCancelButton().exists()).toBe(true);
|
|
|
|
});
|
2022-07-16 23:28:13 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
describe('without permissions', () => {
|
2022-07-16 23:28:13 +05:30
|
|
|
beforeEach(() => {
|
|
|
|
const pipelineWithTwoActions = {
|
|
|
|
...downstreamProps,
|
2022-07-23 23:45:48 +05:30
|
|
|
pipeline: {
|
|
|
|
...mockPipeline,
|
|
|
|
cancelable: true,
|
|
|
|
retryable: true,
|
|
|
|
userPermissions: { updatePipeline: false },
|
|
|
|
},
|
2022-07-16 23:28:13 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
createWrapper({ propsData: pipelineWithTwoActions });
|
|
|
|
});
|
2022-07-23 23:45:48 +05:30
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
it('does not show any action button', () => {
|
|
|
|
expect(findRetryButton().exists()).toBe(false);
|
|
|
|
expect(findCancelButton().exists()).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
2020-11-24 15:15:51 +05:30
|
|
|
});
|
2022-04-04 11:22:00 +05:30
|
|
|
});
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
describe('expand button', () => {
|
2020-11-24 15:15:51 +05:30
|
|
|
it.each`
|
2022-07-23 23:45:48 +05:30
|
|
|
pipelineType | chevronPosition | buttonBorderClasses | expanded
|
|
|
|
${downstreamProps} | ${'chevron-lg-right'} | ${'gl-border-l-0!'} | ${false}
|
|
|
|
${downstreamProps} | ${'chevron-lg-left'} | ${'gl-border-l-0!'} | ${true}
|
|
|
|
${upstreamProps} | ${'chevron-lg-left'} | ${'gl-border-r-0!'} | ${false}
|
|
|
|
${upstreamProps} | ${'chevron-lg-right'} | ${'gl-border-r-0!'} | ${true}
|
2020-11-24 15:15:51 +05:30
|
|
|
`(
|
2022-07-23 23:45:48 +05:30
|
|
|
'$pipelineType.columnTitle pipeline button icon should be $chevronPosition with $buttonBorderClasses if expanded state is $expanded',
|
|
|
|
({ pipelineType, chevronPosition, buttonBorderClasses, expanded }) => {
|
2022-07-16 23:28:13 +05:30
|
|
|
createWrapper({ propsData: { ...pipelineType, expanded } });
|
2022-07-23 23:45:48 +05:30
|
|
|
expect(findExpandButton().props('icon')).toBe(chevronPosition);
|
2022-07-16 23:28:13 +05:30
|
|
|
expect(findExpandButton().classes()).toContain(buttonBorderClasses);
|
2020-11-24 15:15:51 +05:30
|
|
|
},
|
|
|
|
);
|
2022-07-23 23:45:48 +05:30
|
|
|
|
|
|
|
describe('shadow border', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
createWrapper({ propsData: downstreamProps });
|
|
|
|
});
|
|
|
|
|
|
|
|
it.each`
|
|
|
|
activateEventName | deactivateEventName
|
|
|
|
${'mouseover'} | ${'mouseout'}
|
|
|
|
${'focus'} | ${'blur'}
|
|
|
|
`(
|
2022-10-11 01:57:18 +05:30
|
|
|
'applies the class on $activateEventName and removes it on $deactivateEventName',
|
2022-07-23 23:45:48 +05:30
|
|
|
async ({ activateEventName, deactivateEventName }) => {
|
|
|
|
const shadowClass = 'gl-shadow-none!';
|
|
|
|
|
|
|
|
expect(findExpandButton().classes()).toContain(shadowClass);
|
|
|
|
|
|
|
|
await findExpandButton().vm.$emit(activateEventName);
|
|
|
|
expect(findExpandButton().classes()).not.toContain(shadowClass);
|
|
|
|
|
|
|
|
await findExpandButton().vm.$emit(deactivateEventName);
|
|
|
|
expect(findExpandButton().classes()).toContain(shadowClass);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('when isLoading is true', () => {
|
|
|
|
const props = {
|
2021-11-11 11:23:49 +05:30
|
|
|
pipeline: mockPipeline,
|
2020-03-13 15:44:24 +05:30
|
|
|
columnTitle: 'Downstream',
|
2021-01-29 00:20:46 +05:30
|
|
|
type: DOWNSTREAM,
|
2021-02-22 17:27:13 +05:30
|
|
|
expanded: false,
|
2021-11-11 11:23:49 +05:30
|
|
|
isLoading: true,
|
2020-01-01 13:55:28 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2022-07-16 23:28:13 +05:30
|
|
|
createWrapper({ propsData: props });
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
it('loading icon is visible', () => {
|
|
|
|
expect(findLoadingIcon().exists()).toBe(true);
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
describe('on click/hover', () => {
|
2020-01-01 13:55:28 +05:30
|
|
|
const props = {
|
|
|
|
pipeline: mockPipeline,
|
2020-03-13 15:44:24 +05:30
|
|
|
columnTitle: 'Downstream',
|
2021-01-29 00:20:46 +05:30
|
|
|
type: DOWNSTREAM,
|
2021-02-22 17:27:13 +05:30
|
|
|
expanded: false,
|
2021-11-11 11:23:49 +05:30
|
|
|
isLoading: false,
|
2020-01-01 13:55:28 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2022-07-16 23:28:13 +05:30
|
|
|
createWrapper({ propsData: props });
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('emits `pipelineClicked` event', () => {
|
|
|
|
jest.spyOn(wrapper.vm, '$emit');
|
2020-04-22 19:07:51 +05:30
|
|
|
findButton().trigger('click');
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2022-08-27 11:52:29 +05:30
|
|
|
expect(wrapper.emitted().pipelineClicked).toHaveLength(1);
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
it(`should emit ${BV_HIDE_TOOLTIP} to close the tooltip`, () => {
|
2020-01-01 13:55:28 +05:30
|
|
|
jest.spyOn(wrapper.vm.$root, '$emit');
|
2020-04-22 19:07:51 +05:30
|
|
|
findButton().trigger('click');
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
expect(wrapper.vm.$root.$emit.mock.calls[0]).toEqual([BV_HIDE_TOOLTIP]);
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
it('should emit downstreamHovered with job name on mouseover', () => {
|
|
|
|
findLinkedPipeline().trigger('mouseover');
|
2021-11-11 11:23:49 +05:30
|
|
|
expect(wrapper.emitted().downstreamHovered).toStrictEqual([['test_c']]);
|
2020-07-28 23:09:34 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should emit downstreamHovered with empty string on mouseleave', () => {
|
|
|
|
findLinkedPipeline().trigger('mouseleave');
|
|
|
|
expect(wrapper.emitted().downstreamHovered).toStrictEqual([['']]);
|
|
|
|
});
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
it('should emit pipelineExpanded with job name and expanded state on click', () => {
|
|
|
|
findExpandButton().trigger('click');
|
2021-11-11 11:23:49 +05:30
|
|
|
expect(wrapper.emitted().pipelineExpandToggle).toStrictEqual([['test_c', true]]);
|
2020-11-24 15:15:51 +05:30
|
|
|
});
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
});
|