101 lines
3 KiB
JavaScript
101 lines
3 KiB
JavaScript
import { GlAvatarLabeled, GlDropdown, GlSearchBoxByType } from '@gitlab/ui';
|
|
import { mount } from '@vue/test-utils';
|
|
import waitForPromises from 'helpers/wait_for_promises';
|
|
import * as groupsApi from '~/api/groups_api';
|
|
import GroupSelect from '~/invite_members/components/group_select.vue';
|
|
|
|
const createComponent = () => {
|
|
return mount(GroupSelect, {});
|
|
};
|
|
|
|
const group1 = { id: 1, full_name: 'Group One', avatar_url: 'test' };
|
|
const group2 = { id: 2, full_name: 'Group Two', avatar_url: 'test' };
|
|
const allGroups = [group1, group2];
|
|
|
|
describe('GroupSelect', () => {
|
|
let wrapper;
|
|
|
|
beforeEach(() => {
|
|
jest.spyOn(groupsApi, 'getGroups').mockResolvedValue(allGroups);
|
|
|
|
wrapper = createComponent();
|
|
});
|
|
|
|
afterEach(() => {
|
|
wrapper.destroy();
|
|
wrapper = null;
|
|
});
|
|
|
|
const findSearchBoxByType = () => wrapper.findComponent(GlSearchBoxByType);
|
|
const findDropdown = () => wrapper.findComponent(GlDropdown);
|
|
const findDropdownToggle = () => findDropdown().find('button[aria-haspopup="true"]');
|
|
const findAvatarByLabel = (text) =>
|
|
wrapper
|
|
.findAllComponents(GlAvatarLabeled)
|
|
.wrappers.find((dropdownItemWrapper) => dropdownItemWrapper.props('label') === text);
|
|
|
|
it('renders GlSearchBoxByType with default attributes', () => {
|
|
expect(findSearchBoxByType().exists()).toBe(true);
|
|
expect(findSearchBoxByType().vm.$attrs).toMatchObject({
|
|
placeholder: 'Search groups',
|
|
});
|
|
});
|
|
|
|
describe('when user types in the search input', () => {
|
|
let resolveApiRequest;
|
|
|
|
beforeEach(() => {
|
|
jest.spyOn(groupsApi, 'getGroups').mockImplementation(
|
|
() =>
|
|
new Promise((resolve) => {
|
|
resolveApiRequest = resolve;
|
|
}),
|
|
);
|
|
|
|
findSearchBoxByType().vm.$emit('input', group1.name);
|
|
});
|
|
|
|
it('calls the API', () => {
|
|
resolveApiRequest({ data: allGroups });
|
|
|
|
expect(groupsApi.getGroups).toHaveBeenCalledWith(group1.name, {
|
|
active: true,
|
|
exclude_internal: true,
|
|
});
|
|
});
|
|
|
|
it('displays loading icon while waiting for API call to resolve', async () => {
|
|
expect(findSearchBoxByType().props('isLoading')).toBe(true);
|
|
|
|
resolveApiRequest({ data: allGroups });
|
|
await waitForPromises();
|
|
|
|
expect(findSearchBoxByType().props('isLoading')).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe('avatar label', () => {
|
|
it('includes the correct attributes with name and avatar_url', () => {
|
|
expect(findAvatarByLabel(group1.full_name).attributes()).toMatchObject({
|
|
src: group1.avatar_url,
|
|
'entity-id': `${group1.id}`,
|
|
'entity-name': group1.full_name,
|
|
size: '32',
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when group is selected from the dropdown', () => {
|
|
beforeEach(() => {
|
|
findAvatarByLabel(group1.full_name).trigger('click');
|
|
});
|
|
|
|
it('emits `input` event used by `v-model`', () => {
|
|
expect(wrapper.emitted('input')[0][0].id).toEqual(group1.id);
|
|
});
|
|
|
|
it('sets dropdown toggle text to selected item', () => {
|
|
expect(findDropdownToggle().text()).toBe(group1.full_name);
|
|
});
|
|
});
|
|
});
|