mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import UsersTable, { Props } from './UsersTable';
|
|
import { OrgUser } from 'app/types';
|
|
import { getMockUsers } from './__mocks__/userMocks';
|
|
import { ConfirmModal } from '@grafana/ui';
|
|
|
|
jest.mock('app/core/core', () => ({
|
|
contextSrv: {
|
|
hasPermission: () => true,
|
|
hasPermissionInMetadata: () => true,
|
|
licensedAccessControlEnabled: () => false,
|
|
},
|
|
}));
|
|
|
|
const setup = (propOverrides?: object) => {
|
|
const props: Props = {
|
|
users: [] as OrgUser[],
|
|
onRoleChange: jest.fn(),
|
|
onRemoveUser: jest.fn(),
|
|
};
|
|
|
|
Object.assign(props, propOverrides);
|
|
|
|
return shallow(<UsersTable {...props} />);
|
|
};
|
|
|
|
describe('Render', () => {
|
|
it('should render component', () => {
|
|
const wrapper = setup();
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render users table', () => {
|
|
const wrapper = setup({
|
|
users: getMockUsers(5),
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe('Remove modal', () => {
|
|
it('should render correct amount', () => {
|
|
const wrapper = setup({
|
|
users: getMockUsers(3),
|
|
});
|
|
expect(wrapper.find(ConfirmModal).length).toEqual(0);
|
|
});
|
|
});
|