mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
* remove hasAccess and hasAcessInMetadata in favour of hasPermission and hasPermissionInMetadata * test fixes * more test fixes
98 lines
2.9 KiB
TypeScript
98 lines
2.9 KiB
TypeScript
import { render, screen } from '@testing-library/react';
|
|
import React from 'react';
|
|
import { mockToolkitActionCreator } from 'test/core/redux/mocks';
|
|
|
|
import { config } from 'app/core/config';
|
|
|
|
import { Props, UsersActionBarUnconnected } from './UsersActionBar';
|
|
import { searchQueryChanged } from './state/reducers';
|
|
|
|
jest.mock('app/core/core', () => ({
|
|
contextSrv: {
|
|
hasPermission: () => true,
|
|
},
|
|
}));
|
|
|
|
const setup = (propOverrides?: object) => {
|
|
const props: Props = {
|
|
searchQuery: '',
|
|
changeSearchQuery: mockToolkitActionCreator(searchQueryChanged),
|
|
onShowInvites: jest.fn(),
|
|
pendingInvitesCount: 0,
|
|
externalUserMngLinkUrl: '',
|
|
externalUserMngLinkName: '',
|
|
showInvites: false,
|
|
};
|
|
|
|
Object.assign(props, propOverrides);
|
|
|
|
const { rerender } = render(<UsersActionBarUnconnected {...props} />);
|
|
|
|
return { rerender, props };
|
|
};
|
|
|
|
describe('Render', () => {
|
|
it('should render component', () => {
|
|
setup();
|
|
|
|
expect(screen.getByTestId('users-action-bar')).toBeInTheDocument();
|
|
});
|
|
|
|
it('should render pending invites button', () => {
|
|
setup({
|
|
pendingInvitesCount: 5,
|
|
});
|
|
|
|
expect(screen.getByRole('radio', { name: 'Pending Invites (5)' })).toBeInTheDocument();
|
|
});
|
|
|
|
it('should show invite button', () => {
|
|
setup();
|
|
|
|
expect(screen.getByRole('link', { name: 'Invite' })).toHaveAttribute('href', 'org/users/invite');
|
|
});
|
|
|
|
it('should show external user management button', () => {
|
|
setup({
|
|
externalUserMngLinkUrl: 'some/url',
|
|
externalUserMngLinkName: 'someUrl',
|
|
});
|
|
|
|
expect(screen.getByRole('link', { name: 'someUrl' })).toHaveAttribute('href', 'some/url');
|
|
});
|
|
|
|
it('should not show invite button when externalUserMngInfo is set and disableLoginForm is true', () => {
|
|
const originalExternalUserMngInfo = config.externalUserMngInfo;
|
|
config.externalUserMngInfo = 'truthy';
|
|
config.disableLoginForm = true;
|
|
|
|
setup();
|
|
|
|
expect(screen.queryByRole('link', { name: 'Invite' })).not.toBeInTheDocument();
|
|
// Reset the disableLoginForm mock to its original value
|
|
config.externalUserMngInfo = originalExternalUserMngInfo;
|
|
});
|
|
|
|
it('should show invite button when externalUserMngInfo is not set and disableLoginForm is true', () => {
|
|
config.externalUserMngInfo = '';
|
|
config.disableLoginForm = true;
|
|
|
|
setup();
|
|
|
|
expect(screen.getByRole('link', { name: 'Invite' })).toHaveAttribute('href', 'org/users/invite');
|
|
// Reset the disableLoginForm mock to its original value
|
|
config.disableLoginForm = false;
|
|
});
|
|
|
|
it('should show invite button when externalUserMngInfo is set and disableLoginForm is false', () => {
|
|
const originalExternalUserMngInfo = config.externalUserMngInfo;
|
|
config.externalUserMngInfo = 'truthy';
|
|
|
|
setup();
|
|
|
|
expect(screen.getByRole('link', { name: 'Invite' })).toHaveAttribute('href', 'org/users/invite');
|
|
// Reset the disableLoginForm mock to its original value
|
|
config.externalUserMngInfo = originalExternalUserMngInfo;
|
|
});
|
|
});
|