98 lines
2.8 KiB
JavaScript
98 lines
2.8 KiB
JavaScript
import { GlDropdownItem } from '@gitlab/ui';
|
|
import { shallowMount } from '@vue/test-utils';
|
|
import { kebabCase } from 'lodash';
|
|
import { nextTick } from 'vue';
|
|
import Actions from '~/admin/users/components/actions';
|
|
import SharedDeleteAction from '~/admin/users/components/actions/shared/shared_delete_action.vue';
|
|
import { capitalizeFirstCharacter } from '~/lib/utils/text_utility';
|
|
|
|
import { CONFIRMATION_ACTIONS, DELETE_ACTIONS } from '../../constants';
|
|
|
|
describe('Action components', () => {
|
|
let wrapper;
|
|
|
|
const findDropdownItem = () => wrapper.find(GlDropdownItem);
|
|
|
|
const initComponent = ({ component, props, stubs = {} } = {}) => {
|
|
wrapper = shallowMount(component, {
|
|
propsData: {
|
|
...props,
|
|
},
|
|
stubs,
|
|
});
|
|
};
|
|
|
|
afterEach(() => {
|
|
wrapper.destroy();
|
|
wrapper = null;
|
|
});
|
|
|
|
describe('CONFIRMATION_ACTIONS', () => {
|
|
it.each(CONFIRMATION_ACTIONS)('renders a dropdown item for "%s"', async (action) => {
|
|
initComponent({
|
|
component: Actions[capitalizeFirstCharacter(action)],
|
|
props: {
|
|
username: 'John Doe',
|
|
path: '/test',
|
|
},
|
|
});
|
|
|
|
await nextTick();
|
|
|
|
const div = wrapper.find('div');
|
|
expect(div.attributes('data-path')).toBe('/test');
|
|
expect(div.attributes('data-modal-attributes')).toContain('John Doe');
|
|
expect(findDropdownItem().exists()).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe('LINK_ACTIONS', () => {
|
|
it.each`
|
|
action | method
|
|
${'Approve'} | ${'put'}
|
|
${'Reject'} | ${'delete'}
|
|
`(
|
|
'renders a dropdown item link with method "$method" for "$action"',
|
|
async ({ action, method }) => {
|
|
initComponent({
|
|
component: Actions[action],
|
|
props: {
|
|
path: '/test',
|
|
},
|
|
});
|
|
|
|
await nextTick();
|
|
|
|
const item = wrapper.find(GlDropdownItem);
|
|
expect(item.attributes('href')).toBe('/test');
|
|
expect(item.attributes('data-method')).toContain(method);
|
|
},
|
|
);
|
|
});
|
|
|
|
describe('DELETE_ACTION_COMPONENTS', () => {
|
|
it.each(DELETE_ACTIONS)('renders a dropdown item for "%s"', async (action) => {
|
|
initComponent({
|
|
component: Actions[capitalizeFirstCharacter(action)],
|
|
props: {
|
|
username: 'John Doe',
|
|
paths: {
|
|
delete: '/delete',
|
|
block: '/block',
|
|
},
|
|
},
|
|
stubs: { SharedDeleteAction },
|
|
});
|
|
|
|
await nextTick();
|
|
|
|
const sharedAction = wrapper.find(SharedDeleteAction);
|
|
|
|
expect(sharedAction.attributes('data-block-user-url')).toBe('/block');
|
|
expect(sharedAction.attributes('data-delete-user-url')).toBe('/delete');
|
|
expect(sharedAction.attributes('data-gl-modal-action')).toBe(kebabCase(action));
|
|
expect(sharedAction.attributes('data-username')).toBe('John Doe');
|
|
expect(findDropdownItem().exists()).toBe(true);
|
|
});
|
|
});
|
|
});
|