mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { UsersListPage, Props } from './UsersListPage';
|
|
import { Invitee, NavModel, OrgUser } from 'app/types';
|
|
import { getMockUser } from './__mocks__/userMocks';
|
|
import appEvents from '../../core/app_events';
|
|
|
|
jest.mock('../../core/app_events', () => ({
|
|
emit: jest.fn(),
|
|
}));
|
|
|
|
const setup = (propOverrides?: object) => {
|
|
const props: Props = {
|
|
navModel: {} as NavModel,
|
|
users: [] as OrgUser[],
|
|
invitees: [] as Invitee[],
|
|
searchQuery: '',
|
|
externalUserMngInfo: '',
|
|
revokeInvite: jest.fn(),
|
|
loadInvitees: jest.fn(),
|
|
loadUsers: jest.fn(),
|
|
updateUser: jest.fn(),
|
|
removeUser: jest.fn(),
|
|
setUsersSearchQuery: jest.fn(),
|
|
hasFetched: false,
|
|
};
|
|
|
|
Object.assign(props, propOverrides);
|
|
|
|
const wrapper = shallow(<UsersListPage {...props} />);
|
|
const instance = wrapper.instance() as UsersListPage;
|
|
|
|
return {
|
|
wrapper,
|
|
instance,
|
|
};
|
|
};
|
|
|
|
describe('Render', () => {
|
|
it('should render component', () => {
|
|
const { wrapper } = setup();
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render List page', () => {
|
|
const { wrapper } = setup({
|
|
hasFetched: true,
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe('Functions', () => {
|
|
it('should emit show remove user modal', () => {
|
|
const { instance } = setup();
|
|
const mockUser = getMockUser();
|
|
|
|
instance.onRemoveUser(mockUser);
|
|
|
|
expect(appEvents.emit).toHaveBeenCalled();
|
|
});
|
|
});
|