mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
8217d6d206
* AccessControl: Change teams permissions page when frontend is hit * Implement frontend changes for group sync * Changing the org/teams/edit permissions Co-authored-by: ievaVasiljeva <ieva.vasiljeva@grafana.com> * Fixing routes Co-authored-by: ievaVasiljeva <ieva.vasiljeva@grafana.com> * Use props straight away no need to go through the state Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com> * Update public/app/features/teams/TeamPages.tsx Co-authored-by: ievaVasiljeva <ieva.vasiljeva@grafana.com> Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com>
65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { Props, TeamGroupSync } from './TeamGroupSync';
|
|
import { TeamGroup } from '../../types';
|
|
import { getMockTeamGroups } from './__mocks__/teamMocks';
|
|
|
|
const setup = (propOverrides?: object) => {
|
|
const props: Props = {
|
|
isReadOnly: false,
|
|
groups: [] as TeamGroup[],
|
|
loadTeamGroups: jest.fn(),
|
|
addTeamGroup: jest.fn(),
|
|
removeTeamGroup: jest.fn(),
|
|
};
|
|
|
|
Object.assign(props, propOverrides);
|
|
|
|
const wrapper = shallow(<TeamGroupSync {...props} />);
|
|
const instance = wrapper.instance() as TeamGroupSync;
|
|
|
|
return {
|
|
wrapper,
|
|
instance,
|
|
};
|
|
};
|
|
|
|
describe('Render', () => {
|
|
it('should render component', () => {
|
|
const { wrapper } = setup();
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render groups table', () => {
|
|
const { wrapper } = setup({
|
|
groups: getMockTeamGroups(3),
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe('Functions', () => {
|
|
it('should call add group', () => {
|
|
const { instance } = setup();
|
|
|
|
instance.setState({ newGroupId: 'some/group' });
|
|
const mockEvent = { preventDefault: jest.fn() };
|
|
|
|
instance.onAddGroup(mockEvent);
|
|
|
|
expect(instance.props.addTeamGroup).toHaveBeenCalledWith('some/group');
|
|
});
|
|
|
|
it('should call remove group', () => {
|
|
const { instance } = setup();
|
|
|
|
const mockGroup: TeamGroup = { teamId: 1, groupId: 'some/group' };
|
|
|
|
instance.onRemoveGroup(mockGroup);
|
|
|
|
expect(instance.props.removeTeamGroup).toHaveBeenCalledWith('some/group');
|
|
});
|
|
});
|