53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
|
import { GlBadge } from '@gitlab/ui';
|
||
|
|
||
|
import { shallowMount } from '@vue/test-utils';
|
||
|
import { WorkspaceType, IssuableType } from '~/issues/constants';
|
||
|
|
||
|
import ConfidentialityBadge from '~/vue_shared/components/confidentiality_badge.vue';
|
||
|
|
||
|
const createComponent = ({
|
||
|
workspaceType = WorkspaceType.project,
|
||
|
issuableType = IssuableType.Issue,
|
||
|
} = {}) =>
|
||
|
shallowMount(ConfidentialityBadge, {
|
||
|
propsData: {
|
||
|
workspaceType,
|
||
|
issuableType,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
describe('ConfidentialityBadge', () => {
|
||
|
let wrapper;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
wrapper = createComponent();
|
||
|
});
|
||
|
|
||
|
afterEach(() => {
|
||
|
wrapper.destroy();
|
||
|
});
|
||
|
|
||
|
it.each`
|
||
|
workspaceType | issuableType | expectedTooltip
|
||
|
${WorkspaceType.project} | ${IssuableType.Issue} | ${'Only project members with at least Reporter role can view or be notified about this issue.'}
|
||
|
${WorkspaceType.group} | ${IssuableType.Epic} | ${'Only group members with at least Reporter role can view or be notified about this epic.'}
|
||
|
`(
|
||
|
'should render gl-badge with correct tooltip when workspaceType is $workspaceType and issuableType is $issuableType',
|
||
|
({ workspaceType, issuableType, expectedTooltip }) => {
|
||
|
wrapper = createComponent({
|
||
|
workspaceType,
|
||
|
issuableType,
|
||
|
});
|
||
|
|
||
|
const badgeEl = wrapper.findComponent(GlBadge);
|
||
|
|
||
|
expect(badgeEl.props()).toMatchObject({
|
||
|
icon: 'eye-slash',
|
||
|
variant: 'warning',
|
||
|
});
|
||
|
expect(badgeEl.attributes('title')).toBe(expectedTooltip);
|
||
|
expect(badgeEl.text()).toBe('Confidential');
|
||
|
},
|
||
|
);
|
||
|
});
|