2021-10-27 15:23:28 +05:30
|
|
|
import { GlFilteredSearchToken, GlFilteredSearchSuggestion } from '@gitlab/ui';
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
2021-11-11 11:23:49 +05:30
|
|
|
import { PIPELINE_SOURCES } from 'ee_else_ce/pipelines/components/pipelines_list/tokens/constants';
|
2021-10-27 15:23:28 +05:30
|
|
|
import { stubComponent } from 'helpers/stub_component';
|
|
|
|
import PipelineSourceToken from '~/pipelines/components/pipelines_list/tokens/pipeline_source_token.vue';
|
|
|
|
|
|
|
|
describe('Pipeline Source Token', () => {
|
|
|
|
let wrapper;
|
|
|
|
|
|
|
|
const findFilteredSearchToken = () => wrapper.find(GlFilteredSearchToken);
|
|
|
|
const findAllFilteredSearchSuggestions = () => wrapper.findAll(GlFilteredSearchSuggestion);
|
|
|
|
|
|
|
|
const defaultProps = {
|
|
|
|
config: {
|
|
|
|
type: 'source',
|
|
|
|
icon: 'trigger-source',
|
|
|
|
title: 'Source',
|
|
|
|
unique: true,
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
data: '',
|
|
|
|
},
|
2022-07-16 23:28:13 +05:30
|
|
|
cursorPosition: 'start',
|
2021-10-27 15:23:28 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
const createComponent = () => {
|
|
|
|
wrapper = shallowMount(PipelineSourceToken, {
|
|
|
|
propsData: {
|
|
|
|
...defaultProps,
|
|
|
|
},
|
|
|
|
stubs: {
|
|
|
|
GlFilteredSearchToken: stubComponent(GlFilteredSearchToken, {
|
|
|
|
template: `<div><slot name="suggestions"></slot></div>`,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
createComponent();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('passes config correctly', () => {
|
|
|
|
expect(findFilteredSearchToken().props('config')).toEqual(defaultProps.config);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('shows sources correctly', () => {
|
|
|
|
it('renders all pipeline sources available', () => {
|
2021-11-11 11:23:49 +05:30
|
|
|
expect(findAllFilteredSearchSuggestions()).toHaveLength(PIPELINE_SOURCES.length);
|
2021-10-27 15:23:28 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|